diff --git a/CMakeLists.txt b/CMakeLists.txt index dfd9254..307a3b9 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,8 +84,11 @@ set(HAPLOTYPES_ALL_LIBS ${HAPLOTYPES_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) -include(GetGitRevisionDescription) -git_describe(HAPLOTYPES_VERSION) +execute_process(COMMAND git describe --tags --always + OUTPUT_VARIABLE HAPLOTYPES_VERSION + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + OUTPUT_STRIP_TRAILING_WHITESPACE +) configure_file("${CMAKE_CURRENT_SOURCE_DIR}/src/c++/include/Version.hh.in" "${CMAKE_BINARY_DIR}/include/Version.hh") diff --git a/Dockerfile b/Dockerfile index 4b3b8dd..0c9030b 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,31 +1,36 @@ FROM ubuntu:18.04 ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get upgrade -y -RUN apt-get install build-essential zlib1g-dev libbz2-dev pkg-config cmake libncurses5-dev autoconf -y -RUN apt-get install git bzip2 wget -y -RUN apt-get install python2.7 python2.7-dev python \ - python-setuptools \ - python-pip \ - python-psutil \ - cython \ - python-numpy \ - python-pandas \ - python-distribute \ - python-pysam \ - python-scipy \ - -y -RUN apt-get install software-properties-common -y -RUN apt-get clean -y -RUN pip install bx-python +RUN apt-get update && \ + apt-get install -y \ + autoconf \ + build-essential \ + bzip2 \ + cmake \ + cython \ + git \ + libbz2-dev \ + libncurses5-dev \ + openjdk-8-jdk \ + pkg-config \ + python \ + python2.7 \ + python2.7-dev \ + python-setuptools \ + python-pip \ + python-psutil \ + python-numpy \ + python-pandas \ + python-distribute \ + python-pysam \ + python-scipy \ + software-properties-common \ + wget \ + zlib1g-dev && \ + apt-get clean -y -RUN echo oracle-java11-installer shared/accepted-oracle-license-v1-2 select true | debconf-set-selections && \ - add-apt-repository -y ppa:linuxuprising/java && \ - apt-get update && \ - apt-get install -y oracle-java11-installer && \ - rm -rf /var/lib/apt/lists/* && \ - rm -rf /var/cache/oracle-jdk11-installer +RUN pip install bx-python # copy git repository into the image RUN mkdir -p /opt/hap.py-source diff --git a/Dockerfile.centos6 b/Dockerfile.centos6 index 08fff89..abe65bb 100644 --- a/Dockerfile.centos6 +++ b/Dockerfile.centos6 @@ -4,30 +4,43 @@ ENV HOME /root ENV LANG en_US.UTF-8 ENV LC_ALL en_US.UTF-8 -RUN yum install -y wget curl tar gzip bzip2 which perl - -RUN mkdir -p /opt/illumina/haplocompare && \ +RUN yum install -y \ + bzip2 \ + bzip2-devel \ + centos-release-scl \ + cmake \ + curl \ + devtoolset-8-gcc \ + devtoolset-3-binutils \ + devtoolset-8-gcc-c++ \ + devtoolset-8-gcc-gfortran \ + git \ + gzip \ + java-1.8.0-openjdk \ + ncurses-devel \ + perl \ + tar \ + wget \ + which \ + zlib-devel \ + +RUN yum upgrade -y && yum update -y && yum clean all + +RUN mkdir -p /opt/illumina/haplocompare && \ cd /opt/illumina/haplocompare && \ wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh && \ bash Miniconda2-latest-Linux-x86_64.sh -b -p /opt/miniconda2 ENV PATH /opt/miniconda2/bin:${PATH} -RUN yum install -y centos-release-scl && \ - yum install -y devtoolset-3-gcc devtoolset-3-binutils && \ - yum install -y devtoolset-3-gcc-c++ devtoolset-3-gcc-gfortran && \ - yum install -y cmake bzip2-devel ncurses-devel zlib-devel git - -RUN conda config --add channels bioconda && \ - conda install -y cython numpy scipy biopython matplotlib pandas pysam bx-python pyvcf cyvcf2 nose - -RUN yum upgrade -y && yum update -y && yum clean all +RUN conda config --add channels bioconda && \ + conda install -y cython numpy scipy biopython matplotlib pandas pysam bx-python pyvcf cyvcf2 nose COPY . /opt/illumina/haplocompare/hap.py-source WORKDIR /opt/illumina/haplocompare/hap.py-source # patch samtools for centos 6 -RUN cd external && \ +RUN cd external && \ tar xvzf samtools.tar.gz && \ cd samtools && \ cat Makefile | sed 's/-ldl/-ldl -ltinfo/' > Makefile.bak && \ @@ -36,12 +49,6 @@ RUN cd external && \ rm -f samtools.tar.gz && \ tar czvf samtools.tar.gz samtools - -ENV JDK_VERSION 8u11 -ENV JDK_BUILD_VERSION b12 -RUN curl -LO "http://download.oracle.com/otn-pub/java/jdk/$JDK_VERSION-$JDK_BUILD_VERSION/jdk-$JDK_VERSION-linux-x64.rpm" -H 'Cookie: oraclelicense=accept-securebackup-cookie' && rpm -i jdk-$JDK_VERSION-linux-x64.rpm && rm -f jdk-$JDK_VERSION-linux-x64.rpm && yum clean all -ENV JAVA_HOME /usr/java/default - # get + install ant WORKDIR /opt RUN wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.7-bin.tar.gz && \ diff --git a/Dockerfile.ubuntu-with-tests b/Dockerfile.ubuntu-with-tests index e154bac..ffb9cc4 100755 --- a/Dockerfile.ubuntu-with-tests +++ b/Dockerfile.ubuntu-with-tests @@ -1,31 +1,36 @@ FROM ubuntu:18.04 ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get upgrade -y -RUN apt-get install build-essential zlib1g-dev libbz2-dev pkg-config cmake libncurses5-dev autoconf -y -RUN apt-get install git bzip2 wget -y -RUN apt-get install python2.7 python2.7-dev python \ - python-setuptools \ - python-pip \ - python-psutil \ - cython \ - python-numpy \ - python-pandas \ - python-distribute \ - python-pysam \ - python-scipy \ - -y -RUN apt-get install software-properties-common -y -RUN apt-get clean -y -RUN pip install bx-python +RUN apt-get update && \ + apt-get install -y \ + autoconf \ + build-essential \ + bzip2 \ + cmake \ + cython \ + git \ + libbz2-dev \ + libncurses5-dev \ + openjdk-8-jdk \ + pkg-config \ + python \ + python2.7 \ + python2.7-dev \ + python-setuptools \ + python-pip \ + python-psutil \ + python-numpy \ + python-pandas \ + python-distribute \ + python-pysam \ + python-scipy \ + software-properties-common \ + wget \ + zlib1g-dev && \ + apt-get clean -y -RUN echo oracle-java11-installer shared/accepted-oracle-license-v1-2 select true | debconf-set-selections && \ - add-apt-repository -y ppa:linuxuprising/java && \ - apt-get update && \ - apt-get install -y oracle-java11-installer && \ - rm -rf /var/lib/apt/lists/* && \ - rm -rf /var/cache/oracle-jdk11-installer +RUN pip install bx-python # copy git repository into the image RUN mkdir -p /opt/hap.py-source diff --git a/RELEASES.md b/RELEASES.md index bf638a9..a86c21c 100755 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,27 @@ # Hap.py Release Notes / Change Log +## v0.3.12 + +| Ticket | Description | +|---------|------------------------------------------------------------------------------------| +| HAP-355 | Ensure compatibility with genome VCF from DRAGEN pipelines | +| HAP-356 | quantify module throws regex error | +| HAP-357 | Deal with change in Java license terms | +| HAP-359 | Hap.py crashes when ingesting variants genotyped as | +| HAP-360 | Apply non-ref filter to truth set when --preprocess-truth is set | +| HAP-361 | Hap.py "blocksplit" processes still failing on DRAGEN gVCFs even with pre-filtering NON_REF genotypes +| HAP-362 | Hap.py blocksplit sometimes crashes with "invalid next size (fast)" error | +| HAP-363 | Use 'git describe' to obtain version number during Cmake | + +## v0.3.11 + +| Ticket | Description | +|---------|------------------------------------------------------------------------------------| +| HAP-341 | Update rtgtools to 3.10.1 | +| HAP-342 | som.py output tables to quantify / GA4GH format | +| HAP-346 | src/sh/illumina-setup.sh out of date | +| HAP-352 | string formatting in som.py: last interval is always [1.0, 1.0] in *extended.csv | + ## v0.3.10 | Ticket | Description | diff --git a/doc/happy.md b/doc/happy.md index ad83cbf..7509783 100755 --- a/doc/happy.md +++ b/doc/happy.md @@ -4,21 +4,22 @@ - [Hap.py User's Manual](#happy-users-manual) - [Introduction](#introduction) -- [Getting Started](#getting-started) -- [Full List of Command line Options](#full-list-of-command-line-options) - - [Minimal Options](#minimal-options) - - [Running / Debugging issues](#running-debugging-issues) - - [Restricting to Subsets of the Genome / Input](#restricting-to-subsets-of-the-genome-input) - - [Additional Input Options](#additional-input-options) - - [Additional Outputs](#additional-outputs) - - [Comparison Engines](#comparison-engines) - - [Stratification via Bed Regions](#stratification-via-bed-regions) - - [Internal Variant Normalisation and Haplotype Comparison](#internal-variant-normalisation-and-haplotype-comparison) - - [ROC Curves](#roc-curves) - - [Input Preprocessing using bcftools](#input-preprocessing-using-bcftools) - - [Haplotype Comparison Parameters](#haplotype-comparison-parameters) - - [Using RTG-Tools / VCFEval as the comparison engine](#using-rtg-tools-vcfeval-as-the-comparison-engine) -- [Full-List-of-Output-Columns](#full-list-of-output-columns) +- [Getting started](#getting-started) +- [Full list of command line options](#full-list-of-command-line-options) + - [Minimal options](#minimal-options) + - [Running and debugging issues](#running-and-debugging-issues) + - [Restricting to subsets of the genome](#restricting-to-subsets-of-the-genome) + - [Additional input options](#additional-input-options) + - [Working with genome VCFs](#working-with-genome-vcfs) + - [Additional outputs](#additional-outputs) + - [Comparison engines](#comparison-engines) + - [Stratification via BED regions](#stratification-via-bed-regions) + - [Internal variant normalisation and haplotype comparison](#internal-variant-normalisation-and-haplotype-comparison) + - [ROC curves](#roc-curves) + - [Input preprocessing using bcftools](#input-preprocessing-using-bcftools) + - [Haplotype comparison parameters](#haplotype-comparison-parameters) + - [Using RTG-Tools - VCFEval as the comparison engine](#using-rtg-tools-vcfeval-as-the-comparison-engine) +- [Full list of output list of output columns](#full-list-of-output-columns) @@ -42,6 +43,9 @@ optional "confident call region" bed file (NOTE: bed files with [track information](https://genome.ucsc.edu/goldenPath/help/customTrack.html) are not supported, all input bed or bed.gz files must only contain bed records). +> Note: If you are running hap.py with _genome_ VCFs that include symbolic alleles +> please see the section [Working with genome VCFs](#working-with-genome-vcfs) + Hap.py will report counts of * ***true-positives (TP)*** : variants/genotypes that match in truth and query. @@ -124,7 +128,7 @@ example use case is computing precision / recall on exoms as well as on the whol or using the stratification regions from the GA4GH benchmarking repository at [https://github.com/ga4gh/benchmarking-tools](https://github.com/ga4gh/benchmarking-tools). -# Getting Started +# Getting started Below, we assume that the code has been installed to the directory `${HAPPY}`. @@ -164,9 +168,9 @@ The extended table gives metrics in a more stratified format: ![](extended.table.png) -# Full List of Command line Options +# Full list of command line options -## Minimal Options +## Minimal options You can run hap.py with the -h switch to get help. @@ -179,7 +183,7 @@ $ ${HAPPY}/bin/hap.py truth.vcf.gz query.vcf.gz \ -o output-prefix --force-interactive ``` -## Running / Debugging issues +## Running and debugging issues ``` --force-interactive @@ -219,7 +223,7 @@ All temporary files go into a scratch folder, which normally defaults to a subdirectory of `/tmp`. This can be customised (e.g. when fast local storage is available). -## Restricting to Subsets of the Genome / Input +## Restricting to subsets of the genome ``` --location LOCATIONS, -l LOCATIONS @@ -251,7 +255,7 @@ will fail). Restrict analysis to given (dense) regions (similar to using -T in bcftools). One example use for this is to restrict the analysis to exome-only data. -## Additional Input Options +## Additional input options ``` -f FP_BEDFILE, --false-positives FP_BEDFILE @@ -277,7 +281,33 @@ export HGREF=path-to-your-reference.fa before running hap.py. -## Additional Outputs +## Working with genome VCFs + +The presence of the symbolic allele in genome VCFs can cause problems +for hap.py, especially if it is part of a genotype. As a workaround, we +provide several options. Since variants genotyped as cannot be +sensibly scored, the we provide the following option, which is safe to use +on both genome VCFs and standard VCFs: + +``` + --filter-nonref Remove any variants genotyped as . + +``` + +If hap.py still crashes when processing a genome VCF, we provide separate +options to perform on-the-fly conversion of a genome VCF to a standard VCF +by removing all alleles and non-variant blocks. Note that this +also removes some fields from the INFO column. These options should only +be used on genome VCFs since attempting to convert a standard VCF will +cause all biallelic variants to be filtered out (most of them). + +``` + --convert-gvcf-truth Convert the truth genome VCF to a standard VCF. + --convert-gvcf-query Convert the query genome VCF to a standard VCF. + +``` + +## Additional outputs ``` -V, --write-vcf @@ -294,7 +324,7 @@ for truth and query calls (TP/FP/FN/N/UNK). See the [GA4GH page above](https://github.com/ga4gh/benchmarking-tools/blob/master/doc/ref-impl/README.md) for more details. -## Comparison Engines +## Comparison engines Hap.py can produce benchmarking results and ROCs using different comparison methods which implement the [GA4GH intermediate format](https://github.com/ga4gh/benchmarking-tools/blob/master/doc/ref-impl/README.md). @@ -329,7 +359,7 @@ These methods are: There are a quite a few differences between these comparison modes which are reflected in the ROC outputs. Some examples for this are shown in [microbench.md](microbench.md). -## Stratification via Bed Regions +## Stratification via BED regions Hap.py can compute stratified counts using bed regions of interest. One set of such regions can be found here: @@ -402,7 +432,7 @@ If the confident regions only contain the padding base, we can fix them using th `--adjust-conf-regions` command line option. This option will correctly pad all confident insertions. -## Internal Variant Normalisation and Haplotype Comparison +## Internal variant normalisation and haplotype comparison ``` -L, --leftshift Left-shift variants in their unary representation. This is off by default. @@ -440,7 +470,7 @@ many cases by this type of decomposition. The micro-benchmark example in [microbench.md](microbench.md) shows the effect of different pre-processing switches. -## ROC Curves +## ROC curves Hap.py can create data for ROC-style curves. Normally, it is preferable to calculate such curves based on the input variant representations, and not to perform any @@ -510,13 +540,13 @@ for a range of thresholds on QUAL (or the feature that was passed to --roc). ![](roc_table.png) -## Input Preprocessing using bcftools +## Input preprocessing using bcftools Hap.py has a range of options to control pre-processing separately for truth and query. Hap.py supports the same options as pre.py, which is described in [normalisation.md](normalisation.md). -## Haplotype Comparison Parameters +## Haplotype comparison parameters ``` -w WINDOW, --window-size WINDOW @@ -550,7 +580,7 @@ is to use vcfeval as a comparison engine instead. Reference-pad and expand the sequences generate haplotype blocks by this many basepairs left and right. This is useful for approximate block matching. -## Using RTG-Tools / VCFEval as the comparison engine +## Using RTG-Tools, VCFEval as the comparison engine RTG-Tools (see [https://github.com/RealTimeGenomics/rtg-tools](https://github.com/RealTimeGenomics/rtg-tools) provides a feature called "vcfeval" which performs complex variant comparisons. Hap.py @@ -587,7 +617,7 @@ hap.py truth.vcf.gz query.vcf.gz -f conf.bed.gz -o ./test -V --engine=vcfeval -- Most other command line arguments and outputs will work as before. -# Full List of Output Columns +# Full list of output columns Happy outputs a set of stratification columns, followed by metrics columns. Stratification columns may contain the placeholder "*" value, which indicates diff --git a/doc/normalisation.md b/doc/normalisation.md index 444ab98..2846f9d 100644 --- a/doc/normalisation.md +++ b/doc/normalisation.md @@ -16,7 +16,8 @@ usage: VCF preprocessor [-h] [--location LOCATIONS] [--pass-only] [-T TARGETS_BEDFILE] [-L] [-D] [--bcftools-norm] [--fixchr] [--no-fixchr] [--bcf] [-v] [-r REF] [-w WINDOW] [--threads THREADS] [--force-interactive] - [--logfile LOGFILE] [--verbose | --quiet] + [--logfile LOGFILE] [--verbose | --quiet] [--filter-nonref] + [--convert-gvcf-truth] [--convert-gvcf-query] input output ``` @@ -129,6 +130,28 @@ The default value is 10000, which should be sufficient for short reads. that size are not expected to interfere). ``` +The presence of the symbolic allele in genome VCFs can cause problems +for hap.py, especially if it is part of a genotype. As a workaround, we +provide several options. Since variants genotyped as cannot be +sensibly scored, the we provide the following option, which is safe to use +on both genome VCFs and standard VCFs: + +``` + --filter-nonref Remove any variants genotyped as . +``` + +If hap.py still crashes when processing a genome VCF, we provide separate +options to perform on-the-fly conversion of a genome VCF to a standard VCF +by removing all alleles and non-variant blocks. Note that this +also removes some fields from the INFO column. These options should only +be used on genome VCFs since attempting to convert a standard VCF will +cause all biallelic variants to be filtered out (most of them). + +``` + --convert-gvcf-truth Convert the truth genome VCF to a standard VCF. + --convert-gvcf-query Convert the query genome VCF to a standard VCF. +``` + Runtime behaviour can also be controlled as follows: ``` diff --git a/example/sompy/FP_admix_grch38.bed.gz b/example/sompy/FP_admix_grch38.bed.gz new file mode 100644 index 0000000..97c86fd Binary files /dev/null and b/example/sompy/FP_admix_grch38.bed.gz differ diff --git a/example/sompy/PG_admix_truth_grch38_indels.vcf.gz b/example/sompy/PG_admix_truth_grch38_indels.vcf.gz new file mode 100644 index 0000000..01b1a6b Binary files /dev/null and b/example/sompy/PG_admix_truth_grch38_indels.vcf.gz differ diff --git a/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz b/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz new file mode 100644 index 0000000..f563c25 Binary files /dev/null and b/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz differ diff --git a/example/sompy/features.csv b/example/sompy/reference_outputs/features.csv similarity index 100% rename from example/sompy/features.csv rename to example/sompy/reference_outputs/features.csv diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.features.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.features.csv new file mode 100644 index 0000000..6315a80 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.features.csv @@ -0,0 +1,2659 @@ +,CHROM,POS,tag,REF,REF.truth,ALT,ALT.truth,EVS,FILTER,I.DP_normal,I.DP_tumor,I.T_ALT_RATE,I.count,I.tag,IC,IHP,INDELTYPE,LENGTH,MQ,MQ0,NT,NT_REF,N_AF,N_BCN,N_DP,N_DP_RATE,N_FDP,QSI_NT,QUAL,RC,RU,RU_LEN,S.1.VT,SGT,T_AF,T_BCN,T_DP,T_DP_RATE,T_FDP +0,chr22,11626593,TP,AGGCAGGCAGGCAGGCT,AGGCAGGCAGGCAGGCT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,2.44000000,42.00000000,0.00000000,1.00000000,GGCAGGCAGGCAGGCT,16.00000000,,ref->het,0.07333333,0.00000000,158.00000000,6.99115044,5.28000000 +1,chr22,12516913,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,53.00000000,2.34513274,0.00000000,58.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.18320611,0.00000000,135.00000000,5.97345133,2.02000000 +2,chr22,12565859,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.26415094,0.00000000,58.00000000,2.56637168,0.01000000 +3,chr22,12629905,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,61.00000000,2.69911504,0.64000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.09090909,0.00000000,171.00000000,7.56637168,1.17000000 +4,chr22,15319915,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.01000000,46.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18292683,0.00000000,88.00000000,3.89380531,0.00000000 +5,chr22,15376115,TP,ACACT,ACACT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.22000000,36.00000000,0.00000000,1.00000000,CACT,4.00000000,,ref->het,0.19736842,0.00000000,78.00000000,3.45132743,0.45000000 +6,chr22,15483810,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,35.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.10000000,0.00000000,60.00000000,2.65486726,0.01000000 +7,chr22,16127327,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,62.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.58333333,0.00000000,68.00000000,3.00884956,1.17000000 +8,chr22,16127710,TP,A,A,ACC,ACC,-1.00000000,,,,1.00000000,,,12.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.48000000,34.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.29411765,0.00000000,59.00000000,2.61061947,9.45000000 +9,chr22,16129058,TP,T,T,TTG,TTG,-1.00000000,,,,1.00000000,,,1.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.35000000,36.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.48275862,0.00000000,61.00000000,2.69911504,1.42000000 +10,chr22,16129447,TP,GCAA,GCAA,G,G,-1.00000000,,,,1.00000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.20000000,71.00000000,0.00000000,5.00000000,CAA,3.00000000,,ref->het,0.38666667,0.00000000,83.00000000,3.67256637,1.28000000 +11,chr22,16134104,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.27000000,63.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.46753247,0.00000000,85.00000000,3.76106195,1.41000000 +12,chr22,16153759,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.39000000,49.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.44615385,0.00000000,69.00000000,3.05309735,1.60000000 +13,chr22,16156456,TP,G,G,GAGAT,GAGAT,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.07000000,52.00000000,0.00000000,1.00000000,AGAT,4.00000000,,ref->het,0.39583333,0.00000000,56.00000000,2.47787611,0.89000000 +14,chr22,16157748,TP,TTTC,TTTC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.93000000,55.00000000,0.00000000,1.00000000,TTC,3.00000000,,ref->het,0.47945205,0.00000000,77.00000000,3.40707965,0.79000000 +15,chr22,16164202,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,15.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.25000000,48.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,80.00000000,3.53982301,9.34000000 +16,chr22,16165894,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.88000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.44615385,0.00000000,75.00000000,3.31858407,1.25000000 +17,chr22,16170229,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,9.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.42000000,40.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.41379310,0.00000000,74.00000000,3.27433628,3.26000000 +18,chr22,16170254,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,8.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.30000000,31.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.39655172,0.00000000,69.00000000,3.05309735,3.05000000 +19,chr22,16173878,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,12.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.52000000,62.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.52777778,0.00000000,83.00000000,3.67256637,3.37000000 +20,chr22,16189742,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.41000000,42.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.47169811,0.00000000,61.00000000,2.69911504,4.82000000 +21,chr22,16191878,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,54.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.45454545,0.00000000,73.00000000,3.23008850,0.11000000 +22,chr22,16193297,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.06000000,34.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.47222222,0.00000000,79.00000000,3.49557522,6.86000000 +23,chr22,16193385,TP,T,T,TAA,TAA,-1.00000000,,,,1.00000000,,,16.00000000,20.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,57.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.50000000,0.00000000,81.00000000,3.58407080,9.27000000 +24,chr22,16198949,TP,TTA,TTA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.73000000,52.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.42682927,0.00000000,87.00000000,3.84955752,3.13000000 +25,chr22,16202010,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.49000000,32.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.48387097,0.00000000,73.00000000,3.23008850,0.76000000 +26,chr22,16204770,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,1.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.77000000,44.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.51351351,0.00000000,79.00000000,3.49557522,1.50000000 +27,chr22,16209804,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,38.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.46428571,0.00000000,88.00000000,3.89380531,1.12000000 +28,chr22,16214713,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,14.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.36000000,44.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.47457627,0.00000000,70.00000000,3.09734513,5.88000000 +29,chr22,16218366,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.78000000,32.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.57500000,0.00000000,52.00000000,2.30088496,3.59000000 +30,chr22,16224468,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.05000000,72.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.31746032,0.00000000,71.00000000,3.14159292,1.70000000 +31,chr22,16226497,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.68000000,55.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.42857143,0.00000000,74.00000000,3.27433628,2.67000000 +32,chr22,16236484,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.48000000,46.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.33898305,0.00000000,65.00000000,2.87610619,0.42000000 +33,chr22,16242528,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.64000000,63.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.42592593,0.00000000,62.00000000,2.74336283,1.96000000 +34,chr22,16243560,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.37000000,45.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18644068,0.00000000,62.00000000,2.74336283,0.49000000 +35,chr22,16246800,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.66000000,58.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,88.00000000,3.89380531,0.45000000 +36,chr22,16247913,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,2.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.60000000,38.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.49253731,0.00000000,76.00000000,3.36283186,2.23000000 +37,chr22,16253887,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.06000000,43.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.56060606,0.00000000,71.00000000,3.14159292,1.06000000 +38,chr22,16254546,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.13000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.42592593,0.00000000,57.00000000,2.52212389,4.71000000 +39,chr22,16263722,TP,A,A,AATTCCATTCAATGATGATTCCATTTG,AATTCCATTCAATGATGATTCCATTTG,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,26.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,33.00000000,0.00000000,0.00000000,ATTCCATTCAATGATGATTCCATTTG,26.00000000,,ref->het,0.55555556,0.00000000,81.00000000,3.58407080,1.56000000 +40,chr22,16267128,TP,AATG,AATG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.28000000,55.00000000,0.00000000,2.00000000,ATG,3.00000000,,ref->het,0.51282051,0.00000000,82.00000000,3.62831858,0.87000000 +41,chr22,16270815,TP,C,C,CAGA,CAGA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.60000000,84.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.41666667,0.00000000,79.00000000,3.49557522,1.32000000 +42,chr22,16271237,TP,A,A,ATC,ATC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,70.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.46428571,0.00000000,86.00000000,3.80530973,0.08000000 +43,chr22,16360802,TP,AAATGG,AAATGG,A,A,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.19000000,52.00000000,0.00000000,6.00000000,AATGG,5.00000000,,ref->het,0.28301887,0.00000000,67.00000000,2.96460177,3.37000000 +44,chr22,16388683,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.00000000,53.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.42372881,0.00000000,67.00000000,2.96460177,0.81000000 +45,chr22,16396135,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.43000000,34.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.39583333,0.00000000,60.00000000,2.65486726,1.83000000 +46,chr22,16416607,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,39.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.15294118,0.00000000,89.00000000,3.93805310,1.45000000 +47,chr22,16423118,TP,TAC,TAC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.48000000,51.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,1.56000000 +48,chr22,16463060,TP,TAAC,TAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.06000000,50.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.25925926,0.00000000,59.00000000,2.61061947,0.85000000 +49,chr22,16582231,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.37000000,52.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.23809524,0.00000000,69.00000000,3.05309735,0.51000000 +50,chr22,16653688,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.29000000,48.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.18918919,0.00000000,80.00000000,3.53982301,2.25000000 +51,chr22,16658497,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.82000000,55.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.32954545,0.00000000,96.00000000,4.24778761,3.21000000 +52,chr22,16660339,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.63000000,35.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.20689655,0.00000000,68.00000000,3.00884956,6.21000000 +53,chr22,16685303,TP,T,T,TTAAA,TTAAA,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.87000000,47.00000000,0.00000000,7.00000000,TAAA,4.00000000,,ref->het,0.26415094,0.00000000,91.00000000,4.02654867,1.53000000 +54,chr22,16702467,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.30000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.21739130,0.00000000,48.00000000,2.12389381,0.68000000 +55,chr22,16724123,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.71000000,47.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.26666667,0.00000000,82.00000000,3.62831858,2.05000000 +56,chr22,16724166,TP,TATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,TATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,46.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.28000000,38.00000000,0.00000000,1.00000000,ATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,46.00000000,,ref->het,0.17283951,0.00000000,93.00000000,4.11504425,1.76000000 +57,chr22,16731898,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.03000000,51.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.20731707,0.00000000,86.00000000,3.80530973,1.21000000 +58,chr22,16739263,TP,ACAAT,ACAAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,52.00000000,0.00000000,2.00000000,CAAT,4.00000000,,ref->het,0.24657534,0.00000000,78.00000000,3.45132743,0.15000000 +59,chr22,16742964,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.83000000,48.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19512195,0.00000000,85.00000000,3.76106195,0.98000000 +60,chr22,16767395,TP,AAAAAAGAAT,AAAAAAGAAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.68000000,52.00000000,0.00000000,2.00000000,AAAAAGAAT,9.00000000,,ref->het,0.27586207,0.00000000,71.00000000,3.14159292,0.43000000 +61,chr22,16772632,TP,TTG,TTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.72000000,63.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.24324324,0.00000000,80.00000000,3.53982301,0.28000000 +62,chr22,16778596,TP,AAT,AAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.02000000,36.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.14285714,0.00000000,84.00000000,3.71681416,1.66000000 +63,chr22,16795975,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,2.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.03000000,40.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.49367089,0.00000000,83.00000000,3.67256637,2.84000000 +64,chr22,16800207,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.37000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.51219512,0.00000000,87.00000000,3.84955752,0.60000000 +65,chr22,16802491,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,11.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.98000000,58.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.44155844,0.00000000,92.00000000,4.07079646,3.56000000 +66,chr22,16839250,TP,A,A,ATAGAC,ATAGAC,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.09000000,45.00000000,0.00000000,0.00000000,TAGAC,5.00000000,,ref->het,0.51282051,0.00000000,83.00000000,3.67256637,1.13000000 +67,chr22,16845002,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.26000000,84.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.43939394,0.00000000,70.00000000,3.09734513,1.95000000 +68,chr22,16845585,TP,T,T,TCA,TCA,-1.00000000,,,,1.00000000,,,15.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.68000000,55.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.21875000,0.00000000,95.00000000,4.20353982,3.12000000 +69,chr22,16855333,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.71000000,49.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.38461538,0.00000000,93.00000000,4.11504425,9.65000000 +70,chr22,16856297,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.78000000,77.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.47500000,0.00000000,99.00000000,4.38053097,2.44000000 +71,chr22,16906305,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.41176471,0.00000000,52.00000000,2.30088496,1.16000000 +72,chr22,16907283,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.42000000,41.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.16901408,0.00000000,77.00000000,3.40707965,0.80000000 +73,chr22,16930379,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.41000000,55.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.26562500,0.00000000,70.00000000,3.09734513,0.90000000 +74,chr22,16934516,TP,ATTTCAGTATTTAAATAC,ATTTCAGTATTTAAATAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.13000000,44.00000000,0.00000000,1.00000000,TTTCAGTATTTAAATAC,17.00000000,,ref->het,0.17525773,0.00000000,95.00000000,4.20353982,1.93000000 +75,chr22,16940689,TP,T,T,TGTGTGC,TGTGTGC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.08000000,52.00000000,0.00000000,0.00000000,GTGTGC,6.00000000,,ref->het,0.26415094,0.00000000,59.00000000,2.61061947,4.46000000 +76,chr22,16940788,TP,CATATG,CATATG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.54000000,61.00000000,0.00000000,1.00000000,ATATG,5.00000000,,ref->het,0.28000000,0.00000000,78.00000000,3.45132743,1.60000000 +77,chr22,16941310,TP,TTAA,TTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,51.00000000,0.00000000,2.00000000,TAA,3.00000000,,ref->het,0.27777778,0.00000000,76.00000000,3.36283186,0.31000000 +78,chr22,16950177,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,1.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.50000000,57.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.34177215,0.00000000,92.00000000,4.07079646,11.67000000 +79,chr22,16952634,TP,A,A,ATC,ATC,-1.00000000,,,,1.00000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.25000000,54.00000000,0.00000000,7.00000000,TC,2.00000000,,ref->het,0.43478261,0.00000000,77.00000000,3.40707965,1.14000000 +80,chr22,16957181,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.18000000,77.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.48484848,0.00000000,67.00000000,2.96460177,1.18000000 +81,chr22,16975989,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.52000000,74.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.48101266,0.00000000,96.00000000,4.24778761,1.87000000 +82,chr22,17000465,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.63000000,48.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.51666667,0.00000000,68.00000000,3.00884956,1.26000000 +83,chr22,17117218,TP,G,G,GGGAGA,GGGAGA,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.22000000,44.00000000,0.00000000,2.00000000,GGAGA,5.00000000,,ref->het,0.20779221,0.00000000,87.00000000,3.84955752,1.69000000 +84,chr22,17117269,TP,CAATT,CAATT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.43000000,39.00000000,0.00000000,1.00000000,AATT,4.00000000,,ref->het,0.17391304,0.00000000,76.00000000,3.36283186,0.45000000 +85,chr22,17161245,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,17.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.84000000,35.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.23255814,0.00000000,73.00000000,3.23008850,11.26000000 +86,chr22,17173105,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.71000000,69.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.24705882,0.00000000,92.00000000,4.07079646,1.63000000 +87,chr22,17192829,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.05000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.47761194,0.00000000,77.00000000,3.40707965,3.40000000 +88,chr22,17193678,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.00000000,37.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.47727273,0.00000000,59.00000000,2.61061947,8.54000000 +89,chr22,17320093,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.39000000,49.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.33333333,0.00000000,63.00000000,2.78761062,0.81000000 +90,chr22,17322838,TP,TCAGA,TCAGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.78000000,36.00000000,0.00000000,1.00000000,CAGA,4.00000000,,ref->het,0.17187500,0.00000000,73.00000000,3.23008850,5.07000000 +91,chr22,17324174,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.99000000,37.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,88.00000000,3.89380531,7.08000000 +92,chr22,17324898,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.90000000,55.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.29090909,0.00000000,61.00000000,2.69911504,1.80000000 +93,chr22,17325232,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.77000000,55.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.22222222,0.00000000,64.00000000,2.83185841,0.92000000 +94,chr22,17327899,TP,CAAACATAT,CAAACATAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.22000000,43.00000000,0.00000000,1.00000000,AAACATAT,8.00000000,,ref->het,0.17021277,0.00000000,58.00000000,2.56637168,0.49000000 +95,chr22,17331945,TP,A,A,ACT,ACT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.41000000,60.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,1.02000000 +96,chr22,17386363,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.08000000,34.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24657534,0.00000000,87.00000000,3.84955752,0.72000000 +97,chr22,17390830,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.45000000,37.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.17333333,0.00000000,87.00000000,3.84955752,0.59000000 +98,chr22,17398203,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.20000000,32.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.17647059,0.00000000,97.00000000,4.29203540,4.29000000 +99,chr22,17417326,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.29000000,45.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.23287671,0.00000000,83.00000000,3.67256637,0.77000000 +100,chr22,17421871,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.33000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23076923,0.00000000,59.00000000,2.61061947,4.08000000 +101,chr22,17467797,TP,A,A,AAGAG,AAGAG,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.19000000,42.00000000,0.00000000,6.00000000,AG,2.00000000,,ref->het,0.18840580,0.00000000,78.00000000,3.45132743,1.16000000 +102,chr22,17470392,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,17.00000000,25.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,4.61000000,32.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.28260870,0.00000000,71.00000000,3.14159292,9.20000000 +103,chr22,17470691,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,44.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26315789,0.00000000,79.00000000,3.49557522,1.35000000 +104,chr22,17510470,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.99000000,62.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.31428571,0.00000000,86.00000000,3.80530973,4.92000000 +105,chr22,17513921,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.57000000,48.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.18604651,0.00000000,91.00000000,4.02654867,1.79000000 +106,chr22,17516282,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.04000000,66.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.30864198,0.00000000,88.00000000,3.89380531,1.48000000 +107,chr22,17516631,TP,T,T,TTTGCTGTTG,TTTGCTGTTG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.29000000,58.00000000,0.00000000,0.00000000,TTGCTGTTG,9.00000000,,ref->het,0.29230769,0.00000000,71.00000000,3.14159292,1.27000000 +108,chr22,17517246,TP,ATCTC,ATCTC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.18000000,49.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.20338983,0.00000000,62.00000000,2.74336283,0.83000000 +109,chr22,17518129,TP,TCTA,TCTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.03000000,48.00000000,0.00000000,1.00000000,CTA,3.00000000,,ref->het,0.19354839,0.00000000,102.00000000,4.51327434,1.44000000 +110,chr22,17519794,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.62000000,38.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,78.00000000,3.45132743,4.82000000 +111,chr22,17528190,TP,TGTG,TGTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.41000000,59.00000000,0.00000000,1.00000000,GTG,3.00000000,,ref->het,0.27027027,0.00000000,82.00000000,3.62831858,2.10000000 +112,chr22,17530168,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.50000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23214286,0.00000000,75.00000000,3.31858407,3.14000000 +113,chr22,17535687,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.30000000,50.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.25675676,0.00000000,88.00000000,3.89380531,4.23000000 +114,chr22,17535730,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,0.27000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22784810,0.00000000,91.00000000,4.02654867,2.88000000 +115,chr22,17572413,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.79000000,37.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.18518519,0.00000000,61.00000000,2.69911504,8.65000000 +116,chr22,17574234,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,55.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26250000,0.00000000,88.00000000,3.89380531,1.44000000 +117,chr22,17581244,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,53.00000000,0.00000000,1.00000000,GT,2.00000000,,ref->het,0.25287356,0.00000000,91.00000000,4.02654867,2.81000000 +118,chr22,17603364,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.56000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,96.00000000,4.24778761,2.17000000 +119,chr22,17606008,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,58.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.32812500,0.00000000,72.00000000,3.18584071,0.34000000 +120,chr22,17640171,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,3.35000000,49.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.17647059,0.00000000,74.00000000,3.27433628,2.71000000 +121,chr22,17642597,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.86000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.26666667,0.00000000,86.00000000,3.80530973,5.28000000 +122,chr22,17703172,TP,T,T,TACACACACACAC,TACACACACACAC,-1.00000000,,,,0.50000000,,,14.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,51.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.25316456,0.00000000,86.00000000,3.80530973,0.66000000 +123,chr22,17720154,TP,T,T,TTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTC,TTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTC,-1.00000000,,,,0.50000000,,,15.00000000,7.00000000,1.00000000,32.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.27000000,42.00000000,0.00000000,7.00000000,TTTC,4.00000000,,ref->het,0.21153846,0.00000000,66.00000000,2.92035398,1.28000000 +124,chr22,17740102,TP,GGCCACGCTCAACT,GGCCACGCTCAACT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.01000000,52.00000000,0.00000000,1.00000000,GCCACGCTCAACT,13.00000000,,ref->het,0.20270270,0.00000000,77.00000000,3.40707965,1.94000000 +125,chr22,17742274,TP,TGGA,TGGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.26000000,35.00000000,0.00000000,1.00000000,GGA,3.00000000,,ref->het,0.12903226,0.00000000,64.00000000,2.83185841,1.50000000 +126,chr22,17756950,TP,TTAAC,TTAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.00000000,46.00000000,0.00000000,1.00000000,TAAC,4.00000000,,ref->het,0.29508197,0.00000000,61.00000000,2.69911504,1.35000000 +127,chr22,17757004,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.01000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28767123,0.00000000,75.00000000,3.31858407,0.20000000 +128,chr22,17769042,TP,AAAAT,AAAAT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,42.00000000,0.00000000,8.00000000,AAAT,4.00000000,,ref->het,0.18918919,0.00000000,107.00000000,4.73451327,5.05000000 +129,chr22,17775002,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.96000000,31.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.18840580,0.00000000,79.00000000,3.49557522,3.76000000 +130,chr22,17799949,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,18.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.48000000,45.00000000,0.00000000,17.00000000,AC,2.00000000,,ref->het,0.26388889,0.00000000,91.00000000,4.02654867,3.23000000 +131,chr22,17802061,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.21000000,34.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,67.00000000,2.96460177,4.22000000 +132,chr22,17809629,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.12000000,35.00000000,0.00000000,5.00000000,AAACA,5.00000000,,ref->het,0.13432836,0.00000000,96.00000000,4.24778761,1.25000000 +133,chr22,17821024,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.96000000,38.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.11904762,0.00000000,89.00000000,3.93805310,2.83000000 +134,chr22,17826202,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.87000000,58.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23943662,0.00000000,78.00000000,3.45132743,2.11000000 +135,chr22,17826274,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,48.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20289855,0.00000000,78.00000000,3.45132743,0.29000000 +136,chr22,17826593,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.40000000,48.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,99.00000000,4.38053097,1.75000000 +137,chr22,17826701,TP,T,T,TGAGAA,TGAGAA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.76000000,48.00000000,0.00000000,2.00000000,GAGAA,5.00000000,,ref->het,0.18055556,0.00000000,80.00000000,3.53982301,1.45000000 +138,chr22,17826882,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.65000000,58.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.25301205,0.00000000,91.00000000,4.02654867,2.92000000 +139,chr22,17829894,TP,ACTG,ACTG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,65.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.33870968,0.00000000,69.00000000,3.05309735,0.76000000 +140,chr22,17831253,TP,CCCT,CCCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.16000000,53.00000000,0.00000000,2.00000000,CCT,3.00000000,,ref->het,0.24137931,0.00000000,93.00000000,4.11504425,1.04000000 +141,chr22,17833310,TP,C,C,CCTG,CCTG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.05000000,49.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.24691358,0.00000000,86.00000000,3.80530973,0.62000000 +142,chr22,17838498,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.98000000,37.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.08791209,0.00000000,97.00000000,4.29203540,1.56000000 +143,chr22,17839324,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.68000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21818182,0.00000000,67.00000000,2.96460177,15.70000000 +144,chr22,17843852,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,14.00000000,12.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.42000000,32.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,79.00000000,3.49557522,2.39000000 +145,chr22,17846396,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,2.39000000,37.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.17948718,0.00000000,87.00000000,3.84955752,3.09000000 +146,chr22,17854224,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,38.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.14705882,0.00000000,74.00000000,3.27433628,2.94000000 +147,chr22,17860129,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.30000000,48.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.24675325,0.00000000,85.00000000,3.76106195,1.89000000 +148,chr22,17865085,TP,TTTTATTTA,TTTTATTTA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.33000000,33.00000000,0.00000000,11.00000000,TTTA,4.00000000,,ref->het,0.17307692,0.00000000,81.00000000,3.58407080,1.05000000 +149,chr22,17867234,TP,TCAGA,TCAGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.24000000,32.00000000,0.00000000,2.00000000,CAGA,4.00000000,,ref->het,0.13636364,0.00000000,75.00000000,3.31858407,2.74000000 +150,chr22,17888444,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.26000000,55.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.26582278,0.00000000,83.00000000,3.67256637,1.82000000 +151,chr22,17891256,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.65000000,39.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20270270,0.00000000,83.00000000,3.67256637,4.79000000 +152,chr22,17898107,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.52000000,31.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.18666667,0.00000000,84.00000000,3.71681416,2.78000000 +153,chr22,17907218,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.70000000,33.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,4.88000000 +154,chr22,17911026,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.12000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,84.00000000,3.71681416,1.97000000 +155,chr22,17911335,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.04000000,49.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.30303030,0.00000000,80.00000000,3.53982301,2.96000000 +156,chr22,17914267,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.10000000,56.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.21686747,0.00000000,90.00000000,3.98230088,3.36000000 +157,chr22,17914431,TP,T,T,TTGCAGATGGGGAAAG,TTGCAGATGGGGAAAG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.07000000,41.00000000,0.00000000,1.00000000,TGCAGATGGGGAAAG,15.00000000,,ref->het,0.18333333,0.00000000,68.00000000,3.00884956,0.70000000 +158,chr22,17945008,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.19000000,31.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.20967742,0.00000000,75.00000000,3.31858407,8.57000000 +159,chr22,17950421,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.56000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,73.00000000,3.23008850,17.24000000 +160,chr22,17958133,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.28000000,53.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.21176471,0.00000000,88.00000000,3.89380531,2.09000000 +161,chr22,17967486,TP,A,A,ACACACC,ACACACC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.26000000,42.00000000,0.00000000,0.00000000,CACACC,6.00000000,,ref->het,0.17333333,0.00000000,80.00000000,3.53982301,1.35000000 +162,chr22,17970800,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.36000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17500000,0.00000000,87.00000000,3.84955752,0.53000000 +163,chr22,17979784,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.77000000,33.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,79.00000000,3.49557522,4.74000000 +164,chr22,17981516,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.47000000,49.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,82.00000000,3.62831858,1.23000000 +165,chr22,17987803,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.07000000,46.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,88.00000000,3.89380531,1.24000000 +166,chr22,17988424,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.04000000,52.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.20833333,0.00000000,78.00000000,3.45132743,1.24000000 +167,chr22,17998562,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.56000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25373134,0.00000000,72.00000000,3.18584071,5.55000000 +168,chr22,18007051,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.26000000,43.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,57.00000000,2.52212389,1.09000000 +169,chr22,18009208,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,37.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.10389610,0.00000000,86.00000000,3.80530973,2.60000000 +170,chr22,18011732,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.02000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22807018,0.00000000,71.00000000,3.14159292,1.74000000 +171,chr22,18035443,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,33.00000000,0.00000000,7.00000000,AAAT,4.00000000,,ref->het,0.18867925,0.00000000,76.00000000,3.36283186,1.60000000 +172,chr22,18098767,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.32000000,59.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.21794872,0.00000000,88.00000000,3.89380531,2.01000000 +173,chr22,18116229,TP,A,A,AGCCATTC,AGCCATTC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.49000000,57.00000000,0.00000000,1.00000000,GCCATTC,7.00000000,,ref->het,0.27906977,0.00000000,98.00000000,4.33628319,1.60000000 +174,chr22,18962801,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,40.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,62.00000000,2.74336283,1.30000000 +175,chr22,18969834,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.00000000,40.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,55.00000000,2.43362832,1.72000000 +176,chr22,18988513,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.44000000,41.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.30434783,0.00000000,80.00000000,3.53982301,1.85000000 +177,chr22,19004997,TP,C,C,CAG,CAG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.04000000,58.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,2.02000000 +178,chr22,19004999,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.04000000,59.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,2.06000000 +179,chr22,19007461,TP,TTGTGTGTGTG,TTGTGTGTGTG,T,T,-1.00000000,,,,0.50000000,,,18.00000000,4.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.24000000,35.00000000,0.00000000,23.00000000,TG,2.00000000,,ref->het,0.12500000,0.00000000,100.00000000,4.42477876,2.91000000 +180,chr22,19011896,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.58000000,32.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.23636364,0.00000000,76.00000000,3.36283186,10.48000000 +181,chr22,19012395,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.37000000,43.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.18181818,0.00000000,78.00000000,3.45132743,3.47000000 +182,chr22,19013974,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.41000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,66.00000000,2.92035398,1.70000000 +183,chr22,19021099,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.67000000,78.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.48148148,0.00000000,56.00000000,2.47787611,1.48000000 +184,chr22,19022683,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.01000000,46.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.44000000,0.00000000,55.00000000,2.43362832,0.31000000 +185,chr22,19023254,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.65000000,31.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.13636364,0.00000000,75.00000000,3.31858407,9.69000000 +186,chr22,19027733,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.13000000,64.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.34375000,0.00000000,77.00000000,3.40707965,1.19000000 +187,chr22,19028875,TP,AAAAAC,AAAAAC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.77000000,31.00000000,0.00000000,4.00000000,AAAAC,5.00000000,,ref->het,0.07547170,0.00000000,71.00000000,3.14159292,2.26000000 +188,chr22,19030493,TP,CTGGGCCTTTGGGCCTTGGGTCTGGG,CTGGGCCTTTGGGCCTTGGGTCTGGG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.50000000,38.00000000,0.00000000,2.00000000,TGGGCCTTTGGGCCTTGGGTCTGGG,25.00000000,,ref->het,0.14814815,0.00000000,67.00000000,2.96460177,0.11000000 +189,chr22,19033420,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,41.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.26562500,0.00000000,80.00000000,3.53982301,3.37000000 +190,chr22,19034865,TP,AGGCGAGCATGATGCCAGG,AGGCGAGCATGATGCCAGG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.96000000,43.00000000,0.00000000,1.00000000,GGCGAGCATGATGCCAGG,18.00000000,,ref->het,0.16000000,0.00000000,74.00000000,3.27433628,1.92000000 +191,chr22,19037462,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.24000000,51.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,70.00000000,3.09734513,1.90000000 +192,chr22,19039899,TP,AAGG,AAGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.76000000,49.00000000,0.00000000,2.00000000,AGG,3.00000000,,ref->het,0.26027397,0.00000000,78.00000000,3.45132743,1.25000000 +193,chr22,19040729,TP,CACT,CACT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.44000000,44.00000000,0.00000000,1.00000000,ACT,3.00000000,,ref->het,0.24096386,0.00000000,88.00000000,3.89380531,0.03000000 +194,chr22,19042981,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.88000000,65.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.31250000,0.00000000,84.00000000,3.71681416,1.79000000 +195,chr22,19043702,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.23000000,44.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,81.00000000,3.58407080,3.45000000 +196,chr22,19045365,TP,T,T,TAAAC,TAAAC,-1.00000000,,,,1.00000000,,,3.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.69000000,72.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.55223881,0.00000000,81.00000000,3.58407080,2.26000000 +197,chr22,19046234,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,59.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.53521127,0.00000000,82.00000000,3.62831858,2.30000000 +198,chr22,19052281,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.71000000,35.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.19672131,0.00000000,64.00000000,2.83185841,2.05000000 +199,chr22,19052609,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.54000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.39655172,0.00000000,71.00000000,3.14159292,3.53000000 +200,chr22,19054227,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.42000000,41.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.12790698,0.00000000,92.00000000,4.07079646,0.30000000 +201,chr22,19054741,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.39000000,53.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.57627119,0.00000000,77.00000000,3.40707965,4.91000000 +202,chr22,19057761,TP,C,C,CCTGT,CCTGT,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,34.00000000,0.00000000,0.00000000,CTGT,4.00000000,,ref->het,0.46875000,0.00000000,68.00000000,3.00884956,0.53000000 +203,chr22,19058115,TP,GCT,GCT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.24000000,47.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.22972973,0.00000000,80.00000000,3.53982301,3.13000000 +204,chr22,19063086,TP,T,T,TCCATGTC,TCCATGTC,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.02000000,34.00000000,0.00000000,0.00000000,CCATGTC,7.00000000,,ref->het,0.43661972,0.00000000,72.00000000,3.18584071,1.90000000 +205,chr22,19065956,TP,A,A,ATG,ATG,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,36.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.46739130,0.00000000,102.00000000,4.51327434,0.91000000 +206,chr22,19066433,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.31000000,43.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24358974,0.00000000,91.00000000,4.02654867,5.46000000 +207,chr22,19067692,TP,CTAAATAAA,CTAAATAAA,C,C,-1.00000000,,,,1.00000000,,,7.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.93000000,61.00000000,0.00000000,9.00000000,TAAA,4.00000000,,ref->het,0.41509434,0.00000000,75.00000000,3.31858407,0.31000000 +208,chr22,19074412,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.38000000,38.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,62.00000000,2.74336283,7.77000000 +209,chr22,19076141,TP,T,T,TTTTTA,TTTTTA,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.44000000,77.00000000,0.00000000,0.00000000,TTTTA,5.00000000,,ref->het,0.32098765,0.00000000,86.00000000,3.80530973,3.08000000 +210,chr22,19077832,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.39000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,82.00000000,3.62831858,5.33000000 +211,chr22,19082184,TP,GACT,GACT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.06000000,38.00000000,0.00000000,1.00000000,ACT,3.00000000,,ref->het,0.15000000,0.00000000,65.00000000,2.87610619,7.37000000 +212,chr22,19083086,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,14.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.02857143,0.00000000,41.00000000,1.81415929,3.53000000,37.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.48387097,0.00000000,78.00000000,3.45132743,5.90000000 +213,chr22,19090811,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.87000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.48611111,0.00000000,78.00000000,3.45132743,2.69000000 +214,chr22,19091079,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.45000000,101.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.47435897,0.00000000,82.00000000,3.62831858,1.16000000 +215,chr22,19092897,TP,AGAG,AGAG,A,A,-1.00000000,,,,1.00000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.65000000,70.00000000,0.00000000,5.00000000,GAG,3.00000000,,ref->het,0.51428571,0.00000000,79.00000000,3.49557522,4.09000000 +216,chr22,19092988,TP,AAGAAG,AAGAAG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.77000000,62.00000000,0.00000000,2.00000000,AGAAG,5.00000000,,ref->het,0.43750000,0.00000000,83.00000000,3.67256637,2.77000000 +217,chr22,19094007,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.81000000,42.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24705882,0.00000000,97.00000000,4.29203540,2.61000000 +218,chr22,19094017,TP,TAATA,TAATA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.75000000,56.00000000,0.00000000,2.00000000,AATA,4.00000000,,ref->het,0.24468085,0.00000000,100.00000000,4.42477876,2.67000000 +219,chr22,19094423,TP,TCAA,TCAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.00000000,50.00000000,0.00000000,2.00000000,CAA,3.00000000,,ref->het,0.18000000,0.00000000,109.00000000,4.82300885,2.86000000 +220,chr22,19095737,TP,C,C,CTTTT,CTTTT,-1.00000000,,,,1.00000000,,,11.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.17000000,72.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.46753247,0.00000000,88.00000000,3.89380531,2.52000000 +221,chr22,19099970,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.83000000,44.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.49206349,0.00000000,85.00000000,3.76106195,3.68000000 +222,chr22,19101446,TP,AAAGT,AAAGT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.05000000,56.00000000,0.00000000,1.00000000,AAGT,4.00000000,,ref->het,0.27397260,0.00000000,77.00000000,3.40707965,1.04000000 +223,chr22,19104903,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.65000000,56.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.27380952,0.00000000,86.00000000,3.80530973,1.55000000 +224,chr22,19110636,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.73000000,64.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.38709677,0.00000000,78.00000000,3.45132743,3.99000000 +225,chr22,19112222,TP,G,G,GAGGTCGCACCACTGCACTCCAGCCT,GAGGTCGCACCACTGCACTCCAGCCT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.58000000,59.00000000,0.00000000,1.00000000,AGGTCGCACCACTGCACTCCAGCCT,25.00000000,,ref->het,0.32000000,0.00000000,67.00000000,2.96460177,14.89000000 +226,chr22,19116954,TP,GATCACCTCCC,GATCACCTCCC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.71000000,46.00000000,0.00000000,2.00000000,ATCACCTCCC,10.00000000,,ref->het,0.18604651,0.00000000,95.00000000,4.20353982,2.01000000 +227,chr22,19123061,TP,C,C,CTGTA,CTGTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.34000000,55.00000000,0.00000000,0.00000000,TGTA,4.00000000,,ref->het,0.21428571,0.00000000,88.00000000,3.89380531,0.95000000 +228,chr22,19124847,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.67000000,59.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.25000000,0.00000000,87.00000000,3.84955752,1.67000000 +229,chr22,19141121,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.92000000,30.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22580645,0.00000000,74.00000000,3.27433628,8.51000000 +230,chr22,19158795,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.50000000,39.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,77.00000000,3.40707965,1.33000000 +231,chr22,19159306,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.72000000,44.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.17073171,0.00000000,86.00000000,3.80530973,3.32000000 +232,chr22,19186613,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.41000000,59.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.29032258,0.00000000,77.00000000,3.40707965,4.51000000 +233,chr22,19334946,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.00000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.26027397,0.00000000,76.00000000,3.36283186,1.38000000 +234,chr22,19623939,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.91000000,31.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.22857143,0.00000000,88.00000000,3.89380531,6.46000000 +235,chr22,19656123,TP,T,T,TAGAA,TAGAA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,52.00000000,0.00000000,1.00000000,AGAA,4.00000000,,ref->het,0.37878788,0.00000000,70.00000000,3.09734513,3.84000000 +236,chr22,19661508,TP,C,C,CCCTT,CCCTT,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.08000000,41.00000000,0.00000000,0.00000000,CCTT,4.00000000,,ref->het,0.16949153,0.00000000,78.00000000,3.45132743,2.81000000 +237,chr22,19687368,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,36.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.32894737,0.00000000,86.00000000,3.80530973,4.08000000 +238,chr22,19714645,TP,C,C,CTGCCCGCG,CTGCCCGCG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.21000000,54.00000000,0.00000000,2.00000000,TGCCCGCG,8.00000000,,ref->het,0.21621622,0.00000000,83.00000000,3.67256637,2.57000000 +239,chr22,19760224,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.99000000,50.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.32258065,0.00000000,65.00000000,2.87610619,3.54000000 +240,chr22,19798607,TP,CCTCCTGCCCAG,CCTCCTGCCCAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.79000000,49.00000000,0.00000000,2.00000000,CTCCTGCCCAG,11.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,1.94000000 +241,chr22,19815588,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.50000000,48.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.22972973,0.00000000,84.00000000,3.71681416,0.93000000 +242,chr22,19952656,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,3.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.84000000,47.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.17647059,0.00000000,83.00000000,3.67256637,4.74000000 +243,chr22,19973487,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,52.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.20481928,0.00000000,92.00000000,4.07079646,3.16000000 +244,chr22,20000499,TP,GCTCCCACCGC,GCTCCCACCGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.54000000,49.00000000,0.00000000,1.00000000,CTCCCACCGC,10.00000000,,ref->het,0.22680412,0.00000000,96.00000000,4.24778761,0.65000000 +245,chr22,20003865,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.25000000,50.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.17391304,0.00000000,101.00000000,4.46902655,1.53000000 +246,chr22,20142681,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.59000000,36.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.12820513,0.00000000,83.00000000,3.67256637,0.99000000 +247,chr22,20301349,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,5.28000000,32.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25423729,0.00000000,84.00000000,3.71681416,15.95000000 +248,chr22,20318463,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.05000000,42.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.16091954,0.00000000,99.00000000,4.38053097,3.02000000 +249,chr22,20378246,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.11000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.24358974,0.00000000,81.00000000,3.58407080,1.28000000 +250,chr22,20470349,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.35000000,30.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.27777778,0.00000000,84.00000000,3.71681416,8.62000000 +251,chr22,20516317,TP,A,A,AAATAAT,AAATAAT,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.26000000,43.00000000,0.00000000,8.00000000,AAT,3.00000000,,ref->het,0.25925926,0.00000000,72.00000000,3.18584071,1.71000000 +252,chr22,20562407,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,54.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.31578947,0.00000000,81.00000000,3.58407080,1.12000000 +253,chr22,20575768,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.41000000,47.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.21686747,0.00000000,91.00000000,4.02654867,3.56000000 +254,chr22,20576691,TP,TGGG,TGGG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.53000000,46.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.17142857,0.00000000,74.00000000,3.27433628,1.17000000 +255,chr22,20595015,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.07000000,37.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.15277778,0.00000000,80.00000000,3.53982301,1.13000000 +256,chr22,20617360,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,34.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.20430108,0.00000000,100.00000000,4.42477876,1.96000000 +257,chr22,20621310,TP,GGGT,GGGT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.45000000,48.00000000,0.00000000,2.00000000,GGT,3.00000000,,ref->het,0.21621622,0.00000000,80.00000000,3.53982301,1.62000000 +258,chr22,20625060,TP,AAC,AAC,A,A,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.47000000,42.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.21505376,0.00000000,104.00000000,4.60176991,2.46000000 +259,chr22,20649058,TP,G,G,GGAAGTGATCAGCTTAGA,GGAAGTGATCAGCTTAGA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.80000000,52.00000000,0.00000000,0.00000000,GAAGTGATCAGCTTAGA,17.00000000,,ref->het,0.20689655,0.00000000,94.00000000,4.15929204,2.51000000 +260,chr22,20659671,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.15000000,48.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,97.00000000,4.29203540,1.72000000 +261,chr22,20785943,TP,CATG,CATG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.56000000,45.00000000,0.00000000,1.00000000,ATG,3.00000000,,ref->het,0.18181818,0.00000000,85.00000000,3.76106195,1.55000000 +262,chr22,20799479,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.31000000,49.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.18666667,0.00000000,80.00000000,3.53982301,0.19000000 +263,chr22,20888311,TP,TCACACACA,TCACACACA,T,T,-1.00000000,,,,0.50000000,,,18.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.89000000,37.00000000,0.00000000,22.00000000,CA,2.00000000,,ref->het,0.15789474,0.00000000,80.00000000,3.53982301,3.40000000 +264,chr22,20947640,TP,TTTTTC,TTTTTC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.59000000,43.00000000,0.00000000,4.00000000,TTTTC,5.00000000,,ref->het,0.27692308,0.00000000,82.00000000,3.62831858,6.04000000 +265,chr22,20948695,TP,TTGCTGCGTTG,TTGCTGCGTTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.36000000,55.00000000,0.00000000,1.00000000,TGCTGCGTTG,10.00000000,,ref->het,0.20481928,0.00000000,86.00000000,3.80530973,0.10000000 +266,chr22,20977215,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,48.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.19230769,0.00000000,82.00000000,3.62831858,1.04000000 +267,chr22,21003609,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.56000000,32.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.35087719,0.00000000,64.00000000,2.83185841,5.22000000 +268,chr22,21045251,TP,A,A,ACAG,ACAG,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.44000000,40.00000000,0.00000000,2.00000000,CAG,3.00000000,,ref->het,0.14285714,0.00000000,80.00000000,3.53982301,1.37000000 +269,chr22,21046330,TP,A,A,ACCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,ACCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,33.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,41.00000000,0.00000000,0.00000000,CCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,33.00000000,,ref->het,0.15384615,0.00000000,83.00000000,3.67256637,0.81000000 +270,chr22,21066398,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.97000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.21978022,0.00000000,96.00000000,4.24778761,1.38000000 +271,chr22,21091194,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.88000000,34.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,4.45000000 +272,chr22,21092341,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.81000000,42.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.29090909,0.00000000,76.00000000,3.36283186,4.73000000 +273,chr22,21095508,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.81000000,68.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.25675676,0.00000000,81.00000000,3.58407080,1.07000000 +274,chr22,21103929,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.40000000,48.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,94.00000000,4.15929204,2.14000000 +275,chr22,21107241,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.07000000,43.00000000,0.00000000,3.00000000,CT,2.00000000,,ref->het,0.18032787,0.00000000,66.00000000,2.92035398,0.57000000 +276,chr22,21111042,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.58000000,43.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.20634921,0.00000000,74.00000000,3.27433628,4.31000000 +277,chr22,21229306,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.01000000,38.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.10169492,0.00000000,119.00000000,5.26548673,0.51000000 +278,chr22,21689385,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.53000000,56.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.21348315,0.00000000,96.00000000,4.24778761,1.73000000 +279,chr22,21689624,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.19000000,44.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.15000000,0.00000000,87.00000000,3.84955752,1.49000000 +280,chr22,21692064,TP,GTTTTC,GTTTTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.93000000,52.00000000,0.00000000,2.00000000,TTTTC,5.00000000,,ref->het,0.20224719,0.00000000,93.00000000,4.11504425,2.81000000 +281,chr22,21715587,TP,ATTT,ATTT,A,A,-1.00000000,,,,0.50000000,,,5.00000000,15.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.02000000,34.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.13636364,0.00000000,67.00000000,2.96460177,1.48000000 +282,chr22,21787058,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,2.74000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.17241379,0.00000000,97.00000000,4.29203540,3.29000000 +283,chr22,21789843,TP,T,T,TATAAC,TATAAC,-1.00000000,,,,0.50000000,,,10.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.75000000,46.00000000,0.00000000,9.00000000,ATAAC,5.00000000,,ref->het,0.24324324,0.00000000,105.00000000,4.64601770,2.07000000 +284,chr22,21791272,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.94000000,49.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,52.00000000,2.30088496,2.84000000 +285,chr22,21823977,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.64000000,34.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.21666667,0.00000000,75.00000000,3.31858407,2.11000000 +286,chr22,21851693,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.87000000,40.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.15294118,0.00000000,96.00000000,4.24778761,6.09000000 +287,chr22,21855306,TP,GTTCT,GTTCT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.12000000,54.00000000,0.00000000,2.00000000,TTCT,4.00000000,,ref->het,0.24096386,0.00000000,90.00000000,3.98230088,0.63000000 +288,chr22,21912940,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.95000000,55.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,78.00000000,3.45132743,3.43000000 +289,chr22,21914572,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.81000000,63.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.28169014,0.00000000,78.00000000,3.45132743,3.41000000 +290,chr22,21916591,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,7.19000000,40.00000000,0.00000000,11.00000000,C,1.00000000,,ref->het,0.30357143,0.00000000,87.00000000,3.84955752,17.81000000 +291,chr22,21940473,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,15.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.00000000,33.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.20588235,0.00000000,81.00000000,3.58407080,7.59000000 +292,chr22,21965385,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.22000000,43.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.21917808,0.00000000,77.00000000,3.40707965,1.61000000 +293,chr22,21971954,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,38.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.15476190,0.00000000,88.00000000,3.89380531,1.03000000 +294,chr22,22142065,TP,T,T,TAAATG,TAAATG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,39.00000000,0.00000000,0.00000000,AAATG,5.00000000,,ref->het,0.07894737,0.00000000,80.00000000,3.53982301,0.62000000 +295,chr22,22142299,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,36.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.12162162,0.00000000,80.00000000,3.53982301,0.70000000 +296,chr22,22147199,TP,TCAGCATGA,TCAGCATGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.45000000,37.00000000,0.00000000,2.00000000,CAGCATGA,8.00000000,,ref->het,0.07058824,0.00000000,89.00000000,3.93805310,2.42000000 +297,chr22,22150639,TP,T,T,TGAAAA,TGAAAA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.49000000,38.00000000,0.00000000,1.00000000,GAAAA,5.00000000,,ref->het,0.06666667,0.00000000,81.00000000,3.58407080,2.01000000 +298,chr22,22150750,TP,GAAGAA,GAAGAA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.73000000,41.00000000,0.00000000,2.00000000,AAGAA,5.00000000,,ref->het,0.08641975,0.00000000,86.00000000,3.80530973,3.08000000 +299,chr22,22157519,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.01000000,38.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.12857143,0.00000000,74.00000000,3.27433628,0.32000000 +300,chr22,22170700,TP,CCTTCAGCCCTTA,CCTTCAGCCCTTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.13000000,64.00000000,0.00000000,1.00000000,CTTCAGCCCTTA,12.00000000,,ref->het,0.36111111,0.00000000,76.00000000,3.36283186,2.05000000 +301,chr22,22177720,TP,A,A,ACT,ACT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.18000000,59.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.22857143,0.00000000,75.00000000,3.31858407,0.57000000 +302,chr22,22177847,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.36000000,56.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.29487179,0.00000000,82.00000000,3.62831858,5.63000000 +303,chr22,22197946,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,4.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.01000000,59.00000000,0.00000000,3.00000000,AAAAC,5.00000000,,ref->het,0.26315789,0.00000000,78.00000000,3.45132743,1.46000000 +304,chr22,22557218,TP,A,A,ACTG,ACTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.60000000,37.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.14545455,0.00000000,59.00000000,2.61061947,1.38000000 +305,chr22,22606080,TP,TTTTTC,TTTTTC,T,T,-1.00000000,,,,1.00000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.04000000,39.00000000,0.00000000,4.00000000,TTTTC,5.00000000,,ref->het,0.18518519,0.00000000,70.00000000,3.09734513,2.75000000 +306,chr22,22606404,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.54000000,72.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.29230769,0.00000000,69.00000000,3.05309735,1.58000000 +307,chr22,22623388,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.32000000,70.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.27941176,0.00000000,80.00000000,3.53982301,2.78000000 +308,chr22,22629815,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.99000000,51.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.26785714,0.00000000,61.00000000,2.69911504,3.19000000 +309,chr22,22635686,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.45000000,41.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.18750000,0.00000000,70.00000000,3.09734513,0.32000000 +310,chr22,22922608,TP,G,G,GCC,GCC,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.69000000,46.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19402985,0.00000000,76.00000000,3.36283186,2.22000000 +311,chr22,22928363,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.26000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25581395,0.00000000,91.00000000,4.02654867,2.75000000 +312,chr22,22932716,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.11000000,39.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.13333333,0.00000000,80.00000000,3.53982301,1.68000000 +313,chr22,23054900,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,42.00000000,0.00000000,1.00000000,CTC,3.00000000,,ref->het,0.21176471,0.00000000,89.00000000,3.93805310,1.75000000 +314,chr22,23070600,TP,C,C,CGCCGCTGA,CGCCGCTGA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.38000000,67.00000000,0.00000000,1.00000000,GCCGCTGA,8.00000000,,ref->het,0.24675325,0.00000000,87.00000000,3.84955752,2.29000000 +315,chr22,23092124,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,89.00000000,3.93805310,1.00000000 +316,chr22,23094400,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.30000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.29268293,0.00000000,89.00000000,3.93805310,1.05000000 +317,chr22,23168496,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,49.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.20895522,0.00000000,82.00000000,3.62831858,1.20000000 +318,chr22,23170569,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,2.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.92000000,39.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17105263,0.00000000,88.00000000,3.89380531,3.59000000 +319,chr22,23174309,TP,T,T,TAGG,TAGG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.18000000,44.00000000,0.00000000,2.00000000,AGG,3.00000000,,ref->het,0.25925926,0.00000000,58.00000000,2.56637168,0.76000000 +320,chr22,23175000,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.73000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22580645,0.00000000,74.00000000,3.27433628,2.87000000 +321,chr22,23178415,TP,C,C,CAA,CAA,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.01000000,37.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.30882353,0.00000000,86.00000000,3.80530973,9.84000000 +322,chr22,23179283,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,65.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.31764706,0.00000000,88.00000000,3.89380531,0.98000000 +323,chr22,23187485,TP,T,T,TTC,TTC,-1.00000000,,,,0.50000000,,,8.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.82000000,46.00000000,0.00000000,7.00000000,TC,2.00000000,,ref->het,0.21052632,0.00000000,98.00000000,4.33628319,5.59000000 +324,chr22,23191451,TP,A,A,AAACAAC,AAACAAC,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.72000000,53.00000000,0.00000000,3.00000000,AAC,3.00000000,,ref->het,0.20930233,0.00000000,103.00000000,4.55752212,1.47000000 +325,chr22,23236847,TP,AAGCGTGAACAAATTCTGTGTCTTG,AAGCGTGAACAAATTCTGTGTCTTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.03000000,45.00000000,0.00000000,1.00000000,AGCGTGAACAAATTCTGTGTCTTG,24.00000000,,ref->het,0.17894737,0.00000000,90.00000000,3.98230088,1.80000000 +326,chr22,23237875,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.53000000,47.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.17171717,0.00000000,108.00000000,4.77876106,1.66000000 +327,chr22,23258260,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.59000000,46.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.18918919,0.00000000,80.00000000,3.53982301,1.29000000 +328,chr22,23307274,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.95000000,31.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.25454545,0.00000000,60.00000000,2.65486726,1.81000000 +329,chr22,23327885,TP,TAATAA,TAATAA,T,T,-1.00000000,,,,1.00000000,,,3.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.07000000,59.00000000,0.00000000,4.00000000,AATAA,5.00000000,,ref->het,0.33333333,0.00000000,73.00000000,3.23008850,1.81000000 +330,chr22,23333854,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.86000000,38.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.50847458,0.00000000,63.00000000,2.78761062,1.36000000 +331,chr22,23335747,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.02000000,69.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.45454545,0.00000000,73.00000000,3.23008850,0.09000000 +332,chr22,23336301,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.22000000,66.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.45714286,0.00000000,91.00000000,4.02654867,8.53000000 +333,chr22,23478641,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.10000000,94.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.45918367,0.00000000,107.00000000,4.73451327,0.93000000 +334,chr22,23484231,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.90000000,49.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.29687500,0.00000000,87.00000000,3.84955752,6.82000000 +335,chr22,23491600,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.00000000,43.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.24137931,0.00000000,64.00000000,2.83185841,0.66000000 +336,chr22,23492278,TP,TTTTTG,TTTTTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,13.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.10000000,48.00000000,0.00000000,1.00000000,TTTTG,5.00000000,,ref->het,0.35000000,0.00000000,65.00000000,2.87610619,0.48000000 +337,chr22,23492454,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.72000000,35.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,76.00000000,3.36283186,2.61000000 +338,chr22,23492730,TP,C,C,CTCCA,CTCCA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.28000000,55.00000000,0.00000000,1.00000000,TCCA,4.00000000,,ref->het,0.25000000,0.00000000,70.00000000,3.09734513,1.42000000 +339,chr22,23496764,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,7.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.70000000,48.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.45945946,0.00000000,81.00000000,3.58407080,1.50000000 +340,chr22,23502141,TP,CCTGT,CCTGT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.42000000,39.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.30303030,0.00000000,40.00000000,1.76991150,2.49000000 +341,chr22,23533231,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.44000000,49.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.23170732,0.00000000,88.00000000,3.89380531,2.76000000 +342,chr22,23582844,TP,AGCCATCGTGCCCG,AGCCATCGTGCCCG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,39.00000000,0.00000000,1.00000000,GCCATCGTGCCCG,13.00000000,,ref->het,0.20000000,0.00000000,69.00000000,3.05309735,1.05000000 +343,chr22,23589481,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.22000000,58.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,4.47000000 +344,chr22,23592392,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.78000000,41.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.18666667,0.00000000,80.00000000,3.53982301,3.44000000 +345,chr22,23596419,TP,TTTA,TTTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,10.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.43000000,52.00000000,0.00000000,1.00000000,TTA,3.00000000,,ref->het,0.28000000,0.00000000,78.00000000,3.45132743,0.60000000 +346,chr22,23603223,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.68000000,46.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,69.00000000,3.05309735,0.02000000 +347,chr22,23620557,TP,T,T,TTTC,TTTC,-1.00000000,,,,1.00000000,,,1.00000000,6.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.04000000,102.00000000,0.00000000,0.00000000,TTC,3.00000000,,ref->het,0.45945946,0.00000000,78.00000000,3.45132743,0.00000000 +348,chr22,23657910,TP,GTTTC,GTTTC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.06000000,38.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.19672131,0.00000000,65.00000000,2.87610619,5.03000000 +349,chr22,23752150,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.47000000,32.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.11428571,0.00000000,76.00000000,3.36283186,6.63000000 +350,chr22,23756331,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.34000000,49.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20000000,0.00000000,84.00000000,3.71681416,6.55000000 +351,chr22,23757692,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.50000000,40.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.19230769,0.00000000,65.00000000,2.87610619,11.38000000 +352,chr22,23798096,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.06000000,50.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,84.00000000,3.71681416,0.08000000 +353,chr22,23814970,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,5.79000000,30.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.18461538,0.00000000,89.00000000,3.93805310,10.43000000 +354,chr22,23840952,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.30000000,42.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.14084507,0.00000000,79.00000000,3.49557522,2.81000000 +355,chr22,23843074,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.29000000,48.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20270270,0.00000000,82.00000000,3.62831858,7.19000000 +356,chr22,23892926,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.55000000,47.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.18571429,0.00000000,82.00000000,3.62831858,1.48000000 +357,chr22,23910006,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.18000000,60.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.22000000,0.00000000,110.00000000,4.86725664,3.36000000 +358,chr22,24078844,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.40000000,60.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,106.00000000,4.69026549,0.61000000 +359,chr22,24101867,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.14000000,48.00000000,0.00000000,9.00000000,TG,2.00000000,,ref->het,0.20481928,0.00000000,96.00000000,4.24778761,2.83000000 +360,chr22,24201725,TP,TAG,TAG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,4.12000000,36.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.23913043,0.00000000,59.00000000,2.61061947,7.66000000 +361,chr22,24212414,TP,AGT,AGT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.40000000,48.00000000,0.00000000,2.00000000,GT,2.00000000,,ref->het,0.18000000,0.00000000,106.00000000,4.69026549,0.20000000 +362,chr22,24212830,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.14000000,48.00000000,0.00000000,5.00000000,AAAT,4.00000000,,ref->het,0.26785714,0.00000000,79.00000000,3.49557522,2.58000000 +363,chr22,24214641,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.84000000,47.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17708333,0.00000000,100.00000000,4.42477876,1.31000000 +364,chr22,24417894,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.52000000,30.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.20270270,0.00000000,90.00000000,3.98230088,7.44000000 +365,chr22,24495678,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.01000000,57.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.21348315,0.00000000,94.00000000,4.15929204,0.88000000 +366,chr22,24639277,TP,CACACACACACATATATACACATAT,CACACACACACATATATACACATAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,44.00000000,0.00000000,1.00000000,ACACACACACATATATACACATAT,24.00000000,,ref->het,0.18181818,0.00000000,101.00000000,4.46902655,1.78000000 +367,chr22,24672007,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.95000000,36.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.41509434,0.00000000,58.00000000,2.56637168,0.87000000 +368,chr22,24697870,TP,G,G,GGGCAGCTGGCAGCTGGCAGCT,GGGCAGCTGGCAGCTGGCAGCT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.50000000,42.00000000,0.00000000,1.00000000,GGCAGCT,7.00000000,,ref->het,0.18309859,0.00000000,82.00000000,3.62831858,1.82000000 +369,chr22,24698365,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.53000000,51.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,72.00000000,3.18584071,0.72000000 +370,chr22,24698668,TP,T,T,TCCTTTTTCCTTTCC,TCCTTTTTCCTTTCC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.56000000,44.00000000,0.00000000,0.00000000,CCTTTTTCCTTTCC,14.00000000,,ref->het,0.18840580,0.00000000,77.00000000,3.40707965,5.69000000 +371,chr22,24698825,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,8.10000000,30.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24074074,0.00000000,68.00000000,3.00884956,13.17000000 +372,chr22,24709562,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.92000000,35.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.23750000,0.00000000,93.00000000,4.11504425,2.45000000 +373,chr22,24713400,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.74000000,47.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.29487179,0.00000000,85.00000000,3.76106195,3.86000000 +374,chr22,24724250,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.42000000,48.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.28787879,0.00000000,77.00000000,3.40707965,2.55000000 +375,chr22,24742385,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.68000000,47.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.29333333,0.00000000,79.00000000,3.49557522,0.53000000 +376,chr22,24748652,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.31000000,53.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19565217,0.00000000,98.00000000,4.33628319,2.49000000 +377,chr22,24754473,TP,CAGTG,CAGTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.06000000,48.00000000,0.00000000,1.00000000,AGTG,4.00000000,,ref->het,0.20000000,0.00000000,107.00000000,4.73451327,0.19000000 +378,chr22,24755560,TP,CAAA,CAAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,62.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.32098765,0.00000000,85.00000000,3.76106195,2.58000000 +379,chr22,24758923,TP,TCTAA,TCTAA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.46000000,51.00000000,0.00000000,1.00000000,CTAA,4.00000000,,ref->het,0.19540230,0.00000000,96.00000000,4.24778761,0.84000000 +380,chr22,24761408,TP,CCAACTAAAAGTGAAGAGG,CCAACTAAAAGTGAAGAGG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,40.00000000,0.00000000,1.00000000,CAACTAAAAGTGAAGAGG,18.00000000,,ref->het,0.14666667,0.00000000,69.00000000,3.05309735,0.69000000 +381,chr22,24816504,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.19000000,40.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18055556,0.00000000,80.00000000,3.53982301,12.05000000 +382,chr22,24817351,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,10.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.11000000,30.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.17721519,0.00000000,95.00000000,4.20353982,3.63000000 +383,chr22,24817702,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.27000000,36.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.12676056,0.00000000,78.00000000,3.45132743,0.56000000 +384,chr22,24823297,TP,G,G,GCAGCTGCTGTGC,GCAGCTGCTGTGC,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.26000000,58.00000000,0.00000000,0.00000000,CAGCTGCTGTGC,12.00000000,,ref->het,0.47222222,0.00000000,82.00000000,3.62831858,2.27000000 +385,chr22,24862903,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.42000000,49.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.20588235,0.00000000,75.00000000,3.31858407,1.61000000 +386,chr22,24881566,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.23000000,42.00000000,0.00000000,5.00000000,AAAAC,5.00000000,,ref->het,0.18000000,0.00000000,72.00000000,3.18584071,1.65000000 +387,chr22,24888790,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.14000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.30357143,0.00000000,66.00000000,2.92035398,1.55000000 +388,chr22,24889654,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.36000000,32.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24444444,0.00000000,59.00000000,2.61061947,2.35000000 +389,chr22,24904596,TP,AAG,AAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,4.77000000,51.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.20588235,0.00000000,80.00000000,3.53982301,6.51000000 +390,chr22,24920687,TP,GAAAA,GAAAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,10.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.83000000,46.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.15789474,0.00000000,100.00000000,4.42477876,1.75000000 +391,chr22,24923144,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.38000000,30.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.15384615,0.00000000,78.00000000,3.45132743,1.26000000 +392,chr22,24923288,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.41000000,39.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.15714286,0.00000000,75.00000000,3.31858407,2.08000000 +393,chr22,24923355,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.27000000,33.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.14864865,0.00000000,81.00000000,3.58407080,1.15000000 +394,chr22,24926467,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.64000000,57.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.26315789,0.00000000,101.00000000,4.46902655,0.87000000 +395,chr22,24926850,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.55000000,49.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.27500000,0.00000000,83.00000000,3.67256637,2.06000000 +396,chr22,24929284,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.23076923,0.00000000,82.00000000,3.62831858,0.98000000 +397,chr22,24933528,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,39.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16438356,0.00000000,76.00000000,3.36283186,0.42000000 +398,chr22,24938070,TP,C,C,CTCATTCAT,CTCATTCAT,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,46.00000000,0.00000000,7.00000000,TCAT,4.00000000,,ref->het,0.24096386,0.00000000,101.00000000,4.46902655,1.67000000 +399,chr22,24956871,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,4.22000000,45.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.28333333,0.00000000,80.00000000,3.53982301,11.81000000 +400,chr22,24960130,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.58000000,43.00000000,0.00000000,9.00000000,AAAT,4.00000000,,ref->het,0.23188406,0.00000000,101.00000000,4.46902655,2.99000000 +401,chr22,24965101,TP,TAAA,TAAA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.49000000,40.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,86.00000000,3.80530973,7.78000000 +402,chr22,25000816,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.28000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.25757576,0.00000000,84.00000000,3.71681416,3.70000000 +403,chr22,25007470,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.25000000,54.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.32258065,0.00000000,71.00000000,3.14159292,6.93000000 +404,chr22,25061793,TP,CACTG,CACTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,49.00000000,0.00000000,2.00000000,ACTG,4.00000000,,ref->het,0.28767123,0.00000000,77.00000000,3.40707965,0.28000000 +405,chr22,25064032,TP,TTTTTGTTTG,TTTTTGTTTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.75000000,37.00000000,0.00000000,2.00000000,TTTTGTTTG,9.00000000,,ref->het,0.12307692,0.00000000,66.00000000,2.92035398,2.68000000 +406,chr22,25064329,TP,G,G,GGGATTA,GGGATTA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.21000000,48.00000000,0.00000000,1.00000000,GGATTA,6.00000000,,ref->het,0.20689655,0.00000000,62.00000000,2.74336283,0.78000000 +407,chr22,25067285,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,3.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.19000000,51.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.48529412,0.00000000,71.00000000,3.14159292,3.75000000 +408,chr22,25068443,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.97000000,33.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.16867470,0.00000000,100.00000000,4.42477876,5.86000000 +409,chr22,25069009,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.75000000,48.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.22222222,0.00000000,75.00000000,3.31858407,0.00000000 +410,chr22,25076054,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.51000000,44.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.17333333,0.00000000,83.00000000,3.67256637,2.02000000 +411,chr22,25150836,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.20000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.28301887,0.00000000,62.00000000,2.74336283,7.71000000 +412,chr22,25226168,TP,CTGTGTGTG,CTGTGTGTG,C,C,-1.00000000,,,,1.00000000,,,15.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.33000000,52.00000000,0.00000000,19.00000000,TG,2.00000000,,ref->het,0.33823529,0.00000000,85.00000000,3.76106195,2.97000000 +413,chr22,25230683,TP,C,C,CTCAT,CTCAT,-1.00000000,,,,1.00000000,,,6.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.06000000,35.00000000,0.00000000,5.00000000,TCAT,4.00000000,,ref->het,0.32653061,0.00000000,59.00000000,2.61061947,0.03000000 +414,chr22,25232594,TP,GATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,GATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,42.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.25000000,60.00000000,0.00000000,1.00000000,ATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,42.00000000,,ref->het,0.24175824,0.00000000,82.00000000,3.62831858,0.28000000 +415,chr22,25250314,TP,GTATTAAA,GTATTAAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.66000000,47.00000000,0.00000000,1.00000000,TATTAAA,7.00000000,,ref->het,0.20000000,0.00000000,73.00000000,3.23008850,0.92000000 +416,chr22,25253635,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,3.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.44000000,53.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.23684211,0.00000000,82.00000000,3.62831858,2.18000000 +417,chr22,25295219,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,0.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.56000000,66.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.41269841,0.00000000,72.00000000,3.18584071,6.89000000 +418,chr22,25295230,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,7.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.55000000,63.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.40625000,0.00000000,70.00000000,3.09734513,7.05000000 +419,chr22,25296168,TP,T,T,TACA,TACA,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.90000000,52.00000000,0.00000000,1.00000000,ACA,3.00000000,,ref->het,0.25490196,0.00000000,56.00000000,2.47787611,0.70000000 +420,chr22,25297934,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.72000000,95.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.50561798,0.00000000,92.00000000,4.07079646,0.96000000 +421,chr22,25298796,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,2.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.62000000,96.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.44705882,0.00000000,95.00000000,4.20353982,1.06000000 +422,chr22,25298941,TP,C,C,CTG,CTG,-1.00000000,,,,1.00000000,,,1.00000000,13.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.55000000,43.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.47169811,0.00000000,63.00000000,2.78761062,3.10000000 +423,chr22,25302298,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,35.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.15789474,0.00000000,60.00000000,2.65486726,0.01000000 +424,chr22,25306786,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.34146341,0.00000000,57.00000000,2.52212389,3.20000000 +425,chr22,25311603,TP,G,G,GAA,GAA,-1.00000000,,,,1.00000000,,,12.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.79000000,79.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.48648649,0.00000000,87.00000000,3.84955752,2.52000000 +426,chr22,25315896,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.02000000,56.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.50847458,0.00000000,70.00000000,3.09734513,1.74000000 +427,chr22,25321413,TP,GAGA,GAGA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.30000000,49.00000000,0.00000000,2.00000000,AGA,3.00000000,,ref->het,0.49315068,0.00000000,77.00000000,3.40707965,0.70000000 +428,chr22,25322333,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.23000000,59.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.47826087,0.00000000,96.00000000,4.24778761,1.20000000 +429,chr22,25326638,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.02702703,0.00000000,38.00000000,1.68141593,0.46000000,38.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.44155844,0.00000000,93.00000000,4.11504425,3.57000000 +430,chr22,25326934,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.38000000,41.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.56756757,0.00000000,84.00000000,3.71681416,0.72000000 +431,chr22,25332917,TP,C,C,CAG,CAG,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.09000000,55.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.45679012,0.00000000,87.00000000,3.84955752,2.71000000 +432,chr22,25338335,TP,A,A,ATT,ATT,-1.00000000,,,,1.00000000,,,16.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.02000000,48.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.51515152,0.00000000,87.00000000,3.84955752,2.70000000 +433,chr22,25342309,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.13000000,51.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,40.00000000,1.76991150,0.01000000 +434,chr22,25348644,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.02000000,54.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.44186047,0.00000000,100.00000000,4.42477876,9.73000000 +435,chr22,25360815,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.40000000,59.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.46078431,0.00000000,104.00000000,4.60176991,3.89000000 +436,chr22,25368847,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,40.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.15384615,0.00000000,72.00000000,3.18584071,1.75000000 +437,chr22,25390890,TP,TGTAGGAGAG,TGTAGGAGAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.62000000,52.00000000,0.00000000,1.00000000,GTAGGAGAG,9.00000000,,ref->het,0.24271845,0.00000000,105.00000000,4.64601770,0.72000000 +438,chr22,25403229,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.34000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,68.00000000,3.00884956,1.29000000 +439,chr22,25434454,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.76000000,70.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.44444444,0.00000000,77.00000000,3.40707965,1.01000000 +440,chr22,25442232,TP,C,C,CATT,CATT,-1.00000000,,,,1.00000000,,,1.00000000,1.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.86000000,86.00000000,0.00000000,0.00000000,ATT,3.00000000,,ref->het,0.37894737,0.00000000,103.00000000,4.55752212,9.01000000 +441,chr22,25443121,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.53000000,37.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.58904110,0.00000000,79.00000000,3.49557522,6.00000000 +442,chr22,25443918,TP,G,G,GAA,GAA,-1.00000000,,,,1.00000000,,,11.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.51000000,78.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.42045455,0.00000000,101.00000000,4.46902655,5.78000000 +443,chr22,25444144,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,42.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.16438356,0.00000000,78.00000000,3.45132743,0.57000000 +444,chr22,25445259,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.09000000,57.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.45588235,0.00000000,79.00000000,3.49557522,3.76000000 +445,chr22,25445901,TP,TGA,TGA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.30000000,102.00000000,0.00000000,1.00000000,GA,2.00000000,,ref->het,0.39000000,0.00000000,106.00000000,4.69026549,0.90000000 +446,chr22,25446448,TP,TCAAA,TCAAA,T,T,-1.00000000,,,,1.00000000,,,4.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,58.00000000,0.00000000,5.00000000,CAAA,4.00000000,,ref->het,0.45588235,0.00000000,87.00000000,3.84955752,1.25000000 +447,chr22,25447224,TP,CCA,CCA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.83000000,68.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.46666667,0.00000000,79.00000000,3.49557522,1.08000000 +448,chr22,25447666,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.32000000,71.00000000,0.00000000,4.00000000,AC,2.00000000,,ref->het,0.41250000,0.00000000,89.00000000,3.93805310,1.97000000 +449,chr22,25453221,TP,T,T,TTATC,TTATC,-1.00000000,,,,0.50000000,,,14.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.25000000,47.00000000,0.00000000,13.00000000,TATC,4.00000000,,ref->het,0.29577465,0.00000000,99.00000000,4.38053097,2.09000000 +450,chr22,25470298,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.15000000,44.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.30645161,0.00000000,66.00000000,2.92035398,0.93000000 +451,chr22,25500190,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.96000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,82.00000000,3.62831858,4.18000000 +452,chr22,25506962,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.26000000,34.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.11111111,0.00000000,75.00000000,3.31858407,5.65000000 +453,chr22,25507014,TP,C,C,CTCCA,CTCCA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.28000000,35.00000000,0.00000000,4.00000000,TCCA,4.00000000,,ref->het,0.14492754,0.00000000,81.00000000,3.58407080,6.98000000 +454,chr22,25507388,TP,TATCC,TATCC,T,T,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.27000000,40.00000000,0.00000000,7.00000000,ATCC,4.00000000,,ref->het,0.19230769,0.00000000,58.00000000,2.56637168,1.71000000 +455,chr22,25512691,TP,G,G,GTGAATGCAGTATTGATTAGCTGAATGCAGTATTGATTAGC,GTGAATGCAGTATTGATTAGCTGAATGCAGTATTGATTAGC,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,40.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,56.00000000,0.00000000,1.00000000,TGAATGCAGTATTGATTAGC,20.00000000,,ref->het,0.27500000,0.00000000,85.00000000,3.76106195,1.70000000 +456,chr22,25517071,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.77000000,42.00000000,0.00000000,2.00000000,CTC,3.00000000,,ref->het,0.17647059,0.00000000,93.00000000,4.11504425,1.94000000 +457,chr22,25518509,TP,C,C,CATCT,CATCT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.98000000,42.00000000,0.00000000,3.00000000,ATCT,4.00000000,,ref->het,0.20312500,0.00000000,74.00000000,3.27433628,0.43000000 +458,chr22,25519225,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.37000000,32.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,84.00000000,3.71681416,1.17000000 +459,chr22,25523023,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.69000000,64.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.27710843,0.00000000,90.00000000,3.98230088,1.01000000 +460,chr22,25523158,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.01000000,38.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,74.00000000,3.27433628,6.39000000 +461,chr22,25530407,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.15000000,42.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.18181818,0.00000000,84.00000000,3.71681416,1.41000000 +462,chr22,25533968,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.06000000,59.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.26744186,0.00000000,97.00000000,4.29203540,3.79000000 +463,chr22,25535299,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.46000000,39.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.13432836,0.00000000,74.00000000,3.27433628,1.15000000 +464,chr22,25535332,TP,C,C,CTCTCCCT,CTCTCCCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.88000000,49.00000000,0.00000000,0.00000000,TCTCCCT,7.00000000,,ref->het,0.17808219,0.00000000,81.00000000,3.58407080,1.70000000 +465,chr22,25552949,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.09000000,31.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21153846,0.00000000,72.00000000,3.18584071,9.79000000 +466,chr22,25719196,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.67000000,31.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.23404255,0.00000000,56.00000000,2.47787611,3.39000000 +467,chr22,25776903,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.26000000,41.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.16470588,0.00000000,89.00000000,3.93805310,1.49000000 +468,chr22,25778287,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.92000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22352941,0.00000000,86.00000000,3.80530973,2.71000000 +469,chr22,25783501,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.76000000,41.00000000,0.00000000,4.00000000,AC,2.00000000,,ref->het,0.16901408,0.00000000,81.00000000,3.58407080,2.41000000 +470,chr22,25809995,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.53000000,36.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.14925373,0.00000000,80.00000000,3.53982301,5.99000000 +471,chr22,25820541,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.27000000,43.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.26229508,0.00000000,64.00000000,2.83185841,0.71000000 +472,chr22,25821303,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.08000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.18181818,0.00000000,96.00000000,4.24778761,4.15000000 +473,chr22,25823756,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.72000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,75.00000000,3.31858407,1.11000000 +474,chr22,25824920,TP,T,T,TCACACACATGAA,TCACACACATGAA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.50000000,45.00000000,0.00000000,0.00000000,CACACACATGAA,12.00000000,,ref->het,0.20270270,0.00000000,86.00000000,3.80530973,1.28000000 +475,chr22,25825016,TP,G,G,GAT,GAT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.26000000,45.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.19480519,0.00000000,93.00000000,4.11504425,2.73000000 +476,chr22,25855825,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.13000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25274725,0.00000000,112.00000000,4.95575221,7.35000000 +477,chr22,25857478,TP,ATCTCAAGAG,ATCTCAAGAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.71000000,42.00000000,0.00000000,1.00000000,TCTCAAGAG,9.00000000,,ref->het,0.17567568,0.00000000,73.00000000,3.23008850,0.72000000 +478,chr22,25984125,TP,AATTTTACATT,AATTTTACATT,A,A,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,53.00000000,0.00000000,1.00000000,ATTTTACATT,10.00000000,,ref->het,0.44444444,0.00000000,75.00000000,3.31858407,2.57000000 +479,chr22,26000970,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.47000000,70.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.32394366,0.00000000,81.00000000,3.58407080,2.09000000 +480,chr22,26004249,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.85000000,72.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.45238095,0.00000000,90.00000000,3.98230088,1.29000000 +481,chr22,26039111,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.65000000,50.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.18292683,0.00000000,84.00000000,3.71681416,0.62000000 +482,chr22,26057608,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.45000000,47.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.23333333,0.00000000,97.00000000,4.29203540,4.73000000 +483,chr22,26105643,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,9.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.26000000,49.00000000,0.00000000,8.00000000,TG,2.00000000,,ref->het,0.22388060,0.00000000,78.00000000,3.45132743,2.20000000 +484,chr22,26160132,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,3.37000000,34.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.17647059,0.00000000,61.00000000,2.69911504,7.57000000 +485,chr22,26227298,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.33000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21333333,0.00000000,80.00000000,3.53982301,1.23000000 +486,chr22,26236585,TP,T,T,TGGTTA,TGGTTA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,51.00000000,0.00000000,1.00000000,GGTTA,5.00000000,,ref->het,0.25274725,0.00000000,97.00000000,4.29203540,2.04000000 +487,chr22,26248939,TP,TAAG,TAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.58000000,49.00000000,0.00000000,1.00000000,AAG,3.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,2.06000000 +488,chr22,26291457,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,48.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.26865672,0.00000000,74.00000000,3.27433628,0.99000000 +489,chr22,26330250,TP,TCTGCTATATAACCAG,TCTGCTATATAACCAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.23000000,45.00000000,0.00000000,1.00000000,CTGCTATATAACCAG,15.00000000,,ref->het,0.20270270,0.00000000,77.00000000,3.40707965,1.20000000 +490,chr22,26369180,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,43.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.18571429,0.00000000,74.00000000,3.27433628,0.63000000 +491,chr22,26370697,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.54000000,43.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.29870130,0.00000000,89.00000000,3.93805310,4.57000000 +492,chr22,26382110,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.49000000,62.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.28378378,0.00000000,87.00000000,3.84955752,1.67000000 +493,chr22,26387699,TP,A,A,AGT,AGT,-1.00000000,,,,0.50000000,,,14.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.37000000,44.00000000,0.00000000,13.00000000,GT,2.00000000,,ref->het,0.22500000,0.00000000,61.00000000,2.69911504,2.25000000 +494,chr22,26389920,TP,TAAATAAAC,TAAATAAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.33000000,32.00000000,0.00000000,1.00000000,AAATAAAC,8.00000000,,ref->het,0.11940299,0.00000000,70.00000000,3.09734513,1.18000000 +495,chr22,26435389,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.98000000,58.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.24050633,0.00000000,83.00000000,3.67256637,0.96000000 +496,chr22,26493727,TP,AAAT,AAAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.11000000,51.00000000,0.00000000,1.00000000,AAT,3.00000000,,ref->het,0.24050633,0.00000000,81.00000000,3.58407080,0.88000000 +497,chr22,26523983,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.48000000,30.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,94.00000000,4.15929204,3.14000000 +498,chr22,26531008,TP,T,T,TCAAAAA,TCAAAAA,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.45000000,47.00000000,0.00000000,4.00000000,CAAAAA,6.00000000,,ref->het,0.25423729,0.00000000,76.00000000,3.36283186,1.93000000 +499,chr22,26577351,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.13000000,31.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.19565217,0.00000000,57.00000000,2.52212389,5.21000000 +500,chr22,26586663,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.75000000,47.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,0.73000000 +501,chr22,26588026,TP,TGA,TGA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.31000000,66.00000000,0.00000000,3.00000000,GA,2.00000000,,ref->het,0.27272727,0.00000000,93.00000000,4.11504425,1.05000000 +502,chr22,26607560,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.06000000,34.00000000,0.00000000,19.00000000,A,1.00000000,,ref->het,0.25806452,0.00000000,77.00000000,3.40707965,6.85000000 +503,chr22,26629942,TP,CAT,CAT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.55000000,53.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.41428571,0.00000000,77.00000000,3.40707965,1.58000000 +504,chr22,26638337,TP,G,G,GAAGA,GAAGA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.77000000,35.00000000,0.00000000,0.00000000,AAGA,4.00000000,,ref->het,0.15000000,0.00000000,69.00000000,3.05309735,5.12000000 +505,chr22,26640053,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.84000000,35.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.14062500,0.00000000,71.00000000,3.14159292,5.17000000 +506,chr22,26646615,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,83.00000000,3.67256637,1.15000000 +507,chr22,26648931,TP,C,C,CAGAG,CAGAG,-1.00000000,,,,0.50000000,,,13.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.75000000,31.00000000,0.00000000,11.00000000,AG,2.00000000,,ref->het,0.23809524,0.00000000,78.00000000,3.45132743,1.76000000 +508,chr22,26659820,TP,TTTTCTTTCTTTC,TTTTCTTTCTTTC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.40000000,44.00000000,0.00000000,5.00000000,TTTC,4.00000000,,ref->het,0.21428571,0.00000000,64.00000000,2.83185841,5.40000000 +509,chr22,26700861,TP,C,C,CTTAATAATACATTGTATTAT,CTTAATAATACATTGTATTAT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.96000000,47.00000000,0.00000000,1.00000000,TTAATAATACATTGTATTAT,20.00000000,,ref->het,0.17204301,0.00000000,110.00000000,4.86725664,1.13000000 +510,chr22,26704215,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.55000000,32.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,97.00000000,4.29203540,6.14000000 +511,chr22,26709504,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.77000000,56.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.23456790,0.00000000,88.00000000,3.89380531,0.75000000 +512,chr22,26721039,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.58000000,38.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.16363636,0.00000000,63.00000000,2.78761062,2.55000000 +513,chr22,26770445,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.31000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.21538462,0.00000000,72.00000000,3.18584071,4.38000000 +514,chr22,26782316,TP,G,G,GGT,GGT,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.16000000,55.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.25423729,0.00000000,77.00000000,3.40707965,1.87000000 +515,chr22,26790529,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.88000000,82.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.42857143,0.00000000,88.00000000,3.89380531,0.64000000 +516,chr22,26833347,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,48.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.53968254,0.00000000,79.00000000,3.49557522,1.18000000 +517,chr22,26838018,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.18000000,56.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.28571429,0.00000000,82.00000000,3.62831858,0.94000000 +518,chr22,26839846,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.88000000,46.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.30555556,0.00000000,90.00000000,3.98230088,5.61000000 +519,chr22,26852728,TP,CTA,CTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,55.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.22727273,0.00000000,93.00000000,4.11504425,1.09000000 +520,chr22,26858305,TP,G,G,GTGTGTGTTTA,GTGTGTGTTTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.41000000,36.00000000,0.00000000,0.00000000,TGTGTGTTTA,10.00000000,,ref->het,0.16363636,0.00000000,53.00000000,2.34513274,0.99000000 +521,chr22,26875881,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.51000000,47.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20270270,0.00000000,81.00000000,3.58407080,1.97000000 +522,chr22,26882098,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.78000000,35.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,90.00000000,3.98230088,6.60000000 +523,chr22,26882150,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.42000000,52.00000000,0.00000000,0.00000000,CA,2.00000000,,ref->het,0.19696970,0.00000000,74.00000000,3.27433628,10.73000000 +524,chr22,26894863,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.88000000,46.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.22500000,0.00000000,82.00000000,3.62831858,4.76000000 +525,chr22,26905293,TP,G,G,GGA,GGA,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.15000000,36.00000000,0.00000000,3.00000000,GA,2.00000000,,ref->het,0.13114754,0.00000000,65.00000000,2.87610619,4.41000000 +526,chr22,26905321,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.97000000,35.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.15517241,0.00000000,64.00000000,2.83185841,3.88000000 +527,chr22,26910251,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,3.26000000,41.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.27868852,0.00000000,84.00000000,3.71681416,11.34000000 +528,chr22,26951313,TP,TTAAAA,TTAAAA,T,T,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.36000000,50.00000000,0.00000000,7.00000000,TAAAA,5.00000000,,ref->het,0.25490196,0.00000000,82.00000000,3.62831858,2.18000000 +529,chr22,26979910,TP,CCCTT,CCCTT,C,C,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.71000000,46.00000000,0.00000000,5.00000000,CCTT,4.00000000,,ref->het,0.22058824,0.00000000,75.00000000,3.31858407,3.99000000 +530,chr22,26982619,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,5.22000000,43.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.31914894,0.00000000,60.00000000,2.65486726,5.39000000 +531,chr22,26994892,TP,T,T,TGAA,TGAA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.03000000,56.00000000,0.00000000,1.00000000,GAA,3.00000000,,ref->het,0.25000000,0.00000000,101.00000000,4.46902655,2.16000000 +532,chr22,27013243,TP,AGT,AGT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.73000000,49.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.24285714,0.00000000,78.00000000,3.45132743,2.47000000 +533,chr22,27027981,TP,TTAA,TTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.80000000,47.00000000,0.00000000,2.00000000,TAA,3.00000000,,ref->het,0.23376623,0.00000000,84.00000000,3.71681416,1.45000000 +534,chr22,27127295,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,14.00000000,5.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.52000000,45.00000000,0.00000000,13.00000000,CATC,4.00000000,,ref->het,0.27586207,0.00000000,96.00000000,4.24778761,2.03000000 +535,chr22,27139072,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.01000000,38.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,77.00000000,3.40707965,0.63000000 +536,chr22,27221217,TP,GACAC,GACAC,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.23000000,40.00000000,0.00000000,10.00000000,AC,2.00000000,,ref->het,0.21052632,0.00000000,67.00000000,2.96460177,3.51000000 +537,chr22,27234643,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.24000000,53.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.21518987,0.00000000,90.00000000,3.98230088,2.22000000 +538,chr22,27252298,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.76000000,44.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.20779221,0.00000000,82.00000000,3.62831858,1.47000000 +539,chr22,27254062,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.84000000,43.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.18181818,0.00000000,71.00000000,3.14159292,0.55000000 +540,chr22,27271185,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.56000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20253165,0.00000000,83.00000000,3.67256637,1.06000000 +541,chr22,27273356,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.14000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,82.00000000,3.62831858,1.03000000 +542,chr22,27296959,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.37000000,42.00000000,0.00000000,6.00000000,CATC,4.00000000,,ref->het,0.17391304,0.00000000,87.00000000,3.84955752,1.39000000 +543,chr22,27339390,TP,ACC,ACC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.44000000,44.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19117647,0.00000000,76.00000000,3.36283186,2.16000000 +544,chr22,27346324,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.88000000,37.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23188406,0.00000000,85.00000000,3.76106195,3.95000000 +545,chr22,27347091,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,45.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26086957,0.00000000,72.00000000,3.18584071,0.98000000 +546,chr22,27349597,TP,C,C,CCTT,CCTT,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.51000000,47.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.19540230,0.00000000,95.00000000,4.20353982,0.19000000 +547,chr22,27351417,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.04000000,43.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19736842,0.00000000,83.00000000,3.67256637,1.22000000 +548,chr22,27352059,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.24000000,63.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.25287356,0.00000000,90.00000000,3.98230088,1.35000000 +549,chr22,27353533,TP,GTTA,GTTA,G,G,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.48000000,47.00000000,0.00000000,6.00000000,TTA,3.00000000,,ref->het,0.25373134,0.00000000,85.00000000,3.76106195,1.21000000 +550,chr22,27353704,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.52000000,46.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,74.00000000,3.27433628,0.96000000 +551,chr22,27358232,TP,G,G,GTC,GTC,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.71000000,43.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.17948718,0.00000000,84.00000000,3.71681416,1.22000000 +552,chr22,27359475,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,11.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.92000000,44.00000000,0.00000000,10.00000000,TG,2.00000000,,ref->het,0.19354839,0.00000000,84.00000000,3.71681416,1.61000000 +553,chr22,27359550,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.35000000,44.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18421053,0.00000000,83.00000000,3.67256637,2.39000000 +554,chr22,27362832,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.14000000,63.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.28205128,0.00000000,84.00000000,3.71681416,0.72000000 +555,chr22,27365896,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.25000000,53.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.24468085,0.00000000,103.00000000,4.55752212,1.54000000 +556,chr22,27367152,TP,C,C,CTG,CTG,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.27000000,67.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.46250000,0.00000000,84.00000000,3.71681416,2.57000000 +557,chr22,27377827,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,5.10000000,55.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.21978022,0.00000000,98.00000000,4.33628319,9.07000000 +558,chr22,27388871,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.71000000,32.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.15384615,0.00000000,70.00000000,3.09734513,2.76000000 +559,chr22,27431224,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,7.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.41000000,37.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.41558442,0.00000000,83.00000000,3.67256637,7.75000000 +560,chr22,27452168,TP,G,G,GTGGATGGATGGA,GTGGATGGATGGA,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.30000000,48.00000000,0.00000000,8.00000000,TGGA,4.00000000,,ref->het,0.22413793,0.00000000,79.00000000,3.49557522,4.33000000 +561,chr22,27468014,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.31000000,60.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.23404255,0.00000000,104.00000000,4.60176991,1.52000000 +562,chr22,27514215,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.55000000,43.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20689655,0.00000000,69.00000000,3.05309735,1.35000000 +563,chr22,27519716,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.41000000,46.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.30555556,0.00000000,76.00000000,3.36283186,1.99000000 +564,chr22,27522876,TP,ATGTG,ATGTG,A,A,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.83000000,40.00000000,0.00000000,14.00000000,TG,2.00000000,,ref->het,0.20370370,0.00000000,80.00000000,3.53982301,3.24000000 +565,chr22,27565585,TP,GTGGA,GTGGA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.20000000,47.00000000,0.00000000,7.00000000,TGGA,4.00000000,,ref->het,0.28125000,0.00000000,77.00000000,3.40707965,5.06000000 +566,chr22,27571158,TP,A,A,AAATG,AAATG,-1.00000000,,,,0.50000000,,,7.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.95000000,46.00000000,0.00000000,6.00000000,AATG,4.00000000,,ref->het,0.23076923,0.00000000,83.00000000,3.67256637,1.27000000 +567,chr22,27597301,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.27000000,52.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.25490196,0.00000000,65.00000000,2.87610619,1.53000000 +568,chr22,27599519,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.61000000,53.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.21739130,0.00000000,73.00000000,3.23008850,2.12000000 +569,chr22,27608045,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.07000000,46.00000000,0.00000000,14.00000000,TG,2.00000000,,ref->het,0.25806452,0.00000000,87.00000000,3.84955752,6.33000000 +570,chr22,27619574,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.61000000,45.00000000,0.00000000,1.00000000,AAAT,4.00000000,,ref->het,0.21875000,0.00000000,71.00000000,3.14159292,3.03000000 +571,chr22,27620225,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.09000000,42.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,81.00000000,3.58407080,0.71000000 +572,chr22,27650380,TP,G,G,GTGGGAAAGCAAGCATGACTCCCAGGTTTC,GTGGGAAAGCAAGCATGACTCCCAGGTTTC,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,45.00000000,0.00000000,1.00000000,TGGGAAAGCAAGCATGACTCCCAGGTTTC,29.00000000,,ref->het,0.20895522,0.00000000,83.00000000,3.67256637,0.86000000 +573,chr22,27720618,TP,T,T,TCC,TCC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.73000000,48.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.25714286,0.00000000,82.00000000,3.62831858,2.18000000 +574,chr22,27729569,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.84000000,64.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.30120482,0.00000000,89.00000000,3.93805310,1.50000000 +575,chr22,27748391,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,51.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.25641026,0.00000000,86.00000000,3.80530973,1.34000000 +576,chr22,27760509,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.76000000,43.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.30000000,0.00000000,84.00000000,3.71681416,1.40000000 +577,chr22,27777702,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.40000000,50.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.33846154,0.00000000,76.00000000,3.36283186,1.57000000 +578,chr22,28171622,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,7.06000000,33.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,87.00000000,3.84955752,14.65000000 +579,chr22,28199548,TP,T,T,TATATAC,TATATAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.66000000,49.00000000,0.00000000,0.00000000,ATATAC,6.00000000,,ref->het,0.19298246,0.00000000,64.00000000,2.83185841,3.82000000 +580,chr22,28260393,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.46000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.19753086,0.00000000,86.00000000,3.80530973,1.99000000 +581,chr22,28342580,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.48000000,63.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.22549020,0.00000000,105.00000000,4.64601770,0.32000000 +582,chr22,28404989,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.59000000,43.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.16867470,0.00000000,86.00000000,3.80530973,2.79000000 +583,chr22,28407472,TP,GCACACACA,GCACACACA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.30000000,34.00000000,0.00000000,12.00000000,CA,2.00000000,,ref->het,0.14473684,0.00000000,90.00000000,3.98230088,0.60000000 +584,chr22,28409663,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,4.45000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.30769231,0.00000000,70.00000000,3.09734513,7.87000000 +585,chr22,28452681,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,61.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.26760563,0.00000000,76.00000000,3.36283186,1.63000000 +586,chr22,28545570,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.29000000,51.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.25675676,0.00000000,82.00000000,3.62831858,0.75000000 +587,chr22,28641322,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,11.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.78000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,76.00000000,3.36283186,2.21000000 +588,chr22,28736764,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,7.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.90000000,36.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.30434783,0.00000000,68.00000000,3.00884956,12.49000000 +589,chr22,28745339,TP,GGAGTTCAAGACCAGCCTGGTCAAGATGGT,GGAGTTCAAGACCAGCCTGGTCAAGATGGT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.90000000,36.00000000,0.00000000,1.00000000,GAGTTCAAGACCAGCCTGGTCAAGATGGT,29.00000000,,ref->het,0.13253012,0.00000000,77.00000000,3.40707965,2.23000000 +590,chr22,28769946,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,45.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,0.64000000 +591,chr22,28940496,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,18.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.62000000,66.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,100.00000000,4.42477876,7.23000000 +592,chr22,28944926,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.35000000,60.00000000,0.00000000,9.00000000,AAAT,4.00000000,,ref->het,0.37735849,0.00000000,89.00000000,3.93805310,2.22000000 +593,chr22,28955032,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,14.00000000,25.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.91000000,58.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.40625000,0.00000000,82.00000000,3.62831858,9.99000000 +594,chr22,29162116,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.55000000,40.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.28358209,0.00000000,82.00000000,3.62831858,5.22000000 +595,chr22,29238254,TP,AATT,AATT,A,A,-1.00000000,,,,1.00000000,,,15.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.77000000,35.00000000,0.00000000,16.00000000,ATT,3.00000000,,ref->het,0.46808511,0.00000000,80.00000000,3.53982301,2.02000000 +596,chr22,29313674,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.90000000,57.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.30000000,0.00000000,86.00000000,3.80530973,7.05000000 +597,chr22,29374285,TP,G,G,GAAAT,GAAAT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.73000000,52.00000000,0.00000000,0.00000000,AAAT,4.00000000,,ref->het,0.18421053,0.00000000,83.00000000,3.67256637,2.65000000 +598,chr22,29380414,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.58000000,38.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,1.88000000 +599,chr22,29408961,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.22000000,63.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.24731183,0.00000000,97.00000000,4.29203540,0.40000000 +600,chr22,29414214,TP,T,T,TTTATATAAATTC,TTTATATAAATTC,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,35.00000000,0.00000000,0.00000000,TTATATAAATTC,12.00000000,,ref->het,0.12643678,0.00000000,92.00000000,4.07079646,1.51000000 +601,chr22,29414225,TP,A,A,ATTTTTTC,ATTTTTTC,-1.00000000,,,,0.50000000,,,3.00000000,12.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.01000000,33.00000000,0.00000000,2.00000000,TTTTTTC,7.00000000,,ref->het,0.09638554,0.00000000,92.00000000,4.07079646,1.45000000 +602,chr22,29422808,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,10.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.06000000,43.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,81.00000000,3.58407080,2.46000000 +603,chr22,29423015,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.37000000,45.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.18085106,0.00000000,104.00000000,4.60176991,1.34000000 +604,chr22,29465405,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.84000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.23076923,0.00000000,83.00000000,3.67256637,9.74000000 +605,chr22,29493335,TP,TATA,TATA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.84000000,58.00000000,0.00000000,1.00000000,ATA,3.00000000,,ref->het,0.24324324,0.00000000,81.00000000,3.58407080,1.20000000 +606,chr22,29526053,TP,CTACTAGG,CTACTAGG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.28000000,47.00000000,0.00000000,1.00000000,TACTAGG,7.00000000,,ref->het,0.22972973,0.00000000,86.00000000,3.80530973,6.32000000 +607,chr22,29530142,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,3.40000000,45.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22666667,0.00000000,87.00000000,3.84955752,4.93000000 +608,chr22,29560241,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.19000000,37.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,79.00000000,3.49557522,6.88000000 +609,chr22,29572273,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.84000000,32.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17647059,0.00000000,52.00000000,2.30088496,11.88000000 +610,chr22,29618466,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.26000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,95.00000000,4.20353982,1.16000000 +611,chr22,29638349,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,17.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.38000000,37.00000000,0.00000000,18.00000000,T,1.00000000,,ref->het,0.37735849,0.00000000,66.00000000,2.92035398,3.94000000 +612,chr22,29641179,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.35000000,49.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.23595506,0.00000000,96.00000000,4.24778761,1.51000000 +613,chr22,29880133,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.14000000,42.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.18840580,0.00000000,83.00000000,3.67256637,4.86000000 +614,chr22,29884259,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.59000000,60.00000000,0.00000000,4.00000000,AAACA,5.00000000,,ref->het,0.24657534,0.00000000,85.00000000,3.76106195,3.38000000 +615,chr22,29891117,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,0.32000000,41.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.13000000,0.00000000,112.00000000,4.95575221,1.51000000 +616,chr22,29891411,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.03000000,61.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.29333333,0.00000000,91.00000000,4.02654867,1.81000000 +617,chr22,29993011,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.27000000,67.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,94.00000000,4.15929204,0.84000000 +618,chr22,30021467,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,4.19000000,58.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.26153846,0.00000000,76.00000000,3.36283186,3.02000000 +619,chr22,30066038,TP,TCTCCCTCCCC,TCTCCCTCCCC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,3.40000000,36.00000000,0.00000000,1.00000000,CTCCCTCCCC,10.00000000,,ref->het,0.23913043,0.00000000,58.00000000,2.56637168,6.51000000 +620,chr22,30100109,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,47.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,0.00000000 +621,chr22,30120958,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.41000000,61.00000000,0.00000000,3.00000000,AC,2.00000000,,ref->het,0.28089888,0.00000000,95.00000000,4.20353982,0.55000000 +622,chr22,30158080,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.58000000,30.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.17948718,0.00000000,89.00000000,3.93805310,2.09000000 +623,chr22,30178134,TP,GAGTAATT,GAGTAATT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,0.16000000,32.00000000,0.00000000,1.00000000,AGTAATT,7.00000000,,ref->het,0.30434783,0.00000000,71.00000000,3.14159292,0.40000000 +624,chr22,30186006,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.00000000,55.00000000,0.00000000,8.00000000,G,1.00000000,,ref->het,0.27472527,0.00000000,103.00000000,4.55752212,4.08000000 +625,chr22,30188399,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.99000000,41.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25641026,0.00000000,92.00000000,4.07079646,2.58000000 +626,chr22,30361840,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,36.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.14864865,0.00000000,79.00000000,3.49557522,1.53000000 +627,chr22,30401186,TP,G,G,GATTT,GATTT,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.41000000,42.00000000,0.00000000,10.00000000,ATTT,4.00000000,,ref->het,0.26190476,0.00000000,72.00000000,3.18584071,0.78000000 +628,chr22,30458848,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.10000000,50.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.21311475,0.00000000,80.00000000,3.53982301,3.45000000 +629,chr22,30467247,TP,A,A,ACATCCATC,ACATCCATC,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,51.00000000,0.00000000,9.00000000,CATC,4.00000000,,ref->het,0.26388889,0.00000000,99.00000000,4.38053097,2.90000000 +630,chr22,30472784,TP,G,G,GCATGGCCA,GCATGGCCA,-1.00000000,,,,0.50000000,,,4.00000000,1.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,43.00000000,0.00000000,3.00000000,CATGGCCA,8.00000000,,ref->het,0.25423729,0.00000000,74.00000000,3.27433628,0.46000000 +631,chr22,30596339,TP,A,A,AGT,AGT,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.48000000,41.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.17567568,0.00000000,84.00000000,3.71681416,1.44000000 +632,chr22,30602880,TP,GTCTTGC,GTCTTGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.00000000,46.00000000,0.00000000,1.00000000,TCTTGC,6.00000000,,ref->het,0.17021277,0.00000000,98.00000000,4.33628319,1.28000000 +633,chr22,30610626,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.36000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,89.00000000,3.93805310,0.93000000 +634,chr22,30615517,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.13000000,45.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.21052632,0.00000000,82.00000000,3.62831858,0.86000000 +635,chr22,30620143,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.10000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,78.00000000,3.45132743,2.42000000 +636,chr22,30626828,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.43000000,36.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.13513514,0.00000000,86.00000000,3.80530973,3.34000000 +637,chr22,30632803,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.46000000,37.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.16666667,0.00000000,52.00000000,2.30088496,2.84000000 +638,chr22,30638676,TP,ATGG,ATGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.27000000,42.00000000,0.00000000,2.00000000,TGG,3.00000000,,ref->het,0.19354839,0.00000000,67.00000000,2.96460177,2.88000000 +639,chr22,30680611,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.02000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.25423729,0.00000000,78.00000000,3.45132743,4.51000000 +640,chr22,30691490,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,45.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26966292,0.00000000,96.00000000,4.24778761,0.48000000 +641,chr22,30713461,TP,G,G,GTTATTTAT,GTTATTTAT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.13000000,59.00000000,0.00000000,4.00000000,TTAT,4.00000000,,ref->het,0.32142857,0.00000000,71.00000000,3.14159292,2.21000000 +642,chr22,30726598,TP,TAACA,TAACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.99000000,47.00000000,0.00000000,1.00000000,AACA,4.00000000,,ref->het,0.17948718,0.00000000,86.00000000,3.80530973,1.81000000 +643,chr22,30751995,TP,ACCT,ACCT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,36.00000000,0.00000000,1.00000000,CCT,3.00000000,,ref->het,0.17857143,0.00000000,60.00000000,2.65486726,0.09000000 +644,chr22,30764549,TP,T,T,TTGGG,TTGGG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.20000000,39.00000000,0.00000000,0.00000000,TGGG,4.00000000,,ref->het,0.24615385,0.00000000,71.00000000,3.14159292,1.01000000 +645,chr22,30781142,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.55000000,35.00000000,0.00000000,19.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,67.00000000,2.96460177,3.47000000 +646,chr22,30801986,TP,A,A,AGAAT,AGAAT,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.81000000,47.00000000,0.00000000,5.00000000,GAAT,4.00000000,,ref->het,0.27586207,0.00000000,76.00000000,3.36283186,3.41000000 +647,chr22,30812814,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.02000000,44.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.22784810,0.00000000,81.00000000,3.58407080,1.79000000 +648,chr22,30898356,TP,AAAT,AAAT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.21000000,46.00000000,0.00000000,4.00000000,AAT,3.00000000,,ref->het,0.26865672,0.00000000,78.00000000,3.45132743,0.44000000 +649,chr22,30905805,TP,A,A,AGCCACC,AGCCACC,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.82000000,59.00000000,0.00000000,3.00000000,GCCACC,6.00000000,,ref->het,0.25000000,0.00000000,110.00000000,4.86725664,2.87000000 +650,chr22,30912998,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,0.41000000,56.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.19587629,0.00000000,101.00000000,4.46902655,1.42000000 +651,chr22,30917558,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.19000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19587629,0.00000000,105.00000000,4.64601770,1.11000000 +652,chr22,30949455,TP,TACAGGGTAAAAATAAGA,TACAGGGTAAAAATAAGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.24000000,49.00000000,0.00000000,1.00000000,ACAGGGTAAAAATAAGA,17.00000000,,ref->het,0.24000000,0.00000000,75.00000000,3.31858407,0.54000000 +653,chr22,30968075,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.82000000,38.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.25581395,0.00000000,102.00000000,4.51327434,3.56000000 +654,chr22,30996324,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.81000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26881720,0.00000000,102.00000000,4.51327434,2.69000000 +655,chr22,30996911,TP,CAA,CAA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.14000000,79.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.52873563,0.00000000,101.00000000,4.46902655,4.15000000 +656,chr22,30997223,TP,G,G,GGT,GGT,-1.00000000,,,,0.50000000,,,9.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.71000000,45.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.18421053,0.00000000,87.00000000,3.84955752,2.14000000 +657,chr22,31016643,TP,ATTAT,ATTAT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.17000000,46.00000000,0.00000000,3.00000000,TTAT,4.00000000,,ref->het,0.21917808,0.00000000,81.00000000,3.58407080,1.08000000 +658,chr22,31021940,TP,CTCT,CTCT,C,C,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,80.00000000,0.00000000,2.00000000,TCT,3.00000000,,ref->het,0.43478261,0.00000000,98.00000000,4.33628319,1.59000000 +659,chr22,31025204,TP,ATT,ATT,A,A,-1.00000000,,,,0.50000000,,,5.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.49000000,75.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.34117647,0.00000000,89.00000000,3.93805310,2.88000000 +660,chr22,31026247,TP,GCTCTCC,GCTCTCC,G,G,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.39000000,33.00000000,0.00000000,6.00000000,CTCTCC,6.00000000,,ref->het,0.14285714,0.00000000,71.00000000,3.14159292,2.15000000 +661,chr22,31030145,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.28000000,77.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.33783784,0.00000000,81.00000000,3.58407080,0.62000000 +662,chr22,31030318,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.59000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22580645,0.00000000,100.00000000,4.42477876,4.80000000 +663,chr22,31038381,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,38.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.17105263,0.00000000,80.00000000,3.53982301,0.44000000 +664,chr22,31042730,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.59000000,34.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.30909091,0.00000000,74.00000000,3.27433628,5.94000000 +665,chr22,31052925,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,1.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.87000000,44.00000000,0.00000000,0.00000000,AG,2.00000000,,ref->het,0.19047619,0.00000000,76.00000000,3.36283186,3.32000000 +666,chr22,31059039,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.34000000,55.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.22077922,0.00000000,91.00000000,4.02654867,5.97000000 +667,chr22,31089014,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.88000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.20987654,0.00000000,86.00000000,3.80530973,2.29000000 +668,chr22,31097715,TP,G,G,GATAA,GATAA,-1.00000000,,,,1.00000000,,,10.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.43000000,37.00000000,0.00000000,9.00000000,ATAA,4.00000000,,ref->het,0.44642857,0.00000000,92.00000000,4.07079646,2.52000000 +669,chr22,31145676,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.96000000,37.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,88.00000000,3.89380531,7.18000000 +670,chr22,31150483,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,6.51000000,44.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19672131,0.00000000,77.00000000,3.40707965,13.66000000 +671,chr22,31151584,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.55000000,56.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.30487805,0.00000000,96.00000000,4.24778761,1.14000000 +672,chr22,31152269,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.80000000,39.00000000,0.00000000,3.00000000,GC,2.00000000,,ref->het,0.25000000,0.00000000,90.00000000,3.98230088,1.04000000 +673,chr22,31152988,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.39000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.29090909,0.00000000,73.00000000,3.23008850,10.21000000 +674,chr22,31187916,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.90000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,76.00000000,3.36283186,2.58000000 +675,chr22,31217260,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.67000000,46.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22222222,0.00000000,69.00000000,3.05309735,1.74000000 +676,chr22,31245612,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.59000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.23636364,0.00000000,66.00000000,2.92035398,1.22000000 +677,chr22,31251797,TP,G,G,GCT,GCT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.13000000,41.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.14736842,0.00000000,99.00000000,4.38053097,1.37000000 +678,chr22,31269065,TP,T,T,TGTTTG,TGTTTG,-1.00000000,,,,0.50000000,,,1.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.47000000,45.00000000,0.00000000,0.00000000,GTTTG,5.00000000,,ref->het,0.18333333,0.00000000,67.00000000,2.96460177,1.82000000 +679,chr22,31282180,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.39000000,67.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.24175824,0.00000000,94.00000000,4.15929204,0.32000000 +680,chr22,31282495,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.42000000,56.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,2.50000000 +681,chr22,31288440,TP,AAAGG,AAAGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.21000000,47.00000000,0.00000000,2.00000000,AAGG,4.00000000,,ref->het,0.20253165,0.00000000,86.00000000,3.80530973,6.41000000 +682,chr22,31330295,TP,TAAAG,TAAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.23000000,80.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.29487179,0.00000000,86.00000000,3.80530973,1.38000000 +683,chr22,31370752,TP,ATATT,ATATT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.69000000,35.00000000,0.00000000,10.00000000,TATT,4.00000000,,ref->het,0.22916667,0.00000000,81.00000000,3.58407080,0.60000000 +684,chr22,31372988,TP,CCAGGCTGGAGTGCAGTGCTGCAATCTT,CCAGGCTGGAGTGCAGTGCTGCAATCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.55000000,30.00000000,0.00000000,1.00000000,CAGGCTGGAGTGCAGTGCTGCAATCTT,27.00000000,,ref->het,0.15151515,0.00000000,36.00000000,1.59292035,5.36000000 +685,chr22,31387910,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.34000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25641026,0.00000000,91.00000000,4.02654867,2.10000000 +686,chr22,31405172,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,16.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.01000000,36.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,81.00000000,3.58407080,4.65000000 +687,chr22,31422720,TP,ATTATTTCTGTG,ATTATTTCTGTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.28000000,57.00000000,0.00000000,1.00000000,TTATTTCTGTG,11.00000000,,ref->het,0.22368421,0.00000000,77.00000000,3.40707965,0.00000000 +688,chr22,31429133,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.86000000,40.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.14473684,0.00000000,82.00000000,3.62831858,1.05000000 +689,chr22,31450093,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.26000000,45.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.18750000,0.00000000,84.00000000,3.71681416,0.34000000 +690,chr22,31460945,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.98000000,44.00000000,0.00000000,4.00000000,AAAC,4.00000000,,ref->het,0.17647059,0.00000000,79.00000000,3.49557522,1.06000000 +691,chr22,31472270,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.92000000,40.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.28358209,0.00000000,89.00000000,3.93805310,2.58000000 +692,chr22,31473063,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.78000000,33.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,91.00000000,4.02654867,7.28000000 +693,chr22,31484341,TP,ACTT,ACTT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.85000000,48.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.19230769,0.00000000,83.00000000,3.67256637,1.15000000 +694,chr22,31486030,TP,TGAGGTCAGGAGTTCGAGACCAGC,TGAGGTCAGGAGTTCGAGACCAGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,23.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,37.00000000,0.00000000,1.00000000,GAGGTCAGGAGTTCGAGACCAGC,23.00000000,,ref->het,0.12698413,0.00000000,60.00000000,2.65486726,1.32000000 +695,chr22,31494143,TP,AAAAAAAG,AAAAAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,22.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.25000000,44.00000000,0.00000000,2.00000000,AAAAAAG,7.00000000,,ref->het,0.22857143,0.00000000,72.00000000,3.18584071,9.44000000 +696,chr22,31494313,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.79000000,37.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.31111111,0.00000000,59.00000000,2.61061947,4.23000000 +697,chr22,31498276,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.19000000,58.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.27142857,0.00000000,75.00000000,3.31858407,1.33000000 +698,chr22,31531893,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.04000000,35.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.25862069,0.00000000,73.00000000,3.23008850,9.60000000 +699,chr22,31556226,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.45000000,39.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.30434783,0.00000000,89.00000000,3.93805310,4.20000000 +700,chr22,31563767,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,37.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,49.00000000,2.16814159,0.47000000 +701,chr22,31567568,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.75000000,42.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.22368421,0.00000000,84.00000000,3.71681416,9.24000000 +702,chr22,31570449,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.70000000,57.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.24324324,0.00000000,77.00000000,3.40707965,0.89000000 +703,chr22,31571479,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.11000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.28333333,0.00000000,78.00000000,3.45132743,1.92000000 +704,chr22,31573263,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.43000000,52.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.22058824,0.00000000,76.00000000,3.36283186,2.30000000 +705,chr22,31579319,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.63000000,32.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21333333,0.00000000,91.00000000,4.02654867,2.84000000 +706,chr22,31581155,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.31000000,49.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,77.00000000,3.40707965,1.37000000 +707,chr22,31589189,TP,TGA,TGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.82000000,68.00000000,0.00000000,2.00000000,GA,2.00000000,,ref->het,0.30769231,0.00000000,95.00000000,4.20353982,1.12000000 +708,chr22,31589326,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.09000000,57.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23711340,0.00000000,103.00000000,4.55752212,2.45000000 +709,chr22,31590979,TP,A,A,ATTTTT,ATTTTT,-1.00000000,,,,0.50000000,,,12.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.36000000,30.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.17647059,0.00000000,77.00000000,3.40707965,2.34000000 +710,chr22,31593921,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,4.22000000,31.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.15000000,0.00000000,42.00000000,1.85840708,4.25000000 +711,chr22,31596298,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.27000000,40.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.14084507,0.00000000,80.00000000,3.53982301,2.02000000 +712,chr22,31597981,TP,G,G,GTT,GTT,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.68000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22727273,0.00000000,86.00000000,3.80530973,5.30000000 +713,chr22,31618708,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.30000000,40.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.13513514,0.00000000,78.00000000,3.45132743,1.31000000 +714,chr22,31625550,TP,G,G,GGGCCCTCCTC,GGGCCCTCCTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.19000000,50.00000000,0.00000000,1.00000000,GGCCCTCCTC,10.00000000,,ref->het,0.19444444,0.00000000,78.00000000,3.45132743,1.63000000 +715,chr22,31626493,TP,GCTCTGGCTCTCTCCTCACCC,GCTCTGGCTCTCTCCTCACCC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.25000000,44.00000000,0.00000000,1.00000000,CTCTGGCTCTCTCCTCACCC,20.00000000,,ref->het,0.14457831,0.00000000,78.00000000,3.45132743,2.55000000 +716,chr22,31630402,TP,T,T,TCAGGGCCGGAGGCGCCC,TCAGGGCCGGAGGCGCCC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.96000000,83.00000000,0.00000000,0.00000000,CAGGGCCGGAGGCGCCC,17.00000000,,ref->het,0.30681818,0.00000000,88.00000000,3.89380531,1.43000000 +717,chr22,31635168,TP,A,A,AAAAACAAAACAAAACAAAAC,AAAAACAAAACAAAACAAAAC,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.17000000,44.00000000,0.00000000,5.00000000,AAAAC,5.00000000,,ref->het,0.23214286,0.00000000,69.00000000,3.05309735,0.73000000 +718,chr22,31643122,TP,AATAGAG,AATAGAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,20.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.09000000,34.00000000,0.00000000,1.00000000,ATAGAG,6.00000000,,ref->het,0.14705882,0.00000000,77.00000000,3.40707965,6.26000000 +719,chr22,31653038,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,19.00000000,21.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.61000000,34.00000000,0.00000000,21.00000000,A,1.00000000,,ref->het,0.27272727,0.00000000,66.00000000,2.92035398,9.33000000 +720,chr22,31658540,TP,AGTTTGTTT,AGTTTGTTT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.19000000,44.00000000,0.00000000,6.00000000,GTTT,4.00000000,,ref->het,0.21917808,0.00000000,82.00000000,3.62831858,0.98000000 +721,chr22,31661098,TP,AAAC,AAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,44.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.19117647,0.00000000,70.00000000,3.09734513,1.43000000 +722,chr22,31661392,TP,T,T,TACA,TACA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.69000000,51.00000000,0.00000000,1.00000000,ACA,3.00000000,,ref->het,0.20224719,0.00000000,97.00000000,4.29203540,1.24000000 +723,chr22,31664363,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.93000000,42.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.23456790,0.00000000,91.00000000,4.02654867,1.88000000 +724,chr22,31666129,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.73000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21538462,0.00000000,76.00000000,3.36283186,7.08000000 +725,chr22,31669292,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,58.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26190476,0.00000000,96.00000000,4.24778761,0.66000000 +726,chr22,31671697,TP,GAAAA,GAAAA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,19.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.51000000,33.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,65.00000000,2.87610619,5.08000000 +727,chr22,31673776,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.13000000,34.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25490196,0.00000000,73.00000000,3.23008850,3.62000000 +728,chr22,31681278,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.53000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.19512195,0.00000000,93.00000000,4.11504425,2.89000000 +729,chr22,31688901,TP,T,T,TACACACACACAC,TACACACACACAC,-1.00000000,,,,0.50000000,,,18.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,36.00000000,0.00000000,12.00000000,AC,2.00000000,,ref->het,0.14285714,0.00000000,82.00000000,3.62831858,3.40000000 +730,chr22,31697118,TP,AAAACAAAC,AAAACAAAC,A,A,-1.00000000,,,,0.50000000,,,5.00000000,9.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.75000000,30.00000000,0.00000000,7.00000000,AAAC,4.00000000,,ref->het,0.12068966,0.00000000,77.00000000,3.40707965,1.17000000 +731,chr22,31697882,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.15000000,49.00000000,0.00000000,5.00000000,TA,2.00000000,,ref->het,0.19767442,0.00000000,93.00000000,4.11504425,0.69000000 +732,chr22,31706135,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.06000000,33.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16326531,0.00000000,53.00000000,2.34513274,1.38000000 +733,chr22,31707356,TP,GAACA,GAACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.23000000,41.00000000,0.00000000,2.00000000,AACA,4.00000000,,ref->het,0.17647059,0.00000000,72.00000000,3.18584071,0.17000000 +734,chr22,31718803,TP,G,G,GTGGCTCATGCCTGTAATTCCAGCGA,GTGGCTCATGCCTGTAATTCCAGCGA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.77000000,41.00000000,0.00000000,0.00000000,TGGCTCATGCCTGTAATTCCAGCGA,25.00000000,,ref->het,0.20754717,0.00000000,61.00000000,2.69911504,0.72000000 +735,chr22,31735440,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.59000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,87.00000000,3.84955752,5.21000000 +736,chr22,31742367,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.53000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23376623,0.00000000,91.00000000,4.02654867,7.64000000 +737,chr22,31745376,TP,CAAAAAAT,CAAAAAAT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.21000000,36.00000000,0.00000000,3.00000000,AAAAAAT,7.00000000,,ref->het,0.11594203,0.00000000,88.00000000,3.89380531,1.08000000 +738,chr22,31759383,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.61000000,49.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,72.00000000,3.18584071,2.39000000 +739,chr22,31780112,TP,TAG,TAG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.56000000,52.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.22093023,0.00000000,93.00000000,4.11504425,0.80000000 +740,chr22,31781435,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.20000000,40.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.16923077,0.00000000,68.00000000,3.00884956,2.24000000 +741,chr22,31785587,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.34000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.20967742,0.00000000,77.00000000,3.40707965,1.14000000 +742,chr22,31820112,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.19000000,39.00000000,0.00000000,9.00000000,TG,2.00000000,,ref->het,0.20289855,0.00000000,84.00000000,3.71681416,2.68000000 +743,chr22,31826897,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.85000000,46.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.30769231,0.00000000,98.00000000,4.33628319,3.52000000 +744,chr22,31856232,TP,G,G,GAC,GAC,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.34000000,45.00000000,0.00000000,11.00000000,AC,2.00000000,,ref->het,0.21333333,0.00000000,93.00000000,4.11504425,4.40000000 +745,chr22,31979859,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.43000000,43.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,71.00000000,3.14159292,11.07000000 +746,chr22,32019482,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,1.00000000,24.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.57000000,43.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.16949153,0.00000000,70.00000000,3.09734513,9.25000000 +747,chr22,32030486,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.73000000,38.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.19230769,0.00000000,82.00000000,3.62831858,2.45000000 +748,chr22,32212863,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.04000000,52.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.20833333,0.00000000,76.00000000,3.36283186,0.79000000 +749,chr22,32222182,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,59.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.24050633,0.00000000,85.00000000,3.76106195,1.12000000 +750,chr22,32228335,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,58.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,74.00000000,3.27433628,1.18000000 +751,chr22,32241803,TP,G,G,GTGTGTA,GTGTGTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.46000000,47.00000000,0.00000000,0.00000000,TGTGTA,6.00000000,,ref->het,0.21739130,0.00000000,80.00000000,3.53982301,3.80000000 +752,chr22,32253785,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.85000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,95.00000000,4.20353982,2.59000000 +753,chr22,32264073,TP,G,G,GAAATACCCA,GAAATACCCA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.68000000,37.00000000,0.00000000,1.00000000,AAATACCCA,9.00000000,,ref->het,0.15068493,0.00000000,80.00000000,3.53982301,3.92000000 +754,chr22,32264187,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.16250000,0.00000000,89.00000000,3.93805310,3.40000000 +755,chr22,32288005,TP,ATTTC,ATTTC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.21000000,45.00000000,0.00000000,3.00000000,TTTC,4.00000000,,ref->het,0.22222222,0.00000000,67.00000000,2.96460177,3.00000000 +756,chr22,32290069,TP,GTTTTTCTT,GTTTTTCTT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.73000000,55.00000000,0.00000000,2.00000000,TTTTTCTT,8.00000000,,ref->het,0.22077922,0.00000000,90.00000000,3.98230088,1.23000000 +757,chr22,32292240,TP,ATAAT,ATAAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.86000000,31.00000000,0.00000000,1.00000000,TAAT,4.00000000,,ref->het,0.09259259,0.00000000,60.00000000,2.65486726,4.07000000 +758,chr22,32294590,TP,CATTAAT,CATTAAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.33000000,42.00000000,0.00000000,2.00000000,ATTAAT,6.00000000,,ref->het,0.17187500,0.00000000,74.00000000,3.27433628,1.11000000 +759,chr22,32302303,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.07000000,38.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.22368421,0.00000000,92.00000000,4.07079646,5.68000000 +760,chr22,32303604,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.77000000,52.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.20588235,0.00000000,76.00000000,3.36283186,1.85000000 +761,chr22,32304850,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.57000000,40.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20481928,0.00000000,88.00000000,3.89380531,1.67000000 +762,chr22,32306908,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.54000000,46.00000000,0.00000000,2.00000000,GC,2.00000000,,ref->het,0.20731707,0.00000000,87.00000000,3.84955752,3.87000000 +763,chr22,32307934,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.72000000,57.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.24675325,0.00000000,81.00000000,3.58407080,0.85000000 +764,chr22,32311705,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.35000000,52.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.19718310,0.00000000,75.00000000,3.31858407,2.36000000 +765,chr22,32314611,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,35.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20238095,0.00000000,97.00000000,4.29203540,1.01000000 +766,chr22,32314821,TP,C,C,CAGAG,CAGAG,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,49.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.26865672,0.00000000,78.00000000,3.45132743,0.08000000 +767,chr22,32325406,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.75000000,45.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.24657534,0.00000000,78.00000000,3.45132743,2.14000000 +768,chr22,32329510,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.85000000,42.00000000,0.00000000,6.00000000,GT,2.00000000,,ref->het,0.30434783,0.00000000,56.00000000,2.47787611,9.72000000 +769,chr22,32332418,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.17000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17948718,0.00000000,88.00000000,3.89380531,2.64000000 +770,chr22,32333196,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.92000000,43.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.30188679,0.00000000,65.00000000,2.87610619,4.93000000 +771,chr22,32333265,TP,TCTGA,TCTGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.77000000,45.00000000,0.00000000,1.00000000,CTGA,4.00000000,,ref->het,0.22388060,0.00000000,73.00000000,3.23008850,7.48000000 +772,chr22,32334140,TP,G,G,GAC,GAC,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.11000000,39.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.51724138,0.00000000,72.00000000,3.18584071,3.77000000 +773,chr22,32335345,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.02000000,38.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.17073171,0.00000000,90.00000000,3.98230088,2.30000000 +774,chr22,32336159,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.80000000,40.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.15116279,0.00000000,93.00000000,4.11504425,2.64000000 +775,chr22,32337851,TP,AGAT,AGAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.77000000,65.00000000,0.00000000,2.00000000,GAT,3.00000000,,ref->het,0.27777778,0.00000000,93.00000000,4.11504425,1.14000000 +776,chr22,32337912,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.19000000,65.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.28089888,0.00000000,98.00000000,4.33628319,1.45000000 +777,chr22,32338003,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.18000000,73.00000000,0.00000000,3.00000000,CT,2.00000000,,ref->het,0.33333333,0.00000000,100.00000000,4.42477876,0.82000000 +778,chr22,32338398,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.24271845,0.00000000,104.00000000,4.60176991,0.51000000 +779,chr22,32343068,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.10000000,56.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.25531915,0.00000000,102.00000000,4.51327434,1.28000000 +780,chr22,32357472,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.45000000,61.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.39726027,0.00000000,88.00000000,3.89380531,3.50000000 +781,chr22,32361523,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.29000000,43.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.19354839,0.00000000,104.00000000,4.60176991,2.36000000 +782,chr22,32364883,TP,CCTCTGCCCCAGGA,CCTCTGCCCCAGGA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.97000000,61.00000000,0.00000000,2.00000000,CTCTGCCCCAGGA,13.00000000,,ref->het,0.34920635,0.00000000,70.00000000,3.09734513,3.50000000 +783,chr22,32365078,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20289855,0.00000000,80.00000000,3.53982301,1.62000000 +784,chr22,32366882,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,4.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.53000000,45.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.16250000,0.00000000,88.00000000,3.89380531,0.09000000 +785,chr22,32371450,TP,A,A,AAAAAT,AAAAAT,-1.00000000,,,,0.50000000,,,6.00000000,11.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.16000000,37.00000000,0.00000000,5.00000000,AAAAT,5.00000000,,ref->het,0.26785714,0.00000000,83.00000000,3.67256637,4.73000000 +786,chr22,32372087,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20000000,0.00000000,97.00000000,4.29203540,2.11000000 +787,chr22,32372919,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.36000000,38.00000000,0.00000000,7.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,85.00000000,3.76106195,1.21000000 +788,chr22,32375106,TP,AATTT,AATTT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.00000000,56.00000000,0.00000000,1.00000000,ATTT,4.00000000,,ref->het,0.23529412,0.00000000,73.00000000,3.23008850,0.54000000 +789,chr22,32375462,TP,CCTCT,CCTCT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.19000000,45.00000000,0.00000000,10.00000000,CT,2.00000000,,ref->het,0.23214286,0.00000000,64.00000000,2.83185841,1.06000000 +790,chr22,32377378,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.45000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19230769,0.00000000,87.00000000,3.84955752,2.22000000 +791,chr22,32377926,TP,CCTA,CCTA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,71.00000000,0.00000000,1.00000000,CTA,3.00000000,,ref->het,0.34848485,0.00000000,72.00000000,3.18584071,0.06000000 +792,chr22,32381332,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.54000000,36.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.26086957,0.00000000,80.00000000,3.53982301,2.13000000 +793,chr22,32381877,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,44.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.19736842,0.00000000,82.00000000,3.62831858,1.81000000 +794,chr22,32382518,TP,G,G,GTA,GTA,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.30000000,46.00000000,0.00000000,7.00000000,TA,2.00000000,,ref->het,0.35087719,0.00000000,66.00000000,2.92035398,1.71000000 +795,chr22,32385150,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.64000000,33.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.21311475,0.00000000,90.00000000,3.98230088,7.59000000 +796,chr22,32395942,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,65.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.41269841,0.00000000,73.00000000,3.23008850,0.00000000 +797,chr22,32424529,TP,A,A,AAGGGTAT,AAGGGTAT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.46000000,42.00000000,0.00000000,1.00000000,AGGGTAT,7.00000000,,ref->het,0.16393443,0.00000000,70.00000000,3.09734513,2.84000000 +798,chr22,32424577,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.39000000,36.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.12500000,0.00000000,74.00000000,3.27433628,11.38000000 +799,chr22,32426903,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.37000000,48.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.22950820,0.00000000,73.00000000,3.23008850,5.03000000 +800,chr22,32429200,TP,T,T,TTTTTAC,TTTTTAC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.20000000,43.00000000,0.00000000,0.00000000,TTTTAC,6.00000000,,ref->het,0.22033898,0.00000000,67.00000000,2.96460177,1.96000000 +801,chr22,32430563,TP,ATATATT,ATATATT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.09000000,60.00000000,0.00000000,1.00000000,TATATT,6.00000000,,ref->het,0.24038462,0.00000000,109.00000000,4.82300885,1.00000000 +802,chr22,32432013,TP,A,A,AGC,AGC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.15000000,57.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.49367089,0.00000000,80.00000000,3.53982301,1.87000000 +803,chr22,32448866,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.07000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.18918919,0.00000000,79.00000000,3.49557522,5.55000000 +804,chr22,32525113,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.42000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.19767442,0.00000000,94.00000000,4.15929204,2.00000000 +805,chr22,32535781,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.25000000,38.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.20547945,0.00000000,81.00000000,3.58407080,4.36000000 +806,chr22,32536431,TP,TTAC,TTAC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.31000000,50.00000000,0.00000000,2.00000000,TAC,3.00000000,,ref->het,0.19444444,0.00000000,78.00000000,3.45132743,0.86000000 +807,chr22,32538406,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.60000000,44.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.17391304,0.00000000,99.00000000,4.38053097,2.26000000 +808,chr22,32538727,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,47.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,86.00000000,3.80530973,0.96000000 +809,chr22,32539321,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.56000000,36.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,80.00000000,3.53982301,0.55000000 +810,chr22,32539503,TP,TGTATACACGG,TGTATACACGG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.64000000,37.00000000,0.00000000,1.00000000,GTATACACGG,10.00000000,,ref->het,0.12903226,0.00000000,63.00000000,2.78761062,0.23000000 +811,chr22,32539791,TP,G,G,GAAA,GAAA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.50000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25396825,0.00000000,70.00000000,3.09734513,2.56000000 +812,chr22,32546943,TP,C,C,CCTCT,CCTCT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.52000000,51.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.28571429,0.00000000,53.00000000,2.34513274,3.13000000 +813,chr22,32549888,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,15.00000000,12.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.91000000,30.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.19047619,0.00000000,75.00000000,3.31858407,4.72000000 +814,chr22,32550364,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.51000000,35.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.24000000,0.00000000,89.00000000,3.93805310,4.06000000 +815,chr22,32553618,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.33000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21126761,0.00000000,77.00000000,3.40707965,1.27000000 +816,chr22,32588121,TP,G,G,GATT,GATT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.33000000,50.00000000,0.00000000,3.00000000,ATT,3.00000000,,ref->het,0.22077922,0.00000000,85.00000000,3.76106195,1.97000000 +817,chr22,32613550,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.45000000,54.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.27272727,0.00000000,70.00000000,3.09734513,0.36000000 +818,chr22,32637616,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.79000000,36.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.24074074,0.00000000,69.00000000,3.05309735,6.44000000 +819,chr22,32671651,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.32000000,46.00000000,0.00000000,3.00000000,CA,2.00000000,,ref->het,0.23456790,0.00000000,91.00000000,4.02654867,2.09000000 +820,chr22,32676710,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,12.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.15000000,37.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.29824561,0.00000000,72.00000000,3.18584071,4.37000000 +821,chr22,32677827,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.32000000,39.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.22916667,0.00000000,101.00000000,4.46902655,4.18000000 +822,chr22,32701475,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.96000000,71.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.49462366,0.00000000,102.00000000,4.51327434,2.08000000 +823,chr22,32702737,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,99.00000000,4.38053097,1.13000000 +824,chr22,32707681,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,50.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.22891566,0.00000000,86.00000000,3.80530973,0.84000000 +825,chr22,32713798,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,5.11000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,84.00000000,3.71681416,13.02000000 +826,chr22,32714571,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.81000000,33.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21917808,0.00000000,86.00000000,3.80530973,2.27000000 +827,chr22,32716697,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.49000000,45.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,81.00000000,3.58407080,1.74000000 +828,chr22,32782897,TP,AAGCAATTCTCTATTGAGAAGG,AAGCAATTCTCTATTGAGAAGG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.70000000,32.00000000,0.00000000,1.00000000,AGCAATTCTCTATTGAGAAGG,21.00000000,,ref->het,0.13513514,0.00000000,82.00000000,3.62831858,0.95000000 +829,chr22,32785994,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.49000000,34.00000000,0.00000000,8.00000000,AAG,3.00000000,,ref->het,0.14285714,0.00000000,75.00000000,3.31858407,1.17000000 +830,chr22,32788242,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.11000000,33.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,1.78000000 +831,chr22,32788679,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.25000000,58.00000000,0.00000000,2.00000000,TA,2.00000000,,ref->het,0.20000000,0.00000000,104.00000000,4.60176991,3.24000000 +832,chr22,32807293,TP,G,G,GAT,GAT,-1.00000000,,,,0.50000000,,,7.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.08000000,42.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.23913043,0.00000000,53.00000000,2.34513274,3.47000000 +833,chr22,32832541,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.27000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23287671,0.00000000,90.00000000,3.98230088,6.46000000 +834,chr22,32832673,TP,G,G,GTATTTTATTT,GTATTTTATTT,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.98000000,39.00000000,0.00000000,5.00000000,TATTT,5.00000000,,ref->het,0.18750000,0.00000000,96.00000000,4.24778761,3.47000000 +835,chr22,32850774,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.24000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22368421,0.00000000,83.00000000,3.67256637,2.74000000 +836,chr22,32912401,TP,GACA,GACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.77000000,38.00000000,0.00000000,2.00000000,ACA,3.00000000,,ref->het,0.17142857,0.00000000,72.00000000,3.18584071,1.59000000 +837,chr22,32927414,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,40.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.27777778,0.00000000,57.00000000,2.52212389,5.99000000 +838,chr22,32929358,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,33.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.14634146,0.00000000,90.00000000,3.98230088,0.94000000 +839,chr22,32948876,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.93000000,43.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.31428571,0.00000000,93.00000000,4.11504425,5.55000000 +840,chr22,32976994,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.52000000,40.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.32758621,0.00000000,67.00000000,2.96460177,6.24000000 +841,chr22,32981588,TP,C,C,CAAT,CAAT,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,39.00000000,0.00000000,9.00000000,AAT,3.00000000,,ref->het,0.34042553,0.00000000,65.00000000,2.87610619,0.41000000 +842,chr22,32990301,TP,A,A,AATCC,AATCC,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.54000000,37.00000000,0.00000000,11.00000000,ATCC,4.00000000,,ref->het,0.21739130,0.00000000,68.00000000,3.00884956,1.67000000 +843,chr22,32991360,TP,A,A,AATG,AATG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.89000000,48.00000000,0.00000000,0.00000000,ATG,3.00000000,,ref->het,0.20338983,0.00000000,66.00000000,2.92035398,1.56000000 +844,chr22,32999685,TP,AAAAACAAAAACAAAAC,AAAAACAAAAACAAAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.59000000,54.00000000,0.00000000,1.00000000,AAAACAAAAACAAAAC,16.00000000,,ref->het,0.26315789,0.00000000,62.00000000,2.74336283,2.48000000 +845,chr22,33007940,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.53000000,41.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.47297297,0.00000000,96.00000000,4.24778761,3.39000000 +846,chr22,33008738,TP,ACTCT,ACTCT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,50.00000000,0.00000000,5.00000000,CT,2.00000000,,ref->het,0.28301887,0.00000000,57.00000000,2.52212389,1.65000000 +847,chr22,33009821,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.66000000,94.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.46666667,0.00000000,81.00000000,3.58407080,3.83000000 +848,chr22,33009833,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.63000000,47.00000000,0.00000000,0.00000000,TA,2.00000000,,ref->het,0.17391304,0.00000000,77.00000000,3.40707965,3.67000000 +849,chr22,33012206,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25316456,0.00000000,84.00000000,3.71681416,0.72000000 +850,chr22,33015840,TP,C,C,CTTTT,CTTTT,-1.00000000,,,,0.50000000,,,8.00000000,19.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.40000000,53.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.20731707,0.00000000,100.00000000,4.42477876,8.73000000 +851,chr22,33017760,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.55000000,41.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.30379747,0.00000000,89.00000000,3.93805310,4.09000000 +852,chr22,33020946,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.42000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,77.00000000,3.40707965,1.13000000 +853,chr22,33023737,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,63.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.33928571,0.00000000,62.00000000,2.74336283,0.64000000 +854,chr22,33024488,TP,T,T,TC,TC,-1.00000000,,,,1.00000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.22000000,100.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.45000000,0.00000000,67.00000000,2.96460177,0.37000000 +855,chr22,33027637,TP,C,C,CAAAG,CAAAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.50000000,50.00000000,0.00000000,0.00000000,AAAG,4.00000000,,ref->het,0.23333333,0.00000000,66.00000000,2.92035398,2.55000000 +856,chr22,33030678,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.35000000,46.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.20289855,0.00000000,72.00000000,3.18584071,2.78000000 +857,chr22,33037996,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.25000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.19230769,0.00000000,92.00000000,4.07079646,3.54000000 +858,chr22,33038777,TP,T,T,TTGAG,TTGAG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,51.00000000,0.00000000,0.00000000,TGAG,4.00000000,,ref->het,0.22950820,0.00000000,63.00000000,2.78761062,0.63000000 +859,chr22,33063177,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.24000000,0.00000000,81.00000000,3.58407080,1.66000000 +860,chr22,33063473,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.50000000,42.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.24637681,0.00000000,83.00000000,3.67256637,5.53000000 +861,chr22,33064523,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.68000000,36.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.20754717,0.00000000,74.00000000,3.27433628,3.89000000 +862,chr22,33068946,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.60000000,40.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.18181818,0.00000000,69.00000000,3.05309735,0.48000000 +863,chr22,33089431,TP,C,C,CTCT,CTCT,-1.00000000,,,,1.00000000,,,4.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.94000000,61.00000000,0.00000000,3.00000000,TCT,3.00000000,,ref->het,0.37500000,0.00000000,74.00000000,3.27433628,2.90000000 +864,chr22,33089464,TP,C,C,CTCTTCT,CTCTTCT,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.58000000,49.00000000,0.00000000,3.00000000,TCT,3.00000000,,ref->het,0.44444444,0.00000000,73.00000000,3.23008850,2.59000000 +865,chr22,33089776,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.07000000,70.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.42857143,0.00000000,87.00000000,3.84955752,0.56000000 +866,chr22,33092247,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.60000000,44.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,68.00000000,3.00884956,2.92000000 +867,chr22,33104963,TP,CTCTTTCTT,CTCTTTCTT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.01000000,47.00000000,0.00000000,4.00000000,TCTT,4.00000000,,ref->het,0.25454545,0.00000000,65.00000000,2.87610619,3.22000000 +868,chr22,33120042,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21333333,0.00000000,83.00000000,3.67256637,0.83000000 +869,chr22,33190145,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.60000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.27631579,0.00000000,82.00000000,3.62831858,3.34000000 +870,chr22,33224288,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.21000000,31.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.23809524,0.00000000,68.00000000,3.00884956,2.22000000 +871,chr22,33258878,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.52000000,32.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.47761194,0.00000000,86.00000000,3.80530973,6.06000000 +872,chr22,33396463,TP,CAGAGAGAGAG,CAGAGAGAGAG,C,C,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.12000000,38.00000000,0.00000000,17.00000000,AG,2.00000000,,ref->het,0.19148936,0.00000000,64.00000000,2.83185841,8.33000000 +873,chr22,33412290,TP,C,C,CATATAT,CATATAT,-1.00000000,,,,0.50000000,,,11.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.76000000,35.00000000,0.00000000,8.00000000,AT,2.00000000,,ref->het,0.13333333,0.00000000,81.00000000,3.58407080,0.68000000 +874,chr22,33438639,TP,C,C,CGGGAG,CGGGAG,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.69000000,42.00000000,0.00000000,1.00000000,GGGAG,5.00000000,,ref->het,0.17241379,0.00000000,64.00000000,2.83185841,0.83000000 +875,chr22,33461005,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.32000000,55.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.26582278,0.00000000,83.00000000,3.67256637,1.25000000 +876,chr22,33473162,TP,ATC,ATC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.97000000,39.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.16666667,0.00000000,74.00000000,3.27433628,3.62000000 +877,chr22,33502898,TP,ATGCTC,ATGCTC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.31000000,39.00000000,0.00000000,1.00000000,TGCTC,5.00000000,,ref->het,0.17567568,0.00000000,77.00000000,3.40707965,1.46000000 +878,chr22,33587735,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.38000000,39.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.23595506,0.00000000,98.00000000,4.33628319,2.49000000 +879,chr22,33588510,TP,CGTGT,CGTGT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.23000000,40.00000000,0.00000000,12.00000000,GT,2.00000000,,ref->het,0.21250000,0.00000000,85.00000000,3.76106195,0.70000000 +880,chr22,33589478,TP,AAATT,AAATT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.61000000,62.00000000,0.00000000,3.00000000,AATT,4.00000000,,ref->het,0.27142857,0.00000000,85.00000000,3.76106195,1.55000000 +881,chr22,33589920,TP,T,T,TGTG,TGTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.01000000,58.00000000,0.00000000,1.00000000,GTG,3.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,2.80000000 +882,chr22,33592693,TP,ACTGT,ACTGT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.29000000,61.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.24444444,0.00000000,94.00000000,4.15929204,1.49000000 +883,chr22,33632528,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.12000000,57.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.22950820,0.00000000,70.00000000,3.09734513,2.25000000 +884,chr22,33634674,TP,A,A,AAAT,AAAT,-1.00000000,,,,1.00000000,,,10.00000000,6.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.59000000,79.00000000,0.00000000,9.00000000,AAT,3.00000000,,ref->het,0.49180328,0.00000000,76.00000000,3.36283186,2.50000000 +885,chr22,33725560,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.41000000,39.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,1.09000000 +886,chr22,33780433,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.52000000,47.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.19178082,0.00000000,76.00000000,3.36283186,0.18000000 +887,chr22,33798290,TP,C,C,CTCAATCAA,CTCAATCAA,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.48000000,48.00000000,0.00000000,7.00000000,TCAA,4.00000000,,ref->het,0.28571429,0.00000000,83.00000000,3.67256637,0.45000000 +888,chr22,33802035,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.03000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.35294118,0.00000000,80.00000000,3.53982301,3.77000000 +889,chr22,33872359,TP,CTATTATTAT,CTATTATTAT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.11000000,35.00000000,0.00000000,13.00000000,TAT,3.00000000,,ref->het,0.19642857,0.00000000,80.00000000,3.53982301,1.55000000 +890,chr22,33907569,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.65000000,35.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,3.91000000 +891,chr22,33915046,TP,G,G,GAGAGAGAC,GAGAGAGAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.83000000,50.00000000,0.00000000,0.00000000,AGAGAGAC,8.00000000,,ref->het,0.19696970,0.00000000,62.00000000,2.74336283,0.82000000 +892,chr22,33990882,TP,A,A,AATCTAC,AATCTAC,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.00000000,90.00000000,0.00000000,0.00000000,ATCTAC,6.00000000,,ref->het,0.48051948,0.00000000,82.00000000,3.62831858,1.57000000 +893,chr22,34112909,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.03000000,32.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.24285714,0.00000000,90.00000000,3.98230088,12.06000000 +894,chr22,34125532,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.07000000,51.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.20000000,0.00000000,103.00000000,4.55752212,0.42000000 +895,chr22,34144911,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.74000000,35.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,88.00000000,3.89380531,3.53000000 +896,chr22,34151045,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.22666667,0.00000000,85.00000000,3.76106195,2.12000000 +897,chr22,34154532,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.93000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.28767123,0.00000000,78.00000000,3.45132743,1.30000000 +898,chr22,34155963,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.66000000,35.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.16129032,0.00000000,69.00000000,3.05309735,7.59000000 +899,chr22,34221313,TP,TAAATA,TAAATA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.42000000,43.00000000,0.00000000,2.00000000,AAATA,5.00000000,,ref->het,0.18181818,0.00000000,65.00000000,2.87610619,1.35000000 +900,chr22,34222296,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.39000000,32.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,77.00000000,3.40707965,1.56000000 +901,chr22,34241248,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.38000000,52.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.25925926,0.00000000,58.00000000,2.56637168,0.96000000 +902,chr22,34264246,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,68.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.44444444,0.00000000,90.00000000,3.98230088,0.60000000 +903,chr22,34275351,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.58000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22972973,0.00000000,81.00000000,3.58407080,1.17000000 +904,chr22,34287936,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.05000000,61.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.28395062,0.00000000,83.00000000,3.67256637,0.77000000 +905,chr22,34297292,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,64.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.55913978,0.00000000,97.00000000,4.29203540,1.70000000 +906,chr22,34306058,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.87000000,43.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.36842105,0.00000000,66.00000000,2.92035398,3.63000000 +907,chr22,34324302,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.53000000,43.00000000,0.00000000,3.00000000,AAAC,4.00000000,,ref->het,0.17808219,0.00000000,80.00000000,3.53982301,0.74000000 +908,chr22,34328461,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.00000000,43.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.26666667,0.00000000,65.00000000,2.87610619,2.87000000 +909,chr22,34335015,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.78000000,59.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.47368421,0.00000000,79.00000000,3.49557522,0.96000000 +910,chr22,34341710,TP,TC,TC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.37000000,40.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.50000000,0.00000000,89.00000000,3.93805310,3.94000000 +911,chr22,34400567,TP,T,T,TCTGA,TCTGA,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.98000000,40.00000000,0.00000000,0.00000000,CTGA,4.00000000,,ref->het,0.28205128,0.00000000,46.00000000,2.03539823,2.04000000 +912,chr22,34402864,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.89000000,44.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.23880597,0.00000000,74.00000000,3.27433628,2.10000000 +913,chr22,34466280,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.88000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,61.00000000,2.69911504,5.63000000 +914,chr22,34633325,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.02000000,60.00000000,0.00000000,5.00000000,AAAT,4.00000000,,ref->het,0.27272727,0.00000000,85.00000000,3.76106195,0.59000000 +915,chr22,34690474,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.85000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,85.00000000,3.76106195,3.43000000 +916,chr22,34691595,TP,C,C,CGT,CGT,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.81000000,43.00000000,0.00000000,6.00000000,GT,2.00000000,,ref->het,0.21739130,0.00000000,84.00000000,3.71681416,1.18000000 +917,chr22,34708027,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.19000000,53.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.30555556,0.00000000,83.00000000,3.67256637,0.60000000 +918,chr22,34740575,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,16.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.80000000,53.00000000,0.00000000,15.00000000,TG,2.00000000,,ref->het,0.25396825,0.00000000,85.00000000,3.76106195,0.50000000 +919,chr22,34757677,TP,CAGGCTGAGGTCA,CAGGCTGAGGTCA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.98000000,53.00000000,0.00000000,1.00000000,AGGCTGAGGTCA,12.00000000,,ref->het,0.25301205,0.00000000,84.00000000,3.71681416,0.85000000 +920,chr22,34760077,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.46000000,54.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,69.00000000,3.05309735,0.62000000 +921,chr22,34930653,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.30000000,30.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.27272727,0.00000000,71.00000000,3.14159292,8.36000000 +922,chr22,34966293,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,11.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.96000000,35.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,98.00000000,4.33628319,6.01000000 +923,chr22,34966650,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,46.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.24561404,0.00000000,63.00000000,2.78761062,0.00000000 +924,chr22,34979345,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.41000000,36.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.26229508,0.00000000,70.00000000,3.09734513,0.62000000 +925,chr22,34987964,TP,TTAATA,TTAATA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.34000000,52.00000000,0.00000000,1.00000000,TAATA,5.00000000,,ref->het,0.20652174,0.00000000,97.00000000,4.29203540,2.86000000 +926,chr22,34996297,TP,C,C,CAA,CAA,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,52.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,1.55000000 +927,chr22,35036296,TP,C,C,CCTCTCTCT,CCTCTCTCT,-1.00000000,,,,0.50000000,,,20.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.09000000,41.00000000,0.00000000,16.00000000,CT,2.00000000,,ref->het,0.18000000,0.00000000,70.00000000,3.09734513,4.07000000 +928,chr22,35041410,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.70000000,55.00000000,0.00000000,4.00000000,AAAC,4.00000000,,ref->het,0.23863636,0.00000000,99.00000000,4.38053097,2.21000000 +929,chr22,35061095,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.00000000,53.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19767442,0.00000000,90.00000000,3.98230088,0.62000000 +930,chr22,35065319,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.68000000,43.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.20547945,0.00000000,79.00000000,3.49557522,1.69000000 +931,chr22,35106955,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.27000000,41.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,95.00000000,4.20353982,0.90000000 +932,chr22,35120852,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.24000000,41.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.16417910,0.00000000,71.00000000,3.14159292,0.48000000 +933,chr22,35123402,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.31000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.21621622,0.00000000,79.00000000,3.49557522,0.66000000 +934,chr22,35125750,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,3.29000000,38.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21126761,0.00000000,87.00000000,3.84955752,5.70000000 +935,chr22,35132332,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,18.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.79000000,35.00000000,0.00000000,19.00000000,A,1.00000000,,ref->het,0.30645161,0.00000000,80.00000000,3.53982301,11.26000000 +936,chr22,35134154,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.23000000,31.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.14285714,0.00000000,57.00000000,2.52212389,1.23000000 +937,chr22,35213711,TP,AGAT,AGAT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.17000000,49.00000000,0.00000000,3.00000000,GAT,3.00000000,,ref->het,0.19387755,0.00000000,104.00000000,4.60176991,0.75000000 +938,chr22,35216980,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.51000000,35.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22388060,0.00000000,77.00000000,3.40707965,3.17000000 +939,chr22,35219423,TP,T,T,TGAATA,TGAATA,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.36000000,55.00000000,0.00000000,1.00000000,GAATA,5.00000000,,ref->het,0.23684211,0.00000000,83.00000000,3.67256637,1.62000000 +940,chr22,35220253,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.96000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22093023,0.00000000,88.00000000,3.89380531,1.49000000 +941,chr22,35353195,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.95000000,48.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.19277108,0.00000000,89.00000000,3.93805310,1.01000000 +942,chr22,35496199,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.45000000,44.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21818182,0.00000000,65.00000000,2.87610619,3.03000000 +943,chr22,35505216,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,2.32000000,38.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.18309859,0.00000000,84.00000000,3.71681416,3.52000000 +944,chr22,35525916,TP,TTTTA,TTTTA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.18000000,36.00000000,0.00000000,10.00000000,TTTA,4.00000000,,ref->het,0.24193548,0.00000000,99.00000000,4.38053097,1.28000000 +945,chr22,35537949,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,42.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.39189189,0.00000000,88.00000000,3.89380531,1.84000000 +946,chr22,35559622,TP,T,T,TTA,TTA,-1.00000000,,,,1.00000000,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.54000000,46.00000000,0.00000000,8.00000000,TA,2.00000000,,ref->het,0.42682927,0.00000000,97.00000000,4.29203540,1.96000000 +947,chr22,35569643,TP,GCTTAAAACAACAATAAAC,GCTTAAAACAACAATAAAC,G,G,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.70000000,65.00000000,0.00000000,1.00000000,CTTAAAACAACAATAAAC,18.00000000,,ref->het,0.31343284,0.00000000,69.00000000,3.05309735,0.19000000 +948,chr22,35569913,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.07000000,50.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.52112676,0.00000000,81.00000000,3.58407080,2.77000000 +949,chr22,35572342,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.44000000,30.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,76.00000000,3.36283186,1.20000000 +950,chr22,35572351,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.53000000,54.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25757576,0.00000000,79.00000000,3.49557522,1.19000000 +951,chr22,35597631,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.85000000,64.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.26966292,0.00000000,97.00000000,4.29203540,3.08000000 +952,chr22,35597654,TP,TTG,TTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.53000000,58.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.22222222,0.00000000,92.00000000,4.07079646,2.36000000 +953,chr22,35600729,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.37000000,60.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,2.18000000 +954,chr22,35601849,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.63000000,42.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.22352941,0.00000000,94.00000000,4.15929204,1.95000000 +955,chr22,35602082,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.56000000,41.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.18292683,0.00000000,93.00000000,4.11504425,7.76000000 +956,chr22,35602142,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.74000000,46.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.21739130,0.00000000,100.00000000,4.42477876,4.00000000 +957,chr22,35697220,TP,C,C,CGGGTGTACACCCACTGTACACCGA,CGGGTGTACACCCACTGTACACCGA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.97000000,42.00000000,0.00000000,0.00000000,GGGTGTACACCCACTGTACACCGA,24.00000000,,ref->het,0.18055556,0.00000000,79.00000000,3.49557522,1.90000000 +958,chr22,35791385,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.79000000,32.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.17910448,0.00000000,80.00000000,3.53982301,6.03000000 +959,chr22,35845997,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.31000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22340426,0.00000000,103.00000000,4.55752212,0.38000000 +960,chr22,35859881,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.01000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.24285714,0.00000000,74.00000000,3.27433628,0.75000000 +961,chr22,35993119,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.82000000,60.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.21505376,0.00000000,99.00000000,4.38053097,0.02000000 +962,chr22,36113494,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,90.00000000,3.98230088,8.24000000 +963,chr22,36124320,TP,CTAGCCGTCTTTCAGA,CTAGCCGTCTTTCAGA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.01000000,44.00000000,0.00000000,1.00000000,TAGCCGTCTTTCAGA,15.00000000,,ref->het,0.21839080,0.00000000,84.00000000,3.71681416,2.02000000 +964,chr22,36221836,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.37000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.23728814,0.00000000,74.00000000,3.27433628,3.79000000 +965,chr22,36275208,TP,A,A,AAAGG,AAAGG,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.29000000,57.00000000,0.00000000,1.00000000,AAGG,4.00000000,,ref->het,0.51136364,0.00000000,97.00000000,4.29203540,1.73000000 +966,chr22,36276460,TP,G,G,GAAGGGGGAAGCTGAGCGCTTCCCCCTGTA,GAAGGGGGAAGCTGAGCGCTTCCCCCTGTA,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.02000000,83.00000000,0.00000000,0.00000000,AAGGGGGAAGCTGAGCGCTTCCCCCTGTA,29.00000000,,ref->het,0.43023256,0.00000000,80.00000000,3.53982301,1.35000000 +967,chr22,36276904,TP,CTGTT,CTGTT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.37000000,92.00000000,0.00000000,1.00000000,TGTT,4.00000000,,ref->het,0.51515152,0.00000000,105.00000000,4.64601770,0.58000000 +968,chr22,36280427,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,1.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,5.69000000,61.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.48214286,0.00000000,72.00000000,3.18584071,7.72000000 +969,chr22,36303173,TP,T,T,TGCCACAC,TGCCACAC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.39000000,43.00000000,0.00000000,0.00000000,GCCACAC,7.00000000,,ref->het,0.29230769,0.00000000,73.00000000,3.23008850,0.68000000 +970,chr22,36310750,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.75000000,53.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.21621622,0.00000000,87.00000000,3.84955752,2.13000000 +971,chr22,36338819,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.81000000,44.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.26000000,0.00000000,75.00000000,3.31858407,4.68000000 +972,chr22,36372494,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,19.00000000,16.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.90000000,32.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,72.00000000,3.18584071,8.86000000 +973,chr22,36392908,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.63000000,30.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,89.00000000,3.93805310,7.04000000 +974,chr22,36397030,TP,G,G,GTGGC,GTGGC,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.23000000,51.00000000,0.00000000,2.00000000,TGGC,4.00000000,,ref->het,0.18666667,0.00000000,86.00000000,3.80530973,1.60000000 +975,chr22,36405167,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.19000000,46.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17391304,0.00000000,77.00000000,3.40707965,3.82000000 +976,chr22,36408340,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.89000000,47.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,2.86000000 +977,chr22,36409106,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,46.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.25000000,0.00000000,83.00000000,3.67256637,0.66000000 +978,chr22,36427242,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.02000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20289855,0.00000000,74.00000000,3.27433628,0.76000000 +979,chr22,36452390,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.93000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.25352113,0.00000000,90.00000000,3.98230088,6.06000000 +980,chr22,36453534,TP,ATTAAC,ATTAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.91000000,52.00000000,0.00000000,1.00000000,TTAAC,5.00000000,,ref->het,0.20253165,0.00000000,88.00000000,3.89380531,0.97000000 +981,chr22,36464490,TP,TTTA,TTTA,T,T,-1.00000000,,,,1.00000000,,,4.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.44000000,64.00000000,0.00000000,5.00000000,TTA,3.00000000,,ref->het,0.48529412,0.00000000,82.00000000,3.62831858,2.67000000 +982,chr22,36467467,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.58000000,63.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,95.00000000,4.20353982,2.66000000 +983,chr22,36467627,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.30000000,40.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.17333333,0.00000000,82.00000000,3.62831858,2.21000000 +984,chr22,36468720,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.86000000,55.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.32558140,0.00000000,96.00000000,4.24778761,0.52000000 +985,chr22,36469061,TP,AATAAATAAATAC,AATAAATAAATAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.59000000,49.00000000,0.00000000,1.00000000,ATAAATAAATAC,12.00000000,,ref->het,0.16842105,0.00000000,87.00000000,3.84955752,1.33000000 +986,chr22,36476955,TP,CTTA,CTTA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,53.00000000,0.00000000,2.00000000,TTA,3.00000000,,ref->het,0.20689655,0.00000000,95.00000000,4.20353982,0.79000000 +987,chr22,36505770,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,2.95000000,37.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,75.00000000,3.31858407,7.88000000 +988,chr22,36507968,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.06000000,34.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,73.00000000,3.23008850,9.08000000 +989,chr22,36615772,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.23000000,52.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.20779221,0.00000000,83.00000000,3.67256637,0.42000000 +990,chr22,36616050,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.39000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,85.00000000,3.76106195,0.75000000 +991,chr22,36632469,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,12.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,40.00000000,0.00000000,13.00000000,CT,2.00000000,,ref->het,0.24615385,0.00000000,81.00000000,3.58407080,4.44000000 +992,chr22,36812657,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.31000000,52.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,88.00000000,3.89380531,1.29000000 +993,chr22,36828345,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.23000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18518519,0.00000000,87.00000000,3.84955752,1.17000000 +994,chr22,36840586,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.81000000,39.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,105.00000000,4.64601770,3.07000000 +995,chr22,36846445,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.57000000,56.00000000,0.00000000,2.00000000,GT,2.00000000,,ref->het,0.24096386,0.00000000,89.00000000,3.93805310,0.57000000 +996,chr22,36847709,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.61000000,43.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.19736842,0.00000000,83.00000000,3.67256637,1.16000000 +997,chr22,36848319,TP,C,C,CTATCT,CTATCT,-1.00000000,,,,0.50000000,,,1.00000000,1.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.48000000,68.00000000,0.00000000,0.00000000,TATCT,5.00000000,,ref->het,0.27631579,0.00000000,82.00000000,3.62831858,1.47000000 +998,chr22,36954935,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,5.14000000,38.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.28000000,0.00000000,64.00000000,2.83185841,17.41000000 +999,chr22,36966317,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.48000000,32.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.10606061,0.00000000,83.00000000,3.67256637,5.39000000 +1000,chr22,36971094,TP,TTTTG,TTTTG,T,T,-1.00000000,,,,0.50000000,,,5.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.50000000,50.00000000,0.00000000,6.00000000,TTTG,4.00000000,,ref->het,0.21839080,0.00000000,109.00000000,4.82300885,0.89000000 +1001,chr22,36980099,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.80000000,39.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.49090909,0.00000000,71.00000000,3.14159292,12.60000000 +1002,chr22,36982700,TP,G,G,GAAA,GAAA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.05000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,85.00000000,3.76106195,2.14000000 +1003,chr22,36988590,TP,T,T,TTGCATATTGCATA,TTGCATATTGCATA,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.42000000,52.00000000,0.00000000,2.00000000,TGCATATTGCATA,13.00000000,,ref->het,0.30434783,0.00000000,87.00000000,3.84955752,1.35000000 +1004,chr22,36992345,TP,TCAAA,TCAAA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.21000000,56.00000000,0.00000000,6.00000000,CAAA,4.00000000,,ref->het,0.29113924,0.00000000,98.00000000,4.33628319,1.99000000 +1005,chr22,36996235,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.22000000,50.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22916667,0.00000000,103.00000000,4.55752212,1.64000000 +1006,chr22,36996494,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.17000000,46.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.35443038,0.00000000,86.00000000,3.80530973,1.28000000 +1007,chr22,37004693,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.29000000,57.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.38596491,0.00000000,70.00000000,3.09734513,3.32000000 +1008,chr22,37005553,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.51000000,67.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.45121951,0.00000000,103.00000000,4.55752212,7.80000000 +1009,chr22,37013844,TP,C,C,CTGTTT,CTGTTT,-1.00000000,,,,1.00000000,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.07000000,83.00000000,0.00000000,1.00000000,TGTTT,5.00000000,,ref->het,0.41095890,0.00000000,84.00000000,3.71681416,1.18000000 +1010,chr22,37017628,TP,A,A,ACAGACGG,ACAGACGG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.71000000,55.00000000,0.00000000,0.00000000,CAGACGG,7.00000000,,ref->het,0.23188406,0.00000000,76.00000000,3.36283186,1.82000000 +1011,chr22,37028753,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,53.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.31506849,0.00000000,91.00000000,4.02654867,2.24000000 +1012,chr22,37075000,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.97000000,60.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.24657534,0.00000000,88.00000000,3.89380531,2.71000000 +1013,chr22,37092091,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.63000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,4.07000000 +1014,chr22,37094428,TP,T,T,TAGATAGAG,TAGATAGAG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.40000000,49.00000000,0.00000000,0.00000000,AGATAGAG,8.00000000,,ref->het,0.16279070,0.00000000,96.00000000,4.24778761,0.26000000 +1015,chr22,37094543,TP,T,T,TGATAGATAGATAGATAGATA,TGATAGATAGATAGATAGATA,-1.00000000,,,,0.50000000,,,11.00000000,1.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.43000000,51.00000000,0.00000000,6.00000000,GATA,4.00000000,,ref->het,0.20454545,0.00000000,102.00000000,4.51327434,1.61000000 +1016,chr22,37154575,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.74000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.26315789,0.00000000,75.00000000,3.31858407,7.99000000 +1017,chr22,37187274,TP,CCTGT,CCTGT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.55000000,47.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.22972973,0.00000000,76.00000000,3.36283186,2.53000000 +1018,chr22,37187538,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.49000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.28787879,0.00000000,72.00000000,3.18584071,3.14000000 +1019,chr22,37187692,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,77.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.47777778,0.00000000,98.00000000,4.33628319,2.09000000 +1020,chr22,37190698,TP,GAAGA,GAAGA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,3.16000000,50.00000000,0.00000000,2.00000000,AAGA,4.00000000,,ref->het,0.17021277,0.00000000,101.00000000,4.46902655,4.62000000 +1021,chr22,37192036,TP,CTTTAA,CTTTAA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.03000000,65.00000000,0.00000000,2.00000000,TTTAA,5.00000000,,ref->het,0.27027027,0.00000000,115.00000000,5.08849558,2.93000000 +1022,chr22,37216012,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.19000000,48.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18390805,0.00000000,88.00000000,3.89380531,0.80000000 +1023,chr22,37216793,TP,T,T,TTTTG,TTTTG,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.50000000,75.00000000,0.00000000,0.00000000,TTTG,4.00000000,,ref->het,0.30588235,0.00000000,89.00000000,3.93805310,0.42000000 +1024,chr22,37217324,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.01000000,55.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.19767442,0.00000000,93.00000000,4.11504425,1.12000000 +1025,chr22,37217671,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.38000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,2.96000000 +1026,chr22,37217720,TP,C,C,CAG,CAG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.29000000,50.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.19444444,0.00000000,77.00000000,3.40707965,2.37000000 +1027,chr22,37228355,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.92000000,49.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19277108,0.00000000,92.00000000,4.07079646,0.90000000 +1028,chr22,37245780,TP,A,A,AAAT,AAAT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.40000000,54.00000000,0.00000000,5.00000000,AAT,3.00000000,,ref->het,0.24675325,0.00000000,89.00000000,3.93805310,1.71000000 +1029,chr22,37255586,TP,GAAGA,GAAGA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.99000000,50.00000000,0.00000000,4.00000000,AAGA,4.00000000,,ref->het,0.26666667,0.00000000,71.00000000,3.14159292,4.60000000 +1030,chr22,37268628,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,1.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.02000000,35.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.17543860,0.00000000,65.00000000,2.87610619,7.51000000 +1031,chr22,37286109,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.66000000,75.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.33333333,0.00000000,99.00000000,4.38053097,2.29000000 +1032,chr22,37293393,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.86000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.25471698,0.00000000,111.00000000,4.91150442,1.82000000 +1033,chr22,37302957,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.67000000,43.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.22666667,0.00000000,77.00000000,3.40707965,1.98000000 +1034,chr22,37303156,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,48.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.23170732,0.00000000,92.00000000,4.07079646,1.10000000 +1035,chr22,37376402,TP,TAC,TAC,T,T,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.20000000,73.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.38805970,0.00000000,81.00000000,3.58407080,3.31000000 +1036,chr22,37401422,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.96000000,52.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.20000000,0.00000000,98.00000000,4.33628319,4.08000000 +1037,chr22,37424283,TP,TGTCACACACA,TGTCACACACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.30000000,47.00000000,0.00000000,1.00000000,GTCACACACA,10.00000000,,ref->het,0.17977528,0.00000000,92.00000000,4.07079646,0.89000000 +1038,chr22,37424680,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.48000000,40.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.28787879,0.00000000,82.00000000,3.62831858,6.82000000 +1039,chr22,37426356,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.10000000,39.00000000,0.00000000,9.00000000,CA,2.00000000,,ref->het,0.18333333,0.00000000,82.00000000,3.62831858,3.39000000 +1040,chr22,37426650,TP,AACAC,AACAC,A,A,-1.00000000,,,,0.50000000,,,8.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.27000000,38.00000000,0.00000000,10.00000000,AC,2.00000000,,ref->het,0.18055556,0.00000000,88.00000000,3.89380531,9.71000000 +1041,chr22,37430364,TP,C,C,CTATT,CTATT,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.10000000,52.00000000,0.00000000,4.00000000,TATT,4.00000000,,ref->het,0.25000000,0.00000000,109.00000000,4.82300885,0.05000000 +1042,chr22,37510301,TP,GCTCCTT,GCTCCTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.07000000,33.00000000,0.00000000,5.00000000,CTCCTT,6.00000000,,ref->het,0.21153846,0.00000000,64.00000000,2.83185841,1.22000000 +1043,chr22,37555045,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.49000000,43.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.29166667,0.00000000,86.00000000,3.80530973,7.86000000 +1044,chr22,37560351,TP,TGCCGGGGAGGGG,TGCCGGGGAGGGG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.35000000,41.00000000,0.00000000,2.00000000,GCCGGGGAGGGG,12.00000000,,ref->het,0.20000000,0.00000000,82.00000000,3.62831858,2.62000000 +1045,chr22,37562769,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.66000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.23076923,0.00000000,81.00000000,3.58407080,0.71000000 +1046,chr22,37594947,TP,C,C,CGT,CGT,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.19000000,49.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.21311475,0.00000000,76.00000000,3.36283186,1.34000000 +1047,chr22,37602326,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.50000000,38.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.24324324,0.00000000,91.00000000,4.02654867,7.58000000 +1048,chr22,37640364,TP,T,T,TTC,TTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.81000000,41.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.15294118,0.00000000,98.00000000,4.33628319,6.76000000 +1049,chr22,37675724,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.38000000,43.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.22388060,0.00000000,78.00000000,3.45132743,3.40000000 +1050,chr22,37701198,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.68000000,62.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.29268293,0.00000000,90.00000000,3.98230088,1.33000000 +1051,chr22,37712957,TP,AAAATAAAT,AAAATAAAT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.31000000,37.00000000,0.00000000,10.00000000,AAAT,4.00000000,,ref->het,0.26315789,0.00000000,49.00000000,2.16814159,2.05000000 +1052,chr22,37746044,TP,C,C,CCCCGCCGTCCCGCCGT,CCCCGCCGTCCCGCCGT,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.85000000,48.00000000,0.00000000,2.00000000,CCCGCCGT,8.00000000,,ref->het,0.18518519,0.00000000,102.00000000,4.51327434,9.25000000 +1053,chr22,37765831,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.79000000,44.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.16901408,0.00000000,83.00000000,3.67256637,3.25000000 +1054,chr22,37769216,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.08000000,52.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.22448980,0.00000000,108.00000000,4.77876106,2.19000000 +1055,chr22,37769751,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,36.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.17948718,0.00000000,85.00000000,3.76106195,2.00000000 +1056,chr22,37795335,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.99000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.20547945,0.00000000,90.00000000,3.98230088,2.62000000 +1057,chr22,37795784,TP,TCCA,TCCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.22000000,61.00000000,0.00000000,1.00000000,CCA,3.00000000,,ref->het,0.23809524,0.00000000,89.00000000,3.93805310,1.65000000 +1058,chr22,37873303,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.88000000,42.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.29310345,0.00000000,76.00000000,3.36283186,4.22000000 +1059,chr22,37873434,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.05000000,37.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.14893617,0.00000000,51.00000000,2.25663717,4.07000000 +1060,chr22,37876689,TP,TTGA,TTGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.31000000,47.00000000,0.00000000,2.00000000,TGA,3.00000000,,ref->het,0.20987654,0.00000000,88.00000000,3.89380531,1.88000000 +1061,chr22,37883925,TP,AGAAT,AGAAT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.34000000,50.00000000,0.00000000,5.00000000,GAAT,4.00000000,,ref->het,0.25000000,0.00000000,97.00000000,4.29203540,0.82000000 +1062,chr22,37891039,TP,ATTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,ATTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.54000000,33.00000000,0.00000000,1.00000000,TTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,45.00000000,,ref->het,0.09230769,0.00000000,79.00000000,3.49557522,4.03000000 +1063,chr22,37906913,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.19000000,51.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22972973,0.00000000,81.00000000,3.58407080,2.64000000 +1064,chr22,37912041,TP,ATGTG,ATGTG,A,A,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.19000000,37.00000000,0.00000000,11.00000000,TG,2.00000000,,ref->het,0.16923077,0.00000000,81.00000000,3.58407080,2.17000000 +1065,chr22,37969282,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.35000000,63.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.30107527,0.00000000,97.00000000,4.29203540,1.85000000 +1066,chr22,38084544,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,1.24000000,60.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20512821,0.00000000,87.00000000,3.84955752,3.28000000 +1067,chr22,38111411,TP,CGGTCAAGGCCAAG,CGGTCAAGGCCAAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,44.00000000,0.00000000,1.00000000,GGTCAAGGCCAAG,13.00000000,,ref->het,0.19780220,0.00000000,97.00000000,4.29203540,0.73000000 +1068,chr22,38122954,TP,CCCCGCCCCTG,CCCCGCCCCTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.56000000,58.00000000,0.00000000,1.00000000,CCCGCCCCTG,10.00000000,,ref->het,0.19767442,0.00000000,91.00000000,4.02654867,4.09000000 +1069,chr22,38133869,TP,C,C,CCAT,CCAT,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,51.00000000,0.00000000,6.00000000,CAT,3.00000000,,ref->het,0.26470588,0.00000000,85.00000000,3.76106195,1.00000000 +1070,chr22,38152425,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.22000000,54.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,75.00000000,3.31858407,2.02000000 +1071,chr22,38164956,TP,CTGA,CTGA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.11000000,41.00000000,0.00000000,2.00000000,TGA,3.00000000,,ref->het,0.15294118,0.00000000,94.00000000,4.15929204,3.15000000 +1072,chr22,38166722,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.62000000,50.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.19480519,0.00000000,89.00000000,3.93805310,0.99000000 +1073,chr22,38167527,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,1.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.53000000,43.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18750000,0.00000000,86.00000000,3.80530973,1.77000000 +1074,chr22,38281765,TP,TTATC,TTATC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.03000000,64.00000000,0.00000000,1.00000000,TATC,4.00000000,,ref->het,0.37681159,0.00000000,74.00000000,3.27433628,1.83000000 +1075,chr22,38314294,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,36.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.13978495,0.00000000,101.00000000,4.46902655,1.84000000 +1076,chr22,38343984,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.20895522,0.00000000,79.00000000,3.49557522,1.71000000 +1077,chr22,38391950,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.70000000,43.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.11111111,0.00000000,84.00000000,3.71681416,1.88000000 +1078,chr22,38392759,TP,TTTAA,TTTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,57.00000000,0.00000000,2.00000000,TTAA,4.00000000,,ref->het,0.22641509,0.00000000,108.00000000,4.77876106,1.04000000 +1079,chr22,38398131,TP,CCCCCGCTCCCGGCGGAGATTCAGGGAA,CCCCCGCTCCCGGCGGAGATTCAGGGAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,6.38000000,30.00000000,0.00000000,1.00000000,CCCCGCTCCCGGCGGAGATTCAGGGAA,27.00000000,,ref->het,0.20000000,0.00000000,65.00000000,2.87610619,15.04000000 +1080,chr22,38458154,TP,G,G,GGTGTGT,GGTGTGT,-1.00000000,,,,0.50000000,,,26.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.97000000,39.00000000,0.00000000,23.00000000,GT,2.00000000,,ref->het,0.26086957,0.00000000,75.00000000,3.31858407,3.07000000 +1081,chr22,38467932,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.05000000,45.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.17721519,0.00000000,87.00000000,3.84955752,0.67000000 +1082,chr22,38640926,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,34.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.13513514,0.00000000,88.00000000,3.89380531,0.17000000 +1083,chr22,38641948,TP,G,G,GGTGT,GGTGT,-1.00000000,,,,0.50000000,,,15.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.88000000,39.00000000,0.00000000,13.00000000,GT,2.00000000,,ref->het,0.17241379,0.00000000,80.00000000,3.53982301,3.65000000 +1084,chr22,38762084,TP,A,A,AGTGT,AGTGT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.41000000,59.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.28000000,0.00000000,84.00000000,3.71681416,2.23000000 +1085,chr22,38811352,TP,GTA,GTA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.66000000,54.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.21428571,0.00000000,90.00000000,3.98230088,2.52000000 +1086,chr22,38978546,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,9.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,37.00000000,0.00000000,8.00000000,AAAC,4.00000000,,ref->het,0.19565217,0.00000000,68.00000000,3.00884956,0.91000000 +1087,chr22,38979169,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.69000000,52.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.27058824,0.00000000,95.00000000,4.20353982,0.85000000 +1088,chr22,38993758,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.34000000,32.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.14285714,0.00000000,69.00000000,3.05309735,0.89000000 +1089,chr22,38998218,TP,TCCGTGATG,TCCGTGATG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.65000000,34.00000000,0.00000000,1.00000000,CCGTGATG,8.00000000,,ref->het,0.09230769,0.00000000,70.00000000,3.09734513,1.26000000 +1090,chr22,39007340,TP,T,T,TAAATA,TAAATA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.16000000,51.00000000,0.00000000,6.00000000,AAATA,5.00000000,,ref->het,0.24675325,0.00000000,100.00000000,4.42477876,3.78000000 +1091,chr22,39095102,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.41000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.14285714,0.00000000,83.00000000,3.67256637,1.31000000 +1092,chr22,39095375,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.43000000,55.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.21951220,0.00000000,89.00000000,3.93805310,0.88000000 +1093,chr22,39102474,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,35.00000000,0.00000000,2.00000000,CTC,3.00000000,,ref->het,0.16326531,0.00000000,53.00000000,2.34513274,0.91000000 +1094,chr22,39129100,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.10000000,45.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.17721519,0.00000000,82.00000000,3.62831858,4.21000000 +1095,chr22,39143294,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.99000000,44.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.20192308,0.00000000,116.00000000,5.13274336,2.66000000 +1096,chr22,39152733,TP,C,C,CAGCTCCGCCCCCG,CAGCTCCGCCCCCG,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.04000000,33.00000000,0.00000000,1.00000000,AGCTCCGCCCCCG,13.00000000,,ref->het,0.12328767,0.00000000,89.00000000,3.93805310,2.24000000 +1097,chr22,39197776,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.84000000,51.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,87.00000000,3.84955752,5.12000000 +1098,chr22,39202097,TP,A,A,AAAT,AAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,48.00000000,0.00000000,5.00000000,AAT,3.00000000,,ref->het,0.24242424,0.00000000,78.00000000,3.45132743,1.31000000 +1099,chr22,39203217,TP,AGAAGGAAG,AGAAGGAAG,A,A,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.97000000,47.00000000,0.00000000,6.00000000,GAAG,4.00000000,,ref->het,0.21917808,0.00000000,91.00000000,4.02654867,4.53000000 +1100,chr22,39229610,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.79000000,44.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.16279070,0.00000000,91.00000000,4.02654867,1.81000000 +1101,chr22,39271789,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,2.21000000,42.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.20879121,0.00000000,111.00000000,4.91150442,3.42000000 +1102,chr22,39285898,TP,T,T,TCTTTTCCTTTTCTTTC,TCTTTTCCTTTTCTTTC,-1.00000000,,,,0.50000000,,,2.00000000,10.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.35000000,54.00000000,0.00000000,1.00000000,CTTTTCCTTTTCTTTC,16.00000000,,ref->het,0.26865672,0.00000000,75.00000000,3.31858407,2.51000000 +1103,chr22,39298941,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,17.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,4.96000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.22950820,0.00000000,85.00000000,3.76106195,10.36000000 +1104,chr22,39314480,TP,ACCAGTCAGCCCCACCACAG,ACCAGTCAGCCCCACCACAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,19.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,36.00000000,0.00000000,1.00000000,CCAGTCAGCCCCACCACAG,19.00000000,,ref->het,0.10714286,0.00000000,84.00000000,3.71681416,2.96000000 +1105,chr22,39325550,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.04000000,34.00000000,0.00000000,5.00000000,AG,2.00000000,,ref->het,0.15254237,0.00000000,74.00000000,3.27433628,12.18000000 +1106,chr22,39350181,TP,ACCGACC,ACCGACC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.32000000,68.00000000,0.00000000,3.00000000,CCGACC,6.00000000,,ref->het,0.48648649,0.00000000,90.00000000,3.98230088,3.16000000 +1107,chr22,39412484,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.59000000,44.00000000,0.00000000,2.00000000,CA,2.00000000,,ref->het,0.24175824,0.00000000,94.00000000,4.15929204,1.69000000 +1108,chr22,39591158,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.91000000,30.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,84.00000000,3.71681416,10.30000000 +1109,chr22,39607895,TP,C,C,CGG,CGG,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.55000000,36.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.21311475,0.00000000,74.00000000,3.27433628,6.36000000 +1110,chr22,39619961,TP,GTCCA,GTCCA,G,G,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.02000000,44.00000000,0.00000000,6.00000000,TCCA,4.00000000,,ref->het,0.22413793,0.00000000,70.00000000,3.09734513,2.60000000 +1111,chr22,39696343,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.44000000,46.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.36764706,0.00000000,81.00000000,3.58407080,3.94000000 +1112,chr22,39881388,TP,GAT,GAT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,66.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.27956989,0.00000000,102.00000000,4.51327434,0.47000000 +1113,chr22,39886058,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.85000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.24637681,0.00000000,79.00000000,3.49557522,3.70000000 +1114,chr22,39899570,TP,ATGT,ATGT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.00000000,59.00000000,0.00000000,2.00000000,TGT,3.00000000,,ref->het,0.21839080,0.00000000,95.00000000,4.20353982,2.55000000 +1115,chr22,39933144,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,45.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19736842,0.00000000,79.00000000,3.49557522,0.53000000 +1116,chr22,39955414,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.05000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.19047619,0.00000000,102.00000000,4.51327434,3.64000000 +1117,chr22,39982563,TP,C,C,CCAAAA,CCAAAA,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.21000000,47.00000000,0.00000000,3.00000000,CAAAA,5.00000000,,ref->het,0.27500000,0.00000000,55.00000000,2.43362832,0.38000000 +1118,chr22,39988708,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.77000000,41.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.21212121,0.00000000,75.00000000,3.31858407,1.86000000 +1119,chr22,40026521,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,5.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.00000000,42.00000000,0.00000000,4.00000000,AAAAC,5.00000000,,ref->het,0.27083333,0.00000000,63.00000000,2.78761062,0.58000000 +1120,chr22,40058408,TP,GCACAATGTGCTTTAGCACAATGTGA,GCACAATGTGCTTTAGCACAATGTGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,58.00000000,0.00000000,1.00000000,CACAATGTGCTTTAGCACAATGTGA,25.00000000,,ref->het,0.23711340,0.00000000,113.00000000,5.00000000,1.94000000 +1121,chr22,40226940,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.66000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,61.00000000,2.69911504,0.44000000 +1122,chr22,40484166,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.50000000,62.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.30666667,0.00000000,81.00000000,3.58407080,3.58000000 +1123,chr22,40536375,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.01000000,38.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.21428571,0.00000000,47.00000000,2.07964602,0.82000000 +1124,chr22,40763763,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.73000000,65.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.31666667,0.00000000,68.00000000,3.00884956,2.81000000 +1125,chr22,40970350,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.34000000,31.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.23611111,0.00000000,94.00000000,4.15929204,8.91000000 +1126,chr22,40984495,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,17.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.67000000,30.00000000,0.00000000,4.00000000,AAG,3.00000000,,ref->het,0.14516129,0.00000000,75.00000000,3.31858407,7.09000000 +1127,chr22,41004870,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.28000000,58.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.27692308,0.00000000,71.00000000,3.14159292,1.78000000 +1128,chr22,41033328,TP,T,T,TTGTATTGTAC,TTGTATTGTAC,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.37000000,36.00000000,0.00000000,0.00000000,TGTATTGTAC,10.00000000,,ref->het,0.17021277,0.00000000,34.00000000,1.50442478,0.74000000 +1129,chr22,41045852,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,41.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.23809524,0.00000000,77.00000000,3.40707965,6.03000000 +1130,chr22,41059350,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.41000000,33.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.24590164,0.00000000,72.00000000,3.18584071,3.35000000 +1131,chr22,41585463,TP,TTTTATTTA,TTTTATTTA,T,T,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.17000000,51.00000000,0.00000000,10.00000000,TTTA,4.00000000,,ref->het,0.24285714,0.00000000,94.00000000,4.15929204,2.02000000 +1132,chr22,41601581,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,60.00000000,0.00000000,3.00000000,AAG,3.00000000,,ref->het,0.25000000,0.00000000,91.00000000,4.02654867,2.55000000 +1133,chr22,41655715,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,1.32000000,31.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16363636,0.00000000,58.00000000,2.56637168,0.85000000 +1134,chr22,41753020,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.07000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.22033898,0.00000000,83.00000000,3.67256637,8.65000000 +1135,chr22,41784887,TP,T,T,TTGAG,TTGAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.18000000,60.00000000,0.00000000,0.00000000,TGAG,4.00000000,,ref->het,0.19801980,0.00000000,107.00000000,4.73451327,1.25000000 +1136,chr22,41784925,TP,T,T,TTTTA,TTTTA,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.55000000,44.00000000,0.00000000,7.00000000,TTTA,4.00000000,,ref->het,0.18333333,0.00000000,91.00000000,4.02654867,2.06000000 +1137,chr22,41798225,TP,G,G,GCACACA,GCACACA,-1.00000000,,,,0.50000000,,,14.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.63000000,47.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.27142857,0.00000000,79.00000000,3.49557522,1.72000000 +1138,chr22,41802379,TP,AGGAGTCTCCAGTTGGAGACTG,AGGAGTCTCCAGTTGGAGACTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.18000000,62.00000000,0.00000000,1.00000000,GGAGTCTCCAGTTGGAGACTG,21.00000000,,ref->het,0.25555556,0.00000000,85.00000000,3.76106195,0.20000000 +1139,chr22,41812636,TP,GTAAT,GTAAT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.17000000,43.00000000,0.00000000,4.00000000,TAAT,4.00000000,,ref->het,0.18571429,0.00000000,83.00000000,3.67256637,1.25000000 +1140,chr22,41817730,TP,T,T,TTAAA,TTAAA,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.01000000,49.00000000,0.00000000,10.00000000,TAAA,4.00000000,,ref->het,0.22222222,0.00000000,83.00000000,3.67256637,1.09000000 +1141,chr22,41819978,TP,T,T,TATAC,TATAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,1.41000000,38.00000000,0.00000000,0.00000000,ATAC,4.00000000,,ref->het,0.23809524,0.00000000,42.00000000,1.85840708,3.01000000 +1142,chr22,41823489,TP,ATGC,ATGC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.10000000,65.00000000,0.00000000,1.00000000,TGC,3.00000000,,ref->het,0.30337079,0.00000000,91.00000000,4.02654867,1.37000000 +1143,chr22,41828208,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.80000000,72.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.31168831,0.00000000,82.00000000,3.62831858,1.34000000 +1144,chr22,41828703,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,46.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.18518519,0.00000000,84.00000000,3.71681416,0.19000000 +1145,chr22,41847922,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.93000000,62.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.28358209,0.00000000,74.00000000,3.27433628,3.13000000 +1146,chr22,41854130,TP,TTTG,TTTG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.10000000,50.00000000,0.00000000,4.00000000,TTG,3.00000000,,ref->het,0.18750000,0.00000000,87.00000000,3.84955752,1.40000000 +1147,chr22,41855019,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,18.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.59000000,38.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.26785714,0.00000000,71.00000000,3.14159292,4.99000000 +1148,chr22,41855755,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.87000000,33.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,75.00000000,3.31858407,5.53000000 +1149,chr22,41864324,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.71000000,38.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20930233,0.00000000,55.00000000,2.43362832,9.32000000 +1150,chr22,41869296,TP,G,G,GGTTTTACT,GGTTTTACT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.20000000,44.00000000,0.00000000,0.00000000,GTTTTACT,8.00000000,,ref->het,0.16867470,0.00000000,84.00000000,3.71681416,3.01000000 +1151,chr22,41906328,TP,CATT,CATT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.36000000,41.00000000,0.00000000,2.00000000,ATT,3.00000000,,ref->het,0.15277778,0.00000000,77.00000000,3.40707965,0.52000000 +1152,chr22,41921577,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.54000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,78.00000000,3.45132743,4.46000000 +1153,chr22,41961676,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.64000000,35.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16949153,0.00000000,72.00000000,3.18584071,8.20000000 +1154,chr22,41974141,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.24000000,36.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.24193548,0.00000000,87.00000000,3.84955752,6.85000000 +1155,chr22,42000772,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.49000000,35.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22077922,0.00000000,94.00000000,4.15929204,6.04000000 +1156,chr22,42002845,TP,CTACTT,CTACTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.25000000,57.00000000,0.00000000,1.00000000,TACTT,5.00000000,,ref->het,0.23529412,0.00000000,72.00000000,3.18584071,2.12000000 +1157,chr22,42007849,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,1.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.29000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.25974026,0.00000000,83.00000000,3.67256637,0.96000000 +1158,chr22,42008088,TP,C,C,CTTCCTTTCCTTTCCTTTCCTTTCCTTTCCTTTCCT,CTTCCTTTCCTTTCCTTTCCTTTCCTTTCCTTTCCT,-1.00000000,,,,0.50000000,,,13.00000000,3.00000000,1.00000000,35.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.34000000,33.00000000,0.00000000,6.00000000,TTCCT,5.00000000,,ref->het,0.12500000,0.00000000,58.00000000,2.56637168,2.16000000 +1159,chr22,42026273,TP,AAATAATAAT,AAATAATAAT,A,A,-1.00000000,,,,0.50000000,,,12.00000000,6.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.07000000,33.00000000,0.00000000,15.00000000,AAT,3.00000000,,ref->het,0.18367347,0.00000000,68.00000000,3.00884956,0.03000000 +1160,chr22,42048755,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.33000000,47.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,70.00000000,3.09734513,11.30000000 +1161,chr22,42048775,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.69000000,49.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.28787879,0.00000000,80.00000000,3.53982301,8.66000000 +1162,chr22,42050660,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.48000000,37.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,71.00000000,3.14159292,2.85000000 +1163,chr22,42128241,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.18000000,56.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21176471,0.00000000,89.00000000,3.93805310,2.25000000 +1164,chr22,42183303,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,38.00000000,0.00000000,4.00000000,TA,2.00000000,,ref->het,0.16883117,0.00000000,92.00000000,4.07079646,2.07000000 +1165,chr22,42230642,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.61000000,41.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.24285714,0.00000000,86.00000000,3.80530973,2.49000000 +1166,chr22,42254317,TP,TTTTC,TTTTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.75000000,60.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.25974026,0.00000000,85.00000000,3.76106195,0.05000000 +1167,chr22,42279954,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.07000000,44.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.21538462,0.00000000,71.00000000,3.14159292,0.82000000 +1168,chr22,42370263,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.56000000,38.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,60.00000000,2.65486726,5.36000000 +1169,chr22,42380794,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.09000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.22352941,0.00000000,94.00000000,4.15929204,4.08000000 +1170,chr22,42393575,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.97000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21311475,0.00000000,72.00000000,3.18584071,2.33000000 +1171,chr22,42395951,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.80000000,51.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.23529412,0.00000000,109.00000000,4.82300885,2.99000000 +1172,chr22,42398363,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.70000000,69.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.30120482,0.00000000,88.00000000,3.89380531,1.58000000 +1173,chr22,42442298,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.30000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.18309859,0.00000000,87.00000000,3.84955752,2.51000000 +1174,chr22,42463208,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.30000000,39.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21428571,0.00000000,47.00000000,2.07964602,0.36000000 +1175,chr22,42467231,TP,A,A,AATAATAATAATG,AATAATAATAATG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.54000000,53.00000000,0.00000000,0.00000000,ATAATAATAATG,12.00000000,,ref->het,0.26229508,0.00000000,67.00000000,2.96460177,0.57000000 +1176,chr22,42586595,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.01000000,45.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.24324324,0.00000000,78.00000000,3.45132743,3.94000000 +1177,chr22,42590512,TP,TAGGCA,TAGGCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.12000000,63.00000000,0.00000000,1.00000000,AGGCA,5.00000000,,ref->het,0.26744186,0.00000000,93.00000000,4.11504425,1.32000000 +1178,chr22,42621183,TP,AGTGTGTGTGT,AGTGTGTGTGT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.22000000,42.00000000,0.00000000,18.00000000,GT,2.00000000,,ref->het,0.14666667,0.00000000,94.00000000,4.15929204,2.66000000 +1179,chr22,42689656,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.67000000,38.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.29268293,0.00000000,97.00000000,4.29203540,2.48000000 +1180,chr22,42832984,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.17000000,37.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26436782,0.00000000,94.00000000,4.15929204,6.68000000 +1181,chr22,42910909,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.18000000,32.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,77.00000000,3.40707965,2.82000000 +1182,chr22,42957420,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.24000000,62.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.31645570,0.00000000,87.00000000,3.84955752,1.77000000 +1183,chr22,43021021,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.49000000,51.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.27380952,0.00000000,93.00000000,4.11504425,2.56000000 +1184,chr22,43022540,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.12000000,50.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,0.99000000 +1185,chr22,43027530,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,49.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.26415094,0.00000000,59.00000000,2.61061947,0.49000000 +1186,chr22,43030866,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.26000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.12658228,0.00000000,86.00000000,3.80530973,0.75000000 +1187,chr22,43038937,TP,GAAGAA,GAAGAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.16000000,50.00000000,0.00000000,3.00000000,AAGAA,5.00000000,,ref->het,0.21621622,0.00000000,80.00000000,3.53982301,4.45000000 +1188,chr22,43057953,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.47000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20312500,0.00000000,72.00000000,3.18584071,2.29000000 +1189,chr22,43082706,TP,ACT,ACT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.65000000,49.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.43636364,0.00000000,61.00000000,2.69911504,3.35000000 +1190,chr22,43086129,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,5.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.26000000,89.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.43209877,0.00000000,88.00000000,3.89380531,0.36000000 +1191,chr22,43089892,TP,TC,TC,T,T,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,47.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.45333333,0.00000000,83.00000000,3.67256637,2.19000000 +1192,chr22,43090878,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.81000000,43.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,75.00000000,3.31858407,0.75000000 +1193,chr22,43095712,TP,TTG,TTG,T,T,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.65000000,39.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.37931034,0.00000000,69.00000000,3.05309735,0.98000000 +1194,chr22,43103048,TP,T,T,TATAG,TATAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.48000000,42.00000000,0.00000000,0.00000000,ATAG,4.00000000,,ref->het,0.13636364,0.00000000,49.00000000,2.16814159,1.41000000 +1195,chr22,43107821,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,5.31000000,36.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,66.00000000,2.92035398,5.08000000 +1196,chr22,43109425,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,47.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,91.00000000,4.02654867,1.38000000 +1197,chr22,43124797,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.25000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28915663,0.00000000,94.00000000,4.15929204,2.21000000 +1198,chr22,43130124,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.16000000,52.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.20270270,0.00000000,86.00000000,3.80530973,0.30000000 +1199,chr22,43144970,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.97000000,39.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.12820513,0.00000000,92.00000000,4.07079646,2.53000000 +1200,chr22,43153109,TP,C,C,CTCTT,CTCTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.59000000,36.00000000,0.00000000,1.00000000,TCTT,4.00000000,,ref->het,0.21428571,0.00000000,84.00000000,3.71681416,8.23000000 +1201,chr22,43187103,TP,A,A,ACCGCCG,ACCGCCG,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.36000000,38.00000000,0.00000000,4.00000000,CCG,3.00000000,,ref->het,0.21568627,0.00000000,70.00000000,3.09734513,4.87000000 +1202,chr22,43189493,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,38.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.26027397,0.00000000,82.00000000,3.62831858,4.91000000 +1203,chr22,43201348,TP,AAAAAC,AAAAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.87000000,49.00000000,0.00000000,2.00000000,AAAAC,5.00000000,,ref->het,0.21818182,0.00000000,74.00000000,3.27433628,9.35000000 +1204,chr22,43219480,TP,C,C,CTTT,CTTT,-1.00000000,,,,0.50000000,,,16.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.76000000,34.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,85.00000000,3.76106195,5.97000000 +1205,chr22,43219510,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.25000000,54.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,88.00000000,3.89380531,8.21000000 +1206,chr22,43226426,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.96000000,40.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.21917808,0.00000000,81.00000000,3.58407080,1.48000000 +1207,chr22,43229904,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.43000000,46.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.22535211,0.00000000,80.00000000,3.53982301,1.82000000 +1208,chr22,43307958,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.73000000,63.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.32786885,0.00000000,71.00000000,3.14159292,2.97000000 +1209,chr22,43308075,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.92000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,84.00000000,3.71681416,3.52000000 +1210,chr22,43315019,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.89000000,54.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.24675325,0.00000000,82.00000000,3.62831858,3.68000000 +1211,chr22,43344384,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.22000000,43.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16666667,0.00000000,90.00000000,3.98230088,1.58000000 +1212,chr22,43368937,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.22000000,36.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.46666667,0.00000000,88.00000000,3.89380531,8.57000000 +1213,chr22,43407518,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.13000000,53.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.22077922,0.00000000,83.00000000,3.67256637,3.29000000 +1214,chr22,43449876,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.10000000,100.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.56179775,0.00000000,93.00000000,4.11504425,2.32000000 +1215,chr22,43450723,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.30000000,60.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.49206349,0.00000000,70.00000000,3.09734513,1.53000000 +1216,chr22,43453331,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.54000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.38709677,0.00000000,66.00000000,2.92035398,1.70000000 +1217,chr22,43465109,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.52000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.24657534,0.00000000,81.00000000,3.58407080,3.18000000 +1218,chr22,43470106,TP,TCATCCATC,TCATCCATC,T,T,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.65000000,53.00000000,0.00000000,6.00000000,CATC,4.00000000,,ref->het,0.28571429,0.00000000,76.00000000,3.36283186,2.42000000 +1219,chr22,43564459,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,14.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.78000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,66.00000000,2.92035398,6.16000000 +1220,chr22,43575174,TP,T,T,TTTG,TTTG,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.63000000,48.00000000,0.00000000,6.00000000,TTG,3.00000000,,ref->het,0.20312500,0.00000000,75.00000000,3.31858407,0.65000000 +1221,chr22,43581405,TP,C,C,CAAGG,CAAGG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,37.00000000,0.00000000,1.00000000,AAGG,4.00000000,,ref->het,0.16853933,0.00000000,91.00000000,4.02654867,1.82000000 +1222,chr22,43620467,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,40.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.15068493,0.00000000,78.00000000,3.45132743,0.54000000 +1223,chr22,43652818,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,1.78000000,73.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,100.00000000,4.42477876,5.90000000 +1224,chr22,43656813,TP,G,G,GGAGGCTATAGCAA,GGAGGCTATAGCAA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.12000000,59.00000000,0.00000000,0.00000000,GAGGCTATAGCAA,13.00000000,,ref->het,0.30158730,0.00000000,74.00000000,3.27433628,0.30000000 +1225,chr22,43672883,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.07000000,51.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.31578947,0.00000000,86.00000000,3.80530973,1.45000000 +1226,chr22,43701619,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,2.16000000,59.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.24390244,0.00000000,87.00000000,3.84955752,3.92000000 +1227,chr22,43701727,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.87000000,42.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.25454545,0.00000000,68.00000000,3.00884956,5.87000000 +1228,chr22,43703924,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.65000000,39.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.16279070,0.00000000,95.00000000,4.20353982,0.00000000 +1229,chr22,43743989,TP,AAATGGATGAATG,AAATGGATGAATG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.76000000,45.00000000,0.00000000,1.00000000,AATGGATGAATG,12.00000000,,ref->het,0.18181818,0.00000000,73.00000000,3.23008850,3.69000000 +1230,chr22,43785561,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,44.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.21052632,0.00000000,83.00000000,3.67256637,1.61000000 +1231,chr22,43795586,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.71000000,44.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.24657534,0.00000000,77.00000000,3.40707965,2.56000000 +1232,chr22,43831181,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.09000000,45.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20000000,0.00000000,86.00000000,3.80530973,2.02000000 +1233,chr22,43845550,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.87000000,46.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,85.00000000,3.76106195,1.59000000 +1234,chr22,43867972,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.54000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,1.68000000 +1235,chr22,43883818,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,15.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,4.11000000,55.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.27272727,0.00000000,77.00000000,3.40707965,7.07000000 +1236,chr22,43884729,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.50000000,71.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.40322581,0.00000000,68.00000000,3.00884956,1.94000000 +1237,chr22,43887070,TP,A,A,AACAC,AACAC,-1.00000000,,,,0.50000000,,,13.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.04000000,50.00000000,0.00000000,11.00000000,AC,2.00000000,,ref->het,0.26760563,0.00000000,81.00000000,3.58407080,2.79000000 +1238,chr22,43895205,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21212121,0.00000000,82.00000000,3.62831858,3.83000000 +1239,chr22,43902645,TP,A,A,ATTTTGTTTTG,ATTTTGTTTTG,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.31000000,61.00000000,0.00000000,5.00000000,TTTTG,5.00000000,,ref->het,0.28787879,0.00000000,93.00000000,4.11504425,0.58000000 +1240,chr22,43904976,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.14000000,33.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,75.00000000,3.31858407,7.70000000 +1241,chr22,43905198,TP,G,G,GAGGCTGGCAGAGGGCACA,GAGGCTGGCAGAGGGCACA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.34000000,42.00000000,0.00000000,1.00000000,AGGCTGGCAGAGGGCACA,18.00000000,,ref->het,0.20000000,0.00000000,73.00000000,3.23008850,1.58000000 +1242,chr22,43988488,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.92000000,59.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,84.00000000,3.71681416,1.19000000 +1243,chr22,44065842,TP,G,G,GGT,GGT,-1.00000000,,,,1.00000000,,,8.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.78000000,67.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.46376812,0.00000000,86.00000000,3.80530973,3.91000000 +1244,chr22,44099518,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,47.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.19718310,0.00000000,73.00000000,3.23008850,4.06000000 +1245,chr22,44121557,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.21000000,58.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.42424242,0.00000000,74.00000000,3.27433628,2.94000000 +1246,chr22,44146178,TP,CCGCACACA,CCGCACACA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,3.07000000,59.00000000,0.00000000,1.00000000,CGCACACA,8.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,3.39000000 +1247,chr22,44155035,TP,GGTGT,GGTGT,G,G,-1.00000000,,,,0.50000000,,,9.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,4.04000000,51.00000000,0.00000000,11.00000000,GT,2.00000000,,ref->het,0.26315789,0.00000000,66.00000000,2.92035398,7.40000000 +1248,chr22,44163835,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.83000000,46.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.18987342,0.00000000,86.00000000,3.80530973,2.59000000 +1249,chr22,44173540,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.33000000,37.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22368421,0.00000000,88.00000000,3.89380531,4.61000000 +1250,chr22,44194728,TP,ATCCC,ATCCC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.13000000,50.00000000,0.00000000,1.00000000,TCCC,4.00000000,,ref->het,0.25806452,0.00000000,69.00000000,3.05309735,1.79000000 +1251,chr22,44196606,TP,C,C,CGG,CGG,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.28000000,47.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,2.87000000 +1252,chr22,44213907,TP,TATC,TATC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.32000000,69.00000000,0.00000000,2.00000000,ATC,3.00000000,,ref->het,0.33333333,0.00000000,89.00000000,3.93805310,3.31000000 +1253,chr22,44222284,TP,CAG,CAG,C,C,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.05000000,47.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.41333333,0.00000000,83.00000000,3.67256637,0.29000000 +1254,chr22,44228125,TP,CAG,CAG,C,C,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.17000000,66.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.44594595,0.00000000,77.00000000,3.40707965,1.29000000 +1255,chr22,44232516,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.05000000,35.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.14516129,0.00000000,69.00000000,3.05309735,1.21000000 +1256,chr22,44282480,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,2.06000000,50.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.16867470,0.00000000,88.00000000,3.89380531,1.50000000 +1257,chr22,44288014,TP,TGGCTGGGCCACA,TGGCTGGGCCACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.21000000,56.00000000,0.00000000,1.00000000,GGCTGGGCCACA,12.00000000,,ref->het,0.24489796,0.00000000,102.00000000,4.51327434,0.55000000 +1258,chr22,44293031,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.50000000,44.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,1.37000000 +1259,chr22,44295519,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.09000000,36.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.20833333,0.00000000,77.00000000,3.40707965,2.05000000 +1260,chr22,44360235,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.26000000,33.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,80.00000000,3.53982301,2.54000000 +1261,chr22,44397446,TP,CCTCACAGGT,CCTCACAGGT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.35000000,41.00000000,0.00000000,2.00000000,CTCACAGGT,9.00000000,,ref->het,0.16216216,0.00000000,86.00000000,3.80530973,2.05000000 +1262,chr22,44400979,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,11.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.00000000,38.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.24000000,0.00000000,95.00000000,4.20353982,3.33000000 +1263,chr22,44437370,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.48000000,52.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,88.00000000,3.89380531,1.35000000 +1264,chr22,44438427,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.04000000,44.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.15294118,0.00000000,91.00000000,4.02654867,2.37000000 +1265,chr22,44521134,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.65000000,31.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,67.00000000,2.96460177,4.27000000 +1266,chr22,44535678,TP,T,T,TGTGCAGAG,TGTGCAGAG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.22000000,41.00000000,0.00000000,1.00000000,GTGCAGAG,8.00000000,,ref->het,0.21126761,0.00000000,78.00000000,3.45132743,2.63000000 +1267,chr22,44536831,TP,T,T,TTATTC,TTATTC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.95000000,49.00000000,0.00000000,0.00000000,TATTC,5.00000000,,ref->het,0.22988506,0.00000000,94.00000000,4.15929204,0.37000000 +1268,chr22,44539532,TP,GATGGTGGATGGATGA,GATGGTGGATGGATGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.36000000,44.00000000,0.00000000,1.00000000,ATGGTGGATGGATGA,15.00000000,,ref->het,0.22033898,0.00000000,63.00000000,2.78761062,4.59000000 +1269,chr22,44583937,TP,CCAAG,CCAAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.78000000,40.00000000,0.00000000,2.00000000,CAAG,4.00000000,,ref->het,0.24000000,0.00000000,61.00000000,2.69911504,7.79000000 +1270,chr22,44604866,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.11000000,52.00000000,0.00000000,6.00000000,CA,2.00000000,,ref->het,0.25373134,0.00000000,74.00000000,3.27433628,4.91000000 +1271,chr22,44604938,TP,T,T,TACACACC,TACACACC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.29000000,51.00000000,0.00000000,1.00000000,ACACACC,7.00000000,,ref->het,0.24074074,0.00000000,68.00000000,3.00884956,4.49000000 +1272,chr22,44611042,TP,T,T,TAAAG,TAAAG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.30000000,49.00000000,0.00000000,0.00000000,AAAG,4.00000000,,ref->het,0.24242424,0.00000000,73.00000000,3.23008850,2.33000000 +1273,chr22,44611889,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.75000000,33.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.20312500,0.00000000,82.00000000,3.62831858,4.90000000 +1274,chr22,44613192,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.86000000,60.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,3.30000000 +1275,chr22,44614046,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.79000000,65.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.30851064,0.00000000,103.00000000,4.55752212,1.24000000 +1276,chr22,44615463,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.32000000,44.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.17346939,0.00000000,98.00000000,4.33628319,1.46000000 +1277,chr22,44619367,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.55000000,42.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.27272727,0.00000000,52.00000000,2.30088496,9.87000000 +1278,chr22,44626492,TP,TGTTA,TGTTA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,47.00000000,0.00000000,2.00000000,GTTA,4.00000000,,ref->het,0.30000000,0.00000000,74.00000000,3.27433628,0.61000000 +1279,chr22,44665025,TP,CAAT,CAAT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.68000000,36.00000000,0.00000000,12.00000000,AAT,3.00000000,,ref->het,0.24390244,0.00000000,64.00000000,2.83185841,0.70000000 +1280,chr22,44665578,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.34000000,50.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.22352941,0.00000000,90.00000000,3.98230088,2.13000000 +1281,chr22,44668548,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.00000000,42.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.18571429,0.00000000,73.00000000,3.23008850,0.62000000 +1282,chr22,44710626,TP,AGC,AGC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.30000000,55.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.30487805,0.00000000,91.00000000,4.02654867,1.05000000 +1283,chr22,44714123,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.31000000,47.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.20000000,0.00000000,83.00000000,3.67256637,1.84000000 +1284,chr22,44718637,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.32000000,39.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.12500000,0.00000000,75.00000000,3.31858407,0.49000000 +1285,chr22,44719089,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.66000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,78.00000000,3.45132743,4.94000000 +1286,chr22,44821914,TP,T,T,TAGAG,TAGAG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.96000000,53.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.27142857,0.00000000,75.00000000,3.31858407,1.35000000 +1287,chr22,44829297,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.80000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.35185185,0.00000000,77.00000000,3.40707965,6.43000000 +1288,chr22,44831522,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.45000000,38.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.17910448,0.00000000,74.00000000,3.27433628,0.43000000 +1289,chr22,44831699,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.07000000,34.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.14285714,0.00000000,86.00000000,3.80530973,2.48000000 +1290,chr22,44835915,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.05000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.27027027,0.00000000,79.00000000,3.49557522,0.75000000 +1291,chr22,44836541,TP,GCACAGTAGGTCCTCAGTA,GCACAGTAGGTCCTCAGTA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.04000000,37.00000000,0.00000000,1.00000000,CACAGTAGGTCCTCAGTA,18.00000000,,ref->het,0.18518519,0.00000000,61.00000000,2.69911504,0.55000000 +1292,chr22,44838140,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.75000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,89.00000000,3.93805310,3.82000000 +1293,chr22,44841241,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,5.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.61000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,2.40000000 +1294,chr22,44848361,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.77000000,71.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.27472527,0.00000000,99.00000000,4.38053097,2.17000000 +1295,chr22,44857929,TP,A,A,ATTTC,ATTTC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.29000000,47.00000000,0.00000000,0.00000000,TTTC,4.00000000,,ref->het,0.17910448,0.00000000,74.00000000,3.27433628,2.62000000 +1296,chr22,44860662,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.50000000,49.00000000,0.00000000,5.00000000,AG,2.00000000,,ref->het,0.18421053,0.00000000,82.00000000,3.62831858,1.14000000 +1297,chr22,44861010,TP,CAAAA,CAAAA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.47000000,40.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.14130435,0.00000000,98.00000000,4.33628319,1.05000000 +1298,chr22,44873891,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.89000000,34.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.20370370,0.00000000,74.00000000,3.27433628,4.14000000 +1299,chr22,44875574,TP,TTTC,TTTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.17000000,46.00000000,0.00000000,1.00000000,TTC,3.00000000,,ref->het,0.22077922,0.00000000,84.00000000,3.71681416,1.32000000 +1300,chr22,44883803,TP,TAAC,TAAC,T,T,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.60000000,83.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.37037037,0.00000000,87.00000000,3.84955752,1.62000000 +1301,chr22,44884739,TP,ACT,ACT,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.98000000,71.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.35820896,0.00000000,73.00000000,3.23008850,5.11000000 +1302,chr22,45040090,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.36000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.23437500,0.00000000,69.00000000,3.05309735,0.86000000 +1303,chr22,45052196,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.29000000,47.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.25373134,0.00000000,75.00000000,3.31858407,1.43000000 +1304,chr22,45055185,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,5.41000000,32.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25454545,0.00000000,71.00000000,3.14159292,8.79000000 +1305,chr22,45055187,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,1.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.32000000,45.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.21311475,0.00000000,71.00000000,3.14159292,8.68000000 +1306,chr22,45063002,TP,A,A,AATTTT,AATTTT,-1.00000000,,,,1.00000000,,,12.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.02000000,42.00000000,0.00000000,11.00000000,ATTTT,5.00000000,,ref->het,0.57446809,0.00000000,100.00000000,4.42477876,1.99000000 +1307,chr22,45067498,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.94000000,58.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.38571429,0.00000000,77.00000000,3.40707965,4.87000000 +1308,chr22,45072789,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.52000000,64.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.42424242,0.00000000,73.00000000,3.23008850,2.00000000 +1309,chr22,45079230,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.42000000,40.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.41666667,0.00000000,70.00000000,3.09734513,12.70000000 +1310,chr22,45085849,TP,G,G,GGC,GGC,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.50000000,55.00000000,0.00000000,0.00000000,GC,2.00000000,,ref->het,0.38888889,0.00000000,80.00000000,3.53982301,2.84000000 +1311,chr22,45090888,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.89000000,52.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.59677419,0.00000000,69.00000000,3.05309735,2.04000000 +1312,chr22,45090979,TP,C,C,CCACACACA,CCACACACA,-1.00000000,,,,1.00000000,,,18.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.68000000,69.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.41666667,0.00000000,73.00000000,3.23008850,2.17000000 +1313,chr22,45095132,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,12.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.46000000,47.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.46875000,0.00000000,81.00000000,3.58407080,6.43000000 +1314,chr22,45099324,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.98000000,54.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,15.76000000 +1315,chr22,45138098,TP,TAAC,TAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.23000000,51.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.25842697,0.00000000,96.00000000,4.24778761,0.00000000 +1316,chr22,45246827,TP,C,C,CTTT,CTTT,-1.00000000,,,,0.50000000,,,21.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.43000000,49.00000000,0.00000000,18.00000000,T,1.00000000,,ref->het,0.29687500,0.00000000,79.00000000,3.49557522,9.49000000 +1317,chr22,45247918,TP,AGTT,AGTT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.34000000,43.00000000,0.00000000,5.00000000,GTT,3.00000000,,ref->het,0.18840580,0.00000000,81.00000000,3.58407080,1.10000000 +1318,chr22,45248208,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.91000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,1.66000000 +1319,chr22,45248773,TP,AGGTAGGGTGGGCCAG,AGGTAGGGTGGGCCAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,47.00000000,0.00000000,1.00000000,GGTAGGGTGGGCCAG,15.00000000,,ref->het,0.20000000,0.00000000,68.00000000,3.00884956,1.30000000 +1320,chr22,45251242,TP,GACA,GACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,45.00000000,0.00000000,2.00000000,ACA,3.00000000,,ref->het,0.17283951,0.00000000,85.00000000,3.76106195,0.97000000 +1321,chr22,45251324,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.14000000,45.00000000,0.00000000,2.00000000,AGA,3.00000000,,ref->het,0.22105263,0.00000000,99.00000000,4.38053097,2.92000000 +1322,chr22,45401889,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,3.64000000,37.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21794872,0.00000000,98.00000000,4.33628319,4.45000000 +1323,chr22,45440426,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,5.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,60.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.38157895,0.00000000,82.00000000,3.62831858,4.50000000 +1324,chr22,45441081,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.01000000,41.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.49253731,0.00000000,75.00000000,3.31858407,1.72000000 +1325,chr22,45456155,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.97000000,45.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,3.08000000 +1326,chr22,45456330,TP,A,A,AAAAGCAAACAAAC,AAAAGCAAACAAAC,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.04000000,84.00000000,0.00000000,0.00000000,AAAGCAAACAAAC,13.00000000,,ref->het,0.44615385,0.00000000,73.00000000,3.23008850,1.49000000 +1327,chr22,45460719,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.65000000,91.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.41891892,0.00000000,78.00000000,3.45132743,1.42000000 +1328,chr22,45482799,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,15.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,6.22000000,58.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.44262295,0.00000000,82.00000000,3.62831858,8.70000000 +1329,chr22,45495191,TP,TAAAAC,TAAAAC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,10.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.16000000,72.00000000,0.00000000,1.00000000,AAAAC,5.00000000,,ref->het,0.39325843,0.00000000,90.00000000,3.98230088,1.29000000 +1330,chr22,45528346,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.39000000,41.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,88.00000000,3.89380531,0.85000000 +1331,chr22,45638444,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.46000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.46666667,0.00000000,65.00000000,2.87610619,1.20000000 +1332,chr22,45643166,TP,TCTAAG,TCTAAG,T,T,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.48000000,76.00000000,0.00000000,2.00000000,CTAAG,5.00000000,,ref->het,0.43750000,0.00000000,104.00000000,4.60176991,2.53000000 +1333,chr22,45644259,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.24000000,51.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.37500000,0.00000000,58.00000000,2.56637168,6.32000000 +1334,chr22,45653904,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.31000000,69.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.39705882,0.00000000,78.00000000,3.45132743,1.27000000 +1335,chr22,45654435,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.19000000,50.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.48529412,0.00000000,76.00000000,3.36283186,4.79000000 +1336,chr22,45655048,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.84000000,62.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.50000000,0.00000000,75.00000000,3.31858407,0.27000000 +1337,chr22,45659447,TP,A,A,ATG,ATG,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,43.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.38888889,0.00000000,63.00000000,2.78761062,0.80000000 +1338,chr22,45715277,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.43000000,78.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.45121951,0.00000000,84.00000000,3.71681416,1.50000000 +1339,chr22,45806163,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.02000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.26966292,0.00000000,96.00000000,4.24778761,0.54000000 +1340,chr22,45846594,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.59000000,47.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.51388889,0.00000000,92.00000000,4.07079646,2.51000000 +1341,chr22,45859423,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.38000000,71.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.47191011,0.00000000,97.00000000,4.29203540,0.98000000 +1342,chr22,45902115,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.21000000,34.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.29687500,0.00000000,83.00000000,3.67256637,5.64000000 +1343,chr22,45913316,TP,C,C,CGAGG,CGAGG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.55000000,45.00000000,0.00000000,1.00000000,GAGG,4.00000000,,ref->het,0.25301205,0.00000000,89.00000000,3.93805310,0.91000000 +1344,chr22,45914398,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.83000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.35616438,0.00000000,80.00000000,3.53982301,2.58000000 +1345,chr22,45914904,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.24000000,56.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.24000000,0.00000000,80.00000000,3.53982301,3.75000000 +1346,chr22,45919243,TP,TGCC,TGCC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,0.29000000,60.00000000,0.00000000,4.00000000,GCC,3.00000000,,ref->het,0.20481928,0.00000000,94.00000000,4.15929204,2.32000000 +1347,chr22,45926698,TP,CTAAG,CTAAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.36000000,56.00000000,0.00000000,2.00000000,TAAG,4.00000000,,ref->het,0.27631579,0.00000000,84.00000000,3.71681416,0.88000000 +1348,chr22,45946064,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.94000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.29032258,0.00000000,100.00000000,4.42477876,1.00000000 +1349,chr22,45966942,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.30000000,63.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.26506024,0.00000000,93.00000000,4.11504425,1.90000000 +1350,chr22,45991300,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.45000000,42.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.25000000,0.00000000,74.00000000,3.27433628,0.85000000 +1351,chr22,46004596,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.85000000,51.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22727273,0.00000000,72.00000000,3.18584071,1.74000000 +1352,chr22,46016604,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.46000000,54.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.37313433,0.00000000,90.00000000,3.98230088,7.93000000 +1353,chr22,46025218,TP,CCTGAGTGCTCCCTCTCT,CCTGAGTGCTCCCTCTCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.28000000,34.00000000,0.00000000,1.00000000,CTGAGTGCTCCCTCTCT,17.00000000,,ref->het,0.17241379,0.00000000,71.00000000,3.14159292,4.38000000 +1354,chr22,46130149,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,47.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18823529,0.00000000,90.00000000,3.98230088,1.97000000 +1355,chr22,46191485,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.21000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,89.00000000,3.93805310,5.96000000 +1356,chr22,46204837,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.32000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.23376623,0.00000000,88.00000000,3.89380531,1.51000000 +1357,chr22,46233827,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.02000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,90.00000000,3.98230088,4.91000000 +1358,chr22,46254853,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,42.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.15942029,0.00000000,80.00000000,3.53982301,1.96000000 +1359,chr22,46262985,TP,ACGAGCG,ACGAGCG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.77000000,55.00000000,0.00000000,2.00000000,CGAGCG,6.00000000,,ref->het,0.21238938,0.00000000,122.00000000,5.39823009,2.75000000 +1360,chr22,46263800,TP,T,T,TTTGC,TTTGC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.89000000,41.00000000,0.00000000,0.00000000,TTGC,4.00000000,,ref->het,0.18181818,0.00000000,75.00000000,3.31858407,1.86000000 +1361,chr22,46264445,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.13000000,49.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.23404255,0.00000000,101.00000000,4.46902655,3.02000000 +1362,chr22,46264752,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.36000000,58.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.21111111,0.00000000,91.00000000,4.02654867,1.14000000 +1363,chr22,46271015,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.98000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.15853659,0.00000000,95.00000000,4.20353982,2.35000000 +1364,chr22,46274735,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.56000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25333333,0.00000000,86.00000000,3.80530973,2.40000000 +1365,chr22,46323865,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.53000000,40.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,1.74000000 +1366,chr22,46443659,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.44000000,48.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.19047619,0.00000000,102.00000000,4.51327434,2.87000000 +1367,chr22,46449952,TP,G,G,GCACTCACATGCTCACACA,GCACTCACATGCTCACACA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.16000000,47.00000000,0.00000000,1.00000000,CACTCACATGCTCACACA,18.00000000,,ref->het,0.29629630,0.00000000,67.00000000,2.96460177,1.88000000 +1368,chr22,46458891,TP,TTTTG,TTTTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.80000000,52.00000000,0.00000000,2.00000000,TTTG,4.00000000,,ref->het,0.29032258,0.00000000,101.00000000,4.46902655,0.94000000 +1369,chr22,46481277,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.32000000,58.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,2.93000000 +1370,chr22,46519872,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.14000000,42.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.28301887,0.00000000,80.00000000,3.53982301,8.35000000 +1371,chr22,46548509,TP,GTGTTT,GTGTTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.57000000,45.00000000,0.00000000,5.00000000,TGTTT,5.00000000,,ref->het,0.33928571,0.00000000,74.00000000,3.27433628,1.35000000 +1372,chr22,46556177,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,51.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.25333333,0.00000000,85.00000000,3.76106195,0.35000000 +1373,chr22,46585193,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.67000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,92.00000000,4.07079646,5.91000000 +1374,chr22,46588729,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.43000000,49.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,91.00000000,4.02654867,1.60000000 +1375,chr22,46588821,TP,AGGCTG,AGGCTG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.13000000,41.00000000,0.00000000,3.00000000,GGCTG,5.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,0.80000000 +1376,chr22,46591070,TP,G,G,GAAAAAGA,GAAAAAGA,-1.00000000,,,,0.50000000,,,1.00000000,14.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.51000000,61.00000000,0.00000000,0.00000000,AAAAAGA,7.00000000,,ref->het,0.24137931,0.00000000,98.00000000,4.33628319,5.44000000 +1377,chr22,46591942,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,3.10000000,42.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.26582278,0.00000000,86.00000000,3.80530973,7.52000000 +1378,chr22,46639292,TP,G,G,GCCTGTGTGCAGCGGTGGTTAAC,GCCTGTGTGCAGCGGTGGTTAAC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.79000000,60.00000000,0.00000000,1.00000000,CCTGTGTGCAGCGGTGGTTAAC,22.00000000,,ref->het,0.27777778,0.00000000,85.00000000,3.76106195,3.77000000 +1379,chr22,46685076,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.55000000,43.00000000,0.00000000,8.00000000,G,1.00000000,,ref->het,0.37931034,0.00000000,76.00000000,3.36283186,7.09000000 +1380,chr22,46694009,TP,CTGTT,CTGTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.00000000,60.00000000,0.00000000,1.00000000,TGTT,4.00000000,,ref->het,0.25974026,0.00000000,84.00000000,3.71681416,0.15000000 +1381,chr22,46716940,TP,CAAAAAAA,CAAAAAAA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,17.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.78000000,64.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.31343284,0.00000000,72.00000000,3.18584071,2.61000000 +1382,chr22,46717905,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,44.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.19672131,0.00000000,64.00000000,2.83185841,0.85000000 +1383,chr22,46718097,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.30000000,49.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,73.00000000,3.23008850,1.44000000 +1384,chr22,46736462,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.37000000,64.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.25609756,0.00000000,84.00000000,3.71681416,1.19000000 +1385,chr22,46831957,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,53.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.23456790,0.00000000,88.00000000,3.89380531,2.13000000 +1386,chr22,46839262,TP,A,A,ACTT,ACTT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.40000000,51.00000000,0.00000000,0.00000000,CTT,3.00000000,,ref->het,0.19736842,0.00000000,88.00000000,3.89380531,3.15000000 +1387,chr22,46847952,TP,TGTGCGC,TGTGCGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.50000000,58.00000000,0.00000000,1.00000000,GTGCGC,6.00000000,,ref->het,0.27058824,0.00000000,87.00000000,3.84955752,4.75000000 +1388,chr22,46848888,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.45000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.24285714,0.00000000,78.00000000,3.45132743,3.68000000 +1389,chr22,46924745,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.45000000,45.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.30000000,0.00000000,93.00000000,4.11504425,0.35000000 +1390,chr22,46934051,TP,CATCTTT,CATCTTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.38000000,52.00000000,0.00000000,1.00000000,ATCTTT,6.00000000,,ref->het,0.20618557,0.00000000,102.00000000,4.51327434,1.56000000 +1391,chr22,46952235,TP,C,C,CTGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,CTGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.87000000,42.00000000,0.00000000,1.00000000,TGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,39.00000000,,ref->het,0.16000000,0.00000000,99.00000000,4.38053097,0.16000000 +1392,chr22,46953486,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.42000000,33.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.19672131,0.00000000,69.00000000,3.05309735,2.01000000 +1393,chr22,47132518,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.37000000,47.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.19178082,0.00000000,77.00000000,3.40707965,0.54000000 +1394,chr22,47159910,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.12000000,53.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,3.89000000 +1395,chr22,47160951,TP,CGGGG,CGGGG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.23000000,54.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.28395062,0.00000000,85.00000000,3.76106195,1.20000000 +1396,chr22,47177731,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.07000000,59.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.24742268,0.00000000,99.00000000,4.38053097,2.12000000 +1397,chr22,47210615,TP,C,C,CTCTTT,CTCTTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.40000000,62.00000000,0.00000000,1.00000000,TCTTT,5.00000000,,ref->het,0.29885057,0.00000000,93.00000000,4.11504425,0.68000000 +1398,chr22,47212565,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,3.59000000,49.00000000,0.00000000,3.00000000,GT,2.00000000,,ref->het,0.21666667,0.00000000,69.00000000,3.05309735,11.07000000 +1399,chr22,47213244,TP,A,A,ACATT,ACATT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.82000000,52.00000000,0.00000000,0.00000000,CATT,4.00000000,,ref->het,0.28947368,0.00000000,89.00000000,3.93805310,12.66000000 +1400,chr22,47216039,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.67000000,66.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.31081081,0.00000000,80.00000000,3.53982301,1.58000000 +1401,chr22,47302601,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,11.00000000,1.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.08000000,38.00000000,0.00000000,10.00000000,CATC,4.00000000,,ref->het,0.18181818,0.00000000,78.00000000,3.45132743,1.11000000 +1402,chr22,47354516,TP,C,C,CTCTT,CTCTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.37000000,68.00000000,0.00000000,1.00000000,TCTT,4.00000000,,ref->het,0.22222222,0.00000000,96.00000000,4.24778761,1.18000000 +1403,chr22,47361239,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.64000000,42.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.15942029,0.00000000,78.00000000,3.45132743,6.74000000 +1404,chr22,47362462,TP,T,T,TCTTA,TCTTA,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.55000000,50.00000000,0.00000000,0.00000000,CTTA,4.00000000,,ref->het,0.20588235,0.00000000,78.00000000,3.45132743,3.16000000 +1405,chr22,47363098,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.60000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,73.00000000,3.23008850,1.36000000 +1406,chr22,47376476,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.57000000,41.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16250000,0.00000000,85.00000000,3.76106195,1.95000000 +1407,chr22,47384783,TP,GGACCAGGCA,GGACCAGGCA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.92000000,41.00000000,0.00000000,1.00000000,GACCAGGCA,9.00000000,,ref->het,0.15942029,0.00000000,71.00000000,3.14159292,1.29000000 +1408,chr22,47386643,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.34000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21666667,0.00000000,69.00000000,3.05309735,0.94000000 +1409,chr22,47392431,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.62000000,41.00000000,0.00000000,0.00000000,AT,2.00000000,,ref->het,0.26229508,0.00000000,68.00000000,3.00884956,1.73000000 +1410,chr22,47399338,TP,GCCA,GCCA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,68.00000000,0.00000000,2.00000000,CCA,3.00000000,,ref->het,0.34375000,0.00000000,71.00000000,3.14159292,1.48000000 +1411,chr22,47405461,TP,GGGTGGCCAGGGTGTGAC,GGGTGGCCAGGGTGTGAC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,4.29000000,40.00000000,0.00000000,1.00000000,GGTGGCCAGGGTGTGAC,17.00000000,,ref->het,0.23404255,0.00000000,58.00000000,2.56637168,6.37000000 +1412,chr22,47422925,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.21000000,45.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.29069767,0.00000000,103.00000000,4.55752212,11.14000000 +1413,chr22,47432144,TP,ATATTTATT,ATATTTATT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,0.68000000,62.00000000,0.00000000,6.00000000,TATT,4.00000000,,ref->het,0.24418605,0.00000000,103.00000000,4.55752212,0.91000000 +1414,chr22,47437403,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.87000000,37.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.26027397,0.00000000,84.00000000,3.71681416,1.96000000 +1415,chr22,47438857,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.31000000,53.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.18823529,0.00000000,97.00000000,4.29203540,0.07000000 +1416,chr22,47440784,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.38000000,43.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20879121,0.00000000,98.00000000,4.33628319,2.21000000 +1417,chr22,47468698,TP,T,T,TACACCCC,TACACCCC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.49000000,60.00000000,0.00000000,0.00000000,ACACCCC,7.00000000,,ref->het,0.25609756,0.00000000,88.00000000,3.89380531,1.71000000 +1418,chr22,47476941,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.18000000,55.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.27536232,0.00000000,78.00000000,3.45132743,0.35000000 +1419,chr22,47488512,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.60000000,57.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.28205128,0.00000000,87.00000000,3.84955752,21.98000000 +1420,chr22,47514246,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.55000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,93.00000000,4.11504425,0.54000000 +1421,chr22,47541511,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.76000000,61.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23684211,0.00000000,80.00000000,3.53982301,1.93000000 +1422,chr22,47542895,TP,TTTTGTTTG,TTTTGTTTG,T,T,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.13000000,39.00000000,0.00000000,8.00000000,TTTG,4.00000000,,ref->het,0.41538462,0.00000000,91.00000000,4.02654867,2.15000000 +1423,chr22,47547113,TP,T,T,TCGC,TCGC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.82000000,56.00000000,0.00000000,1.00000000,CGC,3.00000000,,ref->het,0.33333333,0.00000000,68.00000000,3.00884956,1.68000000 +1424,chr22,47590612,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.78000000,43.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,40.00000000,1.76991150,1.10000000 +1425,chr22,47604275,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.06000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,72.00000000,3.18584071,1.74000000 +1426,chr22,47644914,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.49000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.24561404,0.00000000,69.00000000,3.05309735,4.11000000 +1427,chr22,47723430,TP,AAG,AAG,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.41000000,65.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.41071429,0.00000000,61.00000000,2.69911504,1.79000000 +1428,chr22,47806934,TP,GACCCAA,GACCCAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.62000000,42.00000000,0.00000000,1.00000000,ACCCAA,6.00000000,,ref->het,0.17647059,0.00000000,71.00000000,3.14159292,1.36000000 +1429,chr22,47807714,TP,GGGA,GGGA,G,G,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.88000000,40.00000000,0.00000000,8.00000000,GGA,3.00000000,,ref->het,0.23214286,0.00000000,67.00000000,2.96460177,3.51000000 +1430,chr22,47814653,TP,TTGTA,TTGTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.25000000,39.00000000,0.00000000,1.00000000,TGTA,4.00000000,,ref->het,0.17187500,0.00000000,67.00000000,2.96460177,4.85000000 +1431,chr22,47814711,TP,TTGTG,TTGTG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.45000000,40.00000000,0.00000000,5.00000000,TG,2.00000000,,ref->het,0.15384615,0.00000000,66.00000000,2.92035398,4.88000000 +1432,chr22,47845420,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.14000000,42.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.15492958,0.00000000,78.00000000,3.45132743,1.13000000 +1433,chr22,47855843,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.15000000,35.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.28333333,0.00000000,69.00000000,3.05309735,2.59000000 +1434,chr22,47857079,TP,TCC,TCC,T,T,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,3.22000000,40.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.29032258,0.00000000,72.00000000,3.18584071,8.51000000 +1435,chr22,47858141,TP,ACTTT,ACTTT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.49000000,40.00000000,0.00000000,2.00000000,CTTT,4.00000000,,ref->het,0.16091954,0.00000000,96.00000000,4.24778761,1.62000000 +1436,chr22,47859068,TP,T,T,TTTTC,TTTTC,-1.00000000,,,,0.50000000,,,2.00000000,17.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.70000000,47.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.21333333,0.00000000,81.00000000,3.58407080,4.62000000 +1437,chr22,47859392,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,50.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.21052632,0.00000000,99.00000000,4.38053097,1.43000000 +1438,chr22,47859456,TP,CTA,CTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.60000000,43.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.17500000,0.00000000,85.00000000,3.76106195,0.79000000 +1439,chr22,47860426,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.32000000,32.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.19512195,0.00000000,86.00000000,3.80530973,3.37000000 +1440,chr22,47864310,TP,G,G,GTTATT,GTTATT,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,56.00000000,0.00000000,1.00000000,TTATT,5.00000000,,ref->het,0.20202020,0.00000000,103.00000000,4.55752212,0.26000000 +1441,chr22,48003139,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.64000000,42.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.18055556,0.00000000,78.00000000,3.45132743,1.45000000 +1442,chr22,48044377,TP,TGATA,TGATA,T,T,-1.00000000,,,,1.00000000,,,10.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.04000000,36.00000000,0.00000000,11.00000000,GATA,4.00000000,,ref->het,0.42857143,0.00000000,74.00000000,3.27433628,2.71000000 +1443,chr22,48065905,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.22000000,50.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.24637681,0.00000000,76.00000000,3.36283186,3.81000000 +1444,chr22,48127031,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.24000000,48.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.35714286,0.00000000,76.00000000,3.36283186,5.22000000 +1445,chr22,48149457,TP,CTAAAAAA,CTAAAAAA,C,C,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.43000000,42.00000000,0.00000000,3.00000000,TAAAAAA,7.00000000,,ref->het,0.16923077,0.00000000,81.00000000,3.58407080,0.41000000 +1446,chr22,48195971,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.23000000,56.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.57407407,0.00000000,57.00000000,2.52212389,0.41000000 +1447,chr22,48204305,TP,GATAGATAGATAGATAC,GATAGATAGATAGATAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.29000000,42.00000000,0.00000000,2.00000000,ATAGATAGATAGATAC,16.00000000,,ref->het,0.22641509,0.00000000,73.00000000,3.23008850,4.49000000 +1448,chr22,48256156,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.39000000,46.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.28205128,0.00000000,88.00000000,3.89380531,1.84000000 +1449,chr22,48292527,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,46.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.23076923,0.00000000,82.00000000,3.62831858,0.33000000 +1450,chr22,48292759,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,46.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.35384615,0.00000000,71.00000000,3.14159292,0.37000000 +1451,chr22,48293520,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.54000000,31.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.24705882,0.00000000,92.00000000,4.07079646,2.78000000 +1452,chr22,48293941,TP,CTATGCAACACAAT,CTATGCAACACAAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.60000000,53.00000000,0.00000000,1.00000000,TATGCAACACAAT,13.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,2.70000000 +1453,chr22,48297911,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,40.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20547945,0.00000000,79.00000000,3.49557522,0.90000000 +1454,chr22,48313930,TP,A,A,AAAAAAGG,AAAAAAGG,-1.00000000,,,,0.50000000,,,2.00000000,8.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.01000000,48.00000000,0.00000000,1.00000000,AAAAAGG,7.00000000,,ref->het,0.21951220,0.00000000,86.00000000,3.80530973,1.29000000 +1455,chr22,48342436,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.37000000,53.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19512195,0.00000000,91.00000000,4.02654867,1.85000000 +1456,chr22,48344810,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.53000000,36.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.23636364,0.00000000,62.00000000,2.74336283,1.30000000 +1457,chr22,48349178,TP,A,A,ACACT,ACACT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.89000000,42.00000000,0.00000000,0.00000000,CACT,4.00000000,,ref->het,0.12500000,0.00000000,59.00000000,2.61061947,3.55000000 +1458,chr22,48349619,TP,GCT,GCT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.03000000,44.00000000,0.00000000,8.00000000,CT,2.00000000,,ref->het,0.21818182,0.00000000,63.00000000,2.78761062,1.44000000 +1459,chr22,48350364,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.29000000,39.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18518519,0.00000000,88.00000000,3.89380531,0.87000000 +1460,chr22,48355996,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.30000000,31.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.26153846,0.00000000,74.00000000,3.27433628,3.34000000 +1461,chr22,48386285,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.21000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26760563,0.00000000,76.00000000,3.36283186,0.85000000 +1462,chr22,48430953,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.28000000,51.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.41558442,0.00000000,86.00000000,3.80530973,2.42000000 +1463,chr22,48438083,TP,GAAC,GAAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.18000000,48.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.27419355,0.00000000,66.00000000,2.92035398,1.48000000 +1464,chr22,48465699,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.58000000,50.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.36486486,0.00000000,84.00000000,3.71681416,1.67000000 +1465,chr22,48480984,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.06000000,50.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.26984127,0.00000000,71.00000000,3.14159292,0.38000000 +1466,chr22,48490826,TP,ACCT,ACCT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.53000000,31.00000000,0.00000000,2.00000000,CCT,3.00000000,,ref->het,0.45783133,0.00000000,93.00000000,4.11504425,10.67000000 +1467,chr22,48534192,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,66.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.37313433,0.00000000,76.00000000,3.36283186,3.60000000 +1468,chr22,48570829,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.13000000,74.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.46511628,0.00000000,90.00000000,3.98230088,0.17000000 +1469,chr22,48601957,TP,CACAT,CACAT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.13000000,66.00000000,0.00000000,1.00000000,ACAT,4.00000000,,ref->het,0.47872340,0.00000000,96.00000000,4.24778761,1.51000000 +1470,chr22,48626097,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.39000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,53.00000000,2.34513274,0.01000000 +1471,chr22,48653898,TP,TTGC,TTGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.40000000,46.00000000,0.00000000,1.00000000,TGC,3.00000000,,ref->het,0.19512195,0.00000000,85.00000000,3.76106195,1.87000000 +1472,chr22,48660945,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.35000000,44.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.16216216,0.00000000,83.00000000,3.67256637,4.11000000 +1473,chr22,48662487,TP,G,G,GGTGATTC,GGTGATTC,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.94000000,38.00000000,0.00000000,1.00000000,GTGATTC,7.00000000,,ref->het,0.17142857,0.00000000,74.00000000,3.27433628,0.79000000 +1474,chr22,48663101,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,52.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.22784810,0.00000000,89.00000000,3.93805310,1.22000000 +1475,chr22,48663345,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.60000000,36.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16216216,0.00000000,79.00000000,3.49557522,2.16000000 +1476,chr22,48665550,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.09000000,43.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.15942029,0.00000000,76.00000000,3.36283186,0.99000000 +1477,chr22,48673316,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,49.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.19540230,0.00000000,95.00000000,4.20353982,4.86000000 +1478,chr22,48674350,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.20000000,43.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.20454545,0.00000000,52.00000000,2.30088496,0.71000000 +1479,chr22,48688005,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.19000000,42.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.28787879,0.00000000,77.00000000,3.40707965,1.77000000 +1480,chr22,48787709,TP,ATTAT,ATTAT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.72000000,37.00000000,0.00000000,2.00000000,TTAT,4.00000000,,ref->het,0.47761194,0.00000000,71.00000000,3.14159292,0.99000000 +1481,chr22,48787828,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.20000000,69.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.50724638,0.00000000,78.00000000,3.45132743,1.53000000 +1482,chr22,48789825,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.34000000,48.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.39743590,0.00000000,96.00000000,4.24778761,6.41000000 +1483,chr22,48796178,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.60000000,94.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.44615385,0.00000000,76.00000000,3.36283186,1.32000000 +1484,chr22,48804071,TP,T,T,TCTC,TCTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.74000000,53.00000000,0.00000000,1.00000000,CTC,3.00000000,,ref->het,0.26250000,0.00000000,91.00000000,4.02654867,1.37000000 +1485,chr22,48811206,TP,GTATA,GTATA,G,G,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.14000000,48.00000000,0.00000000,6.00000000,TA,2.00000000,,ref->het,0.28358209,0.00000000,77.00000000,3.40707965,3.19000000 +1486,chr22,48816765,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.69000000,56.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21978022,0.00000000,97.00000000,4.29203540,3.38000000 +1487,chr22,48831879,TP,CTTG,CTTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.71000000,51.00000000,0.00000000,2.00000000,TTG,3.00000000,,ref->het,0.23529412,0.00000000,90.00000000,3.98230088,0.85000000 +1488,chr22,48833617,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.22000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.18571429,0.00000000,74.00000000,3.27433628,0.90000000 +1489,chr22,48835017,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.33000000,44.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.17948718,0.00000000,86.00000000,3.80530973,1.70000000 +1490,chr22,48843682,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.70000000,49.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.22727273,0.00000000,74.00000000,3.27433628,1.89000000 +1491,chr22,48846153,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.12000000,47.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21126761,0.00000000,77.00000000,3.40707965,0.93000000 +1492,chr22,48847572,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.24000000,45.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.28813559,0.00000000,63.00000000,2.78761062,1.23000000 +1493,chr22,48865732,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,48.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.22413793,0.00000000,62.00000000,2.74336283,1.11000000 +1494,chr22,48870142,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.97000000,66.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,85.00000000,3.76106195,1.53000000 +1495,chr22,48877688,TP,GGTAA,GGTAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,46.00000000,0.00000000,1.00000000,GTAA,4.00000000,,ref->het,0.25333333,0.00000000,79.00000000,3.49557522,3.14000000 +1496,chr22,48928462,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.54000000,46.00000000,0.00000000,4.00000000,AT,2.00000000,,ref->het,0.22222222,0.00000000,73.00000000,3.23008850,1.41000000 +1497,chr22,48928830,TP,TACTG,TACTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.54000000,46.00000000,0.00000000,1.00000000,ACTG,4.00000000,,ref->het,0.20253165,0.00000000,81.00000000,3.58407080,2.71000000 +1498,chr22,48943385,TP,ATGAG,ATGAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.00000000,46.00000000,0.00000000,2.00000000,TGAG,4.00000000,,ref->het,0.17647059,0.00000000,70.00000000,3.09734513,1.02000000 +1499,chr22,48948863,TP,CCTCCAGCCTCACCTCCCT,CCTCCAGCCTCACCTCCCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.40000000,36.00000000,0.00000000,1.00000000,CTCCAGCCTCACCTCCCT,18.00000000,,ref->het,0.16666667,0.00000000,60.00000000,2.65486726,6.92000000 +1500,chr22,48949332,TP,TTCCAGCCTCACTCCTCC,TTCCAGCCTCACTCCTCC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.66000000,31.00000000,0.00000000,1.00000000,TCCAGCCTCACTCCTCC,17.00000000,,ref->het,0.16326531,0.00000000,54.00000000,2.38938053,9.45000000 +1501,chr22,48949858,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.86000000,49.00000000,0.00000000,2.00000000,AC,2.00000000,,ref->het,0.26760563,0.00000000,73.00000000,3.23008850,3.96000000 +1502,chr22,48952055,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.24000000,44.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,77.00000000,3.40707965,0.84000000 +1503,chr22,48956632,TP,A,A,ACACGCCACAACCACATT,ACACGCCACAACCACATT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.13000000,41.00000000,0.00000000,1.00000000,CACGCCACAACCACATT,17.00000000,,ref->het,0.21428571,0.00000000,51.00000000,2.25663717,2.39000000 +1504,chr22,48965214,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.48000000,46.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.29230769,0.00000000,73.00000000,3.23008850,3.38000000 +1505,chr22,48968126,TP,CAACCAAA,CAACCAAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,51.00000000,0.00000000,1.00000000,AACCAAA,7.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,4.04000000 +1506,chr22,48992253,TP,TGATA,TGATA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.37000000,61.00000000,0.00000000,3.00000000,GATA,4.00000000,,ref->het,0.33962264,0.00000000,59.00000000,2.61061947,1.69000000 +1507,chr22,48992489,TP,TAGAC,TAGAC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.01000000,51.00000000,0.00000000,2.00000000,AGAC,4.00000000,,ref->het,0.28378378,0.00000000,82.00000000,3.62831858,0.01000000 +1508,chr22,48995595,TP,T,T,TCACA,TCACA,-1.00000000,,,,0.50000000,,,13.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.70000000,46.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.21875000,0.00000000,83.00000000,3.67256637,1.87000000 +1509,chr22,49003279,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.67000000,58.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.28395062,0.00000000,84.00000000,3.71681416,1.27000000 +1510,chr22,49080337,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.49000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18032787,0.00000000,62.00000000,2.74336283,0.69000000 +1511,chr22,49096342,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,7.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.95000000,34.00000000,0.00000000,8.00000000,CA,2.00000000,,ref->het,0.13432836,0.00000000,77.00000000,3.40707965,3.91000000 +1512,chr22,49096396,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.89000000,38.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.12698413,0.00000000,69.00000000,3.05309735,4.08000000 +1513,chr22,49106469,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.13000000,53.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19780220,0.00000000,96.00000000,4.24778761,1.64000000 +1514,chr22,49138199,TP,G,G,GTCCACCCATCCATCAACTCATCTATTA,GTCCACCCATCCATCAACTCATCTATTA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,38.00000000,0.00000000,1.00000000,TCCACCCATCCATCAACTCATCTATTA,27.00000000,,ref->het,0.15625000,0.00000000,60.00000000,2.65486726,0.62000000 +1515,chr22,49146562,TP,ATGAGCG,ATGAGCG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.82000000,55.00000000,0.00000000,1.00000000,TGAGCG,6.00000000,,ref->het,0.26582278,0.00000000,81.00000000,3.58407080,2.21000000 +1516,chr22,49152471,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.68000000,42.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.26760563,0.00000000,80.00000000,3.53982301,3.43000000 +1517,chr22,49224332,TP,C,C,CATGGATGG,CATGGATGG,-1.00000000,,,,1.00000000,,,13.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.71000000,38.00000000,0.00000000,11.00000000,ATGG,4.00000000,,ref->het,0.49206349,0.00000000,91.00000000,4.02654867,2.10000000 +1518,chr22,49292680,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.41000000,54.00000000,0.00000000,2.00000000,AC,2.00000000,,ref->het,0.21052632,0.00000000,82.00000000,3.62831858,2.14000000 +1519,chr22,49308292,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.59000000,32.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,73.00000000,3.23008850,5.62000000 +1520,chr22,49308313,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.20000000,49.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.25373134,0.00000000,79.00000000,3.49557522,4.65000000 +1521,chr22,49316634,TP,TTAAAG,TTAAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.04000000,55.00000000,0.00000000,1.00000000,TAAAG,5.00000000,,ref->het,0.22972973,0.00000000,77.00000000,3.40707965,2.78000000 +1522,chr22,49316836,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.39000000,61.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.56060606,0.00000000,82.00000000,3.62831858,2.35000000 +1523,chr22,49328517,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.29000000,45.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.19117647,0.00000000,72.00000000,3.18584071,0.78000000 +1524,chr22,49338036,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.87000000,53.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,77.00000000,3.40707965,0.19000000 +1525,chr22,49357805,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.45000000,50.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.49122807,0.00000000,77.00000000,3.40707965,7.46000000 +1526,chr22,49359361,TP,A,A,ACTGGTGTAGAAAATGTCTTACCCTCTGAT,ACTGGTGTAGAAAATGTCTTACCCTCTGAT,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.18000000,58.00000000,0.00000000,1.00000000,CTGGTGTAGAAAATGTCTTACCCTCTGAT,29.00000000,,ref->het,0.50000000,0.00000000,76.00000000,3.36283186,0.63000000 +1527,chr22,49359830,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,10.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.77000000,49.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.32786885,0.00000000,69.00000000,3.05309735,4.44000000 +1528,chr22,49365325,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.15000000,61.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.29761905,0.00000000,91.00000000,4.02654867,0.42000000 +1529,chr22,49377537,TP,C,C,CGGCTCTGGGACTTGAGGAAAGTTGACCT,CGGCTCTGGGACTTGAGGAAAGTTGACCT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,28.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.13000000,52.00000000,0.00000000,1.00000000,GGCTCTGGGACTTGAGGAAAGTTGACCT,28.00000000,,ref->het,0.27777778,0.00000000,78.00000000,3.45132743,0.29000000 +1530,chr22,49402902,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.77000000,37.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.41666667,0.00000000,60.00000000,2.65486726,5.15000000 +1531,chr22,49408981,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,12.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.24000000,37.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,85.00000000,3.76106195,4.23000000 +1532,chr22,49426987,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.96000000,42.00000000,0.00000000,5.00000000,TG,2.00000000,,ref->het,0.19354839,0.00000000,69.00000000,3.05309735,0.38000000 +1533,chr22,49427064,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.59000000,49.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.28169014,0.00000000,75.00000000,3.31858407,3.05000000 +1534,chr22,49427422,TP,AAAC,AAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.46000000,44.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.22727273,0.00000000,69.00000000,3.05309735,1.50000000 +1535,chr22,49430526,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,56.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,80.00000000,3.53982301,0.96000000 +1536,chr22,49445770,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.32000000,36.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.15873016,0.00000000,73.00000000,3.23008850,0.96000000 +1537,chr22,49470868,TP,C,C,CCACACA,CCACACA,-1.00000000,,,,0.50000000,,,15.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.98000000,50.00000000,0.00000000,12.00000000,CA,2.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,4.71000000 +1538,chr22,49486538,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.68000000,48.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,71.00000000,3.14159292,2.27000000 +1539,chr22,49488447,TP,AGTTTT,AGTTTT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,2.64000000,44.00000000,0.00000000,1.00000000,GTTTT,5.00000000,,ref->het,0.12380952,0.00000000,116.00000000,5.13274336,5.28000000 +1540,chr22,49507139,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,3.55000000,35.00000000,0.00000000,5.00000000,AGA,3.00000000,,ref->het,0.19672131,0.00000000,78.00000000,3.45132743,7.93000000 +1541,chr22,49523955,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,7.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.15000000,34.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.17777778,0.00000000,64.00000000,2.83185841,17.17000000 +1542,chr22,49580546,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.98000000,35.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.17460317,0.00000000,72.00000000,3.18584071,6.45000000 +1543,chr22,49601710,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.31000000,48.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.24324324,0.00000000,81.00000000,3.58407080,2.81000000 +1544,chr22,49847007,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.03000000,45.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.25714286,0.00000000,77.00000000,3.40707965,2.40000000 +1545,chr22,49849678,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.61000000,39.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.15189873,0.00000000,89.00000000,3.93805310,1.04000000 +1546,chr22,49851602,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,35.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.12121212,0.00000000,71.00000000,3.14159292,0.93000000 +1547,chr22,49861001,TP,T,T,TCTC,TCTC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.11000000,47.00000000,0.00000000,0.00000000,CTC,3.00000000,,ref->het,0.19402985,0.00000000,75.00000000,3.31858407,0.56000000 +1548,chr22,49866136,TP,A,A,ATTTCT,ATTTCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.90000000,60.00000000,0.00000000,0.00000000,TTTCT,5.00000000,,ref->het,0.23750000,0.00000000,86.00000000,3.80530973,1.48000000 +1549,chr22,49871161,TP,A,A,AAGCTCCTGGGCTCAAACAATCCATCTGCCTC,AAGCTCCTGGGCTCAAACAATCCATCTGCCTC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,31.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.00000000,49.00000000,0.00000000,0.00000000,AGCTCCTGGGCTCAAACAATCCATCTGCCTC,31.00000000,,ref->het,0.26415094,0.00000000,53.00000000,2.34513274,1.31000000 +1550,chr22,49871758,TP,T,T,TTTA,TTTA,-1.00000000,,,,0.50000000,,,1.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.72000000,39.00000000,0.00000000,0.00000000,TTA,3.00000000,,ref->het,0.16393443,0.00000000,66.00000000,2.92035398,5.67000000 +1551,chr22,49873858,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.55000000,41.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.15277778,0.00000000,79.00000000,3.49557522,2.27000000 +1552,chr22,49877258,TP,ATTATTTATTTAT,ATTATTTATTTAT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,6.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.36000000,35.00000000,0.00000000,12.00000000,TTAT,4.00000000,,ref->het,0.15517241,0.00000000,80.00000000,3.53982301,1.19000000 +1553,chr22,49880134,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.02000000,55.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19767442,0.00000000,91.00000000,4.02654867,0.78000000 +1554,chr22,49972882,TP,GTA,GTA,G,G,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.95000000,61.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.47297297,0.00000000,82.00000000,3.62831858,9.17000000 +1555,chr22,50033191,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.03000000,56.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.48648649,0.00000000,76.00000000,3.36283186,2.66000000 +1556,chr22,50037208,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.66000000,52.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.37500000,0.00000000,96.00000000,4.24778761,4.59000000 +1557,chr22,50048115,TP,A,A,AGT,AGT,-1.00000000,,,,1.00000000,,,16.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.95000000,68.00000000,0.00000000,15.00000000,GT,2.00000000,,ref->het,0.34328358,0.00000000,97.00000000,4.29203540,3.33000000 +1558,chr22,50055655,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.44000000,36.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,82.00000000,3.62831858,6.66000000 +1559,chr22,50066906,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.86000000,52.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.28409091,0.00000000,91.00000000,4.02654867,1.05000000 +1560,chr22,50199742,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.72000000,60.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.29411765,0.00000000,82.00000000,3.62831858,2.08000000 +1561,chr22,50231257,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.67000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,0.81000000 +1562,chr22,50238137,TP,A,A,AAG,AAG,-1.00000000,,,,1.00000000,,,11.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,51.00000000,0.00000000,10.00000000,AG,2.00000000,,ref->het,0.37037037,0.00000000,71.00000000,3.14159292,1.97000000 +1563,chr22,50284510,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.29000000,43.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.17543860,0.00000000,65.00000000,2.87610619,6.45000000 +1564,chr22,50322046,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.78000000,37.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.28048780,0.00000000,95.00000000,4.20353982,5.38000000 +1565,chr22,50322078,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.75000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.24691358,0.00000000,100.00000000,4.42477876,7.39000000 +1566,chr22,50331614,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.40000000,42.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.16470588,0.00000000,95.00000000,4.20353982,0.58000000 +1567,chr22,50337665,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.14000000,43.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.27450980,0.00000000,68.00000000,3.00884956,11.28000000 +1568,chr22,50440462,TP,GGTGA,GGTGA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.35000000,91.00000000,0.00000000,2.00000000,GTGA,4.00000000,,ref->het,0.41250000,0.00000000,84.00000000,3.71681416,1.77000000 +1569,chr22,50443687,TP,CAGCAGA,CAGCAGA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.20000000,91.00000000,0.00000000,1.00000000,AGCAGA,6.00000000,,ref->het,0.46913580,0.00000000,86.00000000,3.80530973,2.02000000 +1570,chr22,50444323,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.98000000,81.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.36363636,0.00000000,96.00000000,4.24778761,2.96000000 +1571,chr22,50446815,TP,TTC,TTC,T,T,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.63000000,50.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.45333333,0.00000000,84.00000000,3.71681416,1.37000000 +1572,chr22,50447464,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.10000000,52.00000000,0.00000000,2.00000000,CA,2.00000000,,ref->het,0.24096386,0.00000000,89.00000000,3.93805310,7.94000000 +1573,chr22,50479746,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.03000000,67.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.47540984,0.00000000,79.00000000,3.49557522,5.03000000 +1574,chr22,50514106,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.46000000,37.00000000,0.00000000,5.00000000,AAACA,5.00000000,,ref->het,0.11475410,0.00000000,82.00000000,3.62831858,1.82000000 +1575,chr22,50519032,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,56.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.23863636,0.00000000,93.00000000,4.11504425,1.56000000 +1576,chr22,50536801,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.13000000,58.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.26506024,0.00000000,88.00000000,3.89380531,0.27000000 +1577,chr22,50537687,TP,CACAA,CACAA,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.59000000,48.00000000,0.00000000,3.00000000,ACAA,4.00000000,,ref->het,0.18823529,0.00000000,96.00000000,4.24778761,2.73000000 +1578,chr22,50540446,TP,G,G,GTATATA,GTATATA,-1.00000000,,,,0.50000000,,,9.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.47000000,64.00000000,0.00000000,6.00000000,TA,2.00000000,,ref->het,0.29166667,0.00000000,89.00000000,3.93805310,1.19000000 +1579,chr22,50540513,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.57000000,48.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.26086957,0.00000000,75.00000000,3.31858407,1.80000000 +1580,chr22,50540674,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.34000000,37.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.16091954,0.00000000,102.00000000,4.51327434,12.15000000 +1581,chr22,50541317,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.23000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.29411765,0.00000000,97.00000000,4.29203540,4.67000000 +1582,chr22,50564147,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.02000000,41.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.23943662,0.00000000,91.00000000,4.02654867,6.73000000 +1583,chr22,50565775,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.55000000,46.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.20253165,0.00000000,88.00000000,3.89380531,3.95000000 +1584,chr22,50578780,TP,C,C,CCTT,CCTT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.85000000,46.00000000,0.00000000,0.00000000,CTT,3.00000000,,ref->het,0.20547945,0.00000000,77.00000000,3.40707965,1.14000000 +1585,chr22,50582835,TP,GGCTCGGTTCCTTCCGGCCGC,GGCTCGGTTCCTTCCGGCCGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.68000000,68.00000000,0.00000000,1.00000000,GCTCGGTTCCTTCCGGCCGC,20.00000000,,ref->het,0.27368421,0.00000000,90.00000000,3.98230088,4.20000000 +1586,chr22,50592860,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.67000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,3.36000000 +1587,chr22,50614470,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.34000000,41.00000000,0.00000000,9.00000000,AG,2.00000000,,ref->het,0.19642857,0.00000000,74.00000000,3.27433628,9.19000000 +1588,chr22,50621405,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.19000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,85.00000000,3.76106195,3.35000000 +1589,chr22,50626434,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.74000000,59.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.20930233,0.00000000,94.00000000,4.15929204,1.99000000 +1590,chr22,50648256,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.90000000,40.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.28000000,0.00000000,99.00000000,4.38053097,3.30000000 +1591,chr22,50668253,TP,TTAAGTG,TTAAGTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.24000000,41.00000000,0.00000000,1.00000000,TAAGTG,6.00000000,,ref->het,0.29577465,0.00000000,76.00000000,3.36283186,0.48000000 +1592,chr22,50670334,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,14.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.80000000,71.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.46666667,0.00000000,76.00000000,3.36283186,8.62000000 +1593,chr22,50725487,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,43.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.17567568,0.00000000,82.00000000,3.62831858,1.04000000 +1594,chr22,50725583,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.81000000,55.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23376623,0.00000000,83.00000000,3.67256637,1.51000000 +1595,chr22,50761102,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.41000000,36.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.14666667,0.00000000,78.00000000,3.45132743,0.63000000 +1596,chr22,50768353,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.28000000,32.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.10526316,0.00000000,59.00000000,2.61061947,1.11000000 +1597,chr22,50769577,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.20000000,32.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.12765957,0.00000000,49.00000000,2.16814159,1.63000000 +1598,chr22,50781400,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,12.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.52000000,45.00000000,0.00000000,11.00000000,AG,2.00000000,,ref->het,0.26666667,0.00000000,80.00000000,3.53982301,6.52000000 +1599,chr22,50790395,TP,ATCT,ATCT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,33.00000000,0.00000000,2.00000000,TCT,3.00000000,,ref->het,0.15217391,0.00000000,48.00000000,2.12389381,0.03000000 +0,chr22,11625917,FP,G,,GA,,-1.00000000,,,,,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,63.00000000,2.78761062,3.20000000,42.00000000,,2.00000000,A,1.00000000,,ref->het,0.03311258,0.00000000,163.00000000,7.21238938,5.28000000 +1,chr22,16406880,FP,CA,,C,,-1.00000000,,,,,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,51.00000000,2.25663717,1.51000000,43.00000000,,4.00000000,A,1.00000000,,ref->het,0.05825243,0.00000000,112.00000000,4.95575221,1.81000000 +2,chr22,17285575,FP,G,,GTGTGTGTG,,-1.00000000,,,,,,,20.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.77000000,33.00000000,,16.00000000,TG,2.00000000,,ref->het,0.16666667,0.00000000,54.00000000,2.38938053,2.95000000 +3,chr22,19052414,FP,T,,TCACACA,,-1.00000000,,,,,,,16.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.81000000,50.00000000,,13.00000000,CA,2.00000000,,ref->het,0.36206897,0.00000000,83.00000000,3.67256637,4.79000000 +4,chr22,21667790,FP,TTTTGA,,T,,-1.00000000,,,,,,,0.00000000,28.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.44000000,34.00000000,,1.00000000,TTTGA,5.00000000,,ref->het,0.06976744,0.00000000,56.00000000,2.47787611,10.15000000 +5,chr22,22900687,FP,T,,TGTCAG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.73000000,31.00000000,,1.00000000,GTCAG,5.00000000,,ref->het,0.05714286,0.00000000,72.00000000,3.18584071,0.82000000 +6,chr22,25085783,FP,AAGGG,,A,,-1.00000000,,,,,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.55000000,35.00000000,,6.00000000,AGGG,4.00000000,,ref->het,0.20833333,0.00000000,65.00000000,2.87610619,10.48000000 +7,chr22,25436587,FP,C,,CG,,-1.00000000,,,,,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.84000000,35.00000000,,5.00000000,G,1.00000000,,ref->het,0.07017544,0.00000000,61.00000000,2.69911504,5.58000000 +8,chr22,25491655,FP,G,,GTCTTTCTT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.17000000,45.00000000,,0.00000000,TCTT,4.00000000,,ref->het,0.29545455,0.00000000,82.00000000,3.62831858,4.67000000 +9,chr22,26292034,FP,AGGATGGAT,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.60000000,35.00000000,,2.00000000,GGAT,4.00000000,,ref->het,0.22727273,0.00000000,78.00000000,3.45132743,6.96000000 +10,chr22,26390320,FP,GT,,G,,-1.00000000,,,,,,,1.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,4.55000000,33.00000000,,2.00000000,T,1.00000000,,ref->het,0.16129032,0.00000000,46.00000000,2.03539823,7.00000000 +11,chr22,26393177,FP,A,,ATGTGTGTGTGTGTGTGTGTGTG,,-1.00000000,,,,,,,16.00000000,2.00000000,1.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.17000000,36.00000000,,5.00000000,TG,2.00000000,,ref->het,0.11764706,0.00000000,71.00000000,3.14159292,3.50000000 +12,chr22,32373281,FP,GAA,,G,,-1.00000000,,,,,,,12.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.62000000,33.00000000,,14.00000000,A,1.00000000,,ref->het,0.21176471,0.00000000,92.00000000,4.07079646,3.50000000 +13,chr22,32585978,FP,ATATGTATGTATACGTATATATG,,A,,-1.00000000,,,,,,,1.00000000,2.00000000,2.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,36.00000000,,2.00000000,TATGTATGTATACGTATATATG,22.00000000,,ref->het,0.12658228,0.00000000,92.00000000,4.07079646,2.20000000 +14,chr22,33009751,FP,A,,AACAC,,-1.00000000,,,,,,,23.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.47000000,45.00000000,,21.00000000,AC,2.00000000,,ref->het,0.22727273,0.00000000,65.00000000,2.87610619,3.65000000 +15,chr22,33696235,FP,TTTTC,,T,,-1.00000000,,,,,,,6.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.84000000,65.00000000,,7.00000000,TTTC,4.00000000,,ref->het,0.45098039,0.00000000,93.00000000,4.11504425,4.33000000 +16,chr22,34479793,FP,G,,GTATCTATC,,-1.00000000,,,,,,,3.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.29000000,40.00000000,,1.00000000,TATC,4.00000000,,ref->het,0.27450980,0.00000000,71.00000000,3.14159292,0.64000000 +17,chr22,34898835,FP,A,,ACACACC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.47000000,33.00000000,,0.00000000,CACACC,6.00000000,,ref->het,0.06172840,0.00000000,90.00000000,3.98230088,5.30000000 +18,chr22,36618916,FP,TCAAAA,,T,,-1.00000000,,,,,,,0.00000000,12.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.51000000,31.00000000,,1.00000000,CAAAA,5.00000000,,ref->het,0.09677419,0.00000000,66.00000000,2.92035398,4.81000000 +19,chr22,36706245,FP,T,,TCTTCTTCTTCTTCTTCTTCTTCTT,,-1.00000000,,,,,,,20.00000000,4.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,2.50000000,40.00000000,,12.00000000,CTT,3.00000000,,ref->het,0.26923077,0.00000000,53.00000000,2.34513274,3.39000000 +20,chr22,38526736,FP,AT,,A,,-1.00000000,,,,,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.42000000,39.00000000,,8.00000000,T,1.00000000,,ref->het,0.06481481,0.00000000,115.00000000,5.08849558,0.99000000 +21,chr22,39570246,FP,C,,CCCTTCCTT,,-1.00000000,,,,,,,12.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.94000000,32.00000000,,10.00000000,CCTT,4.00000000,,ref->het,0.37500000,0.00000000,74.00000000,3.27433628,3.33000000 +22,chr22,40742863,FP,CT,,C,,-1.00000000,,,,,,,25.00000000,26.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,9.21000000,30.00000000,,26.00000000,T,1.00000000,,ref->het,0.29166667,0.00000000,66.00000000,2.92035398,13.86000000 +23,chr22,42475011,FP,CTCA,,C,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.30000000,51.00000000,,1.00000000,TCA,3.00000000,,ref->het,0.25000000,0.00000000,73.00000000,3.23008850,4.45000000 +24,chr22,43096313,FP,CAA,,C,,-1.00000000,,,,,,,24.00000000,28.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.49000000,34.00000000,,26.00000000,A,1.00000000,,ref->het,0.37837838,0.00000000,70.00000000,3.09734513,10.66000000 +25,chr22,43887794,FP,GGGCA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.34000000,45.00000000,,1.00000000,GGCA,4.00000000,,ref->het,0.20512821,0.00000000,85.00000000,3.76106195,7.75000000 +26,chr22,46146449,FP,GAGAAGAGAAGAGA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.82000000,40.00000000,,1.00000000,AGAAGAGAAGAGA,13.00000000,,ref->het,0.15384615,0.00000000,60.00000000,2.65486726,5.51000000 +27,chr22,46146490,FP,AGAAGGGAAGG,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.53000000,38.00000000,,2.00000000,GAAGG,5.00000000,,ref->het,0.13698630,0.00000000,74.00000000,3.27433628,3.43000000 +28,chr22,46523536,FP,A,,AAATAAATAAATAAATAAATA,,-1.00000000,,,,,,,13.00000000,6.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.87000000,47.00000000,,8.00000000,AATA,4.00000000,,ref->het,0.24528302,0.00000000,56.00000000,2.47787611,2.18000000 +29,chr22,46702221,FP,ATATG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.23000000,44.00000000,,1.00000000,TATG,4.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,13.18000000 +30,chr22,46841073,FP,T,,TGTGTGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.42000000,39.00000000,,0.00000000,GTGTGA,6.00000000,,ref->het,0.11764706,0.00000000,57.00000000,2.52212389,2.14000000 +31,chr22,47520489,FP,TATGATATGAATATGCTATTCATTCATGAGTATG,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,33.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.92000000,33.00000000,,1.00000000,ATGATATGAATATGCTATTCATTCATGAGTATG,33.00000000,,ref->het,0.08750000,0.00000000,75.00000000,3.31858407,2.41000000 +32,chr22,47867253,FP,G,,GTATATATA,,-1.00000000,,,,,,,13.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.79000000,39.00000000,,9.00000000,TA,2.00000000,,ref->het,0.19148936,0.00000000,69.00000000,3.05309735,0.99000000 +33,chr22,48080772,FP,CAAACCCACATACACCACACACACCAAACACACAATCAT,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.77000000,37.00000000,,1.00000000,AAACCCACATACACCACACACACCAAACACACAATCAT,38.00000000,,ref->het,0.13698630,0.00000000,79.00000000,3.49557522,5.29000000 +34,chr22,49399929,FP,ACACACAC,,A,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.19000000,57.00000000,,2.00000000,CACACAC,7.00000000,,ref->het,0.33898305,0.00000000,80.00000000,3.53982301,5.08000000 +35,chr22,50264049,FP,A,,AC,,-1.00000000,,,,,,,4.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.17000000,38.00000000,,3.00000000,C,1.00000000,,ref->het,0.23076923,0.00000000,63.00000000,2.78761062,15.30000000 +0,chr22,11295708,FN,,T,,TTTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +1,chr22,12538760,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +2,chr22,12585385,FN,,AAATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +3,chr22,12635555,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +4,chr22,15231814,FN,,AGTGT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +5,chr22,15295537,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +6,chr22,15334438,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +7,chr22,15375287,FN,,TGTGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +8,chr22,15393860,FN,,ACACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +9,chr22,15446047,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +10,chr22,15575886,FN,,TCTC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +11,chr22,15850491,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +12,chr22,15880184,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +13,chr22,16133744,FN,,GAAAA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +14,chr22,16136118,FN,,TG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +15,chr22,16148396,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +16,chr22,16170067,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +17,chr22,16178880,FN,,T,,TAA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +18,chr22,16183035,FN,,CTTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +19,chr22,16187506,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +20,chr22,16201032,FN,,CA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +21,chr22,16204198,FN,,GT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +22,chr22,16216723,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +23,chr22,16238336,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +24,chr22,16254967,FN,,G,,GAGAAAAGAAGGA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +25,chr22,16354607,FN,,GAATGGAATGA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +26,chr22,16356381,FN,,G,,GGAATT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +27,chr22,16378592,FN,,GAATCGAATGGAATCAT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +28,chr22,16387468,FN,,C,,CCCCGCCGCGGCTTTTTGCA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +29,chr22,16391159,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +30,chr22,16402263,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +31,chr22,16422281,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +32,chr22,16578791,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +33,chr22,16649027,FN,,GGGGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +34,chr22,16660163,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +35,chr22,16687926,FN,,A,,AACACAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +36,chr22,16724289,FN,,T,,TATAATATGCAGC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +37,chr22,16724684,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +38,chr22,16791800,FN,,AG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +39,chr22,16791802,FN,,AGAGAGAGAGAAAG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +40,chr22,16839772,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +41,chr22,16935562,FN,,A,,ATGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +42,chr22,16991313,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +43,chr22,17125117,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +44,chr22,17126428,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +45,chr22,17169809,FN,,A,,ATCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +46,chr22,17208445,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +47,chr22,17310269,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +48,chr22,17322142,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +49,chr22,17322777,FN,,CAAAAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +50,chr22,17329968,FN,,A,,AAAAAGAAAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +51,chr22,17331260,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +52,chr22,17331671,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +53,chr22,17454604,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +54,chr22,17482761,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +55,chr22,17527769,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +56,chr22,17534684,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +57,chr22,17534857,FN,,C,,CAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +58,chr22,17544497,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +59,chr22,17547237,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +60,chr22,17597243,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +61,chr22,17641387,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +62,chr22,17704987,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +63,chr22,17705113,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +64,chr22,17763710,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +65,chr22,17829165,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +66,chr22,17839567,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +67,chr22,17886804,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +68,chr22,17912368,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +69,chr22,17953930,FN,,CAAAAAAAAAAAAAAAAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +70,chr22,17954750,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +71,chr22,17990111,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +72,chr22,17993251,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +73,chr22,17994721,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +74,chr22,17996445,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +75,chr22,18124323,FN,,GGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +76,chr22,18162287,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +77,chr22,18238681,FN,,A,,AAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +78,chr22,18609475,FN,,C,,CGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +79,chr22,18733742,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +80,chr22,18788021,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +81,chr22,18881798,FN,,AAAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +82,chr22,19005324,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +83,chr22,19013311,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +84,chr22,19021292,FN,,CTTCTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +85,chr22,19022251,FN,,CAAA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +86,chr22,19023525,FN,,A,,AC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +87,chr22,19024366,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +88,chr22,19026294,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +89,chr22,19033994,FN,,TG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +90,chr22,19044996,FN,,GT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +91,chr22,19084808,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +92,chr22,19092343,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +93,chr22,19093361,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +94,chr22,19096882,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +95,chr22,19103284,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +96,chr22,19108858,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +97,chr22,19113382,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +98,chr22,19161095,FN,,TATATACAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +99,chr22,19214682,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +100,chr22,19262631,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +101,chr22,19610330,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +102,chr22,19614977,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +103,chr22,19646174,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +104,chr22,19661204,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +105,chr22,19778439,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +106,chr22,19859088,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +107,chr22,19909577,FN,,A,,ATTCACACACACAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +108,chr22,19927651,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +109,chr22,20302018,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +110,chr22,20366004,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +111,chr22,20369740,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +112,chr22,20383044,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +113,chr22,20394761,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +114,chr22,20556302,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +115,chr22,20566030,FN,,CTTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +116,chr22,20566526,FN,,A,,ACAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +117,chr22,20570726,FN,,T,,TTTTCTTTCTTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +118,chr22,20623153,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +119,chr22,20623502,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +120,chr22,20624858,FN,,AAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +121,chr22,20625018,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +122,chr22,20625518,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +123,chr22,20628176,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +124,chr22,20630069,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +125,chr22,20659513,FN,,GC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +126,chr22,20683024,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +127,chr22,20790741,FN,,C,,CACACAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +128,chr22,20800873,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +129,chr22,20884331,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +130,chr22,20939789,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +131,chr22,21008219,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +132,chr22,21058052,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +133,chr22,21092166,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +134,chr22,21171187,FN,,GCCTCATGAT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +135,chr22,21222356,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +136,chr22,21251365,FN,,AC,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +137,chr22,21295555,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +138,chr22,21798717,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +139,chr22,21833940,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +140,chr22,21844187,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +141,chr22,21880911,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +142,chr22,21881204,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +143,chr22,21882942,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +144,chr22,21887839,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +145,chr22,21899153,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +146,chr22,21948334,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +147,chr22,22027529,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +148,chr22,22108921,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +149,chr22,22151848,FN,,T,,TGTGC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +150,chr22,22159416,FN,,A,,ATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +151,chr22,22161751,FN,,TAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +152,chr22,22178087,FN,,C,,CAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +153,chr22,22251789,FN,,C,,CTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +154,chr22,22325797,FN,,T,,TACTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +155,chr22,22541941,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +156,chr22,22606112,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +157,chr22,22626113,FN,,A,,AT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +158,chr22,22645134,FN,,CG,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +159,chr22,22675264,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +160,chr22,23082135,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +161,chr22,23163606,FN,,G,,GCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +162,chr22,23262691,FN,,TGGCGGGCCCGGGTGAG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +163,chr22,23305113,FN,,TAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +164,chr22,23332693,FN,,TA,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +165,chr22,23366868,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +166,chr22,23441168,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +167,chr22,23500471,FN,,G,,GGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +168,chr22,23502247,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +169,chr22,23502567,FN,,T,,TCC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +170,chr22,23503498,FN,,CT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +171,chr22,23593977,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +172,chr22,23597502,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +173,chr22,24127821,FN,,C,,CAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +174,chr22,24199015,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +175,chr22,24210360,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +176,chr22,24213730,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +177,chr22,24236762,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +178,chr22,24496404,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +179,chr22,24710278,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +180,chr22,24713889,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +181,chr22,24720259,FN,,GTTTTTTTTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +182,chr22,24726287,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +183,chr22,24734820,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +184,chr22,24740051,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +185,chr22,24756231,FN,,T,,TAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +186,chr22,24818045,FN,,A,,AACATGATGAAACCCTGTCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +187,chr22,24851435,FN,,AG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +188,chr22,24857247,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +189,chr22,24863744,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +190,chr22,24883071,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +191,chr22,24889959,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +192,chr22,24918495,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +193,chr22,24921703,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +194,chr22,24925356,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +195,chr22,24929563,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +196,chr22,24958652,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +197,chr22,24958980,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +198,chr22,24959565,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +199,chr22,24960546,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +200,chr22,25005346,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +201,chr22,25042642,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +202,chr22,25075778,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +203,chr22,25079233,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +204,chr22,25218818,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +205,chr22,25248690,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +206,chr22,25252108,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +207,chr22,25328125,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +208,chr22,25340333,FN,,A,,ATGAG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +209,chr22,25351058,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +210,chr22,25352962,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +211,chr22,25355781,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +212,chr22,25439674,FN,,GC,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +213,chr22,25447622,FN,,AACAC,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +214,chr22,25453601,FN,,G,,GT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +215,chr22,25506572,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +216,chr22,25508835,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +217,chr22,25517718,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +218,chr22,25520208,FN,,A,,ATGTTTGTAAACC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +219,chr22,25552774,FN,,C,,CAAAAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +220,chr22,25734088,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +221,chr22,25775884,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +222,chr22,25802966,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +223,chr22,25810407,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +224,chr22,25817416,FN,,TCTTTTCTTTCC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +225,chr22,25921702,FN,,TTGTGTGTGTGTGTGTGTGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +226,chr22,26327345,FN,,ACACACATGC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +227,chr22,26356955,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +228,chr22,26385039,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +229,chr22,26386744,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +230,chr22,26390308,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +231,chr22,26390318,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +232,chr22,26390320,FN,,GTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +233,chr22,26443619,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +234,chr22,26583555,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +235,chr22,26602590,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +236,chr22,26638231,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +237,chr22,26704098,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +238,chr22,26773336,FN,,A,,AC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +239,chr22,26811289,FN,,CGTGTGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +240,chr22,26843875,FN,,A,,AGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +241,chr22,26863383,FN,,CTTATT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +242,chr22,26907441,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +243,chr22,26979712,FN,,CCCTTTCTTTCATCCATTCATCTATCCATTATCCATCCACTCTGAAATACTTCATTTCATTTTTAATTCCCCTCCTCCTTCCTTCCTTTATCCCGCCCATCCTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +244,chr22,27019448,FN,,T,,TTTCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +245,chr22,27219480,FN,,TTTTC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +246,chr22,27244232,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +247,chr22,27376627,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +248,chr22,27395452,FN,,A,,AATGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +249,chr22,27426709,FN,,TA,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +250,chr22,27553635,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +251,chr22,27562424,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +252,chr22,27605264,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +253,chr22,27606694,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +254,chr22,27668014,FN,,G,,GTGTGTGTGTGTGTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +255,chr22,27720456,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +256,chr22,27728369,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +257,chr22,27728395,FN,,GAGAGAGAAAGAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +258,chr22,27728518,FN,,GAGAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +259,chr22,27750781,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +260,chr22,27772852,FN,,C,,CCAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +261,chr22,27777533,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +262,chr22,28161723,FN,,GAGGAC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +263,chr22,28201751,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +264,chr22,28716199,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +265,chr22,28734825,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +266,chr22,28766531,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +267,chr22,29502334,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +268,chr22,29757242,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +269,chr22,29777398,FN,,T,,TG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +270,chr22,30041425,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +271,chr22,30061960,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +272,chr22,30189320,FN,,AC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +273,chr22,30385785,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +274,chr22,30439803,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +275,chr22,30601774,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +276,chr22,30623296,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +277,chr22,30623711,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +278,chr22,30632836,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +279,chr22,30650332,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +280,chr22,30653985,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +281,chr22,30701095,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +282,chr22,30715368,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +283,chr22,30763637,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +284,chr22,30767069,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +285,chr22,30767545,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +286,chr22,30775453,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +287,chr22,30779035,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +288,chr22,30784777,FN,,A,,ATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +289,chr22,30985452,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +290,chr22,30991883,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +291,chr22,31003619,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +292,chr22,31006437,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +293,chr22,31008492,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +294,chr22,31008649,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +295,chr22,31018458,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +296,chr22,31026412,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +297,chr22,31043890,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +298,chr22,31108779,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +299,chr22,31162618,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +300,chr22,31162766,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +301,chr22,31174379,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +302,chr22,31184980,FN,,A,,AT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +303,chr22,31237942,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +304,chr22,31276452,FN,,T,,TCGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +305,chr22,31281599,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +306,chr22,31294688,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +307,chr22,31400943,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +308,chr22,31412352,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +309,chr22,31437450,FN,,T,,TCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +310,chr22,31474487,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +311,chr22,31498860,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +312,chr22,31500788,FN,,GTTTTGTTTTTGTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +313,chr22,31573438,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +314,chr22,31575062,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +315,chr22,31593139,FN,,C,,CCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +316,chr22,31624646,FN,,C,,CACAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +317,chr22,31639180,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +318,chr22,31643102,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +319,chr22,31644242,FN,,C,,CTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +320,chr22,31658855,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +321,chr22,31663837,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +322,chr22,31664064,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +323,chr22,31696146,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +324,chr22,31710459,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +325,chr22,31719739,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +326,chr22,31727234,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +327,chr22,31728609,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +328,chr22,31733361,FN,,G,,GTGGTGCCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +329,chr22,31735642,FN,,G,,GAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +330,chr22,31736218,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +331,chr22,31745843,FN,,TAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +332,chr22,31774204,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +333,chr22,31799342,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +334,chr22,31799481,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +335,chr22,31800987,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +336,chr22,31855380,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +337,chr22,31989777,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +338,chr22,32139087,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +339,chr22,32139102,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +340,chr22,32213541,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +341,chr22,32213662,FN,,ATATC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +342,chr22,32214760,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +343,chr22,32257659,FN,,C,,CTTTTTTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +344,chr22,32274041,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +345,chr22,32287460,FN,,T,,TTAAAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +346,chr22,32291177,FN,,T,,TCTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +347,chr22,32291195,FN,,G,,GTTTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +348,chr22,32329661,FN,,GGTGT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +349,chr22,32330315,FN,,GGTGT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +350,chr22,32333858,FN,,CCA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +351,chr22,32334029,FN,,GCACA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +352,chr22,32364836,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +353,chr22,32367648,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +354,chr22,32368193,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +355,chr22,32382109,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +356,chr22,32391395,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +357,chr22,32428250,FN,,CGTGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +358,chr22,32428898,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +359,chr22,32447607,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +360,chr22,32448074,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +361,chr22,32452480,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +362,chr22,32452637,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +363,chr22,32550700,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +364,chr22,32644101,FN,,A,,AAAAAGAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +365,chr22,32645451,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +366,chr22,32709696,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +367,chr22,32710109,FN,,G,,GTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +368,chr22,32710111,FN,,A,,ATG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +369,chr22,32735523,FN,,TTTTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +370,chr22,32742273,FN,,G,,GTAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +371,chr22,32763943,FN,,CCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +372,chr22,32782073,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +373,chr22,32927263,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +374,chr22,32970482,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +375,chr22,33009749,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +376,chr22,33016009,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +377,chr22,33041294,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +378,chr22,33089391,FN,,T,,TTCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +379,chr22,33089971,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +380,chr22,33122359,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +381,chr22,33432562,FN,,ATCAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +382,chr22,33586456,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +383,chr22,33591842,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +384,chr22,33597278,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +385,chr22,33689145,FN,,G,,GTCTCTC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +386,chr22,33843440,FN,,A,,AAAAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +387,chr22,33873000,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +388,chr22,33876861,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +389,chr22,33909522,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +390,chr22,33940785,FN,,GCACA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +391,chr22,34140335,FN,,A,,AG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +392,chr22,34298021,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +393,chr22,34406080,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +394,chr22,34544921,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +395,chr22,34639032,FN,,T,,TC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +396,chr22,34743181,FN,,C,,CGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +397,chr22,34744955,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +398,chr22,34954403,FN,,C,,CTGAGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +399,chr22,35093731,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +400,chr22,35216949,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +401,chr22,35221560,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +402,chr22,35364747,FN,,A,,AAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +403,chr22,35562785,FN,,A,,AAAAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +404,chr22,35584979,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +405,chr22,35694020,FN,,A,,AC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +406,chr22,36026255,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +407,chr22,36081462,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +408,chr22,36088876,FN,,A,,AATTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +409,chr22,36116536,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +410,chr22,36129113,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +411,chr22,36397137,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +412,chr22,36402615,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +413,chr22,36408333,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +414,chr22,36434164,FN,,T,,TTTTCTTTCTTTCTTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +415,chr22,36470781,FN,,T,,TAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +416,chr22,36479334,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +417,chr22,36481640,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +418,chr22,36543644,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +419,chr22,36573328,FN,,A,,AATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +420,chr22,36609411,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +421,chr22,36609657,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +422,chr22,36618910,FN,,A,,ACT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +423,chr22,36618916,FN,,TCAAAAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +424,chr22,36627642,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +425,chr22,36825189,FN,,GTGTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +426,chr22,36880353,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +427,chr22,36958149,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +428,chr22,36981395,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +429,chr22,36993016,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +430,chr22,36993568,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +431,chr22,36996137,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +432,chr22,37038138,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +433,chr22,37100414,FN,,A,,AG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +434,chr22,37220900,FN,,C,,CCCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +435,chr22,37220903,FN,,TTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +436,chr22,37268419,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +437,chr22,37269736,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +438,chr22,37277294,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +439,chr22,37288583,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +440,chr22,37392325,FN,,T,,TC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +441,chr22,37395106,FN,,A,,AAAAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +442,chr22,37513944,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +443,chr22,37586447,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +444,chr22,37591155,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +445,chr22,37703503,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +446,chr22,37786975,FN,,TGG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +447,chr22,37878417,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +448,chr22,37883580,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +449,chr22,37914231,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +450,chr22,37934572,FN,,T,,TG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +451,chr22,38014122,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +452,chr22,38170195,FN,,CAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +453,chr22,38171823,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +454,chr22,38182417,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +455,chr22,38289410,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +456,chr22,38321948,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +457,chr22,38379356,FN,,AAAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +458,chr22,38389467,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +459,chr22,38707000,FN,,CTTTCCTGCCCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +460,chr22,38761767,FN,,CATGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +461,chr22,38761792,FN,,ATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +462,chr22,38761822,FN,,TTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +463,chr22,38761898,FN,,T,,TGTGGGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +464,chr22,38931175,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +465,chr22,39003196,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +466,chr22,39119723,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +467,chr22,39193679,FN,,A,,AAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +468,chr22,39197729,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +469,chr22,39198642,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +470,chr22,39199284,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +471,chr22,39200193,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +472,chr22,39200480,FN,,CTTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +473,chr22,39339463,FN,,C,,CATTTATTT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +474,chr22,39497867,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +475,chr22,39579648,FN,,CT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +476,chr22,39601875,FN,,T,,TTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +477,chr22,39603151,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +478,chr22,39923039,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +479,chr22,39993625,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +480,chr22,40350620,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +481,chr22,40739497,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +482,chr22,40781249,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +483,chr22,40907431,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +484,chr22,41010635,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +485,chr22,41187760,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +486,chr22,41251627,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +487,chr22,41453855,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +488,chr22,41564087,FN,,TAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +489,chr22,41566143,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +490,chr22,41570821,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +491,chr22,41570982,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +492,chr22,41587441,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +493,chr22,41785241,FN,,TTTTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +494,chr22,41840438,FN,,CTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +495,chr22,41871898,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +496,chr22,41872249,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +497,chr22,41957360,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +498,chr22,42047621,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +499,chr22,42057551,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +500,chr22,42235141,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +501,chr22,42266082,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +502,chr22,42449753,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +503,chr22,42458836,FN,,TAAAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +504,chr22,42467202,FN,,C,,CTAATAATAATAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +505,chr22,42471935,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +506,chr22,42472098,FN,,CTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +507,chr22,42474416,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +508,chr22,42475004,FN,,ACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +509,chr22,42475013,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +510,chr22,43022783,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +511,chr22,43044755,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +512,chr22,43072154,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +513,chr22,43088503,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +514,chr22,43091681,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +515,chr22,43099933,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +516,chr22,43100830,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +517,chr22,43102190,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +518,chr22,43108238,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +519,chr22,43146574,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +520,chr22,43205956,FN,,CCA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +521,chr22,43311423,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +522,chr22,43386258,FN,,CTTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +523,chr22,43393501,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +524,chr22,43641616,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +525,chr22,43666954,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +526,chr22,43769856,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +527,chr22,43784670,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +528,chr22,43811363,FN,,G,,GGGGAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +529,chr22,43852348,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +530,chr22,43905226,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +531,chr22,43926706,FN,,CTAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +532,chr22,43927490,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +533,chr22,43929599,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +534,chr22,43950783,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +535,chr22,44005413,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +536,chr22,44114252,FN,,TACTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +537,chr22,44170005,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +538,chr22,44170684,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +539,chr22,44208973,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +540,chr22,44213635,FN,,C,,CCAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +541,chr22,44241831,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +542,chr22,44296239,FN,,AC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +543,chr22,44354780,FN,,TTGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +544,chr22,44539994,FN,,GTGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +545,chr22,44589704,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +546,chr22,44614709,FN,,CAAAAAAAAAAAAG,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +547,chr22,44619587,FN,,AGT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +548,chr22,44619625,FN,,GTGTC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +549,chr22,44619665,FN,,T,,TGTGTGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +550,chr22,44619877,FN,,TGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +551,chr22,44629286,FN,,AGAAG,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +552,chr22,44637166,FN,,AGATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +553,chr22,44719246,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +554,chr22,44722988,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +555,chr22,44777998,FN,,TTTTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +556,chr22,44795040,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +557,chr22,44835231,FN,,CTA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +558,chr22,44858450,FN,,CTCTGTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +559,chr22,44858498,FN,,GCT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +560,chr22,44859082,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +561,chr22,44859350,FN,,CCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +562,chr22,44866575,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +563,chr22,44924079,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +564,chr22,44926026,FN,,C,,CCTGTGGTGGGAAGGCCCACACAGCACGGCCCTGTGGTGGATTCCCAGGGAAGTGGGTT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +565,chr22,45098677,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +566,chr22,45249648,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +567,chr22,45252501,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +568,chr22,45282547,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +569,chr22,45283051,FN,,TGC,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +570,chr22,45299668,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +571,chr22,45447383,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +572,chr22,45479124,FN,,CA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +573,chr22,45479947,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +574,chr22,45486007,FN,,G,,GATAAATAA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +575,chr22,45699467,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +576,chr22,45858444,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +577,chr22,45929801,FN,,C,,CATCTACCCACTCATCT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +578,chr22,45984671,FN,,TTGAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +579,chr22,46033401,FN,,T,,TTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +580,chr22,46144361,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +581,chr22,46146416,FN,,AAAGAGAAGAG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +582,chr22,46146447,FN,,A,,AAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +583,chr22,46253908,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +584,chr22,46254077,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +585,chr22,46268667,FN,,TTTTTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +586,chr22,46314850,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +587,chr22,46402219,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +588,chr22,46611834,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +589,chr22,46643295,FN,,T,,TCATC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +590,chr22,46669577,FN,,CTCTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +591,chr22,46702214,FN,,AAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +592,chr22,46702223,FN,,ATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +593,chr22,46716191,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +594,chr22,46716505,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +595,chr22,46719148,FN,,T,,TTGTGTGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +596,chr22,46719187,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +597,chr22,46719198,FN,,C,,CTTTTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +598,chr22,46734067,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +599,chr22,47115196,FN,,ATTGCCAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +600,chr22,47127229,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +601,chr22,47159330,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +602,chr22,47253024,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +603,chr22,47355400,FN,,G,,GGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +604,chr22,47386804,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +605,chr22,47452123,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +606,chr22,47467579,FN,,G,,GTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +607,chr22,47477242,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +608,chr22,47632299,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +609,chr22,47702390,FN,,CCTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +610,chr22,47865974,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +611,chr22,47867253,FN,,G,,GTATATATATA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +612,chr22,48005994,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +613,chr22,48044337,FN,,TAGAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +614,chr22,48081625,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +615,chr22,48087012,FN,,G,,GAC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +616,chr22,48298725,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +617,chr22,48344566,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +618,chr22,48348844,FN,,A,,ACT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +619,chr22,48348962,FN,,TCA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +620,chr22,48348996,FN,,A,,ACACTCACACTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +621,chr22,48349108,FN,,ACACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +622,chr22,48349130,FN,,C,,CCACA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +623,chr22,48421333,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +624,chr22,48464910,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +625,chr22,48477750,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +626,chr22,48479855,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +627,chr22,48656005,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +628,chr22,48793455,FN,,TTTTTTC,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +629,chr22,48794122,FN,,A,,AGTGTGCGCGT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +630,chr22,48794217,FN,,G,,GCA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +631,chr22,48805390,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +632,chr22,48813481,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +633,chr22,48818008,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +634,chr22,48819664,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +635,chr22,48827223,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +636,chr22,48881873,FN,,ACACACAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +637,chr22,48942476,FN,,G,,GCGCACTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +638,chr22,48948996,FN,,TACTCG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +639,chr22,48956381,FN,,TCATACACACACATCACACA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +640,chr22,48956699,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +641,chr22,48956725,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +642,chr22,48990321,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +643,chr22,48990324,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +644,chr22,48999717,FN,,GTGTGTGTA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +645,chr22,49083037,FN,,TGCAGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +646,chr22,49408253,FN,,G,,GAGAGAGACAC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +647,chr22,49428652,FN,,C,,CTTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +648,chr22,49429866,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +649,chr22,49445465,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +650,chr22,49675377,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +651,chr22,49720929,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +652,chr22,49870943,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +653,chr22,49875418,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +654,chr22,49875944,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +655,chr22,49878301,FN,,C,,CAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +656,chr22,50053221,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +657,chr22,50057153,FN,,G,,GGTCAGGTCTGGGGATGGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +658,chr22,50057320,FN,,TGTCAGGTCTGGGTTGTGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +659,chr22,50090676,FN,,T,,TTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +660,chr22,50235941,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +661,chr22,50385507,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +662,chr22,50449172,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +663,chr22,50461326,FN,,AG,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +664,chr22,50501648,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +665,chr22,50547999,FN,,GCCCCAACCCCAGCCGCATCCCCTGCCCCAGCCCCCACCTCAGCCCCAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +666,chr22,50615576,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +667,chr22,50616529,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +668,chr22,50620504,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +669,chr22,50669906,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +670,chr22,50757796,FN,,ATTAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +671,chr22,50758085,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +672,chr22,50762743,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +673,chr22,50791171,FN,,T,,TCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +0,chr22,10761246,UNK,A,,AAAAAAAC,,-1.00000000,,,,,,,1.00000000,5.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,8.27000000,40.00000000,,0.00000000,AAAAAAC,7.00000000,,ref->het,0.11764706,0.00000000,86.00000000,3.80530973,10.55000000 +1,chr22,10761945,UNK,GC,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.97000000,44.00000000,,1.00000000,C,1.00000000,,ref->het,0.21238938,0.00000000,145.00000000,6.41592920,2.98000000 +2,chr22,10762358,UNK,A,,AAAT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.12000000,33.00000000,,1.00000000,AAT,3.00000000,,ref->het,0.35937500,0.00000000,84.00000000,3.71681416,15.28000000 +3,chr22,10960523,UNK,TAAA,,T,,-1.00000000,,,,,,,3.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,55.00000000,2.43362832,0.45000000,47.00000000,,6.00000000,A,1.00000000,,ref->het,0.13008130,0.00000000,130.00000000,5.75221239,2.02000000 +4,chr22,10966210,UNK,TA,,T,,-1.00000000,,,,,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.46000000,37.00000000,,9.00000000,A,1.00000000,,ref->het,0.07586207,0.00000000,162.00000000,7.16814159,0.22000000 +5,chr22,11220228,UNK,TTTGA,,T,,-1.00000000,,,,,,,1.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,38.00000000,,2.00000000,TTGA,4.00000000,,ref->het,0.15873016,0.00000000,66.00000000,2.92035398,2.08000000 +6,chr22,11313562,UNK,TTCTTTAAGCAG,,T,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.63000000,51.00000000,,1.00000000,TCTTTAAGCAG,11.00000000,,ref->het,0.16216216,0.00000000,115.00000000,5.08849558,0.73000000 +7,chr22,11343824,UNK,TAA,,T,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.60000000,39.00000000,,3.00000000,A,1.00000000,,ref->het,0.12000000,0.00000000,132.00000000,5.84070796,1.68000000 +8,chr22,11346186,UNK,C,,CT,,-1.00000000,,,,,,,8.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,67.00000000,2.96460177,0.12000000,48.00000000,,7.00000000,T,1.00000000,,ref->het,0.14516129,0.00000000,144.00000000,6.37168142,1.68000000 +9,chr22,11355480,UNK,CTT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.98000000,38.00000000,,2.00000000,T,1.00000000,,ref->het,0.07971014,0.00000000,150.00000000,6.63716814,3.30000000 +10,chr22,11549273,UNK,TAA,,T,,-1.00000000,,,,,,,10.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,2.10000000,33.00000000,,12.00000000,A,1.00000000,,ref->het,0.10218978,0.00000000,167.00000000,7.38938053,7.92000000 +11,chr22,11578509,UNK,GC,,G,,-1.00000000,,,,,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,1.24000000,44.00000000,,4.00000000,C,1.00000000,,ref->het,0.11111111,0.00000000,155.00000000,6.85840708,4.82000000 +12,chr22,11591477,UNK,C,,CT,,-1.00000000,,,,,,,11.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,61.00000000,2.69911504,0.31000000,34.00000000,,10.00000000,T,1.00000000,,ref->het,0.11678832,0.00000000,154.00000000,6.81415929,2.21000000 +13,chr22,11595551,UNK,TA,,T,,-1.00000000,,,,,,,6.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,64.00000000,2.83185841,3.62000000,48.00000000,,7.00000000,A,1.00000000,,ref->het,0.10294118,0.00000000,152.00000000,6.72566372,5.60000000 +14,chr22,11597093,UNK,G,,GT,,-1.00000000,,,,,,,13.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.63000000,45.00000000,,12.00000000,T,1.00000000,,ref->het,0.21212121,0.00000000,113.00000000,5.00000000,6.53000000 +15,chr22,11598363,UNK,CTCCG,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.26000000,42.00000000,,1.00000000,TCCG,4.00000000,,ref->het,0.14035088,0.00000000,127.00000000,5.61946903,5.21000000 +16,chr22,11613917,UNK,CTTTCTTCTTTCTTTCT,,C,,-1.00000000,,,,,,,0.00000000,7.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.39000000,42.00000000,,1.00000000,TTTCTTCTTTCTTTCT,16.00000000,,ref->het,0.11278195,0.00000000,150.00000000,6.63716814,4.12000000 +17,chr22,11946548,UNK,A,,AC,,-1.00000000,,,,,,,2.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.79000000,30.00000000,,1.00000000,C,1.00000000,,ref->het,0.11428571,0.00000000,39.00000000,1.72566372,2.95000000 +18,chr22,11954058,UNK,GTT,,G,,-1.00000000,,,,,,,1.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.00000000,32.00000000,,3.00000000,T,1.00000000,,ref->het,0.17500000,0.00000000,45.00000000,1.99115044,2.23000000 +19,chr22,12037767,UNK,CT,,C,,-1.00000000,,,,,,,6.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.30000000,35.00000000,,7.00000000,T,1.00000000,,ref->het,0.04494382,0.00000000,99.00000000,4.38053097,0.66000000 +20,chr22,12201372,UNK,T,,TG,,-1.00000000,,,,,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,34.00000000,,6.00000000,G,1.00000000,,ref->het,0.06741573,0.00000000,96.00000000,4.24778761,0.49000000 +21,chr22,12205798,UNK,T,,TC,,-1.00000000,,,,,,,3.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,0.35000000,48.00000000,,2.00000000,C,1.00000000,,ref->het,0.05970149,0.00000000,162.00000000,7.16814159,1.27000000 +22,chr22,12299238,UNK,TAAA,,T,,-1.00000000,,,,,,,4.00000000,11.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.14000000,33.00000000,,7.00000000,A,1.00000000,,ref->het,0.15151515,0.00000000,71.00000000,3.14159292,0.72000000 +23,chr22,12354919,UNK,C,,CA,,-1.00000000,,,,,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.26000000,37.00000000,,5.00000000,A,1.00000000,,ref->het,0.04901961,0.00000000,115.00000000,5.08849558,0.48000000 +24,chr22,15599182,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.37000000,44.00000000,,0.00000000,G,1.00000000,,ref->het,0.16176471,0.00000000,72.00000000,3.18584071,6.66000000 +25,chr22,15646529,UNK,GA,,G,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.01000000,37.00000000,,4.00000000,A,1.00000000,,ref->het,0.09900990,0.00000000,111.00000000,4.91150442,1.42000000 +26,chr22,15669811,UNK,G,,GA,,-1.00000000,,,,,,,8.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,30.00000000,,7.00000000,A,1.00000000,,ref->het,0.08108108,0.00000000,86.00000000,3.80530973,0.26000000 +27,chr22,15703813,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,37.00000000,,3.00000000,T,1.00000000,,ref->het,0.12280702,0.00000000,58.00000000,2.56637168,0.32000000 +28,chr22,15711039,UNK,G,,GTC,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,0.52000000,51.00000000,,1.00000000,TC,2.00000000,,ref->het,0.16666667,0.00000000,115.00000000,5.08849558,1.25000000 +29,chr22,15745862,UNK,T,,TC,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.14000000,36.00000000,,1.00000000,C,1.00000000,,ref->het,0.06578947,0.00000000,65.00000000,2.87610619,6.37000000 +30,chr22,15747404,UNK,T,,TG,,-1.00000000,,,,,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.85000000,36.00000000,,5.00000000,G,1.00000000,,ref->het,0.07042254,0.00000000,77.00000000,3.40707965,0.00000000 +31,chr22,15764513,UNK,T,,TC,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.20000000,46.00000000,,3.00000000,C,1.00000000,,ref->het,0.04575163,0.00000000,166.00000000,7.34513274,1.06000000 +32,chr22,15791929,UNK,CATCTT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.21000000,35.00000000,,1.00000000,ATCTT,5.00000000,,ref->het,0.03030303,0.00000000,137.00000000,6.06194690,0.02000000 +33,chr22,15829424,UNK,TG,,T,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.31000000,35.00000000,,3.00000000,G,1.00000000,,ref->het,0.05042017,0.00000000,129.00000000,5.70796460,0.91000000 +34,chr22,15878059,UNK,T,,TA,,-1.00000000,,,,,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.39000000,36.00000000,,7.00000000,A,1.00000000,,ref->het,0.05376344,0.00000000,99.00000000,4.38053097,0.40000000 +35,chr22,15879940,UNK,C,,CAGAAA,,-1.00000000,,,,,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,46.00000000,,1.00000000,AGAAA,5.00000000,,ref->het,0.18181818,0.00000000,75.00000000,3.31858407,2.14000000 +36,chr22,16128570,UNK,A,,ATTTT,,-1.00000000,,,,,,,16.00000000,13.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,35.00000000,,12.00000000,T,1.00000000,,ref->het,0.33333333,0.00000000,46.00000000,2.03539823,1.64000000 +37,chr22,16138214,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,24.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,5.25000000,43.00000000,,0.00000000,C,1.00000000,,ref->het,0.18750000,0.00000000,60.00000000,2.65486726,9.20000000 +38,chr22,16140949,UNK,T,,TGG,,-1.00000000,,,,,,,5.00000000,8.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.18000000,52.00000000,,3.00000000,G,1.00000000,,ref->het,0.21153846,0.00000000,69.00000000,3.05309735,12.22000000 +39,chr22,16145719,UNK,CAA,,C,,-1.00000000,,,,,,,17.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.93000000,37.00000000,,19.00000000,A,1.00000000,,ref->het,0.30952381,0.00000000,60.00000000,2.65486726,10.29000000 +40,chr22,16157865,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.48000000,51.00000000,,3.00000000,T,1.00000000,,ref->het,0.42857143,0.00000000,61.00000000,2.69911504,2.87000000 +41,chr22,16234075,UNK,GCTCTGGAATCCTTTGTTATGGACAAGCCTTCACAAGCTCATAGCAGTT,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,48.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.18000000,65.00000000,,1.00000000,CTCTGGAATCCTTTGTTATGGACAAGCCTTCACAAGCTCATAGCAGTT,48.00000000,,ref->het,0.30000000,0.00000000,58.00000000,2.56637168,3.11000000 +42,chr22,16256159,UNK,C,,CT,,-1.00000000,,,,,,,6.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.01000000,33.00000000,,5.00000000,T,1.00000000,,ref->het,0.08510638,0.00000000,49.00000000,2.16814159,0.00000000 +43,chr22,16257585,UNK,T,,TA,,-1.00000000,,,,,,,1.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,45.00000000,,0.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,36.00000000,1.59292035,0.00000000 +44,chr22,16261495,UNK,GATTCCATTTGATTCCATTCA,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.90000000,45.00000000,,1.00000000,ATTCCATTTGATTCCATTCA,20.00000000,,ref->het,0.27397260,0.00000000,69.00000000,3.05309735,6.13000000 +45,chr22,16349867,UNK,AGAATGGAATG,,A,,-1.00000000,,,,,,,3.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.65000000,33.00000000,,5.00000000,GAATG,5.00000000,,ref->het,0.31818182,0.00000000,23.00000000,1.01769912,2.61000000 +46,chr22,16392989,UNK,A,,AT,,-1.00000000,,,,,,,18.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.81000000,40.00000000,,17.00000000,T,1.00000000,,ref->het,0.37209302,0.00000000,64.00000000,2.83185841,3.10000000 +47,chr22,16394812,UNK,G,,GA,,-1.00000000,,,,,,,16.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.83000000,42.00000000,,15.00000000,A,1.00000000,,ref->het,0.46296296,0.00000000,72.00000000,3.18584071,6.57000000 +48,chr22,16583763,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.60000000,36.00000000,,0.00000000,G,1.00000000,,ref->het,0.24390244,0.00000000,55.00000000,2.43362832,8.79000000 +49,chr22,16806260,UNK,C,,CAAAAAAAA,,-1.00000000,,,,,,,19.00000000,17.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.51000000,51.00000000,,11.00000000,A,1.00000000,,ref->het,0.46808511,0.00000000,59.00000000,2.61061947,2.84000000 +50,chr22,16897512,UNK,CATAT,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.08000000,48.00000000,,2.00000000,AT,2.00000000,,ref->het,0.43333333,0.00000000,64.00000000,2.83185841,0.45000000 +51,chr22,16935554,UNK,A,,ATG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.83000000,42.00000000,,0.00000000,TG,2.00000000,,ref->het,0.15942029,0.00000000,72.00000000,3.18584071,7.62000000 +52,chr22,16959230,UNK,AAAAAAAAAT,,A,,-1.00000000,,,,,,,0.00000000,28.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.61000000,50.00000000,,1.00000000,AAAAAAAAT,9.00000000,,ref->het,0.44000000,0.00000000,66.00000000,2.92035398,12.02000000 +53,chr22,17219657,UNK,TG,,T,,-1.00000000,,,,,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.05000000,41.00000000,,4.00000000,G,1.00000000,,ref->het,0.20512821,0.00000000,75.00000000,3.31858407,15.82000000 +54,chr22,17248069,UNK,CGGATTCCAGGCTTCCTTGTGATTGGATAGCTCACTCTGT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.17000000,40.00000000,,1.00000000,GGATTCCAGGCTTCCTTGTGATTGGATAGCTCACTCTGT,39.00000000,,ref->het,0.14117647,0.00000000,81.00000000,3.58407080,1.22000000 +55,chr22,17250522,UNK,G,,GATAAAATAAAATAAAAT,,-1.00000000,,,,,,,3.00000000,5.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.70000000,54.00000000,,2.00000000,ATAAAATAAAATAAAAT,17.00000000,,ref->het,0.27692308,0.00000000,96.00000000,4.24778761,8.69000000 +56,chr22,17324725,UNK,T,,TTTTC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.20000000,57.00000000,,0.00000000,TTTC,4.00000000,,ref->het,0.26027397,0.00000000,81.00000000,3.58407080,5.15000000 +57,chr22,17401828,UNK,A,,AC,,-1.00000000,,,,,,,10.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.79000000,31.00000000,,9.00000000,C,1.00000000,,ref->het,0.38235294,0.00000000,70.00000000,3.09734513,11.83000000 +58,chr22,17435684,UNK,TA,,T,,-1.00000000,,,,,,,25.00000000,27.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.63000000,30.00000000,,26.00000000,A,1.00000000,,ref->het,0.23913043,0.00000000,82.00000000,3.62831858,12.58000000 +59,chr22,17519288,UNK,TTG,,T,,-1.00000000,,,,,,,1.00000000,18.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.54000000,44.00000000,,2.00000000,TG,2.00000000,,ref->het,0.17948718,0.00000000,90.00000000,3.98230088,9.84000000 +60,chr22,17646716,UNK,C,,CTTT,,-1.00000000,,,,,,,24.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.98000000,37.00000000,,21.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,12.09000000 +61,chr22,17659783,UNK,ACAG,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,40.00000000,,1.00000000,CAG,3.00000000,,ref->het,0.39344262,0.00000000,64.00000000,2.83185841,0.83000000 +62,chr22,17670373,UNK,C,,CT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.25000000,35.00000000,,18.00000000,T,1.00000000,,ref->het,0.25531915,0.00000000,73.00000000,3.23008850,8.79000000 +63,chr22,17759241,UNK,C,,CAAAACAAAAAAAA,,-1.00000000,,,,,,,2.00000000,17.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.48000000,50.00000000,,1.00000000,AAAACAAAAAAAA,13.00000000,,ref->het,0.46296296,0.00000000,78.00000000,3.45132743,9.50000000 +64,chr22,17866608,UNK,C,,CAGAATAGAATAGAATAGAAT,,-1.00000000,,,,,,,4.00000000,3.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.61000000,41.00000000,,0.00000000,AGAAT,5.00000000,,ref->het,0.13888889,0.00000000,83.00000000,3.67256637,1.80000000 +65,chr22,17875682,UNK,T,,TAAA,,-1.00000000,,,,,,,24.00000000,21.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.83000000,34.00000000,,21.00000000,A,1.00000000,,ref->het,0.19642857,0.00000000,88.00000000,3.89380531,9.68000000 +66,chr22,18854959,UNK,TG,,T,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.19000000,30.00000000,,4.00000000,G,1.00000000,,ref->het,0.10000000,0.00000000,36.00000000,1.59292035,2.79000000 +67,chr22,18871896,UNK,TACA,,T,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,0.35000000,32.00000000,,1.00000000,ACA,3.00000000,,ref->het,0.21212121,0.00000000,39.00000000,1.72566372,0.00000000 +68,chr22,19020837,UNK,TTTTTTTTTTTTTGAGAAAGC,,T,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,4.99000000,44.00000000,,1.00000000,TTTTTTTTTTTTGAGAAAGC,20.00000000,,ref->het,0.35000000,0.00000000,77.00000000,3.40707965,10.22000000 +69,chr22,19022348,UNK,TC,,T,,-1.00000000,,,,,,,0.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.88000000,30.00000000,,1.00000000,C,1.00000000,,ref->het,0.35714286,0.00000000,51.00000000,2.25663717,10.75000000 +70,chr22,19062779,UNK,A,,ACT,,-1.00000000,,,,,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,46.00000000,,14.00000000,CT,2.00000000,,ref->het,0.23913043,0.00000000,76.00000000,3.36283186,9.53000000 +71,chr22,19082054,UNK,GGTT,,G,,-1.00000000,,,,,,,0.00000000,21.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.96000000,69.00000000,,1.00000000,GTT,3.00000000,,ref->het,0.34848485,0.00000000,77.00000000,3.40707965,5.14000000 +72,chr22,19083672,UNK,TCCCCTCTCCCTCTCCCTCTCC,,T,,-1.00000000,,,,,,,0.00000000,11.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,6.62000000,45.00000000,,1.00000000,CCCCTCTCCCTCTCCCTCTCC,21.00000000,,ref->het,0.22727273,0.00000000,73.00000000,3.23008850,15.64000000 +73,chr22,19104383,UNK,AGG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.63000000,77.00000000,,2.00000000,G,1.00000000,,ref->het,0.44047619,0.00000000,91.00000000,4.02654867,16.52000000 +74,chr22,19114151,UNK,G,,GA,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,3.90000000,61.00000000,,0.00000000,A,1.00000000,,ref->het,0.19101124,0.00000000,109.00000000,4.82300885,11.27000000 +75,chr22,19123906,UNK,AAAAAAAAGG,,A,,-1.00000000,,,,,,,0.00000000,20.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,8.44000000,42.00000000,,1.00000000,AAAAAAAGG,9.00000000,,ref->het,0.17307692,0.00000000,68.00000000,3.00884956,15.83000000 +76,chr22,19161093,UNK,C,,CATAT,,-1.00000000,,,,,,,5.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.28000000,41.00000000,,3.00000000,AT,2.00000000,,ref->het,0.29687500,0.00000000,79.00000000,3.49557522,5.71000000 +77,chr22,20074499,UNK,C,,CA,,-1.00000000,,,,,,,20.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.85000000,35.00000000,,19.00000000,A,1.00000000,,ref->het,0.26829268,0.00000000,62.00000000,2.74336283,14.99000000 +78,chr22,20201396,UNK,CCCTTCCTTCCTT,,C,,-1.00000000,,,,,,,7.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.40000000,37.00000000,,10.00000000,CCTT,4.00000000,,ref->het,0.15094340,0.00000000,79.00000000,3.49557522,8.11000000 +79,chr22,20293497,UNK,TA,,T,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.96000000,31.00000000,,21.00000000,A,1.00000000,,ref->het,0.20338983,0.00000000,87.00000000,3.84955752,9.87000000 +80,chr22,20337802,UNK,T,,TTA,,-1.00000000,,,,,,,6.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.00000000,31.00000000,,5.00000000,TA,2.00000000,,ref->het,0.14516129,0.00000000,62.00000000,2.74336283,1.96000000 +81,chr22,20916635,UNK,A,,AAAAGAAAGAAAGAAAG,,-1.00000000,,,,,,,16.00000000,10.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.20000000,34.00000000,,12.00000000,AAAG,4.00000000,,ref->het,0.15517241,0.00000000,72.00000000,3.18584071,4.39000000 +82,chr22,21077617,UNK,ATC,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.13000000,35.00000000,,1.00000000,TC,2.00000000,,ref->het,0.18867925,0.00000000,73.00000000,3.23008850,14.84000000 +83,chr22,21081189,UNK,T,,TACACACACACACACACACAC,,-1.00000000,,,,,,,28.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.87000000,54.00000000,,18.00000000,AC,2.00000000,,ref->het,0.31372549,0.00000000,77.00000000,3.40707965,3.69000000 +84,chr22,21085828,UNK,C,,CGCCTGTAATCCCAACATATATATGTATATATTGTTGTGGCTCAT,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,44.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,57.00000000,,0.00000000,GCCTGTAATCCCAACATATATATGTATATATTGTTGTGGCTCAT,44.00000000,,ref->het,0.38983051,0.00000000,82.00000000,3.62831858,1.12000000 +85,chr22,21328187,UNK,TAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,12.00000000,0.53097345,0.00000000,30.00000000,,1.00000000,AC,2.00000000,,ref->het,0.23076923,0.00000000,40.00000000,1.76991150,1.44000000 +86,chr22,21983400,UNK,A,,AT,,-1.00000000,,,,,,,2.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.33000000,41.00000000,,1.00000000,T,1.00000000,,ref->het,0.13846154,0.00000000,80.00000000,3.53982301,12.23000000 +87,chr22,22075639,UNK,AT,,A,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.00000000,52.00000000,,2.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,74.00000000,3.27433628,0.26000000 +88,chr22,22140929,UNK,T,,TAGTTAATTTTA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,38.00000000,,1.00000000,AGTTAATTTTA,11.00000000,,ref->het,0.07792208,0.00000000,84.00000000,3.71681416,0.90000000 +89,chr22,22142743,UNK,TA,,T,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.06000000,38.00000000,,2.00000000,A,1.00000000,,ref->het,0.10465116,0.00000000,91.00000000,4.02654867,1.29000000 +90,chr22,22154964,UNK,A,,AG,,-1.00000000,,,,,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.52000000,37.00000000,,2.00000000,G,1.00000000,,ref->het,0.09677419,0.00000000,67.00000000,2.96460177,0.42000000 +91,chr22,22157601,UNK,CA,,C,,-1.00000000,,,,,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,32.00000000,,2.00000000,A,1.00000000,,ref->het,0.12698413,0.00000000,71.00000000,3.14159292,0.40000000 +92,chr22,22166737,UNK,TCAA,,T,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.50000000,59.00000000,,2.00000000,CAA,3.00000000,,ref->het,0.31746032,0.00000000,68.00000000,3.00884956,2.20000000 +93,chr22,22365262,UNK,G,,GAAGAAAGAAAGA,,-1.00000000,,,,,,,17.00000000,5.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.03225806,0.00000000,30.00000000,1.32743363,3.05000000,39.00000000,,14.00000000,AAGA,4.00000000,,ref->het,0.36538462,0.00000000,57.00000000,2.52212389,8.33000000 +94,chr22,22513483,UNK,TC,,T,,-1.00000000,,,,,,,5.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.98000000,35.00000000,,6.00000000,C,1.00000000,,ref->het,0.07936508,0.00000000,69.00000000,3.05309735,1.87000000 +95,chr22,22554099,UNK,CA,,C,,-1.00000000,,,,,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.00000000,38.00000000,,6.00000000,A,1.00000000,,ref->het,0.07843137,0.00000000,54.00000000,2.38938053,1.00000000 +96,chr22,22557242,UNK,C,,CA,,-1.00000000,,,,,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.54000000,42.00000000,,1.00000000,A,1.00000000,,ref->het,0.18032787,0.00000000,66.00000000,2.92035398,1.44000000 +97,chr22,22563343,UNK,T,,TA,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.28000000,38.00000000,,1.00000000,A,1.00000000,,ref->het,0.06250000,0.00000000,71.00000000,3.14159292,1.20000000 +98,chr22,22567243,UNK,A,,AGGGG,,-1.00000000,,,,,,,7.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,0.07000000,42.00000000,,3.00000000,G,1.00000000,,ref->het,0.09589041,0.00000000,80.00000000,3.53982301,1.68000000 +99,chr22,22584887,UNK,CTTTTCCTTTCCTT,,C,,-1.00000000,,,,,,,1.00000000,8.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.32000000,31.00000000,,2.00000000,TTTTCCTTTCCTT,13.00000000,,ref->het,0.10769231,0.00000000,66.00000000,2.92035398,1.84000000 +100,chr22,22587548,UNK,TAA,,T,,-1.00000000,,,,,,,10.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.62000000,50.00000000,,12.00000000,A,1.00000000,,ref->het,0.36000000,0.00000000,81.00000000,3.58407080,4.55000000 +101,chr22,22596503,UNK,CA,,C,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.77000000,37.00000000,,21.00000000,A,1.00000000,,ref->het,0.28205128,0.00000000,68.00000000,3.00884956,10.63000000 +102,chr22,22597272,UNK,A,,AT,,-1.00000000,,,,,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.54000000,49.00000000,,11.00000000,T,1.00000000,,ref->het,0.36206897,0.00000000,79.00000000,3.49557522,3.24000000 +103,chr22,22605551,UNK,GAAAAAAGATTAGCTGCAAA,,G,,-1.00000000,,,,,,,1.00000000,10.00000000,2.00000000,19.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.03000000,55.00000000,,2.00000000,AAAAAAGATTAGCTGCAAA,19.00000000,,ref->het,0.32307692,0.00000000,82.00000000,3.62831858,1.13000000 +104,chr22,22606866,UNK,C,,CTTT,,-1.00000000,,,,,,,25.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.28000000,30.00000000,,22.00000000,T,1.00000000,,ref->het,0.19444444,0.00000000,69.00000000,3.05309735,9.89000000 +105,chr22,22607988,UNK,AT,,A,,-1.00000000,,,,,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.50000000,34.00000000,,12.00000000,T,1.00000000,,ref->het,0.34782609,0.00000000,78.00000000,3.45132743,1.08000000 +106,chr22,22625266,UNK,A,,ATT,,-1.00000000,,,,,,,10.00000000,8.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.48000000,60.00000000,,8.00000000,T,1.00000000,,ref->het,0.39062500,0.00000000,69.00000000,3.05309735,2.84000000 +107,chr22,22627125,UNK,CAAA,,C,,-1.00000000,,,,,,,16.00000000,19.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.91000000,46.00000000,,19.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,64.00000000,2.83185841,7.52000000 +108,chr22,22628371,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.01000000,38.00000000,,0.00000000,G,1.00000000,,ref->het,0.28260870,0.00000000,52.00000000,2.30088496,2.10000000 +109,chr22,22649667,UNK,GT,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,45.00000000,,1.00000000,T,1.00000000,,ref->het,0.31250000,0.00000000,37.00000000,1.63716814,0.34000000 +110,chr22,22654512,UNK,C,,CT,,-1.00000000,,,,,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.75000000,36.00000000,,15.00000000,T,1.00000000,,ref->het,0.36000000,0.00000000,68.00000000,3.00884956,7.54000000 +111,chr22,22799534,UNK,G,,GC,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.59000000,35.00000000,,1.00000000,C,1.00000000,,ref->het,0.18181818,0.00000000,35.00000000,1.54867257,0.49000000 +112,chr22,22827769,UNK,TA,,T,,-1.00000000,,,,,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.03000000,30.00000000,,4.00000000,A,1.00000000,,ref->het,0.10000000,0.00000000,45.00000000,1.99115044,2.61000000 +113,chr22,23307858,UNK,AGG,,A,,-1.00000000,,,,,,,4.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,36.00000000,,6.00000000,G,1.00000000,,ref->het,0.16363636,0.00000000,59.00000000,2.61061947,0.87000000 +114,chr22,23316087,UNK,T,,TTTC,,-1.00000000,,,,,,,2.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.64000000,45.00000000,,1.00000000,TTC,3.00000000,,ref->het,0.15662651,0.00000000,84.00000000,3.71681416,0.79000000 +115,chr22,23331669,UNK,A,,ATT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.46000000,43.00000000,,0.00000000,T,1.00000000,,ref->het,0.18918919,0.00000000,41.00000000,1.81415929,0.45000000 +116,chr22,23339841,UNK,C,,CAT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,1.85000000,100.00000000,,0.00000000,AT,2.00000000,,ref->het,0.41176471,0.00000000,70.00000000,3.09734513,1.83000000 +117,chr22,23341772,UNK,CTTTTTTT,,C,,-1.00000000,,,,,,,15.00000000,23.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.12000000,47.00000000,,22.00000000,T,1.00000000,,ref->het,0.39655172,0.00000000,83.00000000,3.67256637,12.00000000 +118,chr22,23509286,UNK,A,,AAAAAAT,,-1.00000000,,,,,,,1.00000000,15.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.29000000,30.00000000,,0.00000000,AAAAAT,6.00000000,,ref->het,0.18421053,0.00000000,52.00000000,2.30088496,10.91000000 +119,chr22,23600612,UNK,T,,TC,,-1.00000000,,,,,,,5.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.96000000,37.00000000,,4.00000000,C,1.00000000,,ref->het,0.07352941,0.00000000,73.00000000,3.23008850,11.29000000 +120,chr22,23683618,UNK,AC,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.02000000,44.00000000,,1.00000000,C,1.00000000,,ref->het,0.28125000,0.00000000,69.00000000,3.05309735,0.95000000 +121,chr22,23890836,UNK,G,,GAC,,-1.00000000,,,,,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.80000000,46.00000000,,11.00000000,AC,2.00000000,,ref->het,0.19444444,0.00000000,96.00000000,4.24778761,2.85000000 +122,chr22,24090517,UNK,AT,,A,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,5.63000000,32.00000000,,21.00000000,T,1.00000000,,ref->het,0.15000000,0.00000000,90.00000000,3.98230088,10.79000000 +123,chr22,24757615,UNK,T,,TACACACAC,,-1.00000000,,,,,,,15.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.78000000,36.00000000,,11.00000000,AC,2.00000000,,ref->het,0.15789474,0.00000000,78.00000000,3.45132743,4.83000000 +124,chr22,24814269,UNK,AAAAAC,,A,,-1.00000000,,,,,,,4.00000000,11.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.28000000,51.00000000,,5.00000000,AAAAC,5.00000000,,ref->het,0.23376623,0.00000000,92.00000000,4.07079646,2.34000000 +125,chr22,24822088,UNK,C,,CTT,,-1.00000000,,,,,,,22.00000000,21.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.70000000,33.00000000,,20.00000000,T,1.00000000,,ref->het,0.61538462,0.00000000,87.00000000,3.84955752,13.60000000 +126,chr22,24858654,UNK,A,,AAAAAAAG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,5.20000000,34.00000000,,0.00000000,AAAAAAG,7.00000000,,ref->het,0.13725490,0.00000000,64.00000000,2.83185841,8.32000000 +127,chr22,24929895,UNK,CA,,C,,-1.00000000,,,,,,,18.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.82000000,36.00000000,,19.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,62.00000000,2.74336283,14.91000000 +128,chr22,24930393,UNK,C,,CAAAA,,-1.00000000,,,,,,,23.00000000,21.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.53000000,39.00000000,,19.00000000,A,1.00000000,,ref->het,0.24561404,0.00000000,79.00000000,3.49557522,10.31000000 +129,chr22,24940712,UNK,C,,CCTTCTTT,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.16000000,38.00000000,,0.00000000,CTTCTTT,7.00000000,,ref->het,0.20454545,0.00000000,56.00000000,2.47787611,10.38000000 +130,chr22,24947323,UNK,TTTTTGTA,,T,,-1.00000000,,,,,,,0.00000000,24.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.56000000,35.00000000,,1.00000000,TTTTGTA,7.00000000,,ref->het,0.16666667,0.00000000,66.00000000,2.92035398,7.49000000 +131,chr22,24973394,UNK,T,,TTG,,-1.00000000,,,,,,,1.00000000,27.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,4.98000000,35.00000000,,0.00000000,TG,2.00000000,,ref->het,0.43750000,0.00000000,76.00000000,3.36283186,16.74000000 +132,chr22,25001249,UNK,GTGTA,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.22000000,51.00000000,,1.00000000,TGTA,4.00000000,,ref->het,0.28378378,0.00000000,74.00000000,3.27433628,0.83000000 +133,chr22,25004117,UNK,AT,,A,,-1.00000000,,,,,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.18000000,34.00000000,,16.00000000,T,1.00000000,,ref->het,0.21153846,0.00000000,67.00000000,2.96460177,1.40000000 +134,chr22,25303831,UNK,G,,GTTTT,,-1.00000000,,,,,,,15.00000000,12.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.68000000,65.00000000,,11.00000000,T,1.00000000,,ref->het,0.42372881,0.00000000,71.00000000,3.14159292,3.33000000 +135,chr22,25322739,UNK,C,,CA,,-1.00000000,,,,,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.13000000,40.00000000,,13.00000000,A,1.00000000,,ref->het,0.26229508,0.00000000,77.00000000,3.40707965,7.40000000 +136,chr22,25338661,UNK,A,,AT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.19000000,50.00000000,,18.00000000,T,1.00000000,,ref->het,0.41071429,0.00000000,84.00000000,3.71681416,11.79000000 +137,chr22,25371750,UNK,G,,GT,,-1.00000000,,,,,,,24.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,5.22000000,32.00000000,,23.00000000,T,1.00000000,,ref->het,0.26666667,0.00000000,84.00000000,3.71681416,9.58000000 +138,chr22,25377057,UNK,GT,,G,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.31000000,30.00000000,,22.00000000,T,1.00000000,,ref->het,0.35294118,0.00000000,81.00000000,3.58407080,5.87000000 +139,chr22,25404898,UNK,C,,CCAAGTCCCAACTTGGTGCCCGGCCCGGGCCA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,31.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.26000000,40.00000000,,1.00000000,CAAGTCCCAACTTGGTGCCCGGCCCGGGCCA,31.00000000,,ref->het,0.17391304,0.00000000,65.00000000,2.87610619,3.46000000 +140,chr22,25423436,UNK,CTT,,C,,-1.00000000,,,,,,,18.00000000,24.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,6.45000000,30.00000000,,20.00000000,T,1.00000000,,ref->het,0.24000000,0.00000000,86.00000000,3.80530973,11.32000000 +141,chr22,25438890,UNK,C,,CAAAAA,,-1.00000000,,,,,,,21.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.64000000,37.00000000,,16.00000000,A,1.00000000,,ref->het,0.25581395,0.00000000,63.00000000,2.78761062,9.76000000 +142,chr22,25505375,UNK,A,,ATT,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.29000000,32.00000000,,18.00000000,T,1.00000000,,ref->het,0.22448980,0.00000000,79.00000000,3.49557522,4.88000000 +143,chr22,25531148,UNK,T,,TATTATTTATTTATTTA,,-1.00000000,,,,,,,1.00000000,11.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.06000000,54.00000000,,0.00000000,ATTATTTATTTATTTA,16.00000000,,ref->het,0.25316456,0.00000000,85.00000000,3.76106195,1.24000000 +144,chr22,25605962,UNK,CT,,C,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,31.00000000,,4.00000000,T,1.00000000,,ref->het,0.09210526,0.00000000,84.00000000,3.71681416,0.37000000 +145,chr22,25860302,UNK,AT,,A,,-1.00000000,,,,,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.01000000,54.00000000,,8.00000000,T,1.00000000,,ref->het,0.24675325,0.00000000,83.00000000,3.67256637,1.98000000 +146,chr22,26155968,UNK,AG,,A,,-1.00000000,,,,,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,3.89000000,37.00000000,,10.00000000,G,1.00000000,,ref->het,0.40625000,0.00000000,52.00000000,2.30088496,9.49000000 +147,chr22,26438550,UNK,TACAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.75000000,40.00000000,,2.00000000,AC,2.00000000,,ref->het,0.22448980,0.00000000,59.00000000,2.61061947,2.61000000 +148,chr22,26577649,UNK,ATT,,A,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,6.09000000,33.00000000,,23.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,63.00000000,2.78761062,9.86000000 +149,chr22,26644073,UNK,C,,CTTT,,-1.00000000,,,,,,,3.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,6.54000000,36.00000000,,0.00000000,T,1.00000000,,ref->het,0.09090909,0.00000000,67.00000000,2.96460177,13.59000000 +150,chr22,26673646,UNK,CTTTGAACTTGGCTAACACAGG,,C,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,41.00000000,,2.00000000,TTTGAACTTGGCTAACACAGG,21.00000000,,ref->het,0.18867925,0.00000000,59.00000000,2.61061947,1.15000000 +151,chr22,26691817,UNK,T,,TTTC,,-1.00000000,,,,,,,1.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.73000000,43.00000000,,0.00000000,TTC,3.00000000,,ref->het,0.19230769,0.00000000,70.00000000,3.09734513,10.37000000 +152,chr22,26852250,UNK,TCTCTCC,,T,,-1.00000000,,,,,,,0.00000000,7.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,5.31000000,49.00000000,,1.00000000,CTCTCC,6.00000000,,ref->het,0.27027027,0.00000000,86.00000000,3.80530973,9.88000000 +153,chr22,26860430,UNK,C,,CTCTGTAAAATGGACCAATCAGCAG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.74000000,41.00000000,,0.00000000,TCTGTAAAATGGACCAATCAGCAG,24.00000000,,ref->het,0.20547945,0.00000000,88.00000000,3.89380531,1.90000000 +154,chr22,26998124,UNK,CAAACAAACAAACAAACAAACAAACT,,C,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,42.00000000,,1.00000000,AAACAAACAAACAAACAAACAAACT,25.00000000,,ref->het,0.18181818,0.00000000,49.00000000,2.16814159,1.83000000 +155,chr22,27273910,UNK,T,,TC,,-1.00000000,,,,,,,7.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.96000000,32.00000000,,6.00000000,C,1.00000000,,ref->het,0.18421053,0.00000000,60.00000000,2.65486726,13.36000000 +156,chr22,27332561,UNK,A,,AAC,,-1.00000000,,,,,,,1.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.86000000,33.00000000,,0.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,87.00000000,3.84955752,8.95000000 +157,chr22,27343659,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.46000000,56.00000000,,0.00000000,C,1.00000000,,ref->het,0.21348315,0.00000000,98.00000000,4.33628319,4.44000000 +158,chr22,27371867,UNK,T,,TGTGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.16000000,49.00000000,,0.00000000,GTGA,4.00000000,,ref->het,0.27777778,0.00000000,80.00000000,3.53982301,5.06000000 +159,chr22,27558090,UNK,T,,TTGTGTGTG,,-1.00000000,,,,,,,20.00000000,5.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.12000000,41.00000000,,16.00000000,TG,2.00000000,,ref->het,0.40425532,0.00000000,66.00000000,2.92035398,7.22000000 +160,chr22,27565483,UNK,A,,AATGGATGGATGGATGGATGG,,-1.00000000,,,,,,,10.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.64000000,39.00000000,,5.00000000,ATGG,4.00000000,,ref->het,0.30232558,0.00000000,77.00000000,3.40707965,14.85000000 +161,chr22,27568308,UNK,A,,AGAAGGAAGGAAGGAAG,,-1.00000000,,,,,,,15.00000000,3.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.71000000,50.00000000,,11.00000000,GAAG,4.00000000,,ref->het,0.31111111,0.00000000,68.00000000,3.00884956,2.85000000 +162,chr22,27573667,UNK,C,,CGGG,,-1.00000000,,,,,,,3.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.66000000,46.00000000,,0.00000000,G,1.00000000,,ref->het,0.19354839,0.00000000,74.00000000,3.27433628,5.44000000 +163,chr22,27721210,UNK,AC,,A,,-1.00000000,,,,,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,7.84000000,66.00000000,,8.00000000,C,1.00000000,,ref->het,0.41509434,0.00000000,70.00000000,3.09734513,14.64000000 +164,chr22,27728375,UNK,GAGAGAGAGAAAGAA,,G,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.47000000,48.00000000,,1.00000000,AGAGAGAGAAAGAA,14.00000000,,ref->het,0.20000000,0.00000000,75.00000000,3.31858407,18.12000000 +165,chr22,28536219,UNK,AAC,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.71000000,40.00000000,,1.00000000,AC,2.00000000,,ref->het,0.31372549,0.00000000,65.00000000,2.87610619,12.99000000 +166,chr22,28840860,UNK,C,,CT,,-1.00000000,,,,,,,22.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.77000000,33.00000000,,21.00000000,T,1.00000000,,ref->het,0.28000000,0.00000000,82.00000000,3.62831858,12.85000000 +167,chr22,29367338,UNK,G,,GGGA,,-1.00000000,,,,,,,3.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,1.47000000,61.00000000,,2.00000000,GGA,3.00000000,,ref->het,0.20000000,0.00000000,96.00000000,4.24778761,2.02000000 +168,chr22,29410372,UNK,CTA,,C,,-1.00000000,,,,,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.76000000,39.00000000,,5.00000000,TA,2.00000000,,ref->het,0.25531915,0.00000000,56.00000000,2.47787611,2.94000000 +169,chr22,29410573,UNK,G,,GTAGATATATCTATCTATATATAGATATATA,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.36000000,36.00000000,,1.00000000,TAGATATATCTATCTATATATAGATATATA,30.00000000,,ref->het,0.25714286,0.00000000,56.00000000,2.47787611,2.50000000 +170,chr22,30308284,UNK,A,,ATGCCTGCATGCCTGCC,,-1.00000000,,,,,,,1.00000000,1.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.14000000,53.00000000,,0.00000000,TGCCTGCATGCCTGCC,16.00000000,,ref->het,0.27868852,0.00000000,80.00000000,3.53982301,1.78000000 +171,chr22,30425382,UNK,T,,TTC,,-1.00000000,,,,,,,1.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.53000000,46.00000000,,0.00000000,TC,2.00000000,,ref->het,0.17808219,0.00000000,91.00000000,4.02654867,7.72000000 +172,chr22,30616487,UNK,C,,CAA,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.68000000,38.00000000,,18.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,51.00000000,2.25663717,9.21000000 +173,chr22,30657276,UNK,AAC,,A,,-1.00000000,,,,,,,14.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.79000000,40.00000000,,15.00000000,AC,2.00000000,,ref->het,0.26190476,0.00000000,53.00000000,2.34513274,3.22000000 +174,chr22,30725175,UNK,C,,CA,,-1.00000000,,,,,,,6.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,1.85000000,37.00000000,,5.00000000,A,1.00000000,,ref->het,0.18518519,0.00000000,74.00000000,3.27433628,8.97000000 +175,chr22,30778523,UNK,GT,,G,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,30.00000000,,2.00000000,T,1.00000000,,ref->het,0.07547170,0.00000000,57.00000000,2.52212389,0.01000000 +176,chr22,30985271,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.90000000,68.00000000,,0.00000000,TA,2.00000000,,ref->het,0.35849057,0.00000000,65.00000000,2.87610619,9.72000000 +177,chr22,30985451,UNK,T,,TTC,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.74000000,37.00000000,,0.00000000,TC,2.00000000,,ref->het,0.14516129,0.00000000,69.00000000,3.05309735,5.16000000 +178,chr22,31018460,UNK,C,,CACAT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.37000000,52.00000000,,0.00000000,ACAT,4.00000000,,ref->het,0.32692308,0.00000000,62.00000000,2.74336283,1.51000000 +179,chr22,31018544,UNK,T,,TAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.50000000,36.00000000,,0.00000000,AC,2.00000000,,ref->het,0.05000000,0.00000000,75.00000000,3.31858407,12.28000000 +180,chr22,31075680,UNK,T,,TA,,-1.00000000,,,,,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.54000000,46.00000000,,17.00000000,A,1.00000000,,ref->het,0.26530612,0.00000000,70.00000000,3.09734513,11.23000000 +181,chr22,31159711,UNK,C,,CTCT,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.74000000,50.00000000,,0.00000000,TCT,3.00000000,,ref->het,0.22950820,0.00000000,72.00000000,3.18584071,6.68000000 +182,chr22,31511474,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.20000000,49.00000000,,0.00000000,G,1.00000000,,ref->het,0.28571429,0.00000000,72.00000000,3.18584071,12.34000000 +183,chr22,31599881,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.21000000,56.00000000,,0.00000000,TA,2.00000000,,ref->het,0.21052632,0.00000000,77.00000000,3.40707965,2.58000000 +184,chr22,31606693,UNK,CTTTTTTTTTTTTT,,C,,-1.00000000,,,,,,,10.00000000,30.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,5.24000000,35.00000000,,23.00000000,T,1.00000000,,ref->het,0.26000000,0.00000000,63.00000000,2.78761062,7.64000000 +185,chr22,31652139,UNK,T,,TTG,,-1.00000000,,,,,,,9.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.63000000,44.00000000,,8.00000000,TG,2.00000000,,ref->het,0.23529412,0.00000000,61.00000000,2.69911504,1.37000000 +186,chr22,31655076,UNK,C,,CAAA,,-1.00000000,,,,,,,27.00000000,25.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,7.27000000,37.00000000,,24.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,67.00000000,2.96460177,19.52000000 +187,chr22,31655311,UNK,A,,AC,,-1.00000000,,,,,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.03000000,53.00000000,,5.00000000,C,1.00000000,,ref->het,0.27586207,0.00000000,66.00000000,2.92035398,4.27000000 +188,chr22,32213744,UNK,G,,GGATATATATCTATATATGTATACATATATATCTATACATATATATG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,46.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.58000000,44.00000000,,1.00000000,GATATATATCTATATATGTATACATATATATCTATACATATATATG,46.00000000,,ref->het,0.27027027,0.00000000,68.00000000,3.00884956,2.33000000 +189,chr22,32292140,UNK,T,,TAA,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,12.00000000,0.53097345,0.66000000,31.00000000,,0.00000000,A,1.00000000,,ref->het,0.14285714,0.00000000,68.00000000,3.00884956,5.13000000 +190,chr22,32292167,UNK,A,,ATATAG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.61000000,31.00000000,,0.00000000,TATAG,5.00000000,,ref->het,0.06666667,0.00000000,73.00000000,3.23008850,6.61000000 +191,chr22,32302259,UNK,T,,TTG,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.79000000,51.00000000,,0.00000000,TG,2.00000000,,ref->het,0.21348315,0.00000000,97.00000000,4.29203540,3.63000000 +192,chr22,32304443,UNK,GTTTTTTCT,,G,,-1.00000000,,,,,,,0.00000000,11.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.82000000,54.00000000,,1.00000000,TTTTTTCT,8.00000000,,ref->het,0.26027397,0.00000000,77.00000000,3.40707965,0.95000000 +193,chr22,32308763,UNK,CATGT,,C,,-1.00000000,,,,,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.84000000,49.00000000,,2.00000000,ATGT,4.00000000,,ref->het,0.22680412,0.00000000,101.00000000,4.46902655,2.23000000 +194,chr22,32324278,UNK,T,,TATACACACATATATGTATATATATATATAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.82000000,47.00000000,,0.00000000,ATACACACATATATGTATATATATATATAC,30.00000000,,ref->het,0.21794872,0.00000000,88.00000000,3.89380531,2.22000000 +195,chr22,32326270,UNK,A,,AT,,-1.00000000,,,,,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.46000000,32.00000000,,16.00000000,T,1.00000000,,ref->het,0.34545455,0.00000000,74.00000000,3.27433628,6.09000000 +196,chr22,32355797,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.41000000,62.00000000,,0.00000000,G,1.00000000,,ref->het,0.31481481,0.00000000,74.00000000,3.27433628,9.08000000 +197,chr22,32382486,UNK,G,,GTATGTA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.14000000,44.00000000,,0.00000000,TATGTA,6.00000000,,ref->het,0.27272727,0.00000000,70.00000000,3.09734513,2.70000000 +198,chr22,32420334,UNK,AAT,,A,,-1.00000000,,,,,,,0.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.90000000,47.00000000,,1.00000000,AT,2.00000000,,ref->het,0.50000000,0.00000000,78.00000000,3.45132743,8.92000000 +199,chr22,32423577,UNK,G,,GGTGTGTGTGTGT,,-1.00000000,,,,,,,21.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.73000000,46.00000000,,15.00000000,GT,2.00000000,,ref->het,0.49122807,0.00000000,67.00000000,2.96460177,3.26000000 +200,chr22,32450149,UNK,CACATATAT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.76000000,49.00000000,,1.00000000,ACATATAT,8.00000000,,ref->het,0.19444444,0.00000000,77.00000000,3.40707965,7.07000000 +201,chr22,32551527,UNK,GA,,G,,-1.00000000,,,,,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.81000000,31.00000000,,12.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,75.00000000,3.31858407,3.13000000 +202,chr22,32603356,UNK,C,,CAAAAA,,-1.00000000,,,,,,,20.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,3.04000000,46.00000000,,15.00000000,A,1.00000000,,ref->het,0.34615385,0.00000000,66.00000000,2.92035398,7.04000000 +203,chr22,32671572,UNK,AACAAGT,,A,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.94000000,42.00000000,,1.00000000,ACAAGT,6.00000000,,ref->het,0.22784810,0.00000000,83.00000000,3.67256637,4.21000000 +204,chr22,32724243,UNK,CTGTTT,,C,,-1.00000000,,,,,,,5.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.46000000,50.00000000,,6.00000000,TGTTT,5.00000000,,ref->het,0.25806452,0.00000000,80.00000000,3.53982301,1.71000000 +205,chr22,32755892,UNK,TA,,T,,-1.00000000,,,,,,,5.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.28000000,33.00000000,,6.00000000,A,1.00000000,,ref->het,0.14814815,0.00000000,82.00000000,3.62831858,0.76000000 +206,chr22,32820263,UNK,CGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.84000000,48.00000000,,1.00000000,GT,2.00000000,,ref->het,0.24193548,0.00000000,75.00000000,3.31858407,2.44000000 +207,chr22,32890072,UNK,C,,CTT,,-1.00000000,,,,,,,25.00000000,23.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.26000000,32.00000000,,23.00000000,T,1.00000000,,ref->het,0.34883721,0.00000000,81.00000000,3.58407080,10.61000000 +208,chr22,32988305,UNK,C,,CATAATA,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.26000000,52.00000000,,0.00000000,ATA,3.00000000,,ref->het,0.22535211,0.00000000,88.00000000,3.89380531,6.28000000 +209,chr22,32998791,UNK,A,,AAAC,,-1.00000000,,,,,,,1.00000000,27.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,7.36000000,62.00000000,,0.00000000,AAC,3.00000000,,ref->het,0.30263158,0.00000000,84.00000000,3.71681416,12.15000000 +210,chr22,33015242,UNK,A,,AAT,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.86000000,41.00000000,,0.00000000,AT,2.00000000,,ref->het,0.38095238,0.00000000,69.00000000,3.05309735,14.22000000 +211,chr22,33028685,UNK,GTGGTGA,,G,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,3.06000000,37.00000000,,1.00000000,TGGTGA,6.00000000,,ref->het,0.25581395,0.00000000,65.00000000,2.87610619,12.73000000 +212,chr22,33096566,UNK,GT,,G,,-1.00000000,,,,,,,15.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.32000000,38.00000000,,16.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,5.99000000 +213,chr22,33120366,UNK,CTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTT,,C,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.66000000,49.00000000,,1.00000000,TTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTT,38.00000000,,ref->het,0.20270270,0.00000000,55.00000000,2.43362832,4.77000000 +214,chr22,33128684,UNK,A,,AC,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.38000000,46.00000000,,0.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,66.00000000,2.92035398,10.04000000 +215,chr22,34137119,UNK,TTTTTTTTTTG,,T,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,4.12000000,45.00000000,,1.00000000,TTTTTTTTTG,10.00000000,,ref->het,0.18666667,0.00000000,77.00000000,3.40707965,8.57000000 +216,chr22,34155889,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.22000000,30.00000000,,3.00000000,T,1.00000000,,ref->het,0.06779661,0.00000000,67.00000000,2.96460177,3.60000000 +217,chr22,34209119,UNK,C,,CAA,,-1.00000000,,,,,,,4.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.26000000,45.00000000,,2.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,78.00000000,3.45132743,1.48000000 +218,chr22,34423166,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,3.16000000,36.00000000,,3.00000000,T,1.00000000,,ref->het,0.12500000,0.00000000,44.00000000,1.94690265,7.31000000 +219,chr22,34542050,UNK,ATTC,,A,,-1.00000000,,,,,,,2.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.68000000,54.00000000,,3.00000000,TTC,3.00000000,,ref->het,0.28048780,0.00000000,87.00000000,3.84955752,0.53000000 +220,chr22,35110978,UNK,AGCTACTCAGGAGGCTGAAACAGGAGAATT,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.04000000,45.00000000,,1.00000000,GCTACTCAGGAGGCTGAAACAGGAGAATT,29.00000000,,ref->het,0.18309859,0.00000000,73.00000000,3.23008850,0.87000000 +221,chr22,35156443,UNK,A,,ACACT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.08000000,57.00000000,,0.00000000,CACT,4.00000000,,ref->het,0.32653061,0.00000000,62.00000000,2.74336283,2.98000000 +222,chr22,35209170,UNK,AAG,,A,,-1.00000000,,,,,,,0.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.78000000,49.00000000,,1.00000000,AG,2.00000000,,ref->het,0.26984127,0.00000000,75.00000000,3.31858407,8.30000000 +223,chr22,35474638,UNK,T,,TTTA,,-1.00000000,,,,,,,9.00000000,7.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.97000000,58.00000000,,8.00000000,TTA,3.00000000,,ref->het,0.35714286,0.00000000,74.00000000,3.27433628,4.94000000 +224,chr22,35581317,UNK,CTT,,C,,-1.00000000,,,,,,,17.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,6.65000000,38.00000000,,19.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,100.00000000,4.42477876,15.68000000 +225,chr22,35999983,UNK,T,,TTA,,-1.00000000,,,,,,,12.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.61000000,45.00000000,,11.00000000,TA,2.00000000,,ref->het,0.19354839,0.00000000,92.00000000,4.07079646,6.06000000 +226,chr22,36000005,UNK,A,,ATAT,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.78000000,55.00000000,,0.00000000,TAT,3.00000000,,ref->het,0.26984127,0.00000000,75.00000000,3.31858407,7.94000000 +227,chr22,36235744,UNK,G,,GGT,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.12000000,42.00000000,,1.00000000,GT,2.00000000,,ref->het,0.20454545,0.00000000,60.00000000,2.65486726,13.28000000 +228,chr22,36428222,UNK,A,,AAAAAC,,-1.00000000,,,,,,,1.00000000,26.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,4.59000000,34.00000000,,0.00000000,AAAAC,5.00000000,,ref->het,0.19444444,0.00000000,56.00000000,2.47787611,12.66000000 +229,chr22,36444410,UNK,A,,AAAAAG,,-1.00000000,,,,,,,1.00000000,17.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.39000000,39.00000000,,0.00000000,AAAAG,5.00000000,,ref->het,0.18461538,0.00000000,69.00000000,3.05309735,10.13000000 +230,chr22,36502167,UNK,TCAAA,,T,,-1.00000000,,,,,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,35.00000000,,6.00000000,CAAA,4.00000000,,ref->het,0.18867925,0.00000000,72.00000000,3.18584071,2.65000000 +231,chr22,36606757,UNK,CGT,,C,,-1.00000000,,,,,,,10.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,42.00000000,,11.00000000,GT,2.00000000,,ref->het,0.22222222,0.00000000,70.00000000,3.09734513,1.11000000 +232,chr22,36816045,UNK,T,,TTG,,-1.00000000,,,,,,,15.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.95000000,34.00000000,,14.00000000,TG,2.00000000,,ref->het,0.20312500,0.00000000,80.00000000,3.53982301,6.24000000 +233,chr22,36831770,UNK,CT,,C,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.94000000,50.00000000,,2.00000000,T,1.00000000,,ref->het,0.22077922,0.00000000,66.00000000,2.92035398,3.62000000 +234,chr22,36838209,UNK,G,,GGTGGT,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.80000000,31.00000000,,0.00000000,GTGGT,5.00000000,,ref->het,0.09375000,0.00000000,43.00000000,1.90265487,10.47000000 +235,chr22,37072549,UNK,AATGGATGGATGATGGATGGATGGATGGATGATGGATGG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,5.12000000,45.00000000,,2.00000000,ATGGATGGATGATGGATGG,19.00000000,,ref->het,0.21538462,0.00000000,71.00000000,3.14159292,13.05000000 +236,chr22,37220902,UNK,C,,CA,,-1.00000000,,,,,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.28000000,48.00000000,,0.00000000,A,1.00000000,,ref->het,0.20895522,0.00000000,77.00000000,3.40707965,8.37000000 +237,chr22,37226840,UNK,G,,GT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.47000000,44.00000000,,1.00000000,T,1.00000000,,ref->het,0.18965517,0.00000000,63.00000000,2.78761062,6.40000000 +238,chr22,37399472,UNK,A,,AGACCACCGGCCCACCTCTCCCACCTCCACCGACCACGGG,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.34000000,32.00000000,,1.00000000,GACCACCGGCCCACCTCTCCCACCTCCACCGACCACGGG,39.00000000,,ref->het,0.16666667,0.00000000,62.00000000,2.74336283,1.20000000 +239,chr22,37584724,UNK,T,,TTATTTT,,-1.00000000,,,,,,,2.00000000,9.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.00000000,33.00000000,,1.00000000,TATTTT,6.00000000,,ref->het,0.12244898,0.00000000,56.00000000,2.47787611,2.98000000 +240,chr22,37754417,UNK,C,,CA,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.86000000,31.00000000,,19.00000000,A,1.00000000,,ref->het,0.21153846,0.00000000,71.00000000,3.14159292,14.69000000 +241,chr22,37807331,UNK,T,,TCCC,,-1.00000000,,,,,,,12.00000000,14.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.21000000,30.00000000,,9.00000000,C,1.00000000,,ref->het,0.13432836,0.00000000,85.00000000,3.76106195,12.64000000 +242,chr22,37841848,UNK,AAAAT,,A,,-1.00000000,,,,,,,11.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.28000000,30.00000000,,12.00000000,AAAT,4.00000000,,ref->het,0.21875000,0.00000000,50.00000000,2.21238938,1.22000000 +243,chr22,37937418,UNK,C,,CTTT,,-1.00000000,,,,,,,25.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,5.04000000,31.00000000,,22.00000000,T,1.00000000,,ref->het,0.20408163,0.00000000,92.00000000,4.07079646,15.43000000 +244,chr22,38150051,UNK,C,,CAAA,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.44000000,36.00000000,,17.00000000,A,1.00000000,,ref->het,0.21666667,0.00000000,83.00000000,3.67256637,9.99000000 +245,chr22,38274066,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.10000000,57.00000000,,0.00000000,C,1.00000000,,ref->het,0.33333333,0.00000000,64.00000000,2.83185841,1.28000000 +246,chr22,38311808,UNK,C,,CTT,,-1.00000000,,,,,,,18.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.77000000,34.00000000,,16.00000000,T,1.00000000,,ref->het,0.23214286,0.00000000,77.00000000,3.40707965,5.89000000 +247,chr22,38426029,UNK,AAAAAATATAT,,A,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.92000000,35.00000000,,1.00000000,AAAAATATAT,10.00000000,,ref->het,0.14516129,0.00000000,66.00000000,2.92035398,6.79000000 +248,chr22,38464929,UNK,CTTT,,C,,-1.00000000,,,,,,,17.00000000,21.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.61000000,30.00000000,,20.00000000,T,1.00000000,,ref->het,0.20833333,0.00000000,72.00000000,3.18584071,8.98000000 +249,chr22,38813893,UNK,T,,TTCTTTC,,-1.00000000,,,,,,,1.00000000,11.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.53000000,31.00000000,,0.00000000,TCTTTC,6.00000000,,ref->het,0.07407407,0.00000000,59.00000000,2.61061947,2.32000000 +250,chr22,38988690,UNK,T,,TCTCT,,-1.00000000,,,,,,,3.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.28000000,35.00000000,,1.00000000,CT,2.00000000,,ref->het,0.16129032,0.00000000,41.00000000,1.81415929,8.76000000 +251,chr22,39112082,UNK,G,,GA,,-1.00000000,,,,,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.76000000,39.00000000,,10.00000000,A,1.00000000,,ref->het,0.25396825,0.00000000,65.00000000,2.87610619,2.40000000 +252,chr22,39194130,UNK,A,,AACC,,-1.00000000,,,,,,,1.00000000,25.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,6.99000000,49.00000000,,0.00000000,ACC,3.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,16.22000000 +253,chr22,39269913,UNK,A,,ACCCTAACTCCAGAGGGAGCCCCTGG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,57.00000000,,0.00000000,CCCTAACTCCAGAGGGAGCCCCTGG,25.00000000,,ref->het,0.31034483,0.00000000,65.00000000,2.87610619,1.25000000 +254,chr22,39340805,UNK,C,,CT,,-1.00000000,,,,,,,5.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.44000000,30.00000000,,4.00000000,T,1.00000000,,ref->het,0.10000000,0.00000000,80.00000000,3.53982301,13.02000000 +255,chr22,39347570,UNK,TCTCTC,,T,,-1.00000000,,,,,,,0.00000000,14.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.24000000,59.00000000,,1.00000000,CTCTC,5.00000000,,ref->het,0.29411765,0.00000000,60.00000000,2.65486726,2.11000000 +256,chr22,39616770,UNK,AAAAAAAAAAAAAAAAAAGAAAAG,,A,,-1.00000000,,,,,,,0.00000000,27.00000000,2.00000000,23.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,6.26000000,46.00000000,,1.00000000,AAAAAAAAAAAAAAAAAGAAAAG,23.00000000,,ref->het,0.17567568,0.00000000,62.00000000,2.74336283,5.83000000 +257,chr22,40938654,UNK,G,,GTGTGTGTGTA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.57000000,38.00000000,,0.00000000,TGTGTGTGTA,10.00000000,,ref->het,0.14925373,0.00000000,74.00000000,3.27433628,2.64000000 +258,chr22,41026435,UNK,CAGTGAG,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.40000000,43.00000000,,1.00000000,AGTGAG,6.00000000,,ref->het,0.24418605,0.00000000,88.00000000,3.89380531,1.95000000 +259,chr22,41119166,UNK,C,,CTTATTA,,-1.00000000,,,,,,,5.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.36000000,32.00000000,,3.00000000,TTA,3.00000000,,ref->het,0.18181818,0.00000000,55.00000000,2.43362832,7.68000000 +260,chr22,41449991,UNK,G,,GTGTGTGTGTGTGTG,,-1.00000000,,,,,,,21.00000000,4.00000000,1.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,1.23000000,37.00000000,,14.00000000,TG,2.00000000,,ref->het,0.26086957,0.00000000,46.00000000,2.03539823,2.87000000 +261,chr22,41561045,UNK,G,,GACACACACAC,,-1.00000000,,,,,,,23.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.15000000,47.00000000,,18.00000000,AC,2.00000000,,ref->het,0.21518987,0.00000000,97.00000000,4.29203540,5.58000000 +262,chr22,41785902,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.31000000,37.00000000,,0.00000000,TA,2.00000000,,ref->het,0.10606061,0.00000000,77.00000000,3.40707965,9.15000000 +263,chr22,41785912,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.93000000,36.00000000,,0.00000000,TA,2.00000000,,ref->het,0.11111111,0.00000000,78.00000000,3.45132743,9.99000000 +264,chr22,41938141,UNK,A,,AT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,4.27000000,42.00000000,,18.00000000,T,1.00000000,,ref->het,0.27868852,0.00000000,83.00000000,3.67256637,10.72000000 +265,chr22,42057826,UNK,CATATAT,,C,,-1.00000000,,,,,,,7.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.59000000,34.00000000,,10.00000000,AT,2.00000000,,ref->het,0.20512821,0.00000000,68.00000000,3.00884956,8.19000000 +266,chr22,42255488,UNK,AAACAAC,,A,,-1.00000000,,,,,,,11.00000000,5.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.53000000,39.00000000,,13.00000000,AAC,3.00000000,,ref->het,0.20689655,0.00000000,80.00000000,3.53982301,2.67000000 +267,chr22,42395881,UNK,C,,CA,,-1.00000000,,,,,,,17.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.95000000,45.00000000,,16.00000000,A,1.00000000,,ref->het,0.36764706,0.00000000,92.00000000,4.07079646,13.19000000 +268,chr22,42396925,UNK,G,,GGCGTGCACCTGGGGA,,-1.00000000,,,,,,,1.00000000,6.00000000,1.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.41000000,50.00000000,,0.00000000,GCGTGCACCTGGGGA,15.00000000,,ref->het,0.20238095,0.00000000,104.00000000,4.60176991,1.02000000 +269,chr22,42464592,UNK,AAAAAAAG,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.51000000,60.00000000,,1.00000000,AAAAAAG,7.00000000,,ref->het,0.21333333,0.00000000,87.00000000,3.84955752,3.92000000 +270,chr22,42474179,UNK,A,,AGTG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.65000000,43.00000000,,0.00000000,GTG,3.00000000,,ref->het,0.19117647,0.00000000,74.00000000,3.27433628,6.57000000 +271,chr22,42709061,UNK,A,,ATT,,-1.00000000,,,,,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.53000000,40.00000000,,1.00000000,T,1.00000000,,ref->het,0.12903226,0.00000000,73.00000000,3.23008850,4.65000000 +272,chr22,42859695,UNK,A,,AAATATAT,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,4.41000000,31.00000000,,0.00000000,AATATAT,7.00000000,,ref->het,0.15384615,0.00000000,38.00000000,1.68141593,9.09000000 +273,chr22,42993179,UNK,A,,AAAAAAGG,,-1.00000000,,,,,,,2.00000000,12.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.52000000,37.00000000,,1.00000000,AAAAAGG,7.00000000,,ref->het,0.17460317,0.00000000,72.00000000,3.18584071,4.58000000 +274,chr22,43084962,UNK,CTTTTTTTTT,,C,,-1.00000000,,,,,,,14.00000000,23.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.97000000,42.00000000,,23.00000000,T,1.00000000,,ref->het,0.50793651,0.00000000,91.00000000,4.02654867,12.42000000 +275,chr22,43107317,UNK,GA,,G,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.84000000,31.00000000,,22.00000000,A,1.00000000,,ref->het,0.32608696,0.00000000,67.00000000,2.96460177,10.09000000 +276,chr22,43181999,UNK,G,,GAAGGCCTGGAAGCAGAAAGGCCCGGAAGCAGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,32.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.89000000,41.00000000,,0.00000000,AAGGCCTGGAAGCAGAAAGGCCCGGAAGCAGA,32.00000000,,ref->het,0.16470588,0.00000000,91.00000000,4.02654867,1.48000000 +277,chr22,43657126,UNK,C,,CA,,-1.00000000,,,,,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.01000000,36.00000000,,8.00000000,A,1.00000000,,ref->het,0.24590164,0.00000000,69.00000000,3.05309735,0.83000000 +278,chr22,43887808,UNK,GCA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.48000000,47.00000000,,1.00000000,CA,2.00000000,,ref->het,0.19540230,0.00000000,91.00000000,4.02654867,7.71000000 +279,chr22,44035373,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,6.03000000,53.00000000,,0.00000000,C,1.00000000,,ref->het,0.44680851,0.00000000,48.00000000,2.12389381,5.82000000 +280,chr22,44127252,UNK,CT,,C,,-1.00000000,,,,,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,2.35000000,84.00000000,,11.00000000,T,1.00000000,,ref->het,0.38666667,0.00000000,86.00000000,3.80530973,1.27000000 +281,chr22,44191386,UNK,C,,CTT,,-1.00000000,,,,,,,3.00000000,28.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.25000000,35.00000000,,1.00000000,T,1.00000000,,ref->het,0.11627907,0.00000000,71.00000000,3.14159292,12.30000000 +282,chr22,44214021,UNK,A,,ACATCAT,,-1.00000000,,,,,,,9.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.68000000,55.00000000,,7.00000000,CAT,3.00000000,,ref->het,0.24590164,0.00000000,77.00000000,3.40707965,1.73000000 +283,chr22,44306289,UNK,GACCTGGGCTCAGGGAGCTGTGATGACGATGGCATGTGTGGAGGGT,,G,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.20000000,35.00000000,,1.00000000,ACCTGGGCTCAGGGAGCTGTGATGACGATGGCATGTGTGGAGGGT,45.00000000,,ref->het,0.50746269,0.00000000,68.00000000,3.00884956,2.45000000 +284,chr22,44539592,UNK,GTGGATGGATGGATGAGTAGGTGGA,,G,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.74000000,47.00000000,,1.00000000,TGGATGGATGGATGAGTAGGTGGA,24.00000000,,ref->het,0.20833333,0.00000000,76.00000000,3.36283186,5.56000000 +285,chr22,44605020,UNK,A,,AGC,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.69000000,44.00000000,,0.00000000,GC,2.00000000,,ref->het,0.18867925,0.00000000,60.00000000,2.65486726,2.31000000 +286,chr22,44605021,UNK,C,,CCA,,-1.00000000,,,,,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.68000000,43.00000000,,8.00000000,CA,2.00000000,,ref->het,0.14583333,0.00000000,60.00000000,2.65486726,2.33000000 +287,chr22,44649471,UNK,TGGAGAC,,T,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.01000000,44.00000000,,1.00000000,GGAGAC,6.00000000,,ref->het,0.20481928,0.00000000,87.00000000,3.84955752,2.17000000 +288,chr22,44717189,UNK,C,,CT,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.64000000,48.00000000,,19.00000000,T,1.00000000,,ref->het,0.36363636,0.00000000,80.00000000,3.53982301,12.50000000 +289,chr22,44779099,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.64000000,31.00000000,,0.00000000,C,1.00000000,,ref->het,0.33962264,0.00000000,57.00000000,2.52212389,9.05000000 +290,chr22,44833096,UNK,C,,CTTTTCTTTTCT,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.29000000,36.00000000,,0.00000000,TTTTCTTTTCT,11.00000000,,ref->het,0.15000000,0.00000000,49.00000000,2.16814159,8.78000000 +291,chr22,45079644,UNK,CTCTCTCTT,,C,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,59.00000000,,2.00000000,TCTCTCTT,8.00000000,,ref->het,0.50793651,0.00000000,90.00000000,3.98230088,3.15000000 +292,chr22,45100709,UNK,AC,,A,,-1.00000000,,,,,,,3.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.59000000,53.00000000,,4.00000000,C,1.00000000,,ref->het,0.21428571,0.00000000,87.00000000,3.84955752,1.67000000 +293,chr22,45247564,UNK,A,,AAAGAAAAAG,,-1.00000000,,,,,,,1.00000000,9.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.77000000,37.00000000,,0.00000000,AAGAAAAAG,9.00000000,,ref->het,0.16981132,0.00000000,64.00000000,2.83185841,5.19000000 +294,chr22,45269254,UNK,A,,AGGCGGGGGCGGG,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.76000000,41.00000000,,0.00000000,GGCGGG,6.00000000,,ref->het,0.19047619,0.00000000,72.00000000,3.18584071,5.83000000 +295,chr22,45441614,UNK,T,,TTTTC,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.68000000,47.00000000,,0.00000000,TTTC,4.00000000,,ref->het,0.26530612,0.00000000,52.00000000,2.30088496,7.67000000 +296,chr22,45441631,UNK,T,,TTTGG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.63000000,34.00000000,,0.00000000,TTGG,4.00000000,,ref->het,0.07843137,0.00000000,59.00000000,2.61061947,10.09000000 +297,chr22,45449281,UNK,A,,ATT,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.69000000,44.00000000,,18.00000000,T,1.00000000,,ref->het,0.52272727,0.00000000,61.00000000,2.69911504,6.61000000 +298,chr22,45473207,UNK,TC,,T,,-1.00000000,,,,,,,0.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.93000000,43.00000000,,1.00000000,C,1.00000000,,ref->het,0.16363636,0.00000000,65.00000000,2.87610619,8.36000000 +299,chr22,45649113,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.57000000,55.00000000,,3.00000000,T,1.00000000,,ref->het,0.28235294,0.00000000,94.00000000,4.15929204,2.19000000 +300,chr22,45737690,UNK,CTTTTTTTT,,C,,-1.00000000,,,,,,,14.00000000,25.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.82000000,34.00000000,,22.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,99.00000000,4.38053097,12.16000000 +301,chr22,45861085,UNK,T,,TAAAAC,,-1.00000000,,,,,,,4.00000000,8.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.60000000,36.00000000,,3.00000000,AAAAC,5.00000000,,ref->het,0.15686275,0.00000000,69.00000000,3.05309735,1.99000000 +302,chr22,45981863,UNK,CA,,C,,-1.00000000,,,,,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.95000000,31.00000000,,17.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,69.00000000,3.05309735,6.11000000 +303,chr22,46142037,UNK,T,,TA,,-1.00000000,,,,,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.79000000,30.00000000,,0.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,38.00000000,1.68141593,1.96000000 +304,chr22,46196945,UNK,ACTC,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.70000000,48.00000000,,1.00000000,CTC,3.00000000,,ref->het,0.22368421,0.00000000,79.00000000,3.49557522,2.85000000 +305,chr22,46276751,UNK,C,,CATATATTAAAAAT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.58000000,42.00000000,,1.00000000,ATATATTAAAAAT,13.00000000,,ref->het,0.20588235,0.00000000,84.00000000,3.71681416,2.07000000 +306,chr22,46277038,UNK,TATATAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.43000000,42.00000000,,1.00000000,ATATAC,6.00000000,,ref->het,0.22222222,0.00000000,70.00000000,3.09734513,4.57000000 +307,chr22,46504510,UNK,AAAAAAAAAAAC,,A,,-1.00000000,,,,,,,0.00000000,25.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,7.63000000,32.00000000,,1.00000000,AAAAAAAAAAC,11.00000000,,ref->het,0.09589041,0.00000000,73.00000000,3.23008850,13.21000000 +308,chr22,46904134,UNK,T,,TCTGC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.92000000,43.00000000,,0.00000000,CTGC,4.00000000,,ref->het,0.15384615,0.00000000,82.00000000,3.62831858,3.13000000 +309,chr22,46920057,UNK,T,,TTGTATGTATGTATGTA,,-1.00000000,,,,,,,11.00000000,6.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.02000000,42.00000000,,7.00000000,TGTA,4.00000000,,ref->het,0.22727273,0.00000000,72.00000000,3.18584071,1.45000000 +310,chr22,47118812,UNK,CAT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,61.00000000,,1.00000000,AT,2.00000000,,ref->het,0.47222222,0.00000000,76.00000000,3.36283186,1.32000000 +311,chr22,47174607,UNK,TCATGGACCGGTTCCTC,,T,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,51.00000000,,2.00000000,CATGGACCGGTTCCTC,16.00000000,,ref->het,0.25373134,0.00000000,81.00000000,3.58407080,1.82000000 +312,chr22,47211109,UNK,CGTCCACACTCAAATATGCACGTGTCCACACTTAAATATGTGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,42.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,30.00000000,,1.00000000,GTCCACACTCAAATATGCACGTGTCCACACTTAAATATGTGT,42.00000000,,ref->het,0.08433735,0.00000000,77.00000000,3.40707965,2.02000000 +313,chr22,47213477,UNK,CGCGTGTCCACACTCAAATATGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.16000000,30.00000000,,1.00000000,GCGTGTCCACACTCAAATATGT,22.00000000,,ref->het,0.15151515,0.00000000,70.00000000,3.09734513,4.22000000 +314,chr22,47343183,UNK,TC,,T,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.58000000,32.00000000,,3.00000000,C,1.00000000,,ref->het,0.08888889,0.00000000,56.00000000,2.47787611,8.80000000 +315,chr22,47378997,UNK,AGAG,,A,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.82000000,35.00000000,,1.00000000,GAG,3.00000000,,ref->het,0.28947368,0.00000000,55.00000000,2.43362832,4.79000000 +316,chr22,47479549,UNK,GCA,,G,,-1.00000000,,,,,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.93000000,49.00000000,,3.00000000,CA,2.00000000,,ref->het,0.24050633,0.00000000,85.00000000,3.76106195,3.10000000 +317,chr22,47581927,UNK,A,,AAT,,-1.00000000,,,,,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.83000000,44.00000000,,9.00000000,AT,2.00000000,,ref->het,0.18518519,0.00000000,99.00000000,4.38053097,2.11000000 +318,chr22,47802913,UNK,AT,,A,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.04000000,50.00000000,,3.00000000,T,1.00000000,,ref->het,0.24242424,0.00000000,74.00000000,3.27433628,3.88000000 +319,chr22,47853610,UNK,GAGAGGA,,G,,-1.00000000,,,,,,,2.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.02000000,56.00000000,,3.00000000,AGAGGA,6.00000000,,ref->het,0.31034483,0.00000000,65.00000000,2.87610619,0.87000000 +320,chr22,47853659,UNK,A,,AGAAGAAGGAAGAAGAAGGAA,,-1.00000000,,,,,,,5.00000000,4.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.66000000,55.00000000,,3.00000000,GAAGAAGGAA,10.00000000,,ref->het,0.34000000,0.00000000,49.00000000,2.16814159,1.82000000 +321,chr22,48293804,UNK,A,,AACACAACTACGTG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.43000000,55.00000000,,0.00000000,ACACAACTACGTG,13.00000000,,ref->het,0.35000000,0.00000000,66.00000000,2.92035398,1.06000000 +322,chr22,48341697,UNK,A,,AGACAGGAGGAGCAGGACAGACAGAAGGAGCAGGACG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,36.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.55000000,54.00000000,,0.00000000,GACAGGAGGAGCAGGACAGACAGAAGGAGCAGGACG,36.00000000,,ref->het,0.27536232,0.00000000,80.00000000,3.53982301,1.45000000 +323,chr22,48344592,UNK,A,,ATG,,-1.00000000,,,,,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.04000000,55.00000000,,0.00000000,TG,2.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,3.51000000 +324,chr22,48349256,UNK,ACTCACACATAGGCTTTCACATACACT,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,26.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.61000000,39.00000000,,1.00000000,CTCACACATAGGCTTTCACATACACT,26.00000000,,ref->het,0.10389610,0.00000000,73.00000000,3.23008850,1.43000000 +325,chr22,48442194,UNK,CCCTAATCCTGAACCCTGAGCCTTAATCCTGAGCCCTGAACCTTGAGG,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,47.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.28000000,35.00000000,,1.00000000,CCTAATCCTGAACCCTGAGCCTTAATCCTGAGCCCTGAACCTTGAGG,47.00000000,,ref->het,0.11940299,0.00000000,79.00000000,3.49557522,4.24000000 +326,chr22,48445849,UNK,TTTC,,T,,-1.00000000,,,,,,,0.00000000,18.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,5.19000000,33.00000000,,1.00000000,TTC,3.00000000,,ref->het,0.17021277,0.00000000,60.00000000,2.65486726,11.04000000 +327,chr22,48507154,UNK,TGGCCGCAAAGGGCCAGGTGTGTAGTTGGAGAAGGAGAC,,T,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.93000000,54.00000000,,1.00000000,GGCCGCAAAGGGCCAGGTGTGTAGTTGGAGAAGGAGAC,38.00000000,,ref->het,0.24096386,0.00000000,84.00000000,3.71681416,2.95000000 +328,chr22,48610936,UNK,ATT,,A,,-1.00000000,,,,,,,14.00000000,16.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.43000000,53.00000000,,16.00000000,T,1.00000000,,ref->het,0.41818182,0.00000000,72.00000000,3.18584071,4.00000000 +329,chr22,48659756,UNK,CCT,,C,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.98000000,47.00000000,,1.00000000,CT,2.00000000,,ref->het,0.20000000,0.00000000,70.00000000,3.09734513,6.99000000 +330,chr22,48788203,UNK,T,,TATATTATATATACACATATATTATATATAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.18000000,33.00000000,,0.00000000,ATATTATATATACACATATATTATATATAC,30.00000000,,ref->het,0.07812500,0.00000000,68.00000000,3.00884956,1.52000000 +331,chr22,48797460,UNK,T,,TCCAGGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.23000000,38.00000000,,0.00000000,CCAGGA,6.00000000,,ref->het,0.11538462,0.00000000,69.00000000,3.05309735,3.60000000 +332,chr22,48802289,UNK,T,,TAC,,-1.00000000,,,,,,,14.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.44000000,45.00000000,,13.00000000,AC,2.00000000,,ref->het,0.21428571,0.00000000,59.00000000,2.61061947,3.78000000 +333,chr22,48847267,UNK,A,,AT,,-1.00000000,,,,,,,2.00000000,24.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,3.05000000,42.00000000,,1.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,56.00000000,2.47787611,6.93000000 +334,chr22,48931090,UNK,C,,CTTTCT,,-1.00000000,,,,,,,2.00000000,8.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.34000000,47.00000000,,1.00000000,TTTCT,5.00000000,,ref->het,0.21052632,0.00000000,63.00000000,2.78761062,6.41000000 +335,chr22,48947583,UNK,T,,TTA,,-1.00000000,,,,,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.59000000,34.00000000,,8.00000000,TA,2.00000000,,ref->het,0.28846154,0.00000000,67.00000000,2.96460177,4.24000000 +336,chr22,48951700,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.61000000,51.00000000,,0.00000000,G,1.00000000,,ref->het,0.28846154,0.00000000,71.00000000,3.14159292,11.65000000 +337,chr22,48956536,UNK,AG,,A,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,11.00000000,0.48672566,1.21000000,31.00000000,,1.00000000,G,1.00000000,,ref->het,0.24000000,0.00000000,54.00000000,2.38938053,8.83000000 +338,chr22,49224471,UNK,C,,CGATGGATG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.95000000,36.00000000,,0.00000000,GATG,4.00000000,,ref->het,0.21052632,0.00000000,69.00000000,3.05309735,2.67000000 +339,chr22,49382624,UNK,CTGTGGGTCCAGCCTGACCCTGCCCTGTGGGTCCAGCCTCATGCCTGCCG,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,49.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.16000000,53.00000000,,1.00000000,TGTGGGTCCAGCCTGACCCTGCCCTGTGGGTCCAGCCTCATGCCTGCCG,49.00000000,,ref->het,0.29487179,0.00000000,76.00000000,3.36283186,4.13000000 +340,chr22,49427132,UNK,A,,ATATC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.33000000,66.00000000,,0.00000000,TATC,4.00000000,,ref->het,0.31250000,0.00000000,91.00000000,4.02654867,4.15000000 +341,chr22,49715054,UNK,C,,CA,,-1.00000000,,,,,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.54000000,32.00000000,,16.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,71.00000000,3.14159292,12.54000000 +342,chr22,49868957,UNK,CA,,C,,-1.00000000,,,,,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.80000000,33.00000000,,17.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,55.00000000,2.43362832,3.95000000 +343,chr22,50028587,UNK,G,,GCCCTCGTAAAGACCCCCATCACACCGTCCTGAAGACCCCCACATA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.02000000,39.00000000,,1.00000000,CCCTCGTAAAGACCCCCATCACACCGTCCTGAAGACCCCCACATA,45.00000000,,ref->het,0.29166667,0.00000000,60.00000000,2.65486726,1.26000000 +344,chr22,50098218,UNK,G,,GTATTAAGATTAACATCTTAATAATAAT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,33.00000000,,1.00000000,TATTAAGATTAACATCTTAATAATAAT,27.00000000,,ref->het,0.18421053,0.00000000,85.00000000,3.76106195,1.37000000 +345,chr22,50707032,UNK,C,,CT,,-1.00000000,,,,,,,16.00000000,26.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.76000000,31.00000000,,15.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,73.00000000,3.23008850,12.41000000 +346,chr22,50747317,UNK,G,,GTCT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.31000000,48.00000000,,0.00000000,TCT,3.00000000,,ref->het,0.21428571,0.00000000,79.00000000,3.49557522,6.40000000 +347,chr22,50796327,UNK,CCA,,C,,-1.00000000,,,,,,,0.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,2.46000000,32.00000000,,1.00000000,CA,2.00000000,,ref->het,0.13793103,0.00000000,48.00000000,2.12389381,12.76000000 diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.metrics.json b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.metrics.json new file mode 100644 index 0000000..32c81fe --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.metrics.json @@ -0,0 +1 @@ +{"runInfo": [{"value": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose", "key": "commandline"}], "metrics": [{"data": [{"values": [0, 5], "type": "string", "id": "types", "label": "types"}, {"values": ["indels", "records"], "type": "string", "id": "type", "label": "type"}, {"values": [2274, 2274], "type": "int64", "id": "total.truth", "label": "total.truth"}, {"values": [1984, 1984], "type": "int64", "id": "total.query", "label": "total.query"}, {"values": [1600, 1600], "type": "int64", "id": "tp", "label": "tp"}, {"values": [36, 36], "type": "int64", "id": "fp", "label": "fp"}, {"values": [674, 674], "type": "int64", "id": "fn", "label": "fn"}, {"values": [348, 348], "type": "int64", "id": "unk", "label": "unk"}, {"values": [0, 0], "type": "int64", "id": "ambi", "label": "ambi"}, {"values": [0.7036059806508356, 0.7036059806508356], "type": "double", "id": "recall", "label": "recall"}, {"values": [0.6845864592833382, 0.6845864592833382], "type": "double", "id": "recall_lower", "label": "recall_lower"}, {"values": [0.7221075867247546, 0.7221075867247546], "type": "double", "id": "recall_upper", "label": "recall_upper"}, {"values": [0.7036059806508356, 0.7036059806508356], "type": "double", "id": "recall2", "label": "recall2"}, {"values": [0.9779951100244498, 0.9779951100244498], "type": "double", "id": "precision", "label": "precision"}, {"values": [0.9700180229753866, 0.9700180229753866], "type": "double", "id": "precision_lower", "label": "precision_lower"}, {"values": [0.9842846465944767, 0.9842846465944767], "type": "double", "id": "precision_upper", "label": "precision_upper"}, {"values": [0.17540322580645162, 0.17540322580645162], "type": "double", "id": "na", "label": "na"}, {"values": [0.0, 0.0], "type": "double", "id": "ambiguous", "label": "ambiguous"}, {"values": [32898860, 32898860], "type": "int64", "id": "fp.region.size", "label": "fp.region.size"}, {"values": [1.094262840718493, 1.094262840718493], "type": "double", "id": "fp.rate", "label": "fp.rate"}], "properties": [], "type": "Table", "id": "result", "label": "result"}], "version": "v0.3.10", "sampleInfo": [], "name": "som.py.comparison", "parameters": [], "timestamp": "Mon Dec 18 08:31:52 2017", "metadata": {"required": {"version": "v0.3.10", "id": "haplotypes", "module": "som.py", "description": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py generated this JSON file via command line /illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose"}}} \ No newline at end of file diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.stats.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.stats.csv new file mode 100644 index 0000000..8843a4b --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.stats.csv @@ -0,0 +1,3 @@ +,type,total.truth,total.query,tp,fp,fn,unk,ambi,recall,recall_lower,recall_upper,recall2,precision,precision_lower,precision_upper,na,ambiguous,fp.region.size,fp.rate,sompyversion,sompycmd +0,indels,2274,1984,1600,36,674,348,0,0.703605980651,0.684586459283,0.722107586725,0.703605980651,0.977995110024,0.970018022975,0.984284646594,0.175403225806,0.0,32898860,1.09426284072,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose +5,records,2274,1984,1600,36,674,348,0,0.703605980651,0.684586459283,0.722107586725,0.703605980651,0.977995110024,0.970018022975,0.984284646594,0.175403225806,0.0,32898860,1.09426284072,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.features.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.features.csv new file mode 100644 index 0000000..6315a80 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.features.csv @@ -0,0 +1,2659 @@ +,CHROM,POS,tag,REF,REF.truth,ALT,ALT.truth,EVS,FILTER,I.DP_normal,I.DP_tumor,I.T_ALT_RATE,I.count,I.tag,IC,IHP,INDELTYPE,LENGTH,MQ,MQ0,NT,NT_REF,N_AF,N_BCN,N_DP,N_DP_RATE,N_FDP,QSI_NT,QUAL,RC,RU,RU_LEN,S.1.VT,SGT,T_AF,T_BCN,T_DP,T_DP_RATE,T_FDP +0,chr22,11626593,TP,AGGCAGGCAGGCAGGCT,AGGCAGGCAGGCAGGCT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,2.44000000,42.00000000,0.00000000,1.00000000,GGCAGGCAGGCAGGCT,16.00000000,,ref->het,0.07333333,0.00000000,158.00000000,6.99115044,5.28000000 +1,chr22,12516913,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,53.00000000,2.34513274,0.00000000,58.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.18320611,0.00000000,135.00000000,5.97345133,2.02000000 +2,chr22,12565859,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.26415094,0.00000000,58.00000000,2.56637168,0.01000000 +3,chr22,12629905,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,61.00000000,2.69911504,0.64000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.09090909,0.00000000,171.00000000,7.56637168,1.17000000 +4,chr22,15319915,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.01000000,46.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18292683,0.00000000,88.00000000,3.89380531,0.00000000 +5,chr22,15376115,TP,ACACT,ACACT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.22000000,36.00000000,0.00000000,1.00000000,CACT,4.00000000,,ref->het,0.19736842,0.00000000,78.00000000,3.45132743,0.45000000 +6,chr22,15483810,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,35.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.10000000,0.00000000,60.00000000,2.65486726,0.01000000 +7,chr22,16127327,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,62.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.58333333,0.00000000,68.00000000,3.00884956,1.17000000 +8,chr22,16127710,TP,A,A,ACC,ACC,-1.00000000,,,,1.00000000,,,12.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.48000000,34.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.29411765,0.00000000,59.00000000,2.61061947,9.45000000 +9,chr22,16129058,TP,T,T,TTG,TTG,-1.00000000,,,,1.00000000,,,1.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.35000000,36.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.48275862,0.00000000,61.00000000,2.69911504,1.42000000 +10,chr22,16129447,TP,GCAA,GCAA,G,G,-1.00000000,,,,1.00000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.20000000,71.00000000,0.00000000,5.00000000,CAA,3.00000000,,ref->het,0.38666667,0.00000000,83.00000000,3.67256637,1.28000000 +11,chr22,16134104,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.27000000,63.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.46753247,0.00000000,85.00000000,3.76106195,1.41000000 +12,chr22,16153759,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.39000000,49.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.44615385,0.00000000,69.00000000,3.05309735,1.60000000 +13,chr22,16156456,TP,G,G,GAGAT,GAGAT,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.07000000,52.00000000,0.00000000,1.00000000,AGAT,4.00000000,,ref->het,0.39583333,0.00000000,56.00000000,2.47787611,0.89000000 +14,chr22,16157748,TP,TTTC,TTTC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.93000000,55.00000000,0.00000000,1.00000000,TTC,3.00000000,,ref->het,0.47945205,0.00000000,77.00000000,3.40707965,0.79000000 +15,chr22,16164202,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,15.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.25000000,48.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,80.00000000,3.53982301,9.34000000 +16,chr22,16165894,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.88000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.44615385,0.00000000,75.00000000,3.31858407,1.25000000 +17,chr22,16170229,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,9.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.42000000,40.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.41379310,0.00000000,74.00000000,3.27433628,3.26000000 +18,chr22,16170254,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,8.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.30000000,31.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.39655172,0.00000000,69.00000000,3.05309735,3.05000000 +19,chr22,16173878,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,12.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.52000000,62.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.52777778,0.00000000,83.00000000,3.67256637,3.37000000 +20,chr22,16189742,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.41000000,42.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.47169811,0.00000000,61.00000000,2.69911504,4.82000000 +21,chr22,16191878,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,54.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.45454545,0.00000000,73.00000000,3.23008850,0.11000000 +22,chr22,16193297,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.06000000,34.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.47222222,0.00000000,79.00000000,3.49557522,6.86000000 +23,chr22,16193385,TP,T,T,TAA,TAA,-1.00000000,,,,1.00000000,,,16.00000000,20.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,57.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.50000000,0.00000000,81.00000000,3.58407080,9.27000000 +24,chr22,16198949,TP,TTA,TTA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.73000000,52.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.42682927,0.00000000,87.00000000,3.84955752,3.13000000 +25,chr22,16202010,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.49000000,32.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.48387097,0.00000000,73.00000000,3.23008850,0.76000000 +26,chr22,16204770,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,1.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.77000000,44.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.51351351,0.00000000,79.00000000,3.49557522,1.50000000 +27,chr22,16209804,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,38.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.46428571,0.00000000,88.00000000,3.89380531,1.12000000 +28,chr22,16214713,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,14.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.36000000,44.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.47457627,0.00000000,70.00000000,3.09734513,5.88000000 +29,chr22,16218366,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.78000000,32.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.57500000,0.00000000,52.00000000,2.30088496,3.59000000 +30,chr22,16224468,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.05000000,72.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.31746032,0.00000000,71.00000000,3.14159292,1.70000000 +31,chr22,16226497,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.68000000,55.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.42857143,0.00000000,74.00000000,3.27433628,2.67000000 +32,chr22,16236484,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.48000000,46.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.33898305,0.00000000,65.00000000,2.87610619,0.42000000 +33,chr22,16242528,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.64000000,63.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.42592593,0.00000000,62.00000000,2.74336283,1.96000000 +34,chr22,16243560,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.37000000,45.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18644068,0.00000000,62.00000000,2.74336283,0.49000000 +35,chr22,16246800,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.66000000,58.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,88.00000000,3.89380531,0.45000000 +36,chr22,16247913,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,2.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.60000000,38.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.49253731,0.00000000,76.00000000,3.36283186,2.23000000 +37,chr22,16253887,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.06000000,43.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.56060606,0.00000000,71.00000000,3.14159292,1.06000000 +38,chr22,16254546,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.13000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.42592593,0.00000000,57.00000000,2.52212389,4.71000000 +39,chr22,16263722,TP,A,A,AATTCCATTCAATGATGATTCCATTTG,AATTCCATTCAATGATGATTCCATTTG,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,26.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,33.00000000,0.00000000,0.00000000,ATTCCATTCAATGATGATTCCATTTG,26.00000000,,ref->het,0.55555556,0.00000000,81.00000000,3.58407080,1.56000000 +40,chr22,16267128,TP,AATG,AATG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.28000000,55.00000000,0.00000000,2.00000000,ATG,3.00000000,,ref->het,0.51282051,0.00000000,82.00000000,3.62831858,0.87000000 +41,chr22,16270815,TP,C,C,CAGA,CAGA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.60000000,84.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.41666667,0.00000000,79.00000000,3.49557522,1.32000000 +42,chr22,16271237,TP,A,A,ATC,ATC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,70.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.46428571,0.00000000,86.00000000,3.80530973,0.08000000 +43,chr22,16360802,TP,AAATGG,AAATGG,A,A,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.19000000,52.00000000,0.00000000,6.00000000,AATGG,5.00000000,,ref->het,0.28301887,0.00000000,67.00000000,2.96460177,3.37000000 +44,chr22,16388683,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.00000000,53.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.42372881,0.00000000,67.00000000,2.96460177,0.81000000 +45,chr22,16396135,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.43000000,34.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.39583333,0.00000000,60.00000000,2.65486726,1.83000000 +46,chr22,16416607,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,39.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.15294118,0.00000000,89.00000000,3.93805310,1.45000000 +47,chr22,16423118,TP,TAC,TAC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.48000000,51.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,1.56000000 +48,chr22,16463060,TP,TAAC,TAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.06000000,50.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.25925926,0.00000000,59.00000000,2.61061947,0.85000000 +49,chr22,16582231,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.37000000,52.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.23809524,0.00000000,69.00000000,3.05309735,0.51000000 +50,chr22,16653688,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.29000000,48.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.18918919,0.00000000,80.00000000,3.53982301,2.25000000 +51,chr22,16658497,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.82000000,55.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.32954545,0.00000000,96.00000000,4.24778761,3.21000000 +52,chr22,16660339,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.63000000,35.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.20689655,0.00000000,68.00000000,3.00884956,6.21000000 +53,chr22,16685303,TP,T,T,TTAAA,TTAAA,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.87000000,47.00000000,0.00000000,7.00000000,TAAA,4.00000000,,ref->het,0.26415094,0.00000000,91.00000000,4.02654867,1.53000000 +54,chr22,16702467,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.30000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.21739130,0.00000000,48.00000000,2.12389381,0.68000000 +55,chr22,16724123,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.71000000,47.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.26666667,0.00000000,82.00000000,3.62831858,2.05000000 +56,chr22,16724166,TP,TATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,TATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,46.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.28000000,38.00000000,0.00000000,1.00000000,ATATATACAGTATAATATACAGTATATATAGTATAATATACAGTAG,46.00000000,,ref->het,0.17283951,0.00000000,93.00000000,4.11504425,1.76000000 +57,chr22,16731898,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.03000000,51.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.20731707,0.00000000,86.00000000,3.80530973,1.21000000 +58,chr22,16739263,TP,ACAAT,ACAAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,52.00000000,0.00000000,2.00000000,CAAT,4.00000000,,ref->het,0.24657534,0.00000000,78.00000000,3.45132743,0.15000000 +59,chr22,16742964,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.83000000,48.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19512195,0.00000000,85.00000000,3.76106195,0.98000000 +60,chr22,16767395,TP,AAAAAAGAAT,AAAAAAGAAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.68000000,52.00000000,0.00000000,2.00000000,AAAAAGAAT,9.00000000,,ref->het,0.27586207,0.00000000,71.00000000,3.14159292,0.43000000 +61,chr22,16772632,TP,TTG,TTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.72000000,63.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.24324324,0.00000000,80.00000000,3.53982301,0.28000000 +62,chr22,16778596,TP,AAT,AAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.02000000,36.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.14285714,0.00000000,84.00000000,3.71681416,1.66000000 +63,chr22,16795975,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,2.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.03000000,40.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.49367089,0.00000000,83.00000000,3.67256637,2.84000000 +64,chr22,16800207,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.37000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.51219512,0.00000000,87.00000000,3.84955752,0.60000000 +65,chr22,16802491,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,11.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.98000000,58.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.44155844,0.00000000,92.00000000,4.07079646,3.56000000 +66,chr22,16839250,TP,A,A,ATAGAC,ATAGAC,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.09000000,45.00000000,0.00000000,0.00000000,TAGAC,5.00000000,,ref->het,0.51282051,0.00000000,83.00000000,3.67256637,1.13000000 +67,chr22,16845002,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.26000000,84.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.43939394,0.00000000,70.00000000,3.09734513,1.95000000 +68,chr22,16845585,TP,T,T,TCA,TCA,-1.00000000,,,,1.00000000,,,15.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.68000000,55.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.21875000,0.00000000,95.00000000,4.20353982,3.12000000 +69,chr22,16855333,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.71000000,49.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.38461538,0.00000000,93.00000000,4.11504425,9.65000000 +70,chr22,16856297,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.78000000,77.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.47500000,0.00000000,99.00000000,4.38053097,2.44000000 +71,chr22,16906305,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.41176471,0.00000000,52.00000000,2.30088496,1.16000000 +72,chr22,16907283,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.42000000,41.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.16901408,0.00000000,77.00000000,3.40707965,0.80000000 +73,chr22,16930379,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.41000000,55.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.26562500,0.00000000,70.00000000,3.09734513,0.90000000 +74,chr22,16934516,TP,ATTTCAGTATTTAAATAC,ATTTCAGTATTTAAATAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.13000000,44.00000000,0.00000000,1.00000000,TTTCAGTATTTAAATAC,17.00000000,,ref->het,0.17525773,0.00000000,95.00000000,4.20353982,1.93000000 +75,chr22,16940689,TP,T,T,TGTGTGC,TGTGTGC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.08000000,52.00000000,0.00000000,0.00000000,GTGTGC,6.00000000,,ref->het,0.26415094,0.00000000,59.00000000,2.61061947,4.46000000 +76,chr22,16940788,TP,CATATG,CATATG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.54000000,61.00000000,0.00000000,1.00000000,ATATG,5.00000000,,ref->het,0.28000000,0.00000000,78.00000000,3.45132743,1.60000000 +77,chr22,16941310,TP,TTAA,TTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,51.00000000,0.00000000,2.00000000,TAA,3.00000000,,ref->het,0.27777778,0.00000000,76.00000000,3.36283186,0.31000000 +78,chr22,16950177,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,1.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.50000000,57.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.34177215,0.00000000,92.00000000,4.07079646,11.67000000 +79,chr22,16952634,TP,A,A,ATC,ATC,-1.00000000,,,,1.00000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.25000000,54.00000000,0.00000000,7.00000000,TC,2.00000000,,ref->het,0.43478261,0.00000000,77.00000000,3.40707965,1.14000000 +80,chr22,16957181,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.18000000,77.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.48484848,0.00000000,67.00000000,2.96460177,1.18000000 +81,chr22,16975989,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.52000000,74.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.48101266,0.00000000,96.00000000,4.24778761,1.87000000 +82,chr22,17000465,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.63000000,48.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.51666667,0.00000000,68.00000000,3.00884956,1.26000000 +83,chr22,17117218,TP,G,G,GGGAGA,GGGAGA,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.22000000,44.00000000,0.00000000,2.00000000,GGAGA,5.00000000,,ref->het,0.20779221,0.00000000,87.00000000,3.84955752,1.69000000 +84,chr22,17117269,TP,CAATT,CAATT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.43000000,39.00000000,0.00000000,1.00000000,AATT,4.00000000,,ref->het,0.17391304,0.00000000,76.00000000,3.36283186,0.45000000 +85,chr22,17161245,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,17.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.84000000,35.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.23255814,0.00000000,73.00000000,3.23008850,11.26000000 +86,chr22,17173105,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.71000000,69.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.24705882,0.00000000,92.00000000,4.07079646,1.63000000 +87,chr22,17192829,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.05000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.47761194,0.00000000,77.00000000,3.40707965,3.40000000 +88,chr22,17193678,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.00000000,37.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.47727273,0.00000000,59.00000000,2.61061947,8.54000000 +89,chr22,17320093,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.39000000,49.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.33333333,0.00000000,63.00000000,2.78761062,0.81000000 +90,chr22,17322838,TP,TCAGA,TCAGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.78000000,36.00000000,0.00000000,1.00000000,CAGA,4.00000000,,ref->het,0.17187500,0.00000000,73.00000000,3.23008850,5.07000000 +91,chr22,17324174,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.99000000,37.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,88.00000000,3.89380531,7.08000000 +92,chr22,17324898,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.90000000,55.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.29090909,0.00000000,61.00000000,2.69911504,1.80000000 +93,chr22,17325232,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.77000000,55.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.22222222,0.00000000,64.00000000,2.83185841,0.92000000 +94,chr22,17327899,TP,CAAACATAT,CAAACATAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.22000000,43.00000000,0.00000000,1.00000000,AAACATAT,8.00000000,,ref->het,0.17021277,0.00000000,58.00000000,2.56637168,0.49000000 +95,chr22,17331945,TP,A,A,ACT,ACT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.41000000,60.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,1.02000000 +96,chr22,17386363,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.08000000,34.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24657534,0.00000000,87.00000000,3.84955752,0.72000000 +97,chr22,17390830,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.45000000,37.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.17333333,0.00000000,87.00000000,3.84955752,0.59000000 +98,chr22,17398203,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.20000000,32.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.17647059,0.00000000,97.00000000,4.29203540,4.29000000 +99,chr22,17417326,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.29000000,45.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.23287671,0.00000000,83.00000000,3.67256637,0.77000000 +100,chr22,17421871,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.33000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23076923,0.00000000,59.00000000,2.61061947,4.08000000 +101,chr22,17467797,TP,A,A,AAGAG,AAGAG,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.19000000,42.00000000,0.00000000,6.00000000,AG,2.00000000,,ref->het,0.18840580,0.00000000,78.00000000,3.45132743,1.16000000 +102,chr22,17470392,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,17.00000000,25.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,4.61000000,32.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.28260870,0.00000000,71.00000000,3.14159292,9.20000000 +103,chr22,17470691,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,44.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26315789,0.00000000,79.00000000,3.49557522,1.35000000 +104,chr22,17510470,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.99000000,62.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.31428571,0.00000000,86.00000000,3.80530973,4.92000000 +105,chr22,17513921,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.57000000,48.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.18604651,0.00000000,91.00000000,4.02654867,1.79000000 +106,chr22,17516282,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.04000000,66.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.30864198,0.00000000,88.00000000,3.89380531,1.48000000 +107,chr22,17516631,TP,T,T,TTTGCTGTTG,TTTGCTGTTG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.29000000,58.00000000,0.00000000,0.00000000,TTGCTGTTG,9.00000000,,ref->het,0.29230769,0.00000000,71.00000000,3.14159292,1.27000000 +108,chr22,17517246,TP,ATCTC,ATCTC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.18000000,49.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.20338983,0.00000000,62.00000000,2.74336283,0.83000000 +109,chr22,17518129,TP,TCTA,TCTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.03000000,48.00000000,0.00000000,1.00000000,CTA,3.00000000,,ref->het,0.19354839,0.00000000,102.00000000,4.51327434,1.44000000 +110,chr22,17519794,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.62000000,38.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,78.00000000,3.45132743,4.82000000 +111,chr22,17528190,TP,TGTG,TGTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.41000000,59.00000000,0.00000000,1.00000000,GTG,3.00000000,,ref->het,0.27027027,0.00000000,82.00000000,3.62831858,2.10000000 +112,chr22,17530168,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.50000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23214286,0.00000000,75.00000000,3.31858407,3.14000000 +113,chr22,17535687,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.30000000,50.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.25675676,0.00000000,88.00000000,3.89380531,4.23000000 +114,chr22,17535730,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,0.27000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22784810,0.00000000,91.00000000,4.02654867,2.88000000 +115,chr22,17572413,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.79000000,37.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.18518519,0.00000000,61.00000000,2.69911504,8.65000000 +116,chr22,17574234,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,55.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26250000,0.00000000,88.00000000,3.89380531,1.44000000 +117,chr22,17581244,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,53.00000000,0.00000000,1.00000000,GT,2.00000000,,ref->het,0.25287356,0.00000000,91.00000000,4.02654867,2.81000000 +118,chr22,17603364,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.56000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,96.00000000,4.24778761,2.17000000 +119,chr22,17606008,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,58.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.32812500,0.00000000,72.00000000,3.18584071,0.34000000 +120,chr22,17640171,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,3.35000000,49.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.17647059,0.00000000,74.00000000,3.27433628,2.71000000 +121,chr22,17642597,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.86000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.26666667,0.00000000,86.00000000,3.80530973,5.28000000 +122,chr22,17703172,TP,T,T,TACACACACACAC,TACACACACACAC,-1.00000000,,,,0.50000000,,,14.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,51.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.25316456,0.00000000,86.00000000,3.80530973,0.66000000 +123,chr22,17720154,TP,T,T,TTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTC,TTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTC,-1.00000000,,,,0.50000000,,,15.00000000,7.00000000,1.00000000,32.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.27000000,42.00000000,0.00000000,7.00000000,TTTC,4.00000000,,ref->het,0.21153846,0.00000000,66.00000000,2.92035398,1.28000000 +124,chr22,17740102,TP,GGCCACGCTCAACT,GGCCACGCTCAACT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.01000000,52.00000000,0.00000000,1.00000000,GCCACGCTCAACT,13.00000000,,ref->het,0.20270270,0.00000000,77.00000000,3.40707965,1.94000000 +125,chr22,17742274,TP,TGGA,TGGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.26000000,35.00000000,0.00000000,1.00000000,GGA,3.00000000,,ref->het,0.12903226,0.00000000,64.00000000,2.83185841,1.50000000 +126,chr22,17756950,TP,TTAAC,TTAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.00000000,46.00000000,0.00000000,1.00000000,TAAC,4.00000000,,ref->het,0.29508197,0.00000000,61.00000000,2.69911504,1.35000000 +127,chr22,17757004,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.01000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28767123,0.00000000,75.00000000,3.31858407,0.20000000 +128,chr22,17769042,TP,AAAAT,AAAAT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,42.00000000,0.00000000,8.00000000,AAAT,4.00000000,,ref->het,0.18918919,0.00000000,107.00000000,4.73451327,5.05000000 +129,chr22,17775002,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.96000000,31.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.18840580,0.00000000,79.00000000,3.49557522,3.76000000 +130,chr22,17799949,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,18.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.48000000,45.00000000,0.00000000,17.00000000,AC,2.00000000,,ref->het,0.26388889,0.00000000,91.00000000,4.02654867,3.23000000 +131,chr22,17802061,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.21000000,34.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,67.00000000,2.96460177,4.22000000 +132,chr22,17809629,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.12000000,35.00000000,0.00000000,5.00000000,AAACA,5.00000000,,ref->het,0.13432836,0.00000000,96.00000000,4.24778761,1.25000000 +133,chr22,17821024,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.96000000,38.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.11904762,0.00000000,89.00000000,3.93805310,2.83000000 +134,chr22,17826202,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.87000000,58.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23943662,0.00000000,78.00000000,3.45132743,2.11000000 +135,chr22,17826274,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,48.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20289855,0.00000000,78.00000000,3.45132743,0.29000000 +136,chr22,17826593,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.40000000,48.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,99.00000000,4.38053097,1.75000000 +137,chr22,17826701,TP,T,T,TGAGAA,TGAGAA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.76000000,48.00000000,0.00000000,2.00000000,GAGAA,5.00000000,,ref->het,0.18055556,0.00000000,80.00000000,3.53982301,1.45000000 +138,chr22,17826882,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.65000000,58.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.25301205,0.00000000,91.00000000,4.02654867,2.92000000 +139,chr22,17829894,TP,ACTG,ACTG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,65.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.33870968,0.00000000,69.00000000,3.05309735,0.76000000 +140,chr22,17831253,TP,CCCT,CCCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.16000000,53.00000000,0.00000000,2.00000000,CCT,3.00000000,,ref->het,0.24137931,0.00000000,93.00000000,4.11504425,1.04000000 +141,chr22,17833310,TP,C,C,CCTG,CCTG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.05000000,49.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.24691358,0.00000000,86.00000000,3.80530973,0.62000000 +142,chr22,17838498,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.98000000,37.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.08791209,0.00000000,97.00000000,4.29203540,1.56000000 +143,chr22,17839324,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.68000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21818182,0.00000000,67.00000000,2.96460177,15.70000000 +144,chr22,17843852,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,14.00000000,12.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.42000000,32.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,79.00000000,3.49557522,2.39000000 +145,chr22,17846396,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,2.39000000,37.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.17948718,0.00000000,87.00000000,3.84955752,3.09000000 +146,chr22,17854224,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,38.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.14705882,0.00000000,74.00000000,3.27433628,2.94000000 +147,chr22,17860129,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.30000000,48.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.24675325,0.00000000,85.00000000,3.76106195,1.89000000 +148,chr22,17865085,TP,TTTTATTTA,TTTTATTTA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.33000000,33.00000000,0.00000000,11.00000000,TTTA,4.00000000,,ref->het,0.17307692,0.00000000,81.00000000,3.58407080,1.05000000 +149,chr22,17867234,TP,TCAGA,TCAGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.24000000,32.00000000,0.00000000,2.00000000,CAGA,4.00000000,,ref->het,0.13636364,0.00000000,75.00000000,3.31858407,2.74000000 +150,chr22,17888444,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.26000000,55.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.26582278,0.00000000,83.00000000,3.67256637,1.82000000 +151,chr22,17891256,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.65000000,39.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20270270,0.00000000,83.00000000,3.67256637,4.79000000 +152,chr22,17898107,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.52000000,31.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.18666667,0.00000000,84.00000000,3.71681416,2.78000000 +153,chr22,17907218,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.70000000,33.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,4.88000000 +154,chr22,17911026,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.12000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,84.00000000,3.71681416,1.97000000 +155,chr22,17911335,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.04000000,49.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.30303030,0.00000000,80.00000000,3.53982301,2.96000000 +156,chr22,17914267,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.10000000,56.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.21686747,0.00000000,90.00000000,3.98230088,3.36000000 +157,chr22,17914431,TP,T,T,TTGCAGATGGGGAAAG,TTGCAGATGGGGAAAG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.07000000,41.00000000,0.00000000,1.00000000,TGCAGATGGGGAAAG,15.00000000,,ref->het,0.18333333,0.00000000,68.00000000,3.00884956,0.70000000 +158,chr22,17945008,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.19000000,31.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.20967742,0.00000000,75.00000000,3.31858407,8.57000000 +159,chr22,17950421,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.56000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,73.00000000,3.23008850,17.24000000 +160,chr22,17958133,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.28000000,53.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.21176471,0.00000000,88.00000000,3.89380531,2.09000000 +161,chr22,17967486,TP,A,A,ACACACC,ACACACC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.26000000,42.00000000,0.00000000,0.00000000,CACACC,6.00000000,,ref->het,0.17333333,0.00000000,80.00000000,3.53982301,1.35000000 +162,chr22,17970800,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.36000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17500000,0.00000000,87.00000000,3.84955752,0.53000000 +163,chr22,17979784,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.77000000,33.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,79.00000000,3.49557522,4.74000000 +164,chr22,17981516,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.47000000,49.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,82.00000000,3.62831858,1.23000000 +165,chr22,17987803,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.07000000,46.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,88.00000000,3.89380531,1.24000000 +166,chr22,17988424,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.04000000,52.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.20833333,0.00000000,78.00000000,3.45132743,1.24000000 +167,chr22,17998562,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.56000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25373134,0.00000000,72.00000000,3.18584071,5.55000000 +168,chr22,18007051,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.26000000,43.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,57.00000000,2.52212389,1.09000000 +169,chr22,18009208,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,37.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.10389610,0.00000000,86.00000000,3.80530973,2.60000000 +170,chr22,18011732,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.02000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22807018,0.00000000,71.00000000,3.14159292,1.74000000 +171,chr22,18035443,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,33.00000000,0.00000000,7.00000000,AAAT,4.00000000,,ref->het,0.18867925,0.00000000,76.00000000,3.36283186,1.60000000 +172,chr22,18098767,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.32000000,59.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.21794872,0.00000000,88.00000000,3.89380531,2.01000000 +173,chr22,18116229,TP,A,A,AGCCATTC,AGCCATTC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.49000000,57.00000000,0.00000000,1.00000000,GCCATTC,7.00000000,,ref->het,0.27906977,0.00000000,98.00000000,4.33628319,1.60000000 +174,chr22,18962801,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,40.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,62.00000000,2.74336283,1.30000000 +175,chr22,18969834,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.00000000,40.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,55.00000000,2.43362832,1.72000000 +176,chr22,18988513,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.44000000,41.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.30434783,0.00000000,80.00000000,3.53982301,1.85000000 +177,chr22,19004997,TP,C,C,CAG,CAG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.04000000,58.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,2.02000000 +178,chr22,19004999,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.04000000,59.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,2.06000000 +179,chr22,19007461,TP,TTGTGTGTGTG,TTGTGTGTGTG,T,T,-1.00000000,,,,0.50000000,,,18.00000000,4.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.24000000,35.00000000,0.00000000,23.00000000,TG,2.00000000,,ref->het,0.12500000,0.00000000,100.00000000,4.42477876,2.91000000 +180,chr22,19011896,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.58000000,32.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.23636364,0.00000000,76.00000000,3.36283186,10.48000000 +181,chr22,19012395,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.37000000,43.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.18181818,0.00000000,78.00000000,3.45132743,3.47000000 +182,chr22,19013974,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.41000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,66.00000000,2.92035398,1.70000000 +183,chr22,19021099,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.67000000,78.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.48148148,0.00000000,56.00000000,2.47787611,1.48000000 +184,chr22,19022683,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.01000000,46.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.44000000,0.00000000,55.00000000,2.43362832,0.31000000 +185,chr22,19023254,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.65000000,31.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.13636364,0.00000000,75.00000000,3.31858407,9.69000000 +186,chr22,19027733,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.13000000,64.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.34375000,0.00000000,77.00000000,3.40707965,1.19000000 +187,chr22,19028875,TP,AAAAAC,AAAAAC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.77000000,31.00000000,0.00000000,4.00000000,AAAAC,5.00000000,,ref->het,0.07547170,0.00000000,71.00000000,3.14159292,2.26000000 +188,chr22,19030493,TP,CTGGGCCTTTGGGCCTTGGGTCTGGG,CTGGGCCTTTGGGCCTTGGGTCTGGG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.50000000,38.00000000,0.00000000,2.00000000,TGGGCCTTTGGGCCTTGGGTCTGGG,25.00000000,,ref->het,0.14814815,0.00000000,67.00000000,2.96460177,0.11000000 +189,chr22,19033420,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,41.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.26562500,0.00000000,80.00000000,3.53982301,3.37000000 +190,chr22,19034865,TP,AGGCGAGCATGATGCCAGG,AGGCGAGCATGATGCCAGG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.96000000,43.00000000,0.00000000,1.00000000,GGCGAGCATGATGCCAGG,18.00000000,,ref->het,0.16000000,0.00000000,74.00000000,3.27433628,1.92000000 +191,chr22,19037462,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.24000000,51.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,70.00000000,3.09734513,1.90000000 +192,chr22,19039899,TP,AAGG,AAGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.76000000,49.00000000,0.00000000,2.00000000,AGG,3.00000000,,ref->het,0.26027397,0.00000000,78.00000000,3.45132743,1.25000000 +193,chr22,19040729,TP,CACT,CACT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.44000000,44.00000000,0.00000000,1.00000000,ACT,3.00000000,,ref->het,0.24096386,0.00000000,88.00000000,3.89380531,0.03000000 +194,chr22,19042981,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.88000000,65.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.31250000,0.00000000,84.00000000,3.71681416,1.79000000 +195,chr22,19043702,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.23000000,44.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,81.00000000,3.58407080,3.45000000 +196,chr22,19045365,TP,T,T,TAAAC,TAAAC,-1.00000000,,,,1.00000000,,,3.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.69000000,72.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.55223881,0.00000000,81.00000000,3.58407080,2.26000000 +197,chr22,19046234,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,59.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.53521127,0.00000000,82.00000000,3.62831858,2.30000000 +198,chr22,19052281,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.71000000,35.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.19672131,0.00000000,64.00000000,2.83185841,2.05000000 +199,chr22,19052609,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.54000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.39655172,0.00000000,71.00000000,3.14159292,3.53000000 +200,chr22,19054227,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.42000000,41.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.12790698,0.00000000,92.00000000,4.07079646,0.30000000 +201,chr22,19054741,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.39000000,53.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.57627119,0.00000000,77.00000000,3.40707965,4.91000000 +202,chr22,19057761,TP,C,C,CCTGT,CCTGT,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,34.00000000,0.00000000,0.00000000,CTGT,4.00000000,,ref->het,0.46875000,0.00000000,68.00000000,3.00884956,0.53000000 +203,chr22,19058115,TP,GCT,GCT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.24000000,47.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.22972973,0.00000000,80.00000000,3.53982301,3.13000000 +204,chr22,19063086,TP,T,T,TCCATGTC,TCCATGTC,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.02000000,34.00000000,0.00000000,0.00000000,CCATGTC,7.00000000,,ref->het,0.43661972,0.00000000,72.00000000,3.18584071,1.90000000 +205,chr22,19065956,TP,A,A,ATG,ATG,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,36.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.46739130,0.00000000,102.00000000,4.51327434,0.91000000 +206,chr22,19066433,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.31000000,43.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24358974,0.00000000,91.00000000,4.02654867,5.46000000 +207,chr22,19067692,TP,CTAAATAAA,CTAAATAAA,C,C,-1.00000000,,,,1.00000000,,,7.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.93000000,61.00000000,0.00000000,9.00000000,TAAA,4.00000000,,ref->het,0.41509434,0.00000000,75.00000000,3.31858407,0.31000000 +208,chr22,19074412,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.38000000,38.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,62.00000000,2.74336283,7.77000000 +209,chr22,19076141,TP,T,T,TTTTTA,TTTTTA,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.44000000,77.00000000,0.00000000,0.00000000,TTTTA,5.00000000,,ref->het,0.32098765,0.00000000,86.00000000,3.80530973,3.08000000 +210,chr22,19077832,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.39000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,82.00000000,3.62831858,5.33000000 +211,chr22,19082184,TP,GACT,GACT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.06000000,38.00000000,0.00000000,1.00000000,ACT,3.00000000,,ref->het,0.15000000,0.00000000,65.00000000,2.87610619,7.37000000 +212,chr22,19083086,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,14.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.02857143,0.00000000,41.00000000,1.81415929,3.53000000,37.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.48387097,0.00000000,78.00000000,3.45132743,5.90000000 +213,chr22,19090811,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.87000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.48611111,0.00000000,78.00000000,3.45132743,2.69000000 +214,chr22,19091079,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.45000000,101.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.47435897,0.00000000,82.00000000,3.62831858,1.16000000 +215,chr22,19092897,TP,AGAG,AGAG,A,A,-1.00000000,,,,1.00000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.65000000,70.00000000,0.00000000,5.00000000,GAG,3.00000000,,ref->het,0.51428571,0.00000000,79.00000000,3.49557522,4.09000000 +216,chr22,19092988,TP,AAGAAG,AAGAAG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.77000000,62.00000000,0.00000000,2.00000000,AGAAG,5.00000000,,ref->het,0.43750000,0.00000000,83.00000000,3.67256637,2.77000000 +217,chr22,19094007,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.81000000,42.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.24705882,0.00000000,97.00000000,4.29203540,2.61000000 +218,chr22,19094017,TP,TAATA,TAATA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.75000000,56.00000000,0.00000000,2.00000000,AATA,4.00000000,,ref->het,0.24468085,0.00000000,100.00000000,4.42477876,2.67000000 +219,chr22,19094423,TP,TCAA,TCAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.00000000,50.00000000,0.00000000,2.00000000,CAA,3.00000000,,ref->het,0.18000000,0.00000000,109.00000000,4.82300885,2.86000000 +220,chr22,19095737,TP,C,C,CTTTT,CTTTT,-1.00000000,,,,1.00000000,,,11.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.17000000,72.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.46753247,0.00000000,88.00000000,3.89380531,2.52000000 +221,chr22,19099970,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.83000000,44.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.49206349,0.00000000,85.00000000,3.76106195,3.68000000 +222,chr22,19101446,TP,AAAGT,AAAGT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.05000000,56.00000000,0.00000000,1.00000000,AAGT,4.00000000,,ref->het,0.27397260,0.00000000,77.00000000,3.40707965,1.04000000 +223,chr22,19104903,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.65000000,56.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.27380952,0.00000000,86.00000000,3.80530973,1.55000000 +224,chr22,19110636,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.73000000,64.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.38709677,0.00000000,78.00000000,3.45132743,3.99000000 +225,chr22,19112222,TP,G,G,GAGGTCGCACCACTGCACTCCAGCCT,GAGGTCGCACCACTGCACTCCAGCCT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.58000000,59.00000000,0.00000000,1.00000000,AGGTCGCACCACTGCACTCCAGCCT,25.00000000,,ref->het,0.32000000,0.00000000,67.00000000,2.96460177,14.89000000 +226,chr22,19116954,TP,GATCACCTCCC,GATCACCTCCC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.71000000,46.00000000,0.00000000,2.00000000,ATCACCTCCC,10.00000000,,ref->het,0.18604651,0.00000000,95.00000000,4.20353982,2.01000000 +227,chr22,19123061,TP,C,C,CTGTA,CTGTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.34000000,55.00000000,0.00000000,0.00000000,TGTA,4.00000000,,ref->het,0.21428571,0.00000000,88.00000000,3.89380531,0.95000000 +228,chr22,19124847,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.67000000,59.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.25000000,0.00000000,87.00000000,3.84955752,1.67000000 +229,chr22,19141121,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.92000000,30.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22580645,0.00000000,74.00000000,3.27433628,8.51000000 +230,chr22,19158795,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.50000000,39.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,77.00000000,3.40707965,1.33000000 +231,chr22,19159306,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.72000000,44.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.17073171,0.00000000,86.00000000,3.80530973,3.32000000 +232,chr22,19186613,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.41000000,59.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.29032258,0.00000000,77.00000000,3.40707965,4.51000000 +233,chr22,19334946,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.00000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.26027397,0.00000000,76.00000000,3.36283186,1.38000000 +234,chr22,19623939,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.91000000,31.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.22857143,0.00000000,88.00000000,3.89380531,6.46000000 +235,chr22,19656123,TP,T,T,TAGAA,TAGAA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,52.00000000,0.00000000,1.00000000,AGAA,4.00000000,,ref->het,0.37878788,0.00000000,70.00000000,3.09734513,3.84000000 +236,chr22,19661508,TP,C,C,CCCTT,CCCTT,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.08000000,41.00000000,0.00000000,0.00000000,CCTT,4.00000000,,ref->het,0.16949153,0.00000000,78.00000000,3.45132743,2.81000000 +237,chr22,19687368,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,36.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.32894737,0.00000000,86.00000000,3.80530973,4.08000000 +238,chr22,19714645,TP,C,C,CTGCCCGCG,CTGCCCGCG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.21000000,54.00000000,0.00000000,2.00000000,TGCCCGCG,8.00000000,,ref->het,0.21621622,0.00000000,83.00000000,3.67256637,2.57000000 +239,chr22,19760224,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.99000000,50.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.32258065,0.00000000,65.00000000,2.87610619,3.54000000 +240,chr22,19798607,TP,CCTCCTGCCCAG,CCTCCTGCCCAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.79000000,49.00000000,0.00000000,2.00000000,CTCCTGCCCAG,11.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,1.94000000 +241,chr22,19815588,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.50000000,48.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.22972973,0.00000000,84.00000000,3.71681416,0.93000000 +242,chr22,19952656,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,3.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.84000000,47.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.17647059,0.00000000,83.00000000,3.67256637,4.74000000 +243,chr22,19973487,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,52.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.20481928,0.00000000,92.00000000,4.07079646,3.16000000 +244,chr22,20000499,TP,GCTCCCACCGC,GCTCCCACCGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.54000000,49.00000000,0.00000000,1.00000000,CTCCCACCGC,10.00000000,,ref->het,0.22680412,0.00000000,96.00000000,4.24778761,0.65000000 +245,chr22,20003865,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.25000000,50.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.17391304,0.00000000,101.00000000,4.46902655,1.53000000 +246,chr22,20142681,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.59000000,36.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.12820513,0.00000000,83.00000000,3.67256637,0.99000000 +247,chr22,20301349,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,5.28000000,32.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25423729,0.00000000,84.00000000,3.71681416,15.95000000 +248,chr22,20318463,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.05000000,42.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.16091954,0.00000000,99.00000000,4.38053097,3.02000000 +249,chr22,20378246,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.11000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.24358974,0.00000000,81.00000000,3.58407080,1.28000000 +250,chr22,20470349,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.35000000,30.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.27777778,0.00000000,84.00000000,3.71681416,8.62000000 +251,chr22,20516317,TP,A,A,AAATAAT,AAATAAT,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.26000000,43.00000000,0.00000000,8.00000000,AAT,3.00000000,,ref->het,0.25925926,0.00000000,72.00000000,3.18584071,1.71000000 +252,chr22,20562407,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,54.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.31578947,0.00000000,81.00000000,3.58407080,1.12000000 +253,chr22,20575768,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.41000000,47.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.21686747,0.00000000,91.00000000,4.02654867,3.56000000 +254,chr22,20576691,TP,TGGG,TGGG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.53000000,46.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.17142857,0.00000000,74.00000000,3.27433628,1.17000000 +255,chr22,20595015,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.07000000,37.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.15277778,0.00000000,80.00000000,3.53982301,1.13000000 +256,chr22,20617360,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,34.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.20430108,0.00000000,100.00000000,4.42477876,1.96000000 +257,chr22,20621310,TP,GGGT,GGGT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.45000000,48.00000000,0.00000000,2.00000000,GGT,3.00000000,,ref->het,0.21621622,0.00000000,80.00000000,3.53982301,1.62000000 +258,chr22,20625060,TP,AAC,AAC,A,A,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.47000000,42.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.21505376,0.00000000,104.00000000,4.60176991,2.46000000 +259,chr22,20649058,TP,G,G,GGAAGTGATCAGCTTAGA,GGAAGTGATCAGCTTAGA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.80000000,52.00000000,0.00000000,0.00000000,GAAGTGATCAGCTTAGA,17.00000000,,ref->het,0.20689655,0.00000000,94.00000000,4.15929204,2.51000000 +260,chr22,20659671,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.15000000,48.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,97.00000000,4.29203540,1.72000000 +261,chr22,20785943,TP,CATG,CATG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.56000000,45.00000000,0.00000000,1.00000000,ATG,3.00000000,,ref->het,0.18181818,0.00000000,85.00000000,3.76106195,1.55000000 +262,chr22,20799479,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.31000000,49.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.18666667,0.00000000,80.00000000,3.53982301,0.19000000 +263,chr22,20888311,TP,TCACACACA,TCACACACA,T,T,-1.00000000,,,,0.50000000,,,18.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.89000000,37.00000000,0.00000000,22.00000000,CA,2.00000000,,ref->het,0.15789474,0.00000000,80.00000000,3.53982301,3.40000000 +264,chr22,20947640,TP,TTTTTC,TTTTTC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.59000000,43.00000000,0.00000000,4.00000000,TTTTC,5.00000000,,ref->het,0.27692308,0.00000000,82.00000000,3.62831858,6.04000000 +265,chr22,20948695,TP,TTGCTGCGTTG,TTGCTGCGTTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.36000000,55.00000000,0.00000000,1.00000000,TGCTGCGTTG,10.00000000,,ref->het,0.20481928,0.00000000,86.00000000,3.80530973,0.10000000 +266,chr22,20977215,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,48.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.19230769,0.00000000,82.00000000,3.62831858,1.04000000 +267,chr22,21003609,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.56000000,32.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.35087719,0.00000000,64.00000000,2.83185841,5.22000000 +268,chr22,21045251,TP,A,A,ACAG,ACAG,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.44000000,40.00000000,0.00000000,2.00000000,CAG,3.00000000,,ref->het,0.14285714,0.00000000,80.00000000,3.53982301,1.37000000 +269,chr22,21046330,TP,A,A,ACCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,ACCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,33.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,41.00000000,0.00000000,0.00000000,CCCTGAAATGGAATCAGAGCCGGTTTTCCTGTG,33.00000000,,ref->het,0.15384615,0.00000000,83.00000000,3.67256637,0.81000000 +270,chr22,21066398,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.97000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.21978022,0.00000000,96.00000000,4.24778761,1.38000000 +271,chr22,21091194,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.88000000,34.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,4.45000000 +272,chr22,21092341,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.81000000,42.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.29090909,0.00000000,76.00000000,3.36283186,4.73000000 +273,chr22,21095508,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.81000000,68.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.25675676,0.00000000,81.00000000,3.58407080,1.07000000 +274,chr22,21103929,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.40000000,48.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,94.00000000,4.15929204,2.14000000 +275,chr22,21107241,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.07000000,43.00000000,0.00000000,3.00000000,CT,2.00000000,,ref->het,0.18032787,0.00000000,66.00000000,2.92035398,0.57000000 +276,chr22,21111042,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.58000000,43.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.20634921,0.00000000,74.00000000,3.27433628,4.31000000 +277,chr22,21229306,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.01000000,38.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.10169492,0.00000000,119.00000000,5.26548673,0.51000000 +278,chr22,21689385,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.53000000,56.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.21348315,0.00000000,96.00000000,4.24778761,1.73000000 +279,chr22,21689624,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.19000000,44.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.15000000,0.00000000,87.00000000,3.84955752,1.49000000 +280,chr22,21692064,TP,GTTTTC,GTTTTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.93000000,52.00000000,0.00000000,2.00000000,TTTTC,5.00000000,,ref->het,0.20224719,0.00000000,93.00000000,4.11504425,2.81000000 +281,chr22,21715587,TP,ATTT,ATTT,A,A,-1.00000000,,,,0.50000000,,,5.00000000,15.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.02000000,34.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.13636364,0.00000000,67.00000000,2.96460177,1.48000000 +282,chr22,21787058,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,2.74000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.17241379,0.00000000,97.00000000,4.29203540,3.29000000 +283,chr22,21789843,TP,T,T,TATAAC,TATAAC,-1.00000000,,,,0.50000000,,,10.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.75000000,46.00000000,0.00000000,9.00000000,ATAAC,5.00000000,,ref->het,0.24324324,0.00000000,105.00000000,4.64601770,2.07000000 +284,chr22,21791272,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.94000000,49.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,52.00000000,2.30088496,2.84000000 +285,chr22,21823977,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.64000000,34.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.21666667,0.00000000,75.00000000,3.31858407,2.11000000 +286,chr22,21851693,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.87000000,40.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.15294118,0.00000000,96.00000000,4.24778761,6.09000000 +287,chr22,21855306,TP,GTTCT,GTTCT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.12000000,54.00000000,0.00000000,2.00000000,TTCT,4.00000000,,ref->het,0.24096386,0.00000000,90.00000000,3.98230088,0.63000000 +288,chr22,21912940,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.95000000,55.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,78.00000000,3.45132743,3.43000000 +289,chr22,21914572,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.81000000,63.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.28169014,0.00000000,78.00000000,3.45132743,3.41000000 +290,chr22,21916591,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,7.19000000,40.00000000,0.00000000,11.00000000,C,1.00000000,,ref->het,0.30357143,0.00000000,87.00000000,3.84955752,17.81000000 +291,chr22,21940473,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,15.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.00000000,33.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.20588235,0.00000000,81.00000000,3.58407080,7.59000000 +292,chr22,21965385,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.22000000,43.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.21917808,0.00000000,77.00000000,3.40707965,1.61000000 +293,chr22,21971954,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,38.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.15476190,0.00000000,88.00000000,3.89380531,1.03000000 +294,chr22,22142065,TP,T,T,TAAATG,TAAATG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,39.00000000,0.00000000,0.00000000,AAATG,5.00000000,,ref->het,0.07894737,0.00000000,80.00000000,3.53982301,0.62000000 +295,chr22,22142299,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,36.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.12162162,0.00000000,80.00000000,3.53982301,0.70000000 +296,chr22,22147199,TP,TCAGCATGA,TCAGCATGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.45000000,37.00000000,0.00000000,2.00000000,CAGCATGA,8.00000000,,ref->het,0.07058824,0.00000000,89.00000000,3.93805310,2.42000000 +297,chr22,22150639,TP,T,T,TGAAAA,TGAAAA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.49000000,38.00000000,0.00000000,1.00000000,GAAAA,5.00000000,,ref->het,0.06666667,0.00000000,81.00000000,3.58407080,2.01000000 +298,chr22,22150750,TP,GAAGAA,GAAGAA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.73000000,41.00000000,0.00000000,2.00000000,AAGAA,5.00000000,,ref->het,0.08641975,0.00000000,86.00000000,3.80530973,3.08000000 +299,chr22,22157519,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.01000000,38.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.12857143,0.00000000,74.00000000,3.27433628,0.32000000 +300,chr22,22170700,TP,CCTTCAGCCCTTA,CCTTCAGCCCTTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.13000000,64.00000000,0.00000000,1.00000000,CTTCAGCCCTTA,12.00000000,,ref->het,0.36111111,0.00000000,76.00000000,3.36283186,2.05000000 +301,chr22,22177720,TP,A,A,ACT,ACT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.18000000,59.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.22857143,0.00000000,75.00000000,3.31858407,0.57000000 +302,chr22,22177847,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.36000000,56.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.29487179,0.00000000,82.00000000,3.62831858,5.63000000 +303,chr22,22197946,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,4.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.01000000,59.00000000,0.00000000,3.00000000,AAAAC,5.00000000,,ref->het,0.26315789,0.00000000,78.00000000,3.45132743,1.46000000 +304,chr22,22557218,TP,A,A,ACTG,ACTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.60000000,37.00000000,0.00000000,1.00000000,CTG,3.00000000,,ref->het,0.14545455,0.00000000,59.00000000,2.61061947,1.38000000 +305,chr22,22606080,TP,TTTTTC,TTTTTC,T,T,-1.00000000,,,,1.00000000,,,3.00000000,9.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.04000000,39.00000000,0.00000000,4.00000000,TTTTC,5.00000000,,ref->het,0.18518519,0.00000000,70.00000000,3.09734513,2.75000000 +306,chr22,22606404,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.54000000,72.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.29230769,0.00000000,69.00000000,3.05309735,1.58000000 +307,chr22,22623388,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.32000000,70.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.27941176,0.00000000,80.00000000,3.53982301,2.78000000 +308,chr22,22629815,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.99000000,51.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.26785714,0.00000000,61.00000000,2.69911504,3.19000000 +309,chr22,22635686,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.45000000,41.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.18750000,0.00000000,70.00000000,3.09734513,0.32000000 +310,chr22,22922608,TP,G,G,GCC,GCC,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.69000000,46.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19402985,0.00000000,76.00000000,3.36283186,2.22000000 +311,chr22,22928363,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.26000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25581395,0.00000000,91.00000000,4.02654867,2.75000000 +312,chr22,22932716,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.11000000,39.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.13333333,0.00000000,80.00000000,3.53982301,1.68000000 +313,chr22,23054900,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,42.00000000,0.00000000,1.00000000,CTC,3.00000000,,ref->het,0.21176471,0.00000000,89.00000000,3.93805310,1.75000000 +314,chr22,23070600,TP,C,C,CGCCGCTGA,CGCCGCTGA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.38000000,67.00000000,0.00000000,1.00000000,GCCGCTGA,8.00000000,,ref->het,0.24675325,0.00000000,87.00000000,3.84955752,2.29000000 +315,chr22,23092124,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,89.00000000,3.93805310,1.00000000 +316,chr22,23094400,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.30000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.29268293,0.00000000,89.00000000,3.93805310,1.05000000 +317,chr22,23168496,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,49.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.20895522,0.00000000,82.00000000,3.62831858,1.20000000 +318,chr22,23170569,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,2.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.92000000,39.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17105263,0.00000000,88.00000000,3.89380531,3.59000000 +319,chr22,23174309,TP,T,T,TAGG,TAGG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.18000000,44.00000000,0.00000000,2.00000000,AGG,3.00000000,,ref->het,0.25925926,0.00000000,58.00000000,2.56637168,0.76000000 +320,chr22,23175000,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.73000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22580645,0.00000000,74.00000000,3.27433628,2.87000000 +321,chr22,23178415,TP,C,C,CAA,CAA,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.01000000,37.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.30882353,0.00000000,86.00000000,3.80530973,9.84000000 +322,chr22,23179283,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,65.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.31764706,0.00000000,88.00000000,3.89380531,0.98000000 +323,chr22,23187485,TP,T,T,TTC,TTC,-1.00000000,,,,0.50000000,,,8.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.82000000,46.00000000,0.00000000,7.00000000,TC,2.00000000,,ref->het,0.21052632,0.00000000,98.00000000,4.33628319,5.59000000 +324,chr22,23191451,TP,A,A,AAACAAC,AAACAAC,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.72000000,53.00000000,0.00000000,3.00000000,AAC,3.00000000,,ref->het,0.20930233,0.00000000,103.00000000,4.55752212,1.47000000 +325,chr22,23236847,TP,AAGCGTGAACAAATTCTGTGTCTTG,AAGCGTGAACAAATTCTGTGTCTTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.03000000,45.00000000,0.00000000,1.00000000,AGCGTGAACAAATTCTGTGTCTTG,24.00000000,,ref->het,0.17894737,0.00000000,90.00000000,3.98230088,1.80000000 +326,chr22,23237875,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.53000000,47.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.17171717,0.00000000,108.00000000,4.77876106,1.66000000 +327,chr22,23258260,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.59000000,46.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.18918919,0.00000000,80.00000000,3.53982301,1.29000000 +328,chr22,23307274,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.95000000,31.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.25454545,0.00000000,60.00000000,2.65486726,1.81000000 +329,chr22,23327885,TP,TAATAA,TAATAA,T,T,-1.00000000,,,,1.00000000,,,3.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.07000000,59.00000000,0.00000000,4.00000000,AATAA,5.00000000,,ref->het,0.33333333,0.00000000,73.00000000,3.23008850,1.81000000 +330,chr22,23333854,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.86000000,38.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.50847458,0.00000000,63.00000000,2.78761062,1.36000000 +331,chr22,23335747,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.02000000,69.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.45454545,0.00000000,73.00000000,3.23008850,0.09000000 +332,chr22,23336301,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.22000000,66.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.45714286,0.00000000,91.00000000,4.02654867,8.53000000 +333,chr22,23478641,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.10000000,94.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.45918367,0.00000000,107.00000000,4.73451327,0.93000000 +334,chr22,23484231,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.90000000,49.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.29687500,0.00000000,87.00000000,3.84955752,6.82000000 +335,chr22,23491600,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.00000000,43.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.24137931,0.00000000,64.00000000,2.83185841,0.66000000 +336,chr22,23492278,TP,TTTTTG,TTTTTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,13.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.10000000,48.00000000,0.00000000,1.00000000,TTTTG,5.00000000,,ref->het,0.35000000,0.00000000,65.00000000,2.87610619,0.48000000 +337,chr22,23492454,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.72000000,35.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,76.00000000,3.36283186,2.61000000 +338,chr22,23492730,TP,C,C,CTCCA,CTCCA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.28000000,55.00000000,0.00000000,1.00000000,TCCA,4.00000000,,ref->het,0.25000000,0.00000000,70.00000000,3.09734513,1.42000000 +339,chr22,23496764,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,7.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.70000000,48.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.45945946,0.00000000,81.00000000,3.58407080,1.50000000 +340,chr22,23502141,TP,CCTGT,CCTGT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.42000000,39.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.30303030,0.00000000,40.00000000,1.76991150,2.49000000 +341,chr22,23533231,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.44000000,49.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.23170732,0.00000000,88.00000000,3.89380531,2.76000000 +342,chr22,23582844,TP,AGCCATCGTGCCCG,AGCCATCGTGCCCG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,39.00000000,0.00000000,1.00000000,GCCATCGTGCCCG,13.00000000,,ref->het,0.20000000,0.00000000,69.00000000,3.05309735,1.05000000 +343,chr22,23589481,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.22000000,58.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,4.47000000 +344,chr22,23592392,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.78000000,41.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.18666667,0.00000000,80.00000000,3.53982301,3.44000000 +345,chr22,23596419,TP,TTTA,TTTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,10.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.43000000,52.00000000,0.00000000,1.00000000,TTA,3.00000000,,ref->het,0.28000000,0.00000000,78.00000000,3.45132743,0.60000000 +346,chr22,23603223,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.68000000,46.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,69.00000000,3.05309735,0.02000000 +347,chr22,23620557,TP,T,T,TTTC,TTTC,-1.00000000,,,,1.00000000,,,1.00000000,6.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.04000000,102.00000000,0.00000000,0.00000000,TTC,3.00000000,,ref->het,0.45945946,0.00000000,78.00000000,3.45132743,0.00000000 +348,chr22,23657910,TP,GTTTC,GTTTC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.06000000,38.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.19672131,0.00000000,65.00000000,2.87610619,5.03000000 +349,chr22,23752150,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.47000000,32.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.11428571,0.00000000,76.00000000,3.36283186,6.63000000 +350,chr22,23756331,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.34000000,49.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20000000,0.00000000,84.00000000,3.71681416,6.55000000 +351,chr22,23757692,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.50000000,40.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.19230769,0.00000000,65.00000000,2.87610619,11.38000000 +352,chr22,23798096,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.06000000,50.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,84.00000000,3.71681416,0.08000000 +353,chr22,23814970,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,5.79000000,30.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.18461538,0.00000000,89.00000000,3.93805310,10.43000000 +354,chr22,23840952,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.30000000,42.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.14084507,0.00000000,79.00000000,3.49557522,2.81000000 +355,chr22,23843074,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.29000000,48.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20270270,0.00000000,82.00000000,3.62831858,7.19000000 +356,chr22,23892926,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.55000000,47.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.18571429,0.00000000,82.00000000,3.62831858,1.48000000 +357,chr22,23910006,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.18000000,60.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.22000000,0.00000000,110.00000000,4.86725664,3.36000000 +358,chr22,24078844,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.40000000,60.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,106.00000000,4.69026549,0.61000000 +359,chr22,24101867,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.14000000,48.00000000,0.00000000,9.00000000,TG,2.00000000,,ref->het,0.20481928,0.00000000,96.00000000,4.24778761,2.83000000 +360,chr22,24201725,TP,TAG,TAG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,4.12000000,36.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.23913043,0.00000000,59.00000000,2.61061947,7.66000000 +361,chr22,24212414,TP,AGT,AGT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.40000000,48.00000000,0.00000000,2.00000000,GT,2.00000000,,ref->het,0.18000000,0.00000000,106.00000000,4.69026549,0.20000000 +362,chr22,24212830,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.14000000,48.00000000,0.00000000,5.00000000,AAAT,4.00000000,,ref->het,0.26785714,0.00000000,79.00000000,3.49557522,2.58000000 +363,chr22,24214641,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.84000000,47.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17708333,0.00000000,100.00000000,4.42477876,1.31000000 +364,chr22,24417894,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.52000000,30.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.20270270,0.00000000,90.00000000,3.98230088,7.44000000 +365,chr22,24495678,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.01000000,57.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.21348315,0.00000000,94.00000000,4.15929204,0.88000000 +366,chr22,24639277,TP,CACACACACACATATATACACATAT,CACACACACACATATATACACATAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,44.00000000,0.00000000,1.00000000,ACACACACACATATATACACATAT,24.00000000,,ref->het,0.18181818,0.00000000,101.00000000,4.46902655,1.78000000 +367,chr22,24672007,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.95000000,36.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.41509434,0.00000000,58.00000000,2.56637168,0.87000000 +368,chr22,24697870,TP,G,G,GGGCAGCTGGCAGCTGGCAGCT,GGGCAGCTGGCAGCTGGCAGCT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.50000000,42.00000000,0.00000000,1.00000000,GGCAGCT,7.00000000,,ref->het,0.18309859,0.00000000,82.00000000,3.62831858,1.82000000 +369,chr22,24698365,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.53000000,51.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,72.00000000,3.18584071,0.72000000 +370,chr22,24698668,TP,T,T,TCCTTTTTCCTTTCC,TCCTTTTTCCTTTCC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.56000000,44.00000000,0.00000000,0.00000000,CCTTTTTCCTTTCC,14.00000000,,ref->het,0.18840580,0.00000000,77.00000000,3.40707965,5.69000000 +371,chr22,24698825,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,8.10000000,30.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24074074,0.00000000,68.00000000,3.00884956,13.17000000 +372,chr22,24709562,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.92000000,35.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.23750000,0.00000000,93.00000000,4.11504425,2.45000000 +373,chr22,24713400,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.74000000,47.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.29487179,0.00000000,85.00000000,3.76106195,3.86000000 +374,chr22,24724250,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.42000000,48.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.28787879,0.00000000,77.00000000,3.40707965,2.55000000 +375,chr22,24742385,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.68000000,47.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.29333333,0.00000000,79.00000000,3.49557522,0.53000000 +376,chr22,24748652,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.31000000,53.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19565217,0.00000000,98.00000000,4.33628319,2.49000000 +377,chr22,24754473,TP,CAGTG,CAGTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.06000000,48.00000000,0.00000000,1.00000000,AGTG,4.00000000,,ref->het,0.20000000,0.00000000,107.00000000,4.73451327,0.19000000 +378,chr22,24755560,TP,CAAA,CAAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,62.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.32098765,0.00000000,85.00000000,3.76106195,2.58000000 +379,chr22,24758923,TP,TCTAA,TCTAA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.46000000,51.00000000,0.00000000,1.00000000,CTAA,4.00000000,,ref->het,0.19540230,0.00000000,96.00000000,4.24778761,0.84000000 +380,chr22,24761408,TP,CCAACTAAAAGTGAAGAGG,CCAACTAAAAGTGAAGAGG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,40.00000000,0.00000000,1.00000000,CAACTAAAAGTGAAGAGG,18.00000000,,ref->het,0.14666667,0.00000000,69.00000000,3.05309735,0.69000000 +381,chr22,24816504,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.19000000,40.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18055556,0.00000000,80.00000000,3.53982301,12.05000000 +382,chr22,24817351,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,10.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.11000000,30.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.17721519,0.00000000,95.00000000,4.20353982,3.63000000 +383,chr22,24817702,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.27000000,36.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.12676056,0.00000000,78.00000000,3.45132743,0.56000000 +384,chr22,24823297,TP,G,G,GCAGCTGCTGTGC,GCAGCTGCTGTGC,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.26000000,58.00000000,0.00000000,0.00000000,CAGCTGCTGTGC,12.00000000,,ref->het,0.47222222,0.00000000,82.00000000,3.62831858,2.27000000 +385,chr22,24862903,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.42000000,49.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.20588235,0.00000000,75.00000000,3.31858407,1.61000000 +386,chr22,24881566,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.23000000,42.00000000,0.00000000,5.00000000,AAAAC,5.00000000,,ref->het,0.18000000,0.00000000,72.00000000,3.18584071,1.65000000 +387,chr22,24888790,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.14000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.30357143,0.00000000,66.00000000,2.92035398,1.55000000 +388,chr22,24889654,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.36000000,32.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24444444,0.00000000,59.00000000,2.61061947,2.35000000 +389,chr22,24904596,TP,AAG,AAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,4.77000000,51.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.20588235,0.00000000,80.00000000,3.53982301,6.51000000 +390,chr22,24920687,TP,GAAAA,GAAAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,10.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.83000000,46.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.15789474,0.00000000,100.00000000,4.42477876,1.75000000 +391,chr22,24923144,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.38000000,30.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.15384615,0.00000000,78.00000000,3.45132743,1.26000000 +392,chr22,24923288,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.41000000,39.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.15714286,0.00000000,75.00000000,3.31858407,2.08000000 +393,chr22,24923355,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.27000000,33.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.14864865,0.00000000,81.00000000,3.58407080,1.15000000 +394,chr22,24926467,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.64000000,57.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.26315789,0.00000000,101.00000000,4.46902655,0.87000000 +395,chr22,24926850,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.55000000,49.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.27500000,0.00000000,83.00000000,3.67256637,2.06000000 +396,chr22,24929284,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.23076923,0.00000000,82.00000000,3.62831858,0.98000000 +397,chr22,24933528,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,39.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16438356,0.00000000,76.00000000,3.36283186,0.42000000 +398,chr22,24938070,TP,C,C,CTCATTCAT,CTCATTCAT,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,46.00000000,0.00000000,7.00000000,TCAT,4.00000000,,ref->het,0.24096386,0.00000000,101.00000000,4.46902655,1.67000000 +399,chr22,24956871,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,4.22000000,45.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.28333333,0.00000000,80.00000000,3.53982301,11.81000000 +400,chr22,24960130,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.58000000,43.00000000,0.00000000,9.00000000,AAAT,4.00000000,,ref->het,0.23188406,0.00000000,101.00000000,4.46902655,2.99000000 +401,chr22,24965101,TP,TAAA,TAAA,T,T,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.49000000,40.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,86.00000000,3.80530973,7.78000000 +402,chr22,25000816,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.28000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.25757576,0.00000000,84.00000000,3.71681416,3.70000000 +403,chr22,25007470,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.25000000,54.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.32258065,0.00000000,71.00000000,3.14159292,6.93000000 +404,chr22,25061793,TP,CACTG,CACTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.02000000,49.00000000,0.00000000,2.00000000,ACTG,4.00000000,,ref->het,0.28767123,0.00000000,77.00000000,3.40707965,0.28000000 +405,chr22,25064032,TP,TTTTTGTTTG,TTTTTGTTTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.75000000,37.00000000,0.00000000,2.00000000,TTTTGTTTG,9.00000000,,ref->het,0.12307692,0.00000000,66.00000000,2.92035398,2.68000000 +406,chr22,25064329,TP,G,G,GGGATTA,GGGATTA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.21000000,48.00000000,0.00000000,1.00000000,GGATTA,6.00000000,,ref->het,0.20689655,0.00000000,62.00000000,2.74336283,0.78000000 +407,chr22,25067285,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,3.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.19000000,51.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.48529412,0.00000000,71.00000000,3.14159292,3.75000000 +408,chr22,25068443,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.97000000,33.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.16867470,0.00000000,100.00000000,4.42477876,5.86000000 +409,chr22,25069009,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.75000000,48.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.22222222,0.00000000,75.00000000,3.31858407,0.00000000 +410,chr22,25076054,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.51000000,44.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.17333333,0.00000000,83.00000000,3.67256637,2.02000000 +411,chr22,25150836,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.20000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.28301887,0.00000000,62.00000000,2.74336283,7.71000000 +412,chr22,25226168,TP,CTGTGTGTG,CTGTGTGTG,C,C,-1.00000000,,,,1.00000000,,,15.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.33000000,52.00000000,0.00000000,19.00000000,TG,2.00000000,,ref->het,0.33823529,0.00000000,85.00000000,3.76106195,2.97000000 +413,chr22,25230683,TP,C,C,CTCAT,CTCAT,-1.00000000,,,,1.00000000,,,6.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.06000000,35.00000000,0.00000000,5.00000000,TCAT,4.00000000,,ref->het,0.32653061,0.00000000,59.00000000,2.61061947,0.03000000 +414,chr22,25232594,TP,GATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,GATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,42.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.25000000,60.00000000,0.00000000,1.00000000,ATGTTTCTACTCAGGAAGATGGGAGAGAAATAGTACCTTCCT,42.00000000,,ref->het,0.24175824,0.00000000,82.00000000,3.62831858,0.28000000 +415,chr22,25250314,TP,GTATTAAA,GTATTAAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.66000000,47.00000000,0.00000000,1.00000000,TATTAAA,7.00000000,,ref->het,0.20000000,0.00000000,73.00000000,3.23008850,0.92000000 +416,chr22,25253635,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,3.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.44000000,53.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.23684211,0.00000000,82.00000000,3.62831858,2.18000000 +417,chr22,25295219,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,0.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.56000000,66.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.41269841,0.00000000,72.00000000,3.18584071,6.89000000 +418,chr22,25295230,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,7.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.55000000,63.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.40625000,0.00000000,70.00000000,3.09734513,7.05000000 +419,chr22,25296168,TP,T,T,TACA,TACA,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.90000000,52.00000000,0.00000000,1.00000000,ACA,3.00000000,,ref->het,0.25490196,0.00000000,56.00000000,2.47787611,0.70000000 +420,chr22,25297934,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,1.00000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.72000000,95.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.50561798,0.00000000,92.00000000,4.07079646,0.96000000 +421,chr22,25298796,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,2.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.62000000,96.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.44705882,0.00000000,95.00000000,4.20353982,1.06000000 +422,chr22,25298941,TP,C,C,CTG,CTG,-1.00000000,,,,1.00000000,,,1.00000000,13.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.55000000,43.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.47169811,0.00000000,63.00000000,2.78761062,3.10000000 +423,chr22,25302298,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,35.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.15789474,0.00000000,60.00000000,2.65486726,0.01000000 +424,chr22,25306786,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.14000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.34146341,0.00000000,57.00000000,2.52212389,3.20000000 +425,chr22,25311603,TP,G,G,GAA,GAA,-1.00000000,,,,1.00000000,,,12.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.79000000,79.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.48648649,0.00000000,87.00000000,3.84955752,2.52000000 +426,chr22,25315896,TP,CTT,CTT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.02000000,56.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.50847458,0.00000000,70.00000000,3.09734513,1.74000000 +427,chr22,25321413,TP,GAGA,GAGA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.30000000,49.00000000,0.00000000,2.00000000,AGA,3.00000000,,ref->het,0.49315068,0.00000000,77.00000000,3.40707965,0.70000000 +428,chr22,25322333,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.23000000,59.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.47826087,0.00000000,96.00000000,4.24778761,1.20000000 +429,chr22,25326638,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.02702703,0.00000000,38.00000000,1.68141593,0.46000000,38.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.44155844,0.00000000,93.00000000,4.11504425,3.57000000 +430,chr22,25326934,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.38000000,41.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.56756757,0.00000000,84.00000000,3.71681416,0.72000000 +431,chr22,25332917,TP,C,C,CAG,CAG,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.09000000,55.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.45679012,0.00000000,87.00000000,3.84955752,2.71000000 +432,chr22,25338335,TP,A,A,ATT,ATT,-1.00000000,,,,1.00000000,,,16.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.02000000,48.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.51515152,0.00000000,87.00000000,3.84955752,2.70000000 +433,chr22,25342309,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.13000000,51.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,40.00000000,1.76991150,0.01000000 +434,chr22,25348644,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.02000000,54.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.44186047,0.00000000,100.00000000,4.42477876,9.73000000 +435,chr22,25360815,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.40000000,59.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.46078431,0.00000000,104.00000000,4.60176991,3.89000000 +436,chr22,25368847,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,40.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.15384615,0.00000000,72.00000000,3.18584071,1.75000000 +437,chr22,25390890,TP,TGTAGGAGAG,TGTAGGAGAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.62000000,52.00000000,0.00000000,1.00000000,GTAGGAGAG,9.00000000,,ref->het,0.24271845,0.00000000,105.00000000,4.64601770,0.72000000 +438,chr22,25403229,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.34000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,68.00000000,3.00884956,1.29000000 +439,chr22,25434454,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.76000000,70.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.44444444,0.00000000,77.00000000,3.40707965,1.01000000 +440,chr22,25442232,TP,C,C,CATT,CATT,-1.00000000,,,,1.00000000,,,1.00000000,1.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.86000000,86.00000000,0.00000000,0.00000000,ATT,3.00000000,,ref->het,0.37894737,0.00000000,103.00000000,4.55752212,9.01000000 +441,chr22,25443121,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.53000000,37.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.58904110,0.00000000,79.00000000,3.49557522,6.00000000 +442,chr22,25443918,TP,G,G,GAA,GAA,-1.00000000,,,,1.00000000,,,11.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.51000000,78.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.42045455,0.00000000,101.00000000,4.46902655,5.78000000 +443,chr22,25444144,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,42.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.16438356,0.00000000,78.00000000,3.45132743,0.57000000 +444,chr22,25445259,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.09000000,57.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.45588235,0.00000000,79.00000000,3.49557522,3.76000000 +445,chr22,25445901,TP,TGA,TGA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.30000000,102.00000000,0.00000000,1.00000000,GA,2.00000000,,ref->het,0.39000000,0.00000000,106.00000000,4.69026549,0.90000000 +446,chr22,25446448,TP,TCAAA,TCAAA,T,T,-1.00000000,,,,1.00000000,,,4.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,58.00000000,0.00000000,5.00000000,CAAA,4.00000000,,ref->het,0.45588235,0.00000000,87.00000000,3.84955752,1.25000000 +447,chr22,25447224,TP,CCA,CCA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.83000000,68.00000000,0.00000000,1.00000000,CA,2.00000000,,ref->het,0.46666667,0.00000000,79.00000000,3.49557522,1.08000000 +448,chr22,25447666,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.32000000,71.00000000,0.00000000,4.00000000,AC,2.00000000,,ref->het,0.41250000,0.00000000,89.00000000,3.93805310,1.97000000 +449,chr22,25453221,TP,T,T,TTATC,TTATC,-1.00000000,,,,0.50000000,,,14.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.25000000,47.00000000,0.00000000,13.00000000,TATC,4.00000000,,ref->het,0.29577465,0.00000000,99.00000000,4.38053097,2.09000000 +450,chr22,25470298,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.15000000,44.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.30645161,0.00000000,66.00000000,2.92035398,0.93000000 +451,chr22,25500190,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.96000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,82.00000000,3.62831858,4.18000000 +452,chr22,25506962,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.26000000,34.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.11111111,0.00000000,75.00000000,3.31858407,5.65000000 +453,chr22,25507014,TP,C,C,CTCCA,CTCCA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.28000000,35.00000000,0.00000000,4.00000000,TCCA,4.00000000,,ref->het,0.14492754,0.00000000,81.00000000,3.58407080,6.98000000 +454,chr22,25507388,TP,TATCC,TATCC,T,T,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.27000000,40.00000000,0.00000000,7.00000000,ATCC,4.00000000,,ref->het,0.19230769,0.00000000,58.00000000,2.56637168,1.71000000 +455,chr22,25512691,TP,G,G,GTGAATGCAGTATTGATTAGCTGAATGCAGTATTGATTAGC,GTGAATGCAGTATTGATTAGCTGAATGCAGTATTGATTAGC,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,40.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,56.00000000,0.00000000,1.00000000,TGAATGCAGTATTGATTAGC,20.00000000,,ref->het,0.27500000,0.00000000,85.00000000,3.76106195,1.70000000 +456,chr22,25517071,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.77000000,42.00000000,0.00000000,2.00000000,CTC,3.00000000,,ref->het,0.17647059,0.00000000,93.00000000,4.11504425,1.94000000 +457,chr22,25518509,TP,C,C,CATCT,CATCT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.98000000,42.00000000,0.00000000,3.00000000,ATCT,4.00000000,,ref->het,0.20312500,0.00000000,74.00000000,3.27433628,0.43000000 +458,chr22,25519225,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.37000000,32.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,84.00000000,3.71681416,1.17000000 +459,chr22,25523023,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.69000000,64.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.27710843,0.00000000,90.00000000,3.98230088,1.01000000 +460,chr22,25523158,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.01000000,38.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,74.00000000,3.27433628,6.39000000 +461,chr22,25530407,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.15000000,42.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.18181818,0.00000000,84.00000000,3.71681416,1.41000000 +462,chr22,25533968,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.06000000,59.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.26744186,0.00000000,97.00000000,4.29203540,3.79000000 +463,chr22,25535299,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.46000000,39.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.13432836,0.00000000,74.00000000,3.27433628,1.15000000 +464,chr22,25535332,TP,C,C,CTCTCCCT,CTCTCCCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.88000000,49.00000000,0.00000000,0.00000000,TCTCCCT,7.00000000,,ref->het,0.17808219,0.00000000,81.00000000,3.58407080,1.70000000 +465,chr22,25552949,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.09000000,31.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21153846,0.00000000,72.00000000,3.18584071,9.79000000 +466,chr22,25719196,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.67000000,31.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.23404255,0.00000000,56.00000000,2.47787611,3.39000000 +467,chr22,25776903,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.26000000,41.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.16470588,0.00000000,89.00000000,3.93805310,1.49000000 +468,chr22,25778287,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.92000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22352941,0.00000000,86.00000000,3.80530973,2.71000000 +469,chr22,25783501,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.76000000,41.00000000,0.00000000,4.00000000,AC,2.00000000,,ref->het,0.16901408,0.00000000,81.00000000,3.58407080,2.41000000 +470,chr22,25809995,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.53000000,36.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.14925373,0.00000000,80.00000000,3.53982301,5.99000000 +471,chr22,25820541,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.27000000,43.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.26229508,0.00000000,64.00000000,2.83185841,0.71000000 +472,chr22,25821303,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.08000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.18181818,0.00000000,96.00000000,4.24778761,4.15000000 +473,chr22,25823756,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.72000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,75.00000000,3.31858407,1.11000000 +474,chr22,25824920,TP,T,T,TCACACACATGAA,TCACACACATGAA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.50000000,45.00000000,0.00000000,0.00000000,CACACACATGAA,12.00000000,,ref->het,0.20270270,0.00000000,86.00000000,3.80530973,1.28000000 +475,chr22,25825016,TP,G,G,GAT,GAT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.26000000,45.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.19480519,0.00000000,93.00000000,4.11504425,2.73000000 +476,chr22,25855825,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.13000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25274725,0.00000000,112.00000000,4.95575221,7.35000000 +477,chr22,25857478,TP,ATCTCAAGAG,ATCTCAAGAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.71000000,42.00000000,0.00000000,1.00000000,TCTCAAGAG,9.00000000,,ref->het,0.17567568,0.00000000,73.00000000,3.23008850,0.72000000 +478,chr22,25984125,TP,AATTTTACATT,AATTTTACATT,A,A,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,53.00000000,0.00000000,1.00000000,ATTTTACATT,10.00000000,,ref->het,0.44444444,0.00000000,75.00000000,3.31858407,2.57000000 +479,chr22,26000970,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.47000000,70.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.32394366,0.00000000,81.00000000,3.58407080,2.09000000 +480,chr22,26004249,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.85000000,72.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.45238095,0.00000000,90.00000000,3.98230088,1.29000000 +481,chr22,26039111,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.65000000,50.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.18292683,0.00000000,84.00000000,3.71681416,0.62000000 +482,chr22,26057608,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.45000000,47.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.23333333,0.00000000,97.00000000,4.29203540,4.73000000 +483,chr22,26105643,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,9.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.26000000,49.00000000,0.00000000,8.00000000,TG,2.00000000,,ref->het,0.22388060,0.00000000,78.00000000,3.45132743,2.20000000 +484,chr22,26160132,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,3.37000000,34.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.17647059,0.00000000,61.00000000,2.69911504,7.57000000 +485,chr22,26227298,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.33000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21333333,0.00000000,80.00000000,3.53982301,1.23000000 +486,chr22,26236585,TP,T,T,TGGTTA,TGGTTA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,51.00000000,0.00000000,1.00000000,GGTTA,5.00000000,,ref->het,0.25274725,0.00000000,97.00000000,4.29203540,2.04000000 +487,chr22,26248939,TP,TAAG,TAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.58000000,49.00000000,0.00000000,1.00000000,AAG,3.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,2.06000000 +488,chr22,26291457,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,48.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.26865672,0.00000000,74.00000000,3.27433628,0.99000000 +489,chr22,26330250,TP,TCTGCTATATAACCAG,TCTGCTATATAACCAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.23000000,45.00000000,0.00000000,1.00000000,CTGCTATATAACCAG,15.00000000,,ref->het,0.20270270,0.00000000,77.00000000,3.40707965,1.20000000 +490,chr22,26369180,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,43.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.18571429,0.00000000,74.00000000,3.27433628,0.63000000 +491,chr22,26370697,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.54000000,43.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.29870130,0.00000000,89.00000000,3.93805310,4.57000000 +492,chr22,26382110,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.49000000,62.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.28378378,0.00000000,87.00000000,3.84955752,1.67000000 +493,chr22,26387699,TP,A,A,AGT,AGT,-1.00000000,,,,0.50000000,,,14.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.37000000,44.00000000,0.00000000,13.00000000,GT,2.00000000,,ref->het,0.22500000,0.00000000,61.00000000,2.69911504,2.25000000 +494,chr22,26389920,TP,TAAATAAAC,TAAATAAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.33000000,32.00000000,0.00000000,1.00000000,AAATAAAC,8.00000000,,ref->het,0.11940299,0.00000000,70.00000000,3.09734513,1.18000000 +495,chr22,26435389,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.98000000,58.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.24050633,0.00000000,83.00000000,3.67256637,0.96000000 +496,chr22,26493727,TP,AAAT,AAAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.11000000,51.00000000,0.00000000,1.00000000,AAT,3.00000000,,ref->het,0.24050633,0.00000000,81.00000000,3.58407080,0.88000000 +497,chr22,26523983,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.48000000,30.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,94.00000000,4.15929204,3.14000000 +498,chr22,26531008,TP,T,T,TCAAAAA,TCAAAAA,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.45000000,47.00000000,0.00000000,4.00000000,CAAAAA,6.00000000,,ref->het,0.25423729,0.00000000,76.00000000,3.36283186,1.93000000 +499,chr22,26577351,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.13000000,31.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.19565217,0.00000000,57.00000000,2.52212389,5.21000000 +500,chr22,26586663,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.75000000,47.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,0.73000000 +501,chr22,26588026,TP,TGA,TGA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.31000000,66.00000000,0.00000000,3.00000000,GA,2.00000000,,ref->het,0.27272727,0.00000000,93.00000000,4.11504425,1.05000000 +502,chr22,26607560,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.06000000,34.00000000,0.00000000,19.00000000,A,1.00000000,,ref->het,0.25806452,0.00000000,77.00000000,3.40707965,6.85000000 +503,chr22,26629942,TP,CAT,CAT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.55000000,53.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.41428571,0.00000000,77.00000000,3.40707965,1.58000000 +504,chr22,26638337,TP,G,G,GAAGA,GAAGA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.77000000,35.00000000,0.00000000,0.00000000,AAGA,4.00000000,,ref->het,0.15000000,0.00000000,69.00000000,3.05309735,5.12000000 +505,chr22,26640053,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.84000000,35.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.14062500,0.00000000,71.00000000,3.14159292,5.17000000 +506,chr22,26646615,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,83.00000000,3.67256637,1.15000000 +507,chr22,26648931,TP,C,C,CAGAG,CAGAG,-1.00000000,,,,0.50000000,,,13.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.75000000,31.00000000,0.00000000,11.00000000,AG,2.00000000,,ref->het,0.23809524,0.00000000,78.00000000,3.45132743,1.76000000 +508,chr22,26659820,TP,TTTTCTTTCTTTC,TTTTCTTTCTTTC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.40000000,44.00000000,0.00000000,5.00000000,TTTC,4.00000000,,ref->het,0.21428571,0.00000000,64.00000000,2.83185841,5.40000000 +509,chr22,26700861,TP,C,C,CTTAATAATACATTGTATTAT,CTTAATAATACATTGTATTAT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.96000000,47.00000000,0.00000000,1.00000000,TTAATAATACATTGTATTAT,20.00000000,,ref->het,0.17204301,0.00000000,110.00000000,4.86725664,1.13000000 +510,chr22,26704215,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.55000000,32.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,97.00000000,4.29203540,6.14000000 +511,chr22,26709504,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.77000000,56.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.23456790,0.00000000,88.00000000,3.89380531,0.75000000 +512,chr22,26721039,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.58000000,38.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.16363636,0.00000000,63.00000000,2.78761062,2.55000000 +513,chr22,26770445,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.31000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.21538462,0.00000000,72.00000000,3.18584071,4.38000000 +514,chr22,26782316,TP,G,G,GGT,GGT,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.16000000,55.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.25423729,0.00000000,77.00000000,3.40707965,1.87000000 +515,chr22,26790529,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.88000000,82.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.42857143,0.00000000,88.00000000,3.89380531,0.64000000 +516,chr22,26833347,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,48.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.53968254,0.00000000,79.00000000,3.49557522,1.18000000 +517,chr22,26838018,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.18000000,56.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.28571429,0.00000000,82.00000000,3.62831858,0.94000000 +518,chr22,26839846,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.88000000,46.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.30555556,0.00000000,90.00000000,3.98230088,5.61000000 +519,chr22,26852728,TP,CTA,CTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,55.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.22727273,0.00000000,93.00000000,4.11504425,1.09000000 +520,chr22,26858305,TP,G,G,GTGTGTGTTTA,GTGTGTGTTTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.41000000,36.00000000,0.00000000,0.00000000,TGTGTGTTTA,10.00000000,,ref->het,0.16363636,0.00000000,53.00000000,2.34513274,0.99000000 +521,chr22,26875881,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.51000000,47.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20270270,0.00000000,81.00000000,3.58407080,1.97000000 +522,chr22,26882098,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.78000000,35.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,90.00000000,3.98230088,6.60000000 +523,chr22,26882150,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.42000000,52.00000000,0.00000000,0.00000000,CA,2.00000000,,ref->het,0.19696970,0.00000000,74.00000000,3.27433628,10.73000000 +524,chr22,26894863,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.88000000,46.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.22500000,0.00000000,82.00000000,3.62831858,4.76000000 +525,chr22,26905293,TP,G,G,GGA,GGA,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.15000000,36.00000000,0.00000000,3.00000000,GA,2.00000000,,ref->het,0.13114754,0.00000000,65.00000000,2.87610619,4.41000000 +526,chr22,26905321,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.97000000,35.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.15517241,0.00000000,64.00000000,2.83185841,3.88000000 +527,chr22,26910251,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,3.26000000,41.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.27868852,0.00000000,84.00000000,3.71681416,11.34000000 +528,chr22,26951313,TP,TTAAAA,TTAAAA,T,T,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.36000000,50.00000000,0.00000000,7.00000000,TAAAA,5.00000000,,ref->het,0.25490196,0.00000000,82.00000000,3.62831858,2.18000000 +529,chr22,26979910,TP,CCCTT,CCCTT,C,C,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.71000000,46.00000000,0.00000000,5.00000000,CCTT,4.00000000,,ref->het,0.22058824,0.00000000,75.00000000,3.31858407,3.99000000 +530,chr22,26982619,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,5.22000000,43.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.31914894,0.00000000,60.00000000,2.65486726,5.39000000 +531,chr22,26994892,TP,T,T,TGAA,TGAA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.03000000,56.00000000,0.00000000,1.00000000,GAA,3.00000000,,ref->het,0.25000000,0.00000000,101.00000000,4.46902655,2.16000000 +532,chr22,27013243,TP,AGT,AGT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.73000000,49.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.24285714,0.00000000,78.00000000,3.45132743,2.47000000 +533,chr22,27027981,TP,TTAA,TTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.80000000,47.00000000,0.00000000,2.00000000,TAA,3.00000000,,ref->het,0.23376623,0.00000000,84.00000000,3.71681416,1.45000000 +534,chr22,27127295,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,14.00000000,5.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.52000000,45.00000000,0.00000000,13.00000000,CATC,4.00000000,,ref->het,0.27586207,0.00000000,96.00000000,4.24778761,2.03000000 +535,chr22,27139072,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.01000000,38.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,77.00000000,3.40707965,0.63000000 +536,chr22,27221217,TP,GACAC,GACAC,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.23000000,40.00000000,0.00000000,10.00000000,AC,2.00000000,,ref->het,0.21052632,0.00000000,67.00000000,2.96460177,3.51000000 +537,chr22,27234643,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.24000000,53.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.21518987,0.00000000,90.00000000,3.98230088,2.22000000 +538,chr22,27252298,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.76000000,44.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.20779221,0.00000000,82.00000000,3.62831858,1.47000000 +539,chr22,27254062,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.84000000,43.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.18181818,0.00000000,71.00000000,3.14159292,0.55000000 +540,chr22,27271185,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.56000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20253165,0.00000000,83.00000000,3.67256637,1.06000000 +541,chr22,27273356,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.14000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,82.00000000,3.62831858,1.03000000 +542,chr22,27296959,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.37000000,42.00000000,0.00000000,6.00000000,CATC,4.00000000,,ref->het,0.17391304,0.00000000,87.00000000,3.84955752,1.39000000 +543,chr22,27339390,TP,ACC,ACC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.44000000,44.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19117647,0.00000000,76.00000000,3.36283186,2.16000000 +544,chr22,27346324,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.88000000,37.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23188406,0.00000000,85.00000000,3.76106195,3.95000000 +545,chr22,27347091,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,45.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26086957,0.00000000,72.00000000,3.18584071,0.98000000 +546,chr22,27349597,TP,C,C,CCTT,CCTT,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.51000000,47.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.19540230,0.00000000,95.00000000,4.20353982,0.19000000 +547,chr22,27351417,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.04000000,43.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19736842,0.00000000,83.00000000,3.67256637,1.22000000 +548,chr22,27352059,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.24000000,63.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.25287356,0.00000000,90.00000000,3.98230088,1.35000000 +549,chr22,27353533,TP,GTTA,GTTA,G,G,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.48000000,47.00000000,0.00000000,6.00000000,TTA,3.00000000,,ref->het,0.25373134,0.00000000,85.00000000,3.76106195,1.21000000 +550,chr22,27353704,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.52000000,46.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,74.00000000,3.27433628,0.96000000 +551,chr22,27358232,TP,G,G,GTC,GTC,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.71000000,43.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.17948718,0.00000000,84.00000000,3.71681416,1.22000000 +552,chr22,27359475,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,11.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.92000000,44.00000000,0.00000000,10.00000000,TG,2.00000000,,ref->het,0.19354839,0.00000000,84.00000000,3.71681416,1.61000000 +553,chr22,27359550,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.35000000,44.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18421053,0.00000000,83.00000000,3.67256637,2.39000000 +554,chr22,27362832,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.14000000,63.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.28205128,0.00000000,84.00000000,3.71681416,0.72000000 +555,chr22,27365896,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.25000000,53.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.24468085,0.00000000,103.00000000,4.55752212,1.54000000 +556,chr22,27367152,TP,C,C,CTG,CTG,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.27000000,67.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.46250000,0.00000000,84.00000000,3.71681416,2.57000000 +557,chr22,27377827,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,5.10000000,55.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.21978022,0.00000000,98.00000000,4.33628319,9.07000000 +558,chr22,27388871,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.71000000,32.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.15384615,0.00000000,70.00000000,3.09734513,2.76000000 +559,chr22,27431224,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,7.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.41000000,37.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.41558442,0.00000000,83.00000000,3.67256637,7.75000000 +560,chr22,27452168,TP,G,G,GTGGATGGATGGA,GTGGATGGATGGA,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.30000000,48.00000000,0.00000000,8.00000000,TGGA,4.00000000,,ref->het,0.22413793,0.00000000,79.00000000,3.49557522,4.33000000 +561,chr22,27468014,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.31000000,60.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.23404255,0.00000000,104.00000000,4.60176991,1.52000000 +562,chr22,27514215,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.55000000,43.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20689655,0.00000000,69.00000000,3.05309735,1.35000000 +563,chr22,27519716,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.41000000,46.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.30555556,0.00000000,76.00000000,3.36283186,1.99000000 +564,chr22,27522876,TP,ATGTG,ATGTG,A,A,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.83000000,40.00000000,0.00000000,14.00000000,TG,2.00000000,,ref->het,0.20370370,0.00000000,80.00000000,3.53982301,3.24000000 +565,chr22,27565585,TP,GTGGA,GTGGA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.20000000,47.00000000,0.00000000,7.00000000,TGGA,4.00000000,,ref->het,0.28125000,0.00000000,77.00000000,3.40707965,5.06000000 +566,chr22,27571158,TP,A,A,AAATG,AAATG,-1.00000000,,,,0.50000000,,,7.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.95000000,46.00000000,0.00000000,6.00000000,AATG,4.00000000,,ref->het,0.23076923,0.00000000,83.00000000,3.67256637,1.27000000 +567,chr22,27597301,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.27000000,52.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.25490196,0.00000000,65.00000000,2.87610619,1.53000000 +568,chr22,27599519,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.61000000,53.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.21739130,0.00000000,73.00000000,3.23008850,2.12000000 +569,chr22,27608045,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.07000000,46.00000000,0.00000000,14.00000000,TG,2.00000000,,ref->het,0.25806452,0.00000000,87.00000000,3.84955752,6.33000000 +570,chr22,27619574,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.61000000,45.00000000,0.00000000,1.00000000,AAAT,4.00000000,,ref->het,0.21875000,0.00000000,71.00000000,3.14159292,3.03000000 +571,chr22,27620225,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.09000000,42.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,81.00000000,3.58407080,0.71000000 +572,chr22,27650380,TP,G,G,GTGGGAAAGCAAGCATGACTCCCAGGTTTC,GTGGGAAAGCAAGCATGACTCCCAGGTTTC,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,45.00000000,0.00000000,1.00000000,TGGGAAAGCAAGCATGACTCCCAGGTTTC,29.00000000,,ref->het,0.20895522,0.00000000,83.00000000,3.67256637,0.86000000 +573,chr22,27720618,TP,T,T,TCC,TCC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.73000000,48.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.25714286,0.00000000,82.00000000,3.62831858,2.18000000 +574,chr22,27729569,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.84000000,64.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.30120482,0.00000000,89.00000000,3.93805310,1.50000000 +575,chr22,27748391,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,51.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.25641026,0.00000000,86.00000000,3.80530973,1.34000000 +576,chr22,27760509,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.76000000,43.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.30000000,0.00000000,84.00000000,3.71681416,1.40000000 +577,chr22,27777702,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.40000000,50.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.33846154,0.00000000,76.00000000,3.36283186,1.57000000 +578,chr22,28171622,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,7.06000000,33.00000000,0.00000000,17.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,87.00000000,3.84955752,14.65000000 +579,chr22,28199548,TP,T,T,TATATAC,TATATAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.66000000,49.00000000,0.00000000,0.00000000,ATATAC,6.00000000,,ref->het,0.19298246,0.00000000,64.00000000,2.83185841,3.82000000 +580,chr22,28260393,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.46000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.19753086,0.00000000,86.00000000,3.80530973,1.99000000 +581,chr22,28342580,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.48000000,63.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.22549020,0.00000000,105.00000000,4.64601770,0.32000000 +582,chr22,28404989,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.59000000,43.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.16867470,0.00000000,86.00000000,3.80530973,2.79000000 +583,chr22,28407472,TP,GCACACACA,GCACACACA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.30000000,34.00000000,0.00000000,12.00000000,CA,2.00000000,,ref->het,0.14473684,0.00000000,90.00000000,3.98230088,0.60000000 +584,chr22,28409663,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,4.45000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.30769231,0.00000000,70.00000000,3.09734513,7.87000000 +585,chr22,28452681,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,61.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.26760563,0.00000000,76.00000000,3.36283186,1.63000000 +586,chr22,28545570,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.29000000,51.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.25675676,0.00000000,82.00000000,3.62831858,0.75000000 +587,chr22,28641322,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,11.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.78000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,76.00000000,3.36283186,2.21000000 +588,chr22,28736764,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,7.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.90000000,36.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.30434783,0.00000000,68.00000000,3.00884956,12.49000000 +589,chr22,28745339,TP,GGAGTTCAAGACCAGCCTGGTCAAGATGGT,GGAGTTCAAGACCAGCCTGGTCAAGATGGT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.90000000,36.00000000,0.00000000,1.00000000,GAGTTCAAGACCAGCCTGGTCAAGATGGT,29.00000000,,ref->het,0.13253012,0.00000000,77.00000000,3.40707965,2.23000000 +590,chr22,28769946,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,45.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,0.64000000 +591,chr22,28940496,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,18.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.62000000,66.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,100.00000000,4.42477876,7.23000000 +592,chr22,28944926,TP,CAAAT,CAAAT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.35000000,60.00000000,0.00000000,9.00000000,AAAT,4.00000000,,ref->het,0.37735849,0.00000000,89.00000000,3.93805310,2.22000000 +593,chr22,28955032,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,14.00000000,25.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.91000000,58.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.40625000,0.00000000,82.00000000,3.62831858,9.99000000 +594,chr22,29162116,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.55000000,40.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.28358209,0.00000000,82.00000000,3.62831858,5.22000000 +595,chr22,29238254,TP,AATT,AATT,A,A,-1.00000000,,,,1.00000000,,,15.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.77000000,35.00000000,0.00000000,16.00000000,ATT,3.00000000,,ref->het,0.46808511,0.00000000,80.00000000,3.53982301,2.02000000 +596,chr22,29313674,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.90000000,57.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.30000000,0.00000000,86.00000000,3.80530973,7.05000000 +597,chr22,29374285,TP,G,G,GAAAT,GAAAT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.73000000,52.00000000,0.00000000,0.00000000,AAAT,4.00000000,,ref->het,0.18421053,0.00000000,83.00000000,3.67256637,2.65000000 +598,chr22,29380414,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.58000000,38.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,1.88000000 +599,chr22,29408961,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.22000000,63.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.24731183,0.00000000,97.00000000,4.29203540,0.40000000 +600,chr22,29414214,TP,T,T,TTTATATAAATTC,TTTATATAAATTC,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,35.00000000,0.00000000,0.00000000,TTATATAAATTC,12.00000000,,ref->het,0.12643678,0.00000000,92.00000000,4.07079646,1.51000000 +601,chr22,29414225,TP,A,A,ATTTTTTC,ATTTTTTC,-1.00000000,,,,0.50000000,,,3.00000000,12.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.01000000,33.00000000,0.00000000,2.00000000,TTTTTTC,7.00000000,,ref->het,0.09638554,0.00000000,92.00000000,4.07079646,1.45000000 +602,chr22,29422808,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,10.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.06000000,43.00000000,0.00000000,9.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,81.00000000,3.58407080,2.46000000 +603,chr22,29423015,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.37000000,45.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.18085106,0.00000000,104.00000000,4.60176991,1.34000000 +604,chr22,29465405,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.84000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.23076923,0.00000000,83.00000000,3.67256637,9.74000000 +605,chr22,29493335,TP,TATA,TATA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.84000000,58.00000000,0.00000000,1.00000000,ATA,3.00000000,,ref->het,0.24324324,0.00000000,81.00000000,3.58407080,1.20000000 +606,chr22,29526053,TP,CTACTAGG,CTACTAGG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.28000000,47.00000000,0.00000000,1.00000000,TACTAGG,7.00000000,,ref->het,0.22972973,0.00000000,86.00000000,3.80530973,6.32000000 +607,chr22,29530142,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,3.40000000,45.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22666667,0.00000000,87.00000000,3.84955752,4.93000000 +608,chr22,29560241,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.19000000,37.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,79.00000000,3.49557522,6.88000000 +609,chr22,29572273,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.84000000,32.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17647059,0.00000000,52.00000000,2.30088496,11.88000000 +610,chr22,29618466,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.26000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,95.00000000,4.20353982,1.16000000 +611,chr22,29638349,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,17.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.38000000,37.00000000,0.00000000,18.00000000,T,1.00000000,,ref->het,0.37735849,0.00000000,66.00000000,2.92035398,3.94000000 +612,chr22,29641179,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.35000000,49.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.23595506,0.00000000,96.00000000,4.24778761,1.51000000 +613,chr22,29880133,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.14000000,42.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.18840580,0.00000000,83.00000000,3.67256637,4.86000000 +614,chr22,29884259,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.59000000,60.00000000,0.00000000,4.00000000,AAACA,5.00000000,,ref->het,0.24657534,0.00000000,85.00000000,3.76106195,3.38000000 +615,chr22,29891117,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,0.32000000,41.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.13000000,0.00000000,112.00000000,4.95575221,1.51000000 +616,chr22,29891411,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.03000000,61.00000000,0.00000000,5.00000000,AT,2.00000000,,ref->het,0.29333333,0.00000000,91.00000000,4.02654867,1.81000000 +617,chr22,29993011,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.27000000,67.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,94.00000000,4.15929204,0.84000000 +618,chr22,30021467,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,4.19000000,58.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.26153846,0.00000000,76.00000000,3.36283186,3.02000000 +619,chr22,30066038,TP,TCTCCCTCCCC,TCTCCCTCCCC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,3.40000000,36.00000000,0.00000000,1.00000000,CTCCCTCCCC,10.00000000,,ref->het,0.23913043,0.00000000,58.00000000,2.56637168,6.51000000 +620,chr22,30100109,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,47.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,0.00000000 +621,chr22,30120958,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.41000000,61.00000000,0.00000000,3.00000000,AC,2.00000000,,ref->het,0.28089888,0.00000000,95.00000000,4.20353982,0.55000000 +622,chr22,30158080,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.58000000,30.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.17948718,0.00000000,89.00000000,3.93805310,2.09000000 +623,chr22,30178134,TP,GAGTAATT,GAGTAATT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,0.16000000,32.00000000,0.00000000,1.00000000,AGTAATT,7.00000000,,ref->het,0.30434783,0.00000000,71.00000000,3.14159292,0.40000000 +624,chr22,30186006,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.00000000,55.00000000,0.00000000,8.00000000,G,1.00000000,,ref->het,0.27472527,0.00000000,103.00000000,4.55752212,4.08000000 +625,chr22,30188399,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.99000000,41.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25641026,0.00000000,92.00000000,4.07079646,2.58000000 +626,chr22,30361840,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,36.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.14864865,0.00000000,79.00000000,3.49557522,1.53000000 +627,chr22,30401186,TP,G,G,GATTT,GATTT,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.41000000,42.00000000,0.00000000,10.00000000,ATTT,4.00000000,,ref->het,0.26190476,0.00000000,72.00000000,3.18584071,0.78000000 +628,chr22,30458848,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.10000000,50.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.21311475,0.00000000,80.00000000,3.53982301,3.45000000 +629,chr22,30467247,TP,A,A,ACATCCATC,ACATCCATC,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,51.00000000,0.00000000,9.00000000,CATC,4.00000000,,ref->het,0.26388889,0.00000000,99.00000000,4.38053097,2.90000000 +630,chr22,30472784,TP,G,G,GCATGGCCA,GCATGGCCA,-1.00000000,,,,0.50000000,,,4.00000000,1.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,43.00000000,0.00000000,3.00000000,CATGGCCA,8.00000000,,ref->het,0.25423729,0.00000000,74.00000000,3.27433628,0.46000000 +631,chr22,30596339,TP,A,A,AGT,AGT,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.48000000,41.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.17567568,0.00000000,84.00000000,3.71681416,1.44000000 +632,chr22,30602880,TP,GTCTTGC,GTCTTGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.00000000,46.00000000,0.00000000,1.00000000,TCTTGC,6.00000000,,ref->het,0.17021277,0.00000000,98.00000000,4.33628319,1.28000000 +633,chr22,30610626,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.36000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,89.00000000,3.93805310,0.93000000 +634,chr22,30615517,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.13000000,45.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.21052632,0.00000000,82.00000000,3.62831858,0.86000000 +635,chr22,30620143,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.10000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,78.00000000,3.45132743,2.42000000 +636,chr22,30626828,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.43000000,36.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.13513514,0.00000000,86.00000000,3.80530973,3.34000000 +637,chr22,30632803,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.46000000,37.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.16666667,0.00000000,52.00000000,2.30088496,2.84000000 +638,chr22,30638676,TP,ATGG,ATGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.27000000,42.00000000,0.00000000,2.00000000,TGG,3.00000000,,ref->het,0.19354839,0.00000000,67.00000000,2.96460177,2.88000000 +639,chr22,30680611,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.02000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.25423729,0.00000000,78.00000000,3.45132743,4.51000000 +640,chr22,30691490,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,45.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26966292,0.00000000,96.00000000,4.24778761,0.48000000 +641,chr22,30713461,TP,G,G,GTTATTTAT,GTTATTTAT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.13000000,59.00000000,0.00000000,4.00000000,TTAT,4.00000000,,ref->het,0.32142857,0.00000000,71.00000000,3.14159292,2.21000000 +642,chr22,30726598,TP,TAACA,TAACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.99000000,47.00000000,0.00000000,1.00000000,AACA,4.00000000,,ref->het,0.17948718,0.00000000,86.00000000,3.80530973,1.81000000 +643,chr22,30751995,TP,ACCT,ACCT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.00000000,36.00000000,0.00000000,1.00000000,CCT,3.00000000,,ref->het,0.17857143,0.00000000,60.00000000,2.65486726,0.09000000 +644,chr22,30764549,TP,T,T,TTGGG,TTGGG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.20000000,39.00000000,0.00000000,0.00000000,TGGG,4.00000000,,ref->het,0.24615385,0.00000000,71.00000000,3.14159292,1.01000000 +645,chr22,30781142,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,18.00000000,19.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.55000000,35.00000000,0.00000000,19.00000000,T,1.00000000,,ref->het,0.26530612,0.00000000,67.00000000,2.96460177,3.47000000 +646,chr22,30801986,TP,A,A,AGAAT,AGAAT,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.81000000,47.00000000,0.00000000,5.00000000,GAAT,4.00000000,,ref->het,0.27586207,0.00000000,76.00000000,3.36283186,3.41000000 +647,chr22,30812814,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.02000000,44.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.22784810,0.00000000,81.00000000,3.58407080,1.79000000 +648,chr22,30898356,TP,AAAT,AAAT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.21000000,46.00000000,0.00000000,4.00000000,AAT,3.00000000,,ref->het,0.26865672,0.00000000,78.00000000,3.45132743,0.44000000 +649,chr22,30905805,TP,A,A,AGCCACC,AGCCACC,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.82000000,59.00000000,0.00000000,3.00000000,GCCACC,6.00000000,,ref->het,0.25000000,0.00000000,110.00000000,4.86725664,2.87000000 +650,chr22,30912998,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,0.41000000,56.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.19587629,0.00000000,101.00000000,4.46902655,1.42000000 +651,chr22,30917558,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.19000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19587629,0.00000000,105.00000000,4.64601770,1.11000000 +652,chr22,30949455,TP,TACAGGGTAAAAATAAGA,TACAGGGTAAAAATAAGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.24000000,49.00000000,0.00000000,1.00000000,ACAGGGTAAAAATAAGA,17.00000000,,ref->het,0.24000000,0.00000000,75.00000000,3.31858407,0.54000000 +653,chr22,30968075,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.82000000,38.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.25581395,0.00000000,102.00000000,4.51327434,3.56000000 +654,chr22,30996324,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.81000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26881720,0.00000000,102.00000000,4.51327434,2.69000000 +655,chr22,30996911,TP,CAA,CAA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.14000000,79.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.52873563,0.00000000,101.00000000,4.46902655,4.15000000 +656,chr22,30997223,TP,G,G,GGT,GGT,-1.00000000,,,,0.50000000,,,9.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.71000000,45.00000000,0.00000000,8.00000000,GT,2.00000000,,ref->het,0.18421053,0.00000000,87.00000000,3.84955752,2.14000000 +657,chr22,31016643,TP,ATTAT,ATTAT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.17000000,46.00000000,0.00000000,3.00000000,TTAT,4.00000000,,ref->het,0.21917808,0.00000000,81.00000000,3.58407080,1.08000000 +658,chr22,31021940,TP,CTCT,CTCT,C,C,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,80.00000000,0.00000000,2.00000000,TCT,3.00000000,,ref->het,0.43478261,0.00000000,98.00000000,4.33628319,1.59000000 +659,chr22,31025204,TP,ATT,ATT,A,A,-1.00000000,,,,0.50000000,,,5.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.49000000,75.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.34117647,0.00000000,89.00000000,3.93805310,2.88000000 +660,chr22,31026247,TP,GCTCTCC,GCTCTCC,G,G,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.39000000,33.00000000,0.00000000,6.00000000,CTCTCC,6.00000000,,ref->het,0.14285714,0.00000000,71.00000000,3.14159292,2.15000000 +661,chr22,31030145,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.28000000,77.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.33783784,0.00000000,81.00000000,3.58407080,0.62000000 +662,chr22,31030318,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.59000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22580645,0.00000000,100.00000000,4.42477876,4.80000000 +663,chr22,31038381,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,38.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.17105263,0.00000000,80.00000000,3.53982301,0.44000000 +664,chr22,31042730,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.59000000,34.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.30909091,0.00000000,74.00000000,3.27433628,5.94000000 +665,chr22,31052925,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,1.00000000,10.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.87000000,44.00000000,0.00000000,0.00000000,AG,2.00000000,,ref->het,0.19047619,0.00000000,76.00000000,3.36283186,3.32000000 +666,chr22,31059039,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.34000000,55.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.22077922,0.00000000,91.00000000,4.02654867,5.97000000 +667,chr22,31089014,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.88000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.20987654,0.00000000,86.00000000,3.80530973,2.29000000 +668,chr22,31097715,TP,G,G,GATAA,GATAA,-1.00000000,,,,1.00000000,,,10.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.43000000,37.00000000,0.00000000,9.00000000,ATAA,4.00000000,,ref->het,0.44642857,0.00000000,92.00000000,4.07079646,2.52000000 +669,chr22,31145676,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.96000000,37.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,88.00000000,3.89380531,7.18000000 +670,chr22,31150483,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,6.51000000,44.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19672131,0.00000000,77.00000000,3.40707965,13.66000000 +671,chr22,31151584,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.55000000,56.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.30487805,0.00000000,96.00000000,4.24778761,1.14000000 +672,chr22,31152269,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.80000000,39.00000000,0.00000000,3.00000000,GC,2.00000000,,ref->het,0.25000000,0.00000000,90.00000000,3.98230088,1.04000000 +673,chr22,31152988,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.39000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.29090909,0.00000000,73.00000000,3.23008850,10.21000000 +674,chr22,31187916,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.90000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,76.00000000,3.36283186,2.58000000 +675,chr22,31217260,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.67000000,46.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22222222,0.00000000,69.00000000,3.05309735,1.74000000 +676,chr22,31245612,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.59000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.23636364,0.00000000,66.00000000,2.92035398,1.22000000 +677,chr22,31251797,TP,G,G,GCT,GCT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.13000000,41.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.14736842,0.00000000,99.00000000,4.38053097,1.37000000 +678,chr22,31269065,TP,T,T,TGTTTG,TGTTTG,-1.00000000,,,,0.50000000,,,1.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.47000000,45.00000000,0.00000000,0.00000000,GTTTG,5.00000000,,ref->het,0.18333333,0.00000000,67.00000000,2.96460177,1.82000000 +679,chr22,31282180,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.39000000,67.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.24175824,0.00000000,94.00000000,4.15929204,0.32000000 +680,chr22,31282495,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.42000000,56.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,2.50000000 +681,chr22,31288440,TP,AAAGG,AAAGG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.21000000,47.00000000,0.00000000,2.00000000,AAGG,4.00000000,,ref->het,0.20253165,0.00000000,86.00000000,3.80530973,6.41000000 +682,chr22,31330295,TP,TAAAG,TAAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.23000000,80.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.29487179,0.00000000,86.00000000,3.80530973,1.38000000 +683,chr22,31370752,TP,ATATT,ATATT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.69000000,35.00000000,0.00000000,10.00000000,TATT,4.00000000,,ref->het,0.22916667,0.00000000,81.00000000,3.58407080,0.60000000 +684,chr22,31372988,TP,CCAGGCTGGAGTGCAGTGCTGCAATCTT,CCAGGCTGGAGTGCAGTGCTGCAATCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.55000000,30.00000000,0.00000000,1.00000000,CAGGCTGGAGTGCAGTGCTGCAATCTT,27.00000000,,ref->het,0.15151515,0.00000000,36.00000000,1.59292035,5.36000000 +685,chr22,31387910,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.34000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25641026,0.00000000,91.00000000,4.02654867,2.10000000 +686,chr22,31405172,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,16.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.01000000,36.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,81.00000000,3.58407080,4.65000000 +687,chr22,31422720,TP,ATTATTTCTGTG,ATTATTTCTGTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.28000000,57.00000000,0.00000000,1.00000000,TTATTTCTGTG,11.00000000,,ref->het,0.22368421,0.00000000,77.00000000,3.40707965,0.00000000 +688,chr22,31429133,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.86000000,40.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.14473684,0.00000000,82.00000000,3.62831858,1.05000000 +689,chr22,31450093,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.26000000,45.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.18750000,0.00000000,84.00000000,3.71681416,0.34000000 +690,chr22,31460945,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.98000000,44.00000000,0.00000000,4.00000000,AAAC,4.00000000,,ref->het,0.17647059,0.00000000,79.00000000,3.49557522,1.06000000 +691,chr22,31472270,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.92000000,40.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.28358209,0.00000000,89.00000000,3.93805310,2.58000000 +692,chr22,31473063,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.78000000,33.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,91.00000000,4.02654867,7.28000000 +693,chr22,31484341,TP,ACTT,ACTT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.85000000,48.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.19230769,0.00000000,83.00000000,3.67256637,1.15000000 +694,chr22,31486030,TP,TGAGGTCAGGAGTTCGAGACCAGC,TGAGGTCAGGAGTTCGAGACCAGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,23.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,37.00000000,0.00000000,1.00000000,GAGGTCAGGAGTTCGAGACCAGC,23.00000000,,ref->het,0.12698413,0.00000000,60.00000000,2.65486726,1.32000000 +695,chr22,31494143,TP,AAAAAAAG,AAAAAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,22.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.25000000,44.00000000,0.00000000,2.00000000,AAAAAAG,7.00000000,,ref->het,0.22857143,0.00000000,72.00000000,3.18584071,9.44000000 +696,chr22,31494313,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.79000000,37.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.31111111,0.00000000,59.00000000,2.61061947,4.23000000 +697,chr22,31498276,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.19000000,58.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.27142857,0.00000000,75.00000000,3.31858407,1.33000000 +698,chr22,31531893,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.04000000,35.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.25862069,0.00000000,73.00000000,3.23008850,9.60000000 +699,chr22,31556226,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.45000000,39.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.30434783,0.00000000,89.00000000,3.93805310,4.20000000 +700,chr22,31563767,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,37.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,49.00000000,2.16814159,0.47000000 +701,chr22,31567568,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.75000000,42.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.22368421,0.00000000,84.00000000,3.71681416,9.24000000 +702,chr22,31570449,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.70000000,57.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.24324324,0.00000000,77.00000000,3.40707965,0.89000000 +703,chr22,31571479,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.11000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.28333333,0.00000000,78.00000000,3.45132743,1.92000000 +704,chr22,31573263,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.43000000,52.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.22058824,0.00000000,76.00000000,3.36283186,2.30000000 +705,chr22,31579319,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.63000000,32.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21333333,0.00000000,91.00000000,4.02654867,2.84000000 +706,chr22,31581155,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.31000000,49.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,77.00000000,3.40707965,1.37000000 +707,chr22,31589189,TP,TGA,TGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.82000000,68.00000000,0.00000000,2.00000000,GA,2.00000000,,ref->het,0.30769231,0.00000000,95.00000000,4.20353982,1.12000000 +708,chr22,31589326,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.09000000,57.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23711340,0.00000000,103.00000000,4.55752212,2.45000000 +709,chr22,31590979,TP,A,A,ATTTTT,ATTTTT,-1.00000000,,,,0.50000000,,,12.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.36000000,30.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.17647059,0.00000000,77.00000000,3.40707965,2.34000000 +710,chr22,31593921,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,4.22000000,31.00000000,0.00000000,0.00000000,CT,2.00000000,,ref->het,0.15000000,0.00000000,42.00000000,1.85840708,4.25000000 +711,chr22,31596298,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.27000000,40.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.14084507,0.00000000,80.00000000,3.53982301,2.02000000 +712,chr22,31597981,TP,G,G,GTT,GTT,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.68000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.22727273,0.00000000,86.00000000,3.80530973,5.30000000 +713,chr22,31618708,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.30000000,40.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.13513514,0.00000000,78.00000000,3.45132743,1.31000000 +714,chr22,31625550,TP,G,G,GGGCCCTCCTC,GGGCCCTCCTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.19000000,50.00000000,0.00000000,1.00000000,GGCCCTCCTC,10.00000000,,ref->het,0.19444444,0.00000000,78.00000000,3.45132743,1.63000000 +715,chr22,31626493,TP,GCTCTGGCTCTCTCCTCACCC,GCTCTGGCTCTCTCCTCACCC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.25000000,44.00000000,0.00000000,1.00000000,CTCTGGCTCTCTCCTCACCC,20.00000000,,ref->het,0.14457831,0.00000000,78.00000000,3.45132743,2.55000000 +716,chr22,31630402,TP,T,T,TCAGGGCCGGAGGCGCCC,TCAGGGCCGGAGGCGCCC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.96000000,83.00000000,0.00000000,0.00000000,CAGGGCCGGAGGCGCCC,17.00000000,,ref->het,0.30681818,0.00000000,88.00000000,3.89380531,1.43000000 +717,chr22,31635168,TP,A,A,AAAAACAAAACAAAACAAAAC,AAAAACAAAACAAAACAAAAC,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.17000000,44.00000000,0.00000000,5.00000000,AAAAC,5.00000000,,ref->het,0.23214286,0.00000000,69.00000000,3.05309735,0.73000000 +718,chr22,31643122,TP,AATAGAG,AATAGAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,20.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.09000000,34.00000000,0.00000000,1.00000000,ATAGAG,6.00000000,,ref->het,0.14705882,0.00000000,77.00000000,3.40707965,6.26000000 +719,chr22,31653038,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,19.00000000,21.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.61000000,34.00000000,0.00000000,21.00000000,A,1.00000000,,ref->het,0.27272727,0.00000000,66.00000000,2.92035398,9.33000000 +720,chr22,31658540,TP,AGTTTGTTT,AGTTTGTTT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.19000000,44.00000000,0.00000000,6.00000000,GTTT,4.00000000,,ref->het,0.21917808,0.00000000,82.00000000,3.62831858,0.98000000 +721,chr22,31661098,TP,AAAC,AAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,44.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.19117647,0.00000000,70.00000000,3.09734513,1.43000000 +722,chr22,31661392,TP,T,T,TACA,TACA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.69000000,51.00000000,0.00000000,1.00000000,ACA,3.00000000,,ref->het,0.20224719,0.00000000,97.00000000,4.29203540,1.24000000 +723,chr22,31664363,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.93000000,42.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.23456790,0.00000000,91.00000000,4.02654867,1.88000000 +724,chr22,31666129,TP,G,G,GAA,GAA,-1.00000000,,,,0.50000000,,,16.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.73000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21538462,0.00000000,76.00000000,3.36283186,7.08000000 +725,chr22,31669292,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,58.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.26190476,0.00000000,96.00000000,4.24778761,0.66000000 +726,chr22,31671697,TP,GAAAA,GAAAA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,19.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.51000000,33.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,65.00000000,2.87610619,5.08000000 +727,chr22,31673776,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.13000000,34.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25490196,0.00000000,73.00000000,3.23008850,3.62000000 +728,chr22,31681278,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.53000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.19512195,0.00000000,93.00000000,4.11504425,2.89000000 +729,chr22,31688901,TP,T,T,TACACACACACAC,TACACACACACAC,-1.00000000,,,,0.50000000,,,18.00000000,2.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,36.00000000,0.00000000,12.00000000,AC,2.00000000,,ref->het,0.14285714,0.00000000,82.00000000,3.62831858,3.40000000 +730,chr22,31697118,TP,AAAACAAAC,AAAACAAAC,A,A,-1.00000000,,,,0.50000000,,,5.00000000,9.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.75000000,30.00000000,0.00000000,7.00000000,AAAC,4.00000000,,ref->het,0.12068966,0.00000000,77.00000000,3.40707965,1.17000000 +731,chr22,31697882,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.15000000,49.00000000,0.00000000,5.00000000,TA,2.00000000,,ref->het,0.19767442,0.00000000,93.00000000,4.11504425,0.69000000 +732,chr22,31706135,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.06000000,33.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16326531,0.00000000,53.00000000,2.34513274,1.38000000 +733,chr22,31707356,TP,GAACA,GAACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.23000000,41.00000000,0.00000000,2.00000000,AACA,4.00000000,,ref->het,0.17647059,0.00000000,72.00000000,3.18584071,0.17000000 +734,chr22,31718803,TP,G,G,GTGGCTCATGCCTGTAATTCCAGCGA,GTGGCTCATGCCTGTAATTCCAGCGA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.77000000,41.00000000,0.00000000,0.00000000,TGGCTCATGCCTGTAATTCCAGCGA,25.00000000,,ref->het,0.20754717,0.00000000,61.00000000,2.69911504,0.72000000 +735,chr22,31735440,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.59000000,34.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,87.00000000,3.84955752,5.21000000 +736,chr22,31742367,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.53000000,31.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23376623,0.00000000,91.00000000,4.02654867,7.64000000 +737,chr22,31745376,TP,CAAAAAAT,CAAAAAAT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.21000000,36.00000000,0.00000000,3.00000000,AAAAAAT,7.00000000,,ref->het,0.11594203,0.00000000,88.00000000,3.89380531,1.08000000 +738,chr22,31759383,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.61000000,49.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,72.00000000,3.18584071,2.39000000 +739,chr22,31780112,TP,TAG,TAG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.56000000,52.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.22093023,0.00000000,93.00000000,4.11504425,0.80000000 +740,chr22,31781435,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.20000000,40.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.16923077,0.00000000,68.00000000,3.00884956,2.24000000 +741,chr22,31785587,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.34000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.20967742,0.00000000,77.00000000,3.40707965,1.14000000 +742,chr22,31820112,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.19000000,39.00000000,0.00000000,9.00000000,TG,2.00000000,,ref->het,0.20289855,0.00000000,84.00000000,3.71681416,2.68000000 +743,chr22,31826897,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.85000000,46.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.30769231,0.00000000,98.00000000,4.33628319,3.52000000 +744,chr22,31856232,TP,G,G,GAC,GAC,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.34000000,45.00000000,0.00000000,11.00000000,AC,2.00000000,,ref->het,0.21333333,0.00000000,93.00000000,4.11504425,4.40000000 +745,chr22,31979859,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.43000000,43.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,71.00000000,3.14159292,11.07000000 +746,chr22,32019482,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,1.00000000,24.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.57000000,43.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.16949153,0.00000000,70.00000000,3.09734513,9.25000000 +747,chr22,32030486,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.73000000,38.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.19230769,0.00000000,82.00000000,3.62831858,2.45000000 +748,chr22,32212863,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.04000000,52.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.20833333,0.00000000,76.00000000,3.36283186,0.79000000 +749,chr22,32222182,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,59.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.24050633,0.00000000,85.00000000,3.76106195,1.12000000 +750,chr22,32228335,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,58.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,74.00000000,3.27433628,1.18000000 +751,chr22,32241803,TP,G,G,GTGTGTA,GTGTGTA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.46000000,47.00000000,0.00000000,0.00000000,TGTGTA,6.00000000,,ref->het,0.21739130,0.00000000,80.00000000,3.53982301,3.80000000 +752,chr22,32253785,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.85000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,95.00000000,4.20353982,2.59000000 +753,chr22,32264073,TP,G,G,GAAATACCCA,GAAATACCCA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.68000000,37.00000000,0.00000000,1.00000000,AAATACCCA,9.00000000,,ref->het,0.15068493,0.00000000,80.00000000,3.53982301,3.92000000 +754,chr22,32264187,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.16250000,0.00000000,89.00000000,3.93805310,3.40000000 +755,chr22,32288005,TP,ATTTC,ATTTC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.21000000,45.00000000,0.00000000,3.00000000,TTTC,4.00000000,,ref->het,0.22222222,0.00000000,67.00000000,2.96460177,3.00000000 +756,chr22,32290069,TP,GTTTTTCTT,GTTTTTCTT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.73000000,55.00000000,0.00000000,2.00000000,TTTTTCTT,8.00000000,,ref->het,0.22077922,0.00000000,90.00000000,3.98230088,1.23000000 +757,chr22,32292240,TP,ATAAT,ATAAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.86000000,31.00000000,0.00000000,1.00000000,TAAT,4.00000000,,ref->het,0.09259259,0.00000000,60.00000000,2.65486726,4.07000000 +758,chr22,32294590,TP,CATTAAT,CATTAAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.33000000,42.00000000,0.00000000,2.00000000,ATTAAT,6.00000000,,ref->het,0.17187500,0.00000000,74.00000000,3.27433628,1.11000000 +759,chr22,32302303,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.07000000,38.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.22368421,0.00000000,92.00000000,4.07079646,5.68000000 +760,chr22,32303604,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.77000000,52.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.20588235,0.00000000,76.00000000,3.36283186,1.85000000 +761,chr22,32304850,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,10.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.57000000,40.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20481928,0.00000000,88.00000000,3.89380531,1.67000000 +762,chr22,32306908,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.54000000,46.00000000,0.00000000,2.00000000,GC,2.00000000,,ref->het,0.20731707,0.00000000,87.00000000,3.84955752,3.87000000 +763,chr22,32307934,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.72000000,57.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.24675325,0.00000000,81.00000000,3.58407080,0.85000000 +764,chr22,32311705,TP,TTC,TTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.35000000,52.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.19718310,0.00000000,75.00000000,3.31858407,2.36000000 +765,chr22,32314611,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,35.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20238095,0.00000000,97.00000000,4.29203540,1.01000000 +766,chr22,32314821,TP,C,C,CAGAG,CAGAG,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,49.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.26865672,0.00000000,78.00000000,3.45132743,0.08000000 +767,chr22,32325406,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.75000000,45.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.24657534,0.00000000,78.00000000,3.45132743,2.14000000 +768,chr22,32329510,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.85000000,42.00000000,0.00000000,6.00000000,GT,2.00000000,,ref->het,0.30434783,0.00000000,56.00000000,2.47787611,9.72000000 +769,chr22,32332418,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.17000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.17948718,0.00000000,88.00000000,3.89380531,2.64000000 +770,chr22,32333196,TP,A,A,AC,AC,-1.00000000,,,,1.00000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.92000000,43.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.30188679,0.00000000,65.00000000,2.87610619,4.93000000 +771,chr22,32333265,TP,TCTGA,TCTGA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.77000000,45.00000000,0.00000000,1.00000000,CTGA,4.00000000,,ref->het,0.22388060,0.00000000,73.00000000,3.23008850,7.48000000 +772,chr22,32334140,TP,G,G,GAC,GAC,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.11000000,39.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.51724138,0.00000000,72.00000000,3.18584071,3.77000000 +773,chr22,32335345,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.02000000,38.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.17073171,0.00000000,90.00000000,3.98230088,2.30000000 +774,chr22,32336159,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.80000000,40.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.15116279,0.00000000,93.00000000,4.11504425,2.64000000 +775,chr22,32337851,TP,AGAT,AGAT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.77000000,65.00000000,0.00000000,2.00000000,GAT,3.00000000,,ref->het,0.27777778,0.00000000,93.00000000,4.11504425,1.14000000 +776,chr22,32337912,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.19000000,65.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.28089888,0.00000000,98.00000000,4.33628319,1.45000000 +777,chr22,32338003,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.18000000,73.00000000,0.00000000,3.00000000,CT,2.00000000,,ref->het,0.33333333,0.00000000,100.00000000,4.42477876,0.82000000 +778,chr22,32338398,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,62.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.24271845,0.00000000,104.00000000,4.60176991,0.51000000 +779,chr22,32343068,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.10000000,56.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.25531915,0.00000000,102.00000000,4.51327434,1.28000000 +780,chr22,32357472,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.45000000,61.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.39726027,0.00000000,88.00000000,3.89380531,3.50000000 +781,chr22,32361523,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.29000000,43.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.19354839,0.00000000,104.00000000,4.60176991,2.36000000 +782,chr22,32364883,TP,CCTCTGCCCCAGGA,CCTCTGCCCCAGGA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.97000000,61.00000000,0.00000000,2.00000000,CTCTGCCCCAGGA,13.00000000,,ref->het,0.34920635,0.00000000,70.00000000,3.09734513,3.50000000 +783,chr22,32365078,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20289855,0.00000000,80.00000000,3.53982301,1.62000000 +784,chr22,32366882,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,4.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.53000000,45.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.16250000,0.00000000,88.00000000,3.89380531,0.09000000 +785,chr22,32371450,TP,A,A,AAAAAT,AAAAAT,-1.00000000,,,,0.50000000,,,6.00000000,11.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.16000000,37.00000000,0.00000000,5.00000000,AAAAT,5.00000000,,ref->het,0.26785714,0.00000000,83.00000000,3.67256637,4.73000000 +786,chr22,32372087,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20000000,0.00000000,97.00000000,4.29203540,2.11000000 +787,chr22,32372919,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.36000000,38.00000000,0.00000000,7.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,85.00000000,3.76106195,1.21000000 +788,chr22,32375106,TP,AATTT,AATTT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.00000000,56.00000000,0.00000000,1.00000000,ATTT,4.00000000,,ref->het,0.23529412,0.00000000,73.00000000,3.23008850,0.54000000 +789,chr22,32375462,TP,CCTCT,CCTCT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.19000000,45.00000000,0.00000000,10.00000000,CT,2.00000000,,ref->het,0.23214286,0.00000000,64.00000000,2.83185841,1.06000000 +790,chr22,32377378,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.45000000,56.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19230769,0.00000000,87.00000000,3.84955752,2.22000000 +791,chr22,32377926,TP,CCTA,CCTA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,71.00000000,0.00000000,1.00000000,CTA,3.00000000,,ref->het,0.34848485,0.00000000,72.00000000,3.18584071,0.06000000 +792,chr22,32381332,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.54000000,36.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.26086957,0.00000000,80.00000000,3.53982301,2.13000000 +793,chr22,32381877,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.33000000,44.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.19736842,0.00000000,82.00000000,3.62831858,1.81000000 +794,chr22,32382518,TP,G,G,GTA,GTA,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.30000000,46.00000000,0.00000000,7.00000000,TA,2.00000000,,ref->het,0.35087719,0.00000000,66.00000000,2.92035398,1.71000000 +795,chr22,32385150,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.64000000,33.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.21311475,0.00000000,90.00000000,3.98230088,7.59000000 +796,chr22,32395942,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,65.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.41269841,0.00000000,73.00000000,3.23008850,0.00000000 +797,chr22,32424529,TP,A,A,AAGGGTAT,AAGGGTAT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.46000000,42.00000000,0.00000000,1.00000000,AGGGTAT,7.00000000,,ref->het,0.16393443,0.00000000,70.00000000,3.09734513,2.84000000 +798,chr22,32424577,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.39000000,36.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.12500000,0.00000000,74.00000000,3.27433628,11.38000000 +799,chr22,32426903,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.37000000,48.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.22950820,0.00000000,73.00000000,3.23008850,5.03000000 +800,chr22,32429200,TP,T,T,TTTTTAC,TTTTTAC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.20000000,43.00000000,0.00000000,0.00000000,TTTTAC,6.00000000,,ref->het,0.22033898,0.00000000,67.00000000,2.96460177,1.96000000 +801,chr22,32430563,TP,ATATATT,ATATATT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.09000000,60.00000000,0.00000000,1.00000000,TATATT,6.00000000,,ref->het,0.24038462,0.00000000,109.00000000,4.82300885,1.00000000 +802,chr22,32432013,TP,A,A,AGC,AGC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.15000000,57.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.49367089,0.00000000,80.00000000,3.53982301,1.87000000 +803,chr22,32448866,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,1.07000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.18918919,0.00000000,79.00000000,3.49557522,5.55000000 +804,chr22,32525113,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.42000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.19767442,0.00000000,94.00000000,4.15929204,2.00000000 +805,chr22,32535781,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.25000000,38.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.20547945,0.00000000,81.00000000,3.58407080,4.36000000 +806,chr22,32536431,TP,TTAC,TTAC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.31000000,50.00000000,0.00000000,2.00000000,TAC,3.00000000,,ref->het,0.19444444,0.00000000,78.00000000,3.45132743,0.86000000 +807,chr22,32538406,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.60000000,44.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.17391304,0.00000000,99.00000000,4.38053097,2.26000000 +808,chr22,32538727,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,47.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.18987342,0.00000000,86.00000000,3.80530973,0.96000000 +809,chr22,32539321,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.56000000,36.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,80.00000000,3.53982301,0.55000000 +810,chr22,32539503,TP,TGTATACACGG,TGTATACACGG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.64000000,37.00000000,0.00000000,1.00000000,GTATACACGG,10.00000000,,ref->het,0.12903226,0.00000000,63.00000000,2.78761062,0.23000000 +811,chr22,32539791,TP,G,G,GAAA,GAAA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.50000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25396825,0.00000000,70.00000000,3.09734513,2.56000000 +812,chr22,32546943,TP,C,C,CCTCT,CCTCT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.52000000,51.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.28571429,0.00000000,53.00000000,2.34513274,3.13000000 +813,chr22,32549888,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,15.00000000,12.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.91000000,30.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.19047619,0.00000000,75.00000000,3.31858407,4.72000000 +814,chr22,32550364,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.51000000,35.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.24000000,0.00000000,89.00000000,3.93805310,4.06000000 +815,chr22,32553618,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.33000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21126761,0.00000000,77.00000000,3.40707965,1.27000000 +816,chr22,32588121,TP,G,G,GATT,GATT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.33000000,50.00000000,0.00000000,3.00000000,ATT,3.00000000,,ref->het,0.22077922,0.00000000,85.00000000,3.76106195,1.97000000 +817,chr22,32613550,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.45000000,54.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.27272727,0.00000000,70.00000000,3.09734513,0.36000000 +818,chr22,32637616,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.79000000,36.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.24074074,0.00000000,69.00000000,3.05309735,6.44000000 +819,chr22,32671651,TP,G,G,GCA,GCA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.32000000,46.00000000,0.00000000,3.00000000,CA,2.00000000,,ref->het,0.23456790,0.00000000,91.00000000,4.02654867,2.09000000 +820,chr22,32676710,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,12.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.15000000,37.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.29824561,0.00000000,72.00000000,3.18584071,4.37000000 +821,chr22,32677827,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.32000000,39.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.22916667,0.00000000,101.00000000,4.46902655,4.18000000 +822,chr22,32701475,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.96000000,71.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.49462366,0.00000000,102.00000000,4.51327434,2.08000000 +823,chr22,32702737,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.00000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,99.00000000,4.38053097,1.13000000 +824,chr22,32707681,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,50.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.22891566,0.00000000,86.00000000,3.80530973,0.84000000 +825,chr22,32713798,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,5.11000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,84.00000000,3.71681416,13.02000000 +826,chr22,32714571,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.81000000,33.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21917808,0.00000000,86.00000000,3.80530973,2.27000000 +827,chr22,32716697,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.49000000,45.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21621622,0.00000000,81.00000000,3.58407080,1.74000000 +828,chr22,32782897,TP,AAGCAATTCTCTATTGAGAAGG,AAGCAATTCTCTATTGAGAAGG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.70000000,32.00000000,0.00000000,1.00000000,AGCAATTCTCTATTGAGAAGG,21.00000000,,ref->het,0.13513514,0.00000000,82.00000000,3.62831858,0.95000000 +829,chr22,32785994,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.49000000,34.00000000,0.00000000,8.00000000,AAG,3.00000000,,ref->het,0.14285714,0.00000000,75.00000000,3.31858407,1.17000000 +830,chr22,32788242,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.11000000,33.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,1.78000000 +831,chr22,32788679,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.25000000,58.00000000,0.00000000,2.00000000,TA,2.00000000,,ref->het,0.20000000,0.00000000,104.00000000,4.60176991,3.24000000 +832,chr22,32807293,TP,G,G,GAT,GAT,-1.00000000,,,,0.50000000,,,7.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.08000000,42.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.23913043,0.00000000,53.00000000,2.34513274,3.47000000 +833,chr22,32832541,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.27000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.23287671,0.00000000,90.00000000,3.98230088,6.46000000 +834,chr22,32832673,TP,G,G,GTATTTTATTT,GTATTTTATTT,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.98000000,39.00000000,0.00000000,5.00000000,TATTT,5.00000000,,ref->het,0.18750000,0.00000000,96.00000000,4.24778761,3.47000000 +835,chr22,32850774,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.24000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22368421,0.00000000,83.00000000,3.67256637,2.74000000 +836,chr22,32912401,TP,GACA,GACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.77000000,38.00000000,0.00000000,2.00000000,ACA,3.00000000,,ref->het,0.17142857,0.00000000,72.00000000,3.18584071,1.59000000 +837,chr22,32927414,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,40.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.27777778,0.00000000,57.00000000,2.52212389,5.99000000 +838,chr22,32929358,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,33.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.14634146,0.00000000,90.00000000,3.98230088,0.94000000 +839,chr22,32948876,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.93000000,43.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.31428571,0.00000000,93.00000000,4.11504425,5.55000000 +840,chr22,32976994,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.52000000,40.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.32758621,0.00000000,67.00000000,2.96460177,6.24000000 +841,chr22,32981588,TP,C,C,CAAT,CAAT,-1.00000000,,,,0.50000000,,,10.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,39.00000000,0.00000000,9.00000000,AAT,3.00000000,,ref->het,0.34042553,0.00000000,65.00000000,2.87610619,0.41000000 +842,chr22,32990301,TP,A,A,AATCC,AATCC,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.54000000,37.00000000,0.00000000,11.00000000,ATCC,4.00000000,,ref->het,0.21739130,0.00000000,68.00000000,3.00884956,1.67000000 +843,chr22,32991360,TP,A,A,AATG,AATG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.89000000,48.00000000,0.00000000,0.00000000,ATG,3.00000000,,ref->het,0.20338983,0.00000000,66.00000000,2.92035398,1.56000000 +844,chr22,32999685,TP,AAAAACAAAAACAAAAC,AAAAACAAAAACAAAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.59000000,54.00000000,0.00000000,1.00000000,AAAACAAAAACAAAAC,16.00000000,,ref->het,0.26315789,0.00000000,62.00000000,2.74336283,2.48000000 +845,chr22,33007940,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.53000000,41.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.47297297,0.00000000,96.00000000,4.24778761,3.39000000 +846,chr22,33008738,TP,ACTCT,ACTCT,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.01000000,50.00000000,0.00000000,5.00000000,CT,2.00000000,,ref->het,0.28301887,0.00000000,57.00000000,2.52212389,1.65000000 +847,chr22,33009821,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.66000000,94.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.46666667,0.00000000,81.00000000,3.58407080,3.83000000 +848,chr22,33009833,TP,C,C,CTA,CTA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.63000000,47.00000000,0.00000000,0.00000000,TA,2.00000000,,ref->het,0.17391304,0.00000000,77.00000000,3.40707965,3.67000000 +849,chr22,33012206,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.25316456,0.00000000,84.00000000,3.71681416,0.72000000 +850,chr22,33015840,TP,C,C,CTTTT,CTTTT,-1.00000000,,,,0.50000000,,,8.00000000,19.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.40000000,53.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.20731707,0.00000000,100.00000000,4.42477876,8.73000000 +851,chr22,33017760,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.55000000,41.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.30379747,0.00000000,89.00000000,3.93805310,4.09000000 +852,chr22,33020946,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.42000000,47.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,77.00000000,3.40707965,1.13000000 +853,chr22,33023737,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,63.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.33928571,0.00000000,62.00000000,2.74336283,0.64000000 +854,chr22,33024488,TP,T,T,TC,TC,-1.00000000,,,,1.00000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.22000000,100.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.45000000,0.00000000,67.00000000,2.96460177,0.37000000 +855,chr22,33027637,TP,C,C,CAAAG,CAAAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.50000000,50.00000000,0.00000000,0.00000000,AAAG,4.00000000,,ref->het,0.23333333,0.00000000,66.00000000,2.92035398,2.55000000 +856,chr22,33030678,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.35000000,46.00000000,0.00000000,4.00000000,AG,2.00000000,,ref->het,0.20289855,0.00000000,72.00000000,3.18584071,2.78000000 +857,chr22,33037996,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.25000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.19230769,0.00000000,92.00000000,4.07079646,3.54000000 +858,chr22,33038777,TP,T,T,TTGAG,TTGAG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,51.00000000,0.00000000,0.00000000,TGAG,4.00000000,,ref->het,0.22950820,0.00000000,63.00000000,2.78761062,0.63000000 +859,chr22,33063177,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.24000000,0.00000000,81.00000000,3.58407080,1.66000000 +860,chr22,33063473,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.50000000,42.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.24637681,0.00000000,83.00000000,3.67256637,5.53000000 +861,chr22,33064523,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.68000000,36.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.20754717,0.00000000,74.00000000,3.27433628,3.89000000 +862,chr22,33068946,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.60000000,40.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.18181818,0.00000000,69.00000000,3.05309735,0.48000000 +863,chr22,33089431,TP,C,C,CTCT,CTCT,-1.00000000,,,,1.00000000,,,4.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.94000000,61.00000000,0.00000000,3.00000000,TCT,3.00000000,,ref->het,0.37500000,0.00000000,74.00000000,3.27433628,2.90000000 +864,chr22,33089464,TP,C,C,CTCTTCT,CTCTTCT,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.58000000,49.00000000,0.00000000,3.00000000,TCT,3.00000000,,ref->het,0.44444444,0.00000000,73.00000000,3.23008850,2.59000000 +865,chr22,33089776,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.07000000,70.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.42857143,0.00000000,87.00000000,3.84955752,0.56000000 +866,chr22,33092247,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.60000000,44.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,68.00000000,3.00884956,2.92000000 +867,chr22,33104963,TP,CTCTTTCTT,CTCTTTCTT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.01000000,47.00000000,0.00000000,4.00000000,TCTT,4.00000000,,ref->het,0.25454545,0.00000000,65.00000000,2.87610619,3.22000000 +868,chr22,33120042,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,51.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21333333,0.00000000,83.00000000,3.67256637,0.83000000 +869,chr22,33190145,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.60000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.27631579,0.00000000,82.00000000,3.62831858,3.34000000 +870,chr22,33224288,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.21000000,31.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.23809524,0.00000000,68.00000000,3.00884956,2.22000000 +871,chr22,33258878,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.52000000,32.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.47761194,0.00000000,86.00000000,3.80530973,6.06000000 +872,chr22,33396463,TP,CAGAGAGAGAG,CAGAGAGAGAG,C,C,-1.00000000,,,,0.50000000,,,12.00000000,2.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.12000000,38.00000000,0.00000000,17.00000000,AG,2.00000000,,ref->het,0.19148936,0.00000000,64.00000000,2.83185841,8.33000000 +873,chr22,33412290,TP,C,C,CATATAT,CATATAT,-1.00000000,,,,0.50000000,,,11.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.76000000,35.00000000,0.00000000,8.00000000,AT,2.00000000,,ref->het,0.13333333,0.00000000,81.00000000,3.58407080,0.68000000 +874,chr22,33438639,TP,C,C,CGGGAG,CGGGAG,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.69000000,42.00000000,0.00000000,1.00000000,GGGAG,5.00000000,,ref->het,0.17241379,0.00000000,64.00000000,2.83185841,0.83000000 +875,chr22,33461005,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.32000000,55.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.26582278,0.00000000,83.00000000,3.67256637,1.25000000 +876,chr22,33473162,TP,ATC,ATC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.97000000,39.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.16666667,0.00000000,74.00000000,3.27433628,3.62000000 +877,chr22,33502898,TP,ATGCTC,ATGCTC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.31000000,39.00000000,0.00000000,1.00000000,TGCTC,5.00000000,,ref->het,0.17567568,0.00000000,77.00000000,3.40707965,1.46000000 +878,chr22,33587735,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.38000000,39.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.23595506,0.00000000,98.00000000,4.33628319,2.49000000 +879,chr22,33588510,TP,CGTGT,CGTGT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.23000000,40.00000000,0.00000000,12.00000000,GT,2.00000000,,ref->het,0.21250000,0.00000000,85.00000000,3.76106195,0.70000000 +880,chr22,33589478,TP,AAATT,AAATT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.61000000,62.00000000,0.00000000,3.00000000,AATT,4.00000000,,ref->het,0.27142857,0.00000000,85.00000000,3.76106195,1.55000000 +881,chr22,33589920,TP,T,T,TGTG,TGTG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.01000000,58.00000000,0.00000000,1.00000000,GTG,3.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,2.80000000 +882,chr22,33592693,TP,ACTGT,ACTGT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.29000000,61.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.24444444,0.00000000,94.00000000,4.15929204,1.49000000 +883,chr22,33632528,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.12000000,57.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.22950820,0.00000000,70.00000000,3.09734513,2.25000000 +884,chr22,33634674,TP,A,A,AAAT,AAAT,-1.00000000,,,,1.00000000,,,10.00000000,6.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.59000000,79.00000000,0.00000000,9.00000000,AAT,3.00000000,,ref->het,0.49180328,0.00000000,76.00000000,3.36283186,2.50000000 +885,chr22,33725560,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.41000000,39.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,1.09000000 +886,chr22,33780433,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.52000000,47.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.19178082,0.00000000,76.00000000,3.36283186,0.18000000 +887,chr22,33798290,TP,C,C,CTCAATCAA,CTCAATCAA,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.48000000,48.00000000,0.00000000,7.00000000,TCAA,4.00000000,,ref->het,0.28571429,0.00000000,83.00000000,3.67256637,0.45000000 +888,chr22,33802035,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.03000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.35294118,0.00000000,80.00000000,3.53982301,3.77000000 +889,chr22,33872359,TP,CTATTATTAT,CTATTATTAT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,4.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.11000000,35.00000000,0.00000000,13.00000000,TAT,3.00000000,,ref->het,0.19642857,0.00000000,80.00000000,3.53982301,1.55000000 +890,chr22,33907569,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.65000000,35.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,3.91000000 +891,chr22,33915046,TP,G,G,GAGAGAGAC,GAGAGAGAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.83000000,50.00000000,0.00000000,0.00000000,AGAGAGAC,8.00000000,,ref->het,0.19696970,0.00000000,62.00000000,2.74336283,0.82000000 +892,chr22,33990882,TP,A,A,AATCTAC,AATCTAC,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.00000000,90.00000000,0.00000000,0.00000000,ATCTAC,6.00000000,,ref->het,0.48051948,0.00000000,82.00000000,3.62831858,1.57000000 +893,chr22,34112909,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.03000000,32.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.24285714,0.00000000,90.00000000,3.98230088,12.06000000 +894,chr22,34125532,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,7.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.07000000,51.00000000,0.00000000,6.00000000,AT,2.00000000,,ref->het,0.20000000,0.00000000,103.00000000,4.55752212,0.42000000 +895,chr22,34144911,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.74000000,35.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,88.00000000,3.89380531,3.53000000 +896,chr22,34151045,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.56000000,35.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.22666667,0.00000000,85.00000000,3.76106195,2.12000000 +897,chr22,34154532,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.93000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.28767123,0.00000000,78.00000000,3.45132743,1.30000000 +898,chr22,34155963,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.66000000,35.00000000,0.00000000,2.00000000,CTT,3.00000000,,ref->het,0.16129032,0.00000000,69.00000000,3.05309735,7.59000000 +899,chr22,34221313,TP,TAAATA,TAAATA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.42000000,43.00000000,0.00000000,2.00000000,AAATA,5.00000000,,ref->het,0.18181818,0.00000000,65.00000000,2.87610619,1.35000000 +900,chr22,34222296,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.39000000,32.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,77.00000000,3.40707965,1.56000000 +901,chr22,34241248,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.38000000,52.00000000,0.00000000,2.00000000,AAAG,4.00000000,,ref->het,0.25925926,0.00000000,58.00000000,2.56637168,0.96000000 +902,chr22,34264246,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,68.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.44444444,0.00000000,90.00000000,3.98230088,0.60000000 +903,chr22,34275351,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.58000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22972973,0.00000000,81.00000000,3.58407080,1.17000000 +904,chr22,34287936,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.05000000,61.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.28395062,0.00000000,83.00000000,3.67256637,0.77000000 +905,chr22,34297292,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,64.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.55913978,0.00000000,97.00000000,4.29203540,1.70000000 +906,chr22,34306058,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.87000000,43.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.36842105,0.00000000,66.00000000,2.92035398,3.63000000 +907,chr22,34324302,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.53000000,43.00000000,0.00000000,3.00000000,AAAC,4.00000000,,ref->het,0.17808219,0.00000000,80.00000000,3.53982301,0.74000000 +908,chr22,34328461,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.00000000,43.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.26666667,0.00000000,65.00000000,2.87610619,2.87000000 +909,chr22,34335015,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.78000000,59.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.47368421,0.00000000,79.00000000,3.49557522,0.96000000 +910,chr22,34341710,TP,TC,TC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.37000000,40.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.50000000,0.00000000,89.00000000,3.93805310,3.94000000 +911,chr22,34400567,TP,T,T,TCTGA,TCTGA,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.98000000,40.00000000,0.00000000,0.00000000,CTGA,4.00000000,,ref->het,0.28205128,0.00000000,46.00000000,2.03539823,2.04000000 +912,chr22,34402864,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.89000000,44.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.23880597,0.00000000,74.00000000,3.27433628,2.10000000 +913,chr22,34466280,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.88000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,61.00000000,2.69911504,5.63000000 +914,chr22,34633325,TP,A,A,AAAAT,AAAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.02000000,60.00000000,0.00000000,5.00000000,AAAT,4.00000000,,ref->het,0.27272727,0.00000000,85.00000000,3.76106195,0.59000000 +915,chr22,34690474,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.85000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,85.00000000,3.76106195,3.43000000 +916,chr22,34691595,TP,C,C,CGT,CGT,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.81000000,43.00000000,0.00000000,6.00000000,GT,2.00000000,,ref->het,0.21739130,0.00000000,84.00000000,3.71681416,1.18000000 +917,chr22,34708027,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.19000000,53.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.30555556,0.00000000,83.00000000,3.67256637,0.60000000 +918,chr22,34740575,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,16.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.80000000,53.00000000,0.00000000,15.00000000,TG,2.00000000,,ref->het,0.25396825,0.00000000,85.00000000,3.76106195,0.50000000 +919,chr22,34757677,TP,CAGGCTGAGGTCA,CAGGCTGAGGTCA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.98000000,53.00000000,0.00000000,1.00000000,AGGCTGAGGTCA,12.00000000,,ref->het,0.25301205,0.00000000,84.00000000,3.71681416,0.85000000 +920,chr22,34760077,TP,CTT,CTT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.46000000,54.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,69.00000000,3.05309735,0.62000000 +921,chr22,34930653,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.30000000,30.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.27272727,0.00000000,71.00000000,3.14159292,8.36000000 +922,chr22,34966293,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,11.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.96000000,35.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,98.00000000,4.33628319,6.01000000 +923,chr22,34966650,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,46.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.24561404,0.00000000,63.00000000,2.78761062,0.00000000 +924,chr22,34979345,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.41000000,36.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.26229508,0.00000000,70.00000000,3.09734513,0.62000000 +925,chr22,34987964,TP,TTAATA,TTAATA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.34000000,52.00000000,0.00000000,1.00000000,TAATA,5.00000000,,ref->het,0.20652174,0.00000000,97.00000000,4.29203540,2.86000000 +926,chr22,34996297,TP,C,C,CAA,CAA,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,52.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,1.55000000 +927,chr22,35036296,TP,C,C,CCTCTCTCT,CCTCTCTCT,-1.00000000,,,,0.50000000,,,20.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.09000000,41.00000000,0.00000000,16.00000000,CT,2.00000000,,ref->het,0.18000000,0.00000000,70.00000000,3.09734513,4.07000000 +928,chr22,35041410,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.70000000,55.00000000,0.00000000,4.00000000,AAAC,4.00000000,,ref->het,0.23863636,0.00000000,99.00000000,4.38053097,2.21000000 +929,chr22,35061095,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.00000000,53.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19767442,0.00000000,90.00000000,3.98230088,0.62000000 +930,chr22,35065319,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.68000000,43.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.20547945,0.00000000,79.00000000,3.49557522,1.69000000 +931,chr22,35106955,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.27000000,41.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,95.00000000,4.20353982,0.90000000 +932,chr22,35120852,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.24000000,41.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.16417910,0.00000000,71.00000000,3.14159292,0.48000000 +933,chr22,35123402,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.31000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.21621622,0.00000000,79.00000000,3.49557522,0.66000000 +934,chr22,35125750,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,3.29000000,38.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21126761,0.00000000,87.00000000,3.84955752,5.70000000 +935,chr22,35132332,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,18.00000000,20.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.79000000,35.00000000,0.00000000,19.00000000,A,1.00000000,,ref->het,0.30645161,0.00000000,80.00000000,3.53982301,11.26000000 +936,chr22,35134154,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.23000000,31.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.14285714,0.00000000,57.00000000,2.52212389,1.23000000 +937,chr22,35213711,TP,AGAT,AGAT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.17000000,49.00000000,0.00000000,3.00000000,GAT,3.00000000,,ref->het,0.19387755,0.00000000,104.00000000,4.60176991,0.75000000 +938,chr22,35216980,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.51000000,35.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.22388060,0.00000000,77.00000000,3.40707965,3.17000000 +939,chr22,35219423,TP,T,T,TGAATA,TGAATA,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.36000000,55.00000000,0.00000000,1.00000000,GAATA,5.00000000,,ref->het,0.23684211,0.00000000,83.00000000,3.67256637,1.62000000 +940,chr22,35220253,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.96000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22093023,0.00000000,88.00000000,3.89380531,1.49000000 +941,chr22,35353195,TP,CCTT,CCTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.95000000,48.00000000,0.00000000,1.00000000,CTT,3.00000000,,ref->het,0.19277108,0.00000000,89.00000000,3.93805310,1.01000000 +942,chr22,35496199,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.45000000,44.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21818182,0.00000000,65.00000000,2.87610619,3.03000000 +943,chr22,35505216,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,2.32000000,38.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.18309859,0.00000000,84.00000000,3.71681416,3.52000000 +944,chr22,35525916,TP,TTTTA,TTTTA,T,T,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.18000000,36.00000000,0.00000000,10.00000000,TTTA,4.00000000,,ref->het,0.24193548,0.00000000,99.00000000,4.38053097,1.28000000 +945,chr22,35537949,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,42.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.39189189,0.00000000,88.00000000,3.89380531,1.84000000 +946,chr22,35559622,TP,T,T,TTA,TTA,-1.00000000,,,,1.00000000,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,1.54000000,46.00000000,0.00000000,8.00000000,TA,2.00000000,,ref->het,0.42682927,0.00000000,97.00000000,4.29203540,1.96000000 +947,chr22,35569643,TP,GCTTAAAACAACAATAAAC,GCTTAAAACAACAATAAAC,G,G,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.70000000,65.00000000,0.00000000,1.00000000,CTTAAAACAACAATAAAC,18.00000000,,ref->het,0.31343284,0.00000000,69.00000000,3.05309735,0.19000000 +948,chr22,35569913,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.07000000,50.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.52112676,0.00000000,81.00000000,3.58407080,2.77000000 +949,chr22,35572342,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.44000000,30.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,76.00000000,3.36283186,1.20000000 +950,chr22,35572351,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.53000000,54.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.25757576,0.00000000,79.00000000,3.49557522,1.19000000 +951,chr22,35597631,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.85000000,64.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.26966292,0.00000000,97.00000000,4.29203540,3.08000000 +952,chr22,35597654,TP,TTG,TTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.53000000,58.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.22222222,0.00000000,92.00000000,4.07079646,2.36000000 +953,chr22,35600729,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.37000000,60.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,89.00000000,3.93805310,2.18000000 +954,chr22,35601849,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.63000000,42.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.22352941,0.00000000,94.00000000,4.15929204,1.95000000 +955,chr22,35602082,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.56000000,41.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.18292683,0.00000000,93.00000000,4.11504425,7.76000000 +956,chr22,35602142,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.74000000,46.00000000,0.00000000,4.00000000,TG,2.00000000,,ref->het,0.21739130,0.00000000,100.00000000,4.42477876,4.00000000 +957,chr22,35697220,TP,C,C,CGGGTGTACACCCACTGTACACCGA,CGGGTGTACACCCACTGTACACCGA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.97000000,42.00000000,0.00000000,0.00000000,GGGTGTACACCCACTGTACACCGA,24.00000000,,ref->het,0.18055556,0.00000000,79.00000000,3.49557522,1.90000000 +958,chr22,35791385,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.79000000,32.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.17910448,0.00000000,80.00000000,3.53982301,6.03000000 +959,chr22,35845997,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.31000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22340426,0.00000000,103.00000000,4.55752212,0.38000000 +960,chr22,35859881,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.01000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.24285714,0.00000000,74.00000000,3.27433628,0.75000000 +961,chr22,35993119,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.82000000,60.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.21505376,0.00000000,99.00000000,4.38053097,0.02000000 +962,chr22,36113494,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.73000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.21126761,0.00000000,90.00000000,3.98230088,8.24000000 +963,chr22,36124320,TP,CTAGCCGTCTTTCAGA,CTAGCCGTCTTTCAGA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.01000000,44.00000000,0.00000000,1.00000000,TAGCCGTCTTTCAGA,15.00000000,,ref->het,0.21839080,0.00000000,84.00000000,3.71681416,2.02000000 +964,chr22,36221836,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.37000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.23728814,0.00000000,74.00000000,3.27433628,3.79000000 +965,chr22,36275208,TP,A,A,AAAGG,AAAGG,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.29000000,57.00000000,0.00000000,1.00000000,AAGG,4.00000000,,ref->het,0.51136364,0.00000000,97.00000000,4.29203540,1.73000000 +966,chr22,36276460,TP,G,G,GAAGGGGGAAGCTGAGCGCTTCCCCCTGTA,GAAGGGGGAAGCTGAGCGCTTCCCCCTGTA,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.02000000,83.00000000,0.00000000,0.00000000,AAGGGGGAAGCTGAGCGCTTCCCCCTGTA,29.00000000,,ref->het,0.43023256,0.00000000,80.00000000,3.53982301,1.35000000 +967,chr22,36276904,TP,CTGTT,CTGTT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.37000000,92.00000000,0.00000000,1.00000000,TGTT,4.00000000,,ref->het,0.51515152,0.00000000,105.00000000,4.64601770,0.58000000 +968,chr22,36280427,TP,A,A,AG,AG,-1.00000000,,,,1.00000000,,,1.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,5.69000000,61.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.48214286,0.00000000,72.00000000,3.18584071,7.72000000 +969,chr22,36303173,TP,T,T,TGCCACAC,TGCCACAC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,0.39000000,43.00000000,0.00000000,0.00000000,GCCACAC,7.00000000,,ref->het,0.29230769,0.00000000,73.00000000,3.23008850,0.68000000 +970,chr22,36310750,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.75000000,53.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.21621622,0.00000000,87.00000000,3.84955752,2.13000000 +971,chr22,36338819,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.81000000,44.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.26000000,0.00000000,75.00000000,3.31858407,4.68000000 +972,chr22,36372494,TP,C,C,CAAA,CAAA,-1.00000000,,,,0.50000000,,,19.00000000,16.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,3.90000000,32.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.18181818,0.00000000,72.00000000,3.18584071,8.86000000 +973,chr22,36392908,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.63000000,30.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,89.00000000,3.93805310,7.04000000 +974,chr22,36397030,TP,G,G,GTGGC,GTGGC,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.23000000,51.00000000,0.00000000,2.00000000,TGGC,4.00000000,,ref->het,0.18666667,0.00000000,86.00000000,3.80530973,1.60000000 +975,chr22,36405167,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.19000000,46.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17391304,0.00000000,77.00000000,3.40707965,3.82000000 +976,chr22,36408340,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.89000000,47.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,78.00000000,3.45132743,2.86000000 +977,chr22,36409106,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,46.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.25000000,0.00000000,83.00000000,3.67256637,0.66000000 +978,chr22,36427242,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.02000000,53.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.20289855,0.00000000,74.00000000,3.27433628,0.76000000 +979,chr22,36452390,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.93000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.25352113,0.00000000,90.00000000,3.98230088,6.06000000 +980,chr22,36453534,TP,ATTAAC,ATTAAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.91000000,52.00000000,0.00000000,1.00000000,TTAAC,5.00000000,,ref->het,0.20253165,0.00000000,88.00000000,3.89380531,0.97000000 +981,chr22,36464490,TP,TTTA,TTTA,T,T,-1.00000000,,,,1.00000000,,,4.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.44000000,64.00000000,0.00000000,5.00000000,TTA,3.00000000,,ref->het,0.48529412,0.00000000,82.00000000,3.62831858,2.67000000 +982,chr22,36467467,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.58000000,63.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,95.00000000,4.20353982,2.66000000 +983,chr22,36467627,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.30000000,40.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.17333333,0.00000000,82.00000000,3.62831858,2.21000000 +984,chr22,36468720,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.86000000,55.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.32558140,0.00000000,96.00000000,4.24778761,0.52000000 +985,chr22,36469061,TP,AATAAATAAATAC,AATAAATAAATAC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.59000000,49.00000000,0.00000000,1.00000000,ATAAATAAATAC,12.00000000,,ref->het,0.16842105,0.00000000,87.00000000,3.84955752,1.33000000 +986,chr22,36476955,TP,CTTA,CTTA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,53.00000000,0.00000000,2.00000000,TTA,3.00000000,,ref->het,0.20689655,0.00000000,95.00000000,4.20353982,0.79000000 +987,chr22,36505770,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,2.95000000,37.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,75.00000000,3.31858407,7.88000000 +988,chr22,36507968,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.06000000,34.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.25862069,0.00000000,73.00000000,3.23008850,9.08000000 +989,chr22,36615772,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.23000000,52.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.20779221,0.00000000,83.00000000,3.67256637,0.42000000 +990,chr22,36616050,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.39000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,85.00000000,3.76106195,0.75000000 +991,chr22,36632469,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,12.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,40.00000000,0.00000000,13.00000000,CT,2.00000000,,ref->het,0.24615385,0.00000000,81.00000000,3.58407080,4.44000000 +992,chr22,36812657,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.31000000,52.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23170732,0.00000000,88.00000000,3.89380531,1.29000000 +993,chr22,36828345,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.23000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18518519,0.00000000,87.00000000,3.84955752,1.17000000 +994,chr22,36840586,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.81000000,39.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,105.00000000,4.64601770,3.07000000 +995,chr22,36846445,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.57000000,56.00000000,0.00000000,2.00000000,GT,2.00000000,,ref->het,0.24096386,0.00000000,89.00000000,3.93805310,0.57000000 +996,chr22,36847709,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.61000000,43.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.19736842,0.00000000,83.00000000,3.67256637,1.16000000 +997,chr22,36848319,TP,C,C,CTATCT,CTATCT,-1.00000000,,,,0.50000000,,,1.00000000,1.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.48000000,68.00000000,0.00000000,0.00000000,TATCT,5.00000000,,ref->het,0.27631579,0.00000000,82.00000000,3.62831858,1.47000000 +998,chr22,36954935,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,5.14000000,38.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.28000000,0.00000000,64.00000000,2.83185841,17.41000000 +999,chr22,36966317,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.48000000,32.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.10606061,0.00000000,83.00000000,3.67256637,5.39000000 +1000,chr22,36971094,TP,TTTTG,TTTTG,T,T,-1.00000000,,,,0.50000000,,,5.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.50000000,50.00000000,0.00000000,6.00000000,TTTG,4.00000000,,ref->het,0.21839080,0.00000000,109.00000000,4.82300885,0.89000000 +1001,chr22,36980099,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.80000000,39.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.49090909,0.00000000,71.00000000,3.14159292,12.60000000 +1002,chr22,36982700,TP,G,G,GAAA,GAAA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.05000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,85.00000000,3.76106195,2.14000000 +1003,chr22,36988590,TP,T,T,TTGCATATTGCATA,TTGCATATTGCATA,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.42000000,52.00000000,0.00000000,2.00000000,TGCATATTGCATA,13.00000000,,ref->het,0.30434783,0.00000000,87.00000000,3.84955752,1.35000000 +1004,chr22,36992345,TP,TCAAA,TCAAA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.21000000,56.00000000,0.00000000,6.00000000,CAAA,4.00000000,,ref->het,0.29113924,0.00000000,98.00000000,4.33628319,1.99000000 +1005,chr22,36996235,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.22000000,50.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.22916667,0.00000000,103.00000000,4.55752212,1.64000000 +1006,chr22,36996494,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.17000000,46.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.35443038,0.00000000,86.00000000,3.80530973,1.28000000 +1007,chr22,37004693,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.29000000,57.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.38596491,0.00000000,70.00000000,3.09734513,3.32000000 +1008,chr22,37005553,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.51000000,67.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.45121951,0.00000000,103.00000000,4.55752212,7.80000000 +1009,chr22,37013844,TP,C,C,CTGTTT,CTGTTT,-1.00000000,,,,1.00000000,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.07000000,83.00000000,0.00000000,1.00000000,TGTTT,5.00000000,,ref->het,0.41095890,0.00000000,84.00000000,3.71681416,1.18000000 +1010,chr22,37017628,TP,A,A,ACAGACGG,ACAGACGG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.71000000,55.00000000,0.00000000,0.00000000,CAGACGG,7.00000000,,ref->het,0.23188406,0.00000000,76.00000000,3.36283186,1.82000000 +1011,chr22,37028753,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,53.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.31506849,0.00000000,91.00000000,4.02654867,2.24000000 +1012,chr22,37075000,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.97000000,60.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.24657534,0.00000000,88.00000000,3.89380531,2.71000000 +1013,chr22,37092091,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.63000000,30.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,4.07000000 +1014,chr22,37094428,TP,T,T,TAGATAGAG,TAGATAGAG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.40000000,49.00000000,0.00000000,0.00000000,AGATAGAG,8.00000000,,ref->het,0.16279070,0.00000000,96.00000000,4.24778761,0.26000000 +1015,chr22,37094543,TP,T,T,TGATAGATAGATAGATAGATA,TGATAGATAGATAGATAGATA,-1.00000000,,,,0.50000000,,,11.00000000,1.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.43000000,51.00000000,0.00000000,6.00000000,GATA,4.00000000,,ref->het,0.20454545,0.00000000,102.00000000,4.51327434,1.61000000 +1016,chr22,37154575,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,14.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.74000000,31.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.26315789,0.00000000,75.00000000,3.31858407,7.99000000 +1017,chr22,37187274,TP,CCTGT,CCTGT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.55000000,47.00000000,0.00000000,1.00000000,CTGT,4.00000000,,ref->het,0.22972973,0.00000000,76.00000000,3.36283186,2.53000000 +1018,chr22,37187538,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.49000000,48.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.28787879,0.00000000,72.00000000,3.18584071,3.14000000 +1019,chr22,37187692,TP,G,G,GC,GC,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.98000000,77.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.47777778,0.00000000,98.00000000,4.33628319,2.09000000 +1020,chr22,37190698,TP,GAAGA,GAAGA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,3.16000000,50.00000000,0.00000000,2.00000000,AAGA,4.00000000,,ref->het,0.17021277,0.00000000,101.00000000,4.46902655,4.62000000 +1021,chr22,37192036,TP,CTTTAA,CTTTAA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.03000000,65.00000000,0.00000000,2.00000000,TTTAA,5.00000000,,ref->het,0.27027027,0.00000000,115.00000000,5.08849558,2.93000000 +1022,chr22,37216012,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.19000000,48.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18390805,0.00000000,88.00000000,3.89380531,0.80000000 +1023,chr22,37216793,TP,T,T,TTTTG,TTTTG,-1.00000000,,,,0.50000000,,,1.00000000,11.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.50000000,75.00000000,0.00000000,0.00000000,TTTG,4.00000000,,ref->het,0.30588235,0.00000000,89.00000000,3.93805310,0.42000000 +1024,chr22,37217324,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.01000000,55.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.19767442,0.00000000,93.00000000,4.11504425,1.12000000 +1025,chr22,37217671,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.38000000,50.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,2.96000000 +1026,chr22,37217720,TP,C,C,CAG,CAG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.29000000,50.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.19444444,0.00000000,77.00000000,3.40707965,2.37000000 +1027,chr22,37228355,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,4.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.92000000,49.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.19277108,0.00000000,92.00000000,4.07079646,0.90000000 +1028,chr22,37245780,TP,A,A,AAAT,AAAT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.40000000,54.00000000,0.00000000,5.00000000,AAT,3.00000000,,ref->het,0.24675325,0.00000000,89.00000000,3.93805310,1.71000000 +1029,chr22,37255586,TP,GAAGA,GAAGA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.99000000,50.00000000,0.00000000,4.00000000,AAGA,4.00000000,,ref->het,0.26666667,0.00000000,71.00000000,3.14159292,4.60000000 +1030,chr22,37268628,TP,T,T,TTG,TTG,-1.00000000,,,,0.50000000,,,1.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.02000000,35.00000000,0.00000000,0.00000000,TG,2.00000000,,ref->het,0.17543860,0.00000000,65.00000000,2.87610619,7.51000000 +1031,chr22,37286109,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.66000000,75.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.33333333,0.00000000,99.00000000,4.38053097,2.29000000 +1032,chr22,37293393,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.86000000,59.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.25471698,0.00000000,111.00000000,4.91150442,1.82000000 +1033,chr22,37302957,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.67000000,43.00000000,0.00000000,1.00000000,AGA,3.00000000,,ref->het,0.22666667,0.00000000,77.00000000,3.40707965,1.98000000 +1034,chr22,37303156,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,48.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.23170732,0.00000000,92.00000000,4.07079646,1.10000000 +1035,chr22,37376402,TP,TAC,TAC,T,T,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.20000000,73.00000000,0.00000000,8.00000000,AC,2.00000000,,ref->het,0.38805970,0.00000000,81.00000000,3.58407080,3.31000000 +1036,chr22,37401422,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.96000000,52.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.20000000,0.00000000,98.00000000,4.33628319,4.08000000 +1037,chr22,37424283,TP,TGTCACACACA,TGTCACACACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.30000000,47.00000000,0.00000000,1.00000000,GTCACACACA,10.00000000,,ref->het,0.17977528,0.00000000,92.00000000,4.07079646,0.89000000 +1038,chr22,37424680,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.48000000,40.00000000,0.00000000,10.00000000,G,1.00000000,,ref->het,0.28787879,0.00000000,82.00000000,3.62831858,6.82000000 +1039,chr22,37426356,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.10000000,39.00000000,0.00000000,9.00000000,CA,2.00000000,,ref->het,0.18333333,0.00000000,82.00000000,3.62831858,3.39000000 +1040,chr22,37426650,TP,AACAC,AACAC,A,A,-1.00000000,,,,0.50000000,,,8.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.27000000,38.00000000,0.00000000,10.00000000,AC,2.00000000,,ref->het,0.18055556,0.00000000,88.00000000,3.89380531,9.71000000 +1041,chr22,37430364,TP,C,C,CTATT,CTATT,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.10000000,52.00000000,0.00000000,4.00000000,TATT,4.00000000,,ref->het,0.25000000,0.00000000,109.00000000,4.82300885,0.05000000 +1042,chr22,37510301,TP,GCTCCTT,GCTCCTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.07000000,33.00000000,0.00000000,5.00000000,CTCCTT,6.00000000,,ref->het,0.21153846,0.00000000,64.00000000,2.83185841,1.22000000 +1043,chr22,37555045,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.49000000,43.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.29166667,0.00000000,86.00000000,3.80530973,7.86000000 +1044,chr22,37560351,TP,TGCCGGGGAGGGG,TGCCGGGGAGGGG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.35000000,41.00000000,0.00000000,2.00000000,GCCGGGGAGGGG,12.00000000,,ref->het,0.20000000,0.00000000,82.00000000,3.62831858,2.62000000 +1045,chr22,37562769,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.66000000,52.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.23076923,0.00000000,81.00000000,3.58407080,0.71000000 +1046,chr22,37594947,TP,C,C,CGT,CGT,-1.00000000,,,,0.50000000,,,8.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.19000000,49.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.21311475,0.00000000,76.00000000,3.36283186,1.34000000 +1047,chr22,37602326,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.50000000,38.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.24324324,0.00000000,91.00000000,4.02654867,7.58000000 +1048,chr22,37640364,TP,T,T,TTC,TTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.81000000,41.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.15294118,0.00000000,98.00000000,4.33628319,6.76000000 +1049,chr22,37675724,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.38000000,43.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.22388060,0.00000000,78.00000000,3.45132743,3.40000000 +1050,chr22,37701198,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.68000000,62.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.29268293,0.00000000,90.00000000,3.98230088,1.33000000 +1051,chr22,37712957,TP,AAAATAAAT,AAAATAAAT,A,A,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.31000000,37.00000000,0.00000000,10.00000000,AAAT,4.00000000,,ref->het,0.26315789,0.00000000,49.00000000,2.16814159,2.05000000 +1052,chr22,37746044,TP,C,C,CCCCGCCGTCCCGCCGT,CCCCGCCGTCCCGCCGT,-1.00000000,,,,0.50000000,,,4.00000000,7.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.85000000,48.00000000,0.00000000,2.00000000,CCCGCCGT,8.00000000,,ref->het,0.18518519,0.00000000,102.00000000,4.51327434,9.25000000 +1053,chr22,37765831,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.79000000,44.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.16901408,0.00000000,83.00000000,3.67256637,3.25000000 +1054,chr22,37769216,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.08000000,52.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.22448980,0.00000000,108.00000000,4.77876106,2.19000000 +1055,chr22,37769751,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,36.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.17948718,0.00000000,85.00000000,3.76106195,2.00000000 +1056,chr22,37795335,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.99000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.20547945,0.00000000,90.00000000,3.98230088,2.62000000 +1057,chr22,37795784,TP,TCCA,TCCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.22000000,61.00000000,0.00000000,1.00000000,CCA,3.00000000,,ref->het,0.23809524,0.00000000,89.00000000,3.93805310,1.65000000 +1058,chr22,37873303,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.88000000,42.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.29310345,0.00000000,76.00000000,3.36283186,4.22000000 +1059,chr22,37873434,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.05000000,37.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.14893617,0.00000000,51.00000000,2.25663717,4.07000000 +1060,chr22,37876689,TP,TTGA,TTGA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.31000000,47.00000000,0.00000000,2.00000000,TGA,3.00000000,,ref->het,0.20987654,0.00000000,88.00000000,3.89380531,1.88000000 +1061,chr22,37883925,TP,AGAAT,AGAAT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.34000000,50.00000000,0.00000000,5.00000000,GAAT,4.00000000,,ref->het,0.25000000,0.00000000,97.00000000,4.29203540,0.82000000 +1062,chr22,37891039,TP,ATTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,ATTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.54000000,33.00000000,0.00000000,1.00000000,TTCTCCTGCCTCAGCCTCCTGAGTAGCTGGGACTACAGGCACCAT,45.00000000,,ref->het,0.09230769,0.00000000,79.00000000,3.49557522,4.03000000 +1063,chr22,37906913,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.19000000,51.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22972973,0.00000000,81.00000000,3.58407080,2.64000000 +1064,chr22,37912041,TP,ATGTG,ATGTG,A,A,-1.00000000,,,,0.50000000,,,9.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.19000000,37.00000000,0.00000000,11.00000000,TG,2.00000000,,ref->het,0.16923077,0.00000000,81.00000000,3.58407080,2.17000000 +1065,chr22,37969282,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.35000000,63.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.30107527,0.00000000,97.00000000,4.29203540,1.85000000 +1066,chr22,38084544,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,1.24000000,60.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.20512821,0.00000000,87.00000000,3.84955752,3.28000000 +1067,chr22,38111411,TP,CGGTCAAGGCCAAG,CGGTCAAGGCCAAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,44.00000000,0.00000000,1.00000000,GGTCAAGGCCAAG,13.00000000,,ref->het,0.19780220,0.00000000,97.00000000,4.29203540,0.73000000 +1068,chr22,38122954,TP,CCCCGCCCCTG,CCCCGCCCCTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.56000000,58.00000000,0.00000000,1.00000000,CCCGCCCCTG,10.00000000,,ref->het,0.19767442,0.00000000,91.00000000,4.02654867,4.09000000 +1069,chr22,38133869,TP,C,C,CCAT,CCAT,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.33000000,51.00000000,0.00000000,6.00000000,CAT,3.00000000,,ref->het,0.26470588,0.00000000,85.00000000,3.76106195,1.00000000 +1070,chr22,38152425,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.22000000,54.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,75.00000000,3.31858407,2.02000000 +1071,chr22,38164956,TP,CTGA,CTGA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.11000000,41.00000000,0.00000000,2.00000000,TGA,3.00000000,,ref->het,0.15294118,0.00000000,94.00000000,4.15929204,3.15000000 +1072,chr22,38166722,TP,TAA,TAA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.62000000,50.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.19480519,0.00000000,89.00000000,3.93805310,0.99000000 +1073,chr22,38167527,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,1.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.53000000,43.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18750000,0.00000000,86.00000000,3.80530973,1.77000000 +1074,chr22,38281765,TP,TTATC,TTATC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.03000000,64.00000000,0.00000000,1.00000000,TATC,4.00000000,,ref->het,0.37681159,0.00000000,74.00000000,3.27433628,1.83000000 +1075,chr22,38314294,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,36.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.13978495,0.00000000,101.00000000,4.46902655,1.84000000 +1076,chr22,38343984,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.20895522,0.00000000,79.00000000,3.49557522,1.71000000 +1077,chr22,38391950,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.70000000,43.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.11111111,0.00000000,84.00000000,3.71681416,1.88000000 +1078,chr22,38392759,TP,TTTAA,TTTAA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,57.00000000,0.00000000,2.00000000,TTAA,4.00000000,,ref->het,0.22641509,0.00000000,108.00000000,4.77876106,1.04000000 +1079,chr22,38398131,TP,CCCCCGCTCCCGGCGGAGATTCAGGGAA,CCCCCGCTCCCGGCGGAGATTCAGGGAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,6.38000000,30.00000000,0.00000000,1.00000000,CCCCGCTCCCGGCGGAGATTCAGGGAA,27.00000000,,ref->het,0.20000000,0.00000000,65.00000000,2.87610619,15.04000000 +1080,chr22,38458154,TP,G,G,GGTGTGT,GGTGTGT,-1.00000000,,,,0.50000000,,,26.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.97000000,39.00000000,0.00000000,23.00000000,GT,2.00000000,,ref->het,0.26086957,0.00000000,75.00000000,3.31858407,3.07000000 +1081,chr22,38467932,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.05000000,45.00000000,0.00000000,7.00000000,C,1.00000000,,ref->het,0.17721519,0.00000000,87.00000000,3.84955752,0.67000000 +1082,chr22,38640926,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,34.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.13513514,0.00000000,88.00000000,3.89380531,0.17000000 +1083,chr22,38641948,TP,G,G,GGTGT,GGTGT,-1.00000000,,,,0.50000000,,,15.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.88000000,39.00000000,0.00000000,13.00000000,GT,2.00000000,,ref->het,0.17241379,0.00000000,80.00000000,3.53982301,3.65000000 +1084,chr22,38762084,TP,A,A,AGTGT,AGTGT,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.41000000,59.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.28000000,0.00000000,84.00000000,3.71681416,2.23000000 +1085,chr22,38811352,TP,GTA,GTA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.66000000,54.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.21428571,0.00000000,90.00000000,3.98230088,2.52000000 +1086,chr22,38978546,TP,A,A,AAAAC,AAAAC,-1.00000000,,,,0.50000000,,,9.00000000,7.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,37.00000000,0.00000000,8.00000000,AAAC,4.00000000,,ref->het,0.19565217,0.00000000,68.00000000,3.00884956,0.91000000 +1087,chr22,38979169,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,8.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.69000000,52.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.27058824,0.00000000,95.00000000,4.20353982,0.85000000 +1088,chr22,38993758,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.34000000,32.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.14285714,0.00000000,69.00000000,3.05309735,0.89000000 +1089,chr22,38998218,TP,TCCGTGATG,TCCGTGATG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.65000000,34.00000000,0.00000000,1.00000000,CCGTGATG,8.00000000,,ref->het,0.09230769,0.00000000,70.00000000,3.09734513,1.26000000 +1090,chr22,39007340,TP,T,T,TAAATA,TAAATA,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.16000000,51.00000000,0.00000000,6.00000000,AAATA,5.00000000,,ref->het,0.24675325,0.00000000,100.00000000,4.42477876,3.78000000 +1091,chr22,39095102,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.41000000,40.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.14285714,0.00000000,83.00000000,3.67256637,1.31000000 +1092,chr22,39095375,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.43000000,55.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.21951220,0.00000000,89.00000000,3.93805310,0.88000000 +1093,chr22,39102474,TP,TCTC,TCTC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,35.00000000,0.00000000,2.00000000,CTC,3.00000000,,ref->het,0.16326531,0.00000000,53.00000000,2.34513274,0.91000000 +1094,chr22,39129100,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.10000000,45.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.17721519,0.00000000,82.00000000,3.62831858,4.21000000 +1095,chr22,39143294,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.99000000,44.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.20192308,0.00000000,116.00000000,5.13274336,2.66000000 +1096,chr22,39152733,TP,C,C,CAGCTCCGCCCCCG,CAGCTCCGCCCCCG,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.04000000,33.00000000,0.00000000,1.00000000,AGCTCCGCCCCCG,13.00000000,,ref->het,0.12328767,0.00000000,89.00000000,3.93805310,2.24000000 +1097,chr22,39197776,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.84000000,51.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.20481928,0.00000000,87.00000000,3.84955752,5.12000000 +1098,chr22,39202097,TP,A,A,AAAT,AAAT,-1.00000000,,,,0.50000000,,,6.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.97000000,48.00000000,0.00000000,5.00000000,AAT,3.00000000,,ref->het,0.24242424,0.00000000,78.00000000,3.45132743,1.31000000 +1099,chr22,39203217,TP,AGAAGGAAG,AGAAGGAAG,A,A,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.97000000,47.00000000,0.00000000,6.00000000,GAAG,4.00000000,,ref->het,0.21917808,0.00000000,91.00000000,4.02654867,4.53000000 +1100,chr22,39229610,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.79000000,44.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.16279070,0.00000000,91.00000000,4.02654867,1.81000000 +1101,chr22,39271789,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,2.21000000,42.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.20879121,0.00000000,111.00000000,4.91150442,3.42000000 +1102,chr22,39285898,TP,T,T,TCTTTTCCTTTTCTTTC,TCTTTTCCTTTTCTTTC,-1.00000000,,,,0.50000000,,,2.00000000,10.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.35000000,54.00000000,0.00000000,1.00000000,CTTTTCCTTTTCTTTC,16.00000000,,ref->het,0.26865672,0.00000000,75.00000000,3.31858407,2.51000000 +1103,chr22,39298941,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,17.00000000,15.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,4.96000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.22950820,0.00000000,85.00000000,3.76106195,10.36000000 +1104,chr22,39314480,TP,ACCAGTCAGCCCCACCACAG,ACCAGTCAGCCCCACCACAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,19.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,36.00000000,0.00000000,1.00000000,CCAGTCAGCCCCACCACAG,19.00000000,,ref->het,0.10714286,0.00000000,84.00000000,3.71681416,2.96000000 +1105,chr22,39325550,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.04000000,34.00000000,0.00000000,5.00000000,AG,2.00000000,,ref->het,0.15254237,0.00000000,74.00000000,3.27433628,12.18000000 +1106,chr22,39350181,TP,ACCGACC,ACCGACC,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.32000000,68.00000000,0.00000000,3.00000000,CCGACC,6.00000000,,ref->het,0.48648649,0.00000000,90.00000000,3.98230088,3.16000000 +1107,chr22,39412484,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.59000000,44.00000000,0.00000000,2.00000000,CA,2.00000000,,ref->het,0.24175824,0.00000000,94.00000000,4.15929204,1.69000000 +1108,chr22,39591158,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,15.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.91000000,30.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,84.00000000,3.71681416,10.30000000 +1109,chr22,39607895,TP,C,C,CGG,CGG,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.55000000,36.00000000,0.00000000,9.00000000,G,1.00000000,,ref->het,0.21311475,0.00000000,74.00000000,3.27433628,6.36000000 +1110,chr22,39619961,TP,GTCCA,GTCCA,G,G,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.02000000,44.00000000,0.00000000,6.00000000,TCCA,4.00000000,,ref->het,0.22413793,0.00000000,70.00000000,3.09734513,2.60000000 +1111,chr22,39696343,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.44000000,46.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.36764706,0.00000000,81.00000000,3.58407080,3.94000000 +1112,chr22,39881388,TP,GAT,GAT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,66.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.27956989,0.00000000,102.00000000,4.51327434,0.47000000 +1113,chr22,39886058,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.85000000,32.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.24637681,0.00000000,79.00000000,3.49557522,3.70000000 +1114,chr22,39899570,TP,ATGT,ATGT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.00000000,59.00000000,0.00000000,2.00000000,TGT,3.00000000,,ref->het,0.21839080,0.00000000,95.00000000,4.20353982,2.55000000 +1115,chr22,39933144,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.01000000,45.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.19736842,0.00000000,79.00000000,3.49557522,0.53000000 +1116,chr22,39955414,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.05000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.19047619,0.00000000,102.00000000,4.51327434,3.64000000 +1117,chr22,39982563,TP,C,C,CCAAAA,CCAAAA,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.21000000,47.00000000,0.00000000,3.00000000,CAAAA,5.00000000,,ref->het,0.27500000,0.00000000,55.00000000,2.43362832,0.38000000 +1118,chr22,39988708,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,5.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.77000000,41.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.21212121,0.00000000,75.00000000,3.31858407,1.86000000 +1119,chr22,40026521,TP,A,A,AAAAAC,AAAAAC,-1.00000000,,,,0.50000000,,,5.00000000,10.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.00000000,42.00000000,0.00000000,4.00000000,AAAAC,5.00000000,,ref->het,0.27083333,0.00000000,63.00000000,2.78761062,0.58000000 +1120,chr22,40058408,TP,GCACAATGTGCTTTAGCACAATGTGA,GCACAATGTGCTTTAGCACAATGTGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.02000000,58.00000000,0.00000000,1.00000000,CACAATGTGCTTTAGCACAATGTGA,25.00000000,,ref->het,0.23711340,0.00000000,113.00000000,5.00000000,1.94000000 +1121,chr22,40226940,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.66000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,61.00000000,2.69911504,0.44000000 +1122,chr22,40484166,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.50000000,62.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.30666667,0.00000000,81.00000000,3.58407080,3.58000000 +1123,chr22,40536375,TP,CTG,CTG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.01000000,38.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.21428571,0.00000000,47.00000000,2.07964602,0.82000000 +1124,chr22,40763763,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.73000000,65.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.31666667,0.00000000,68.00000000,3.00884956,2.81000000 +1125,chr22,40970350,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.34000000,31.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.23611111,0.00000000,94.00000000,4.15929204,8.91000000 +1126,chr22,40984495,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,17.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.67000000,30.00000000,0.00000000,4.00000000,AAG,3.00000000,,ref->het,0.14516129,0.00000000,75.00000000,3.31858407,7.09000000 +1127,chr22,41004870,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.28000000,58.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.27692308,0.00000000,71.00000000,3.14159292,1.78000000 +1128,chr22,41033328,TP,T,T,TTGTATTGTAC,TTGTATTGTAC,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.37000000,36.00000000,0.00000000,0.00000000,TGTATTGTAC,10.00000000,,ref->het,0.17021277,0.00000000,34.00000000,1.50442478,0.74000000 +1129,chr22,41045852,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.50000000,41.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.23809524,0.00000000,77.00000000,3.40707965,6.03000000 +1130,chr22,41059350,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.41000000,33.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.24590164,0.00000000,72.00000000,3.18584071,3.35000000 +1131,chr22,41585463,TP,TTTTATTTA,TTTTATTTA,T,T,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.17000000,51.00000000,0.00000000,10.00000000,TTTA,4.00000000,,ref->het,0.24285714,0.00000000,94.00000000,4.15929204,2.02000000 +1132,chr22,41601581,TP,AAAG,AAAG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,60.00000000,0.00000000,3.00000000,AAG,3.00000000,,ref->het,0.25000000,0.00000000,91.00000000,4.02654867,2.55000000 +1133,chr22,41655715,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,1.32000000,31.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16363636,0.00000000,58.00000000,2.56637168,0.85000000 +1134,chr22,41753020,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.07000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.22033898,0.00000000,83.00000000,3.67256637,8.65000000 +1135,chr22,41784887,TP,T,T,TTGAG,TTGAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.18000000,60.00000000,0.00000000,0.00000000,TGAG,4.00000000,,ref->het,0.19801980,0.00000000,107.00000000,4.73451327,1.25000000 +1136,chr22,41784925,TP,T,T,TTTTA,TTTTA,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.55000000,44.00000000,0.00000000,7.00000000,TTTA,4.00000000,,ref->het,0.18333333,0.00000000,91.00000000,4.02654867,2.06000000 +1137,chr22,41798225,TP,G,G,GCACACA,GCACACA,-1.00000000,,,,0.50000000,,,14.00000000,3.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.63000000,47.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.27142857,0.00000000,79.00000000,3.49557522,1.72000000 +1138,chr22,41802379,TP,AGGAGTCTCCAGTTGGAGACTG,AGGAGTCTCCAGTTGGAGACTG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.18000000,62.00000000,0.00000000,1.00000000,GGAGTCTCCAGTTGGAGACTG,21.00000000,,ref->het,0.25555556,0.00000000,85.00000000,3.76106195,0.20000000 +1139,chr22,41812636,TP,GTAAT,GTAAT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.17000000,43.00000000,0.00000000,4.00000000,TAAT,4.00000000,,ref->het,0.18571429,0.00000000,83.00000000,3.67256637,1.25000000 +1140,chr22,41817730,TP,T,T,TTAAA,TTAAA,-1.00000000,,,,0.50000000,,,11.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.01000000,49.00000000,0.00000000,10.00000000,TAAA,4.00000000,,ref->het,0.22222222,0.00000000,83.00000000,3.67256637,1.09000000 +1141,chr22,41819978,TP,T,T,TATAC,TATAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,1.41000000,38.00000000,0.00000000,0.00000000,ATAC,4.00000000,,ref->het,0.23809524,0.00000000,42.00000000,1.85840708,3.01000000 +1142,chr22,41823489,TP,ATGC,ATGC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.10000000,65.00000000,0.00000000,1.00000000,TGC,3.00000000,,ref->het,0.30337079,0.00000000,91.00000000,4.02654867,1.37000000 +1143,chr22,41828208,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.80000000,72.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.31168831,0.00000000,82.00000000,3.62831858,1.34000000 +1144,chr22,41828703,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.00000000,46.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.18518519,0.00000000,84.00000000,3.71681416,0.19000000 +1145,chr22,41847922,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.93000000,62.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.28358209,0.00000000,74.00000000,3.27433628,3.13000000 +1146,chr22,41854130,TP,TTTG,TTTG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,9.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.10000000,50.00000000,0.00000000,4.00000000,TTG,3.00000000,,ref->het,0.18750000,0.00000000,87.00000000,3.84955752,1.40000000 +1147,chr22,41855019,TP,T,T,TAA,TAA,-1.00000000,,,,0.50000000,,,18.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.59000000,38.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.26785714,0.00000000,71.00000000,3.14159292,4.99000000 +1148,chr22,41855755,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.87000000,33.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,75.00000000,3.31858407,5.53000000 +1149,chr22,41864324,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.71000000,38.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20930233,0.00000000,55.00000000,2.43362832,9.32000000 +1150,chr22,41869296,TP,G,G,GGTTTTACT,GGTTTTACT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.20000000,44.00000000,0.00000000,0.00000000,GTTTTACT,8.00000000,,ref->het,0.16867470,0.00000000,84.00000000,3.71681416,3.01000000 +1151,chr22,41906328,TP,CATT,CATT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.36000000,41.00000000,0.00000000,2.00000000,ATT,3.00000000,,ref->het,0.15277778,0.00000000,77.00000000,3.40707965,0.52000000 +1152,chr22,41921577,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.54000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,78.00000000,3.45132743,4.46000000 +1153,chr22,41961676,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.64000000,35.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16949153,0.00000000,72.00000000,3.18584071,8.20000000 +1154,chr22,41974141,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.24000000,36.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.24193548,0.00000000,87.00000000,3.84955752,6.85000000 +1155,chr22,42000772,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.49000000,35.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.22077922,0.00000000,94.00000000,4.15929204,6.04000000 +1156,chr22,42002845,TP,CTACTT,CTACTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.25000000,57.00000000,0.00000000,1.00000000,TACTT,5.00000000,,ref->het,0.23529412,0.00000000,72.00000000,3.18584071,2.12000000 +1157,chr22,42007849,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,1.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.29000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.25974026,0.00000000,83.00000000,3.67256637,0.96000000 +1158,chr22,42008088,TP,C,C,CTTCCTTTCCTTTCCTTTCCTTTCCTTTCCTTTCCT,CTTCCTTTCCTTTCCTTTCCTTTCCTTTCCTTTCCT,-1.00000000,,,,0.50000000,,,13.00000000,3.00000000,1.00000000,35.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.34000000,33.00000000,0.00000000,6.00000000,TTCCT,5.00000000,,ref->het,0.12500000,0.00000000,58.00000000,2.56637168,2.16000000 +1159,chr22,42026273,TP,AAATAATAAT,AAATAATAAT,A,A,-1.00000000,,,,0.50000000,,,12.00000000,6.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.07000000,33.00000000,0.00000000,15.00000000,AAT,3.00000000,,ref->het,0.18367347,0.00000000,68.00000000,3.00884956,0.03000000 +1160,chr22,42048755,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.33000000,47.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,70.00000000,3.09734513,11.30000000 +1161,chr22,42048775,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.69000000,49.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.28787879,0.00000000,80.00000000,3.53982301,8.66000000 +1162,chr22,42050660,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.48000000,37.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,71.00000000,3.14159292,2.85000000 +1163,chr22,42128241,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.18000000,56.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21176471,0.00000000,89.00000000,3.93805310,2.25000000 +1164,chr22,42183303,TP,TTA,TTA,T,T,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.03000000,38.00000000,0.00000000,4.00000000,TA,2.00000000,,ref->het,0.16883117,0.00000000,92.00000000,4.07079646,2.07000000 +1165,chr22,42230642,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.61000000,41.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.24285714,0.00000000,86.00000000,3.80530973,2.49000000 +1166,chr22,42254317,TP,TTTTC,TTTTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.75000000,60.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.25974026,0.00000000,85.00000000,3.76106195,0.05000000 +1167,chr22,42279954,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.07000000,44.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.21538462,0.00000000,71.00000000,3.14159292,0.82000000 +1168,chr22,42370263,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.56000000,38.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,60.00000000,2.65486726,5.36000000 +1169,chr22,42380794,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.09000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.22352941,0.00000000,94.00000000,4.15929204,4.08000000 +1170,chr22,42393575,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.97000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.21311475,0.00000000,72.00000000,3.18584071,2.33000000 +1171,chr22,42395951,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.80000000,51.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.23529412,0.00000000,109.00000000,4.82300885,2.99000000 +1172,chr22,42398363,TP,C,C,CCT,CCT,-1.00000000,,,,0.50000000,,,3.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.70000000,69.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.30120482,0.00000000,88.00000000,3.89380531,1.58000000 +1173,chr22,42442298,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.30000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.18309859,0.00000000,87.00000000,3.84955752,2.51000000 +1174,chr22,42463208,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.30000000,39.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21428571,0.00000000,47.00000000,2.07964602,0.36000000 +1175,chr22,42467231,TP,A,A,AATAATAATAATG,AATAATAATAATG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.54000000,53.00000000,0.00000000,0.00000000,ATAATAATAATG,12.00000000,,ref->het,0.26229508,0.00000000,67.00000000,2.96460177,0.57000000 +1176,chr22,42586595,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.01000000,45.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.24324324,0.00000000,78.00000000,3.45132743,3.94000000 +1177,chr22,42590512,TP,TAGGCA,TAGGCA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.12000000,63.00000000,0.00000000,1.00000000,AGGCA,5.00000000,,ref->het,0.26744186,0.00000000,93.00000000,4.11504425,1.32000000 +1178,chr22,42621183,TP,AGTGTGTGTGT,AGTGTGTGTGT,A,A,-1.00000000,,,,0.50000000,,,13.00000000,5.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,1.22000000,42.00000000,0.00000000,18.00000000,GT,2.00000000,,ref->het,0.14666667,0.00000000,94.00000000,4.15929204,2.66000000 +1179,chr22,42689656,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,12.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.67000000,38.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.29268293,0.00000000,97.00000000,4.29203540,2.48000000 +1180,chr22,42832984,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.17000000,37.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.26436782,0.00000000,94.00000000,4.15929204,6.68000000 +1181,chr22,42910909,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,14.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.18000000,32.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.24137931,0.00000000,77.00000000,3.40707965,2.82000000 +1182,chr22,42957420,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.24000000,62.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.31645570,0.00000000,87.00000000,3.84955752,1.77000000 +1183,chr22,43021021,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.49000000,51.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.27380952,0.00000000,93.00000000,4.11504425,2.56000000 +1184,chr22,43022540,TP,AAAAC,AAAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.12000000,50.00000000,0.00000000,2.00000000,AAAC,4.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,0.99000000 +1185,chr22,43027530,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,49.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.26415094,0.00000000,59.00000000,2.61061947,0.49000000 +1186,chr22,43030866,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.26000000,43.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.12658228,0.00000000,86.00000000,3.80530973,0.75000000 +1187,chr22,43038937,TP,GAAGAA,GAAGAA,G,G,-1.00000000,,,,0.50000000,,,2.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.16000000,50.00000000,0.00000000,3.00000000,AAGAA,5.00000000,,ref->het,0.21621622,0.00000000,80.00000000,3.53982301,4.45000000 +1188,chr22,43057953,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.47000000,49.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.20312500,0.00000000,72.00000000,3.18584071,2.29000000 +1189,chr22,43082706,TP,ACT,ACT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.65000000,49.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.43636364,0.00000000,61.00000000,2.69911504,3.35000000 +1190,chr22,43086129,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,5.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.26000000,89.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.43209877,0.00000000,88.00000000,3.89380531,0.36000000 +1191,chr22,43089892,TP,TC,TC,T,T,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,47.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.45333333,0.00000000,83.00000000,3.67256637,2.19000000 +1192,chr22,43090878,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.81000000,43.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,75.00000000,3.31858407,0.75000000 +1193,chr22,43095712,TP,TTG,TTG,T,T,-1.00000000,,,,1.00000000,,,5.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.65000000,39.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.37931034,0.00000000,69.00000000,3.05309735,0.98000000 +1194,chr22,43103048,TP,T,T,TATAG,TATAG,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.48000000,42.00000000,0.00000000,0.00000000,ATAG,4.00000000,,ref->het,0.13636364,0.00000000,49.00000000,2.16814159,1.41000000 +1195,chr22,43107821,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,5.31000000,36.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,66.00000000,2.92035398,5.08000000 +1196,chr22,43109425,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,47.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.20689655,0.00000000,91.00000000,4.02654867,1.38000000 +1197,chr22,43124797,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.25000000,60.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.28915663,0.00000000,94.00000000,4.15929204,2.21000000 +1198,chr22,43130124,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.16000000,52.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.20270270,0.00000000,86.00000000,3.80530973,0.30000000 +1199,chr22,43144970,TP,T,T,TAC,TAC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.97000000,39.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.12820513,0.00000000,92.00000000,4.07079646,2.53000000 +1200,chr22,43153109,TP,C,C,CTCTT,CTCTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.59000000,36.00000000,0.00000000,1.00000000,TCTT,4.00000000,,ref->het,0.21428571,0.00000000,84.00000000,3.71681416,8.23000000 +1201,chr22,43187103,TP,A,A,ACCGCCG,ACCGCCG,-1.00000000,,,,0.50000000,,,6.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.36000000,38.00000000,0.00000000,4.00000000,CCG,3.00000000,,ref->het,0.21568627,0.00000000,70.00000000,3.09734513,4.87000000 +1202,chr22,43189493,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,38.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.26027397,0.00000000,82.00000000,3.62831858,4.91000000 +1203,chr22,43201348,TP,AAAAAC,AAAAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.87000000,49.00000000,0.00000000,2.00000000,AAAAC,5.00000000,,ref->het,0.21818182,0.00000000,74.00000000,3.27433628,9.35000000 +1204,chr22,43219480,TP,C,C,CTTT,CTTT,-1.00000000,,,,0.50000000,,,16.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.76000000,34.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.22388060,0.00000000,85.00000000,3.76106195,5.97000000 +1205,chr22,43219510,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.25000000,54.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,88.00000000,3.89380531,8.21000000 +1206,chr22,43226426,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,8.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.96000000,40.00000000,0.00000000,7.00000000,G,1.00000000,,ref->het,0.21917808,0.00000000,81.00000000,3.58407080,1.48000000 +1207,chr22,43229904,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.43000000,46.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.22535211,0.00000000,80.00000000,3.53982301,1.82000000 +1208,chr22,43307958,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.73000000,63.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.32786885,0.00000000,71.00000000,3.14159292,2.97000000 +1209,chr22,43308075,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.92000000,49.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21518987,0.00000000,84.00000000,3.71681416,3.52000000 +1210,chr22,43315019,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.89000000,54.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.24675325,0.00000000,82.00000000,3.62831858,3.68000000 +1211,chr22,43344384,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.22000000,43.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16666667,0.00000000,90.00000000,3.98230088,1.58000000 +1212,chr22,43368937,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,16.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,3.22000000,36.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.46666667,0.00000000,88.00000000,3.89380531,8.57000000 +1213,chr22,43407518,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.13000000,53.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.22077922,0.00000000,83.00000000,3.67256637,3.29000000 +1214,chr22,43449876,TP,C,C,CG,CG,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.10000000,100.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.56179775,0.00000000,93.00000000,4.11504425,2.32000000 +1215,chr22,43450723,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.30000000,60.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.49206349,0.00000000,70.00000000,3.09734513,1.53000000 +1216,chr22,43453331,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.54000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.38709677,0.00000000,66.00000000,2.92035398,1.70000000 +1217,chr22,43465109,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.52000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.24657534,0.00000000,81.00000000,3.58407080,3.18000000 +1218,chr22,43470106,TP,TCATCCATC,TCATCCATC,T,T,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.65000000,53.00000000,0.00000000,6.00000000,CATC,4.00000000,,ref->het,0.28571429,0.00000000,76.00000000,3.36283186,2.42000000 +1219,chr22,43564459,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,14.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.78000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,66.00000000,2.92035398,6.16000000 +1220,chr22,43575174,TP,T,T,TTTG,TTTG,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.63000000,48.00000000,0.00000000,6.00000000,TTG,3.00000000,,ref->het,0.20312500,0.00000000,75.00000000,3.31858407,0.65000000 +1221,chr22,43581405,TP,C,C,CAAGG,CAAGG,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.25000000,37.00000000,0.00000000,1.00000000,AAGG,4.00000000,,ref->het,0.16853933,0.00000000,91.00000000,4.02654867,1.82000000 +1222,chr22,43620467,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.05000000,40.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.15068493,0.00000000,78.00000000,3.45132743,0.54000000 +1223,chr22,43652818,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,1.78000000,73.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,100.00000000,4.42477876,5.90000000 +1224,chr22,43656813,TP,G,G,GGAGGCTATAGCAA,GGAGGCTATAGCAA,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.12000000,59.00000000,0.00000000,0.00000000,GAGGCTATAGCAA,13.00000000,,ref->het,0.30158730,0.00000000,74.00000000,3.27433628,0.30000000 +1225,chr22,43672883,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.07000000,51.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.31578947,0.00000000,86.00000000,3.80530973,1.45000000 +1226,chr22,43701619,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,2.16000000,59.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.24390244,0.00000000,87.00000000,3.84955752,3.92000000 +1227,chr22,43701727,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,16.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.87000000,42.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.25454545,0.00000000,68.00000000,3.00884956,5.87000000 +1228,chr22,43703924,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.65000000,39.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.16279070,0.00000000,95.00000000,4.20353982,0.00000000 +1229,chr22,43743989,TP,AAATGGATGAATG,AAATGGATGAATG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.76000000,45.00000000,0.00000000,1.00000000,AATGGATGAATG,12.00000000,,ref->het,0.18181818,0.00000000,73.00000000,3.23008850,3.69000000 +1230,chr22,43785561,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.32000000,44.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.21052632,0.00000000,83.00000000,3.67256637,1.61000000 +1231,chr22,43795586,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.71000000,44.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.24657534,0.00000000,77.00000000,3.40707965,2.56000000 +1232,chr22,43831181,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.09000000,45.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.20000000,0.00000000,86.00000000,3.80530973,2.02000000 +1233,chr22,43845550,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.87000000,46.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.20000000,0.00000000,85.00000000,3.76106195,1.59000000 +1234,chr22,43867972,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.54000000,49.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,1.68000000 +1235,chr22,43883818,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,15.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,4.11000000,55.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.27272727,0.00000000,77.00000000,3.40707965,7.07000000 +1236,chr22,43884729,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.50000000,71.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.40322581,0.00000000,68.00000000,3.00884956,1.94000000 +1237,chr22,43887070,TP,A,A,AACAC,AACAC,-1.00000000,,,,0.50000000,,,13.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.04000000,50.00000000,0.00000000,11.00000000,AC,2.00000000,,ref->het,0.26760563,0.00000000,81.00000000,3.58407080,2.79000000 +1238,chr22,43895205,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,10.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.55000000,33.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.21212121,0.00000000,82.00000000,3.62831858,3.83000000 +1239,chr22,43902645,TP,A,A,ATTTTGTTTTG,ATTTTGTTTTG,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.31000000,61.00000000,0.00000000,5.00000000,TTTTG,5.00000000,,ref->het,0.28787879,0.00000000,93.00000000,4.11504425,0.58000000 +1240,chr22,43904976,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.14000000,33.00000000,0.00000000,15.00000000,A,1.00000000,,ref->het,0.26315789,0.00000000,75.00000000,3.31858407,7.70000000 +1241,chr22,43905198,TP,G,G,GAGGCTGGCAGAGGGCACA,GAGGCTGGCAGAGGGCACA,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.34000000,42.00000000,0.00000000,1.00000000,AGGCTGGCAGAGGGCACA,18.00000000,,ref->het,0.20000000,0.00000000,73.00000000,3.23008850,1.58000000 +1242,chr22,43988488,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.92000000,59.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,84.00000000,3.71681416,1.19000000 +1243,chr22,44065842,TP,G,G,GGT,GGT,-1.00000000,,,,1.00000000,,,8.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.78000000,67.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.46376812,0.00000000,86.00000000,3.80530973,3.91000000 +1244,chr22,44099518,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.35000000,47.00000000,0.00000000,8.00000000,C,1.00000000,,ref->het,0.19718310,0.00000000,73.00000000,3.23008850,4.06000000 +1245,chr22,44121557,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,1.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.21000000,58.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.42424242,0.00000000,74.00000000,3.27433628,2.94000000 +1246,chr22,44146178,TP,CCGCACACA,CCGCACACA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,3.07000000,59.00000000,0.00000000,1.00000000,CGCACACA,8.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,3.39000000 +1247,chr22,44155035,TP,GGTGT,GGTGT,G,G,-1.00000000,,,,0.50000000,,,9.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,4.04000000,51.00000000,0.00000000,11.00000000,GT,2.00000000,,ref->het,0.26315789,0.00000000,66.00000000,2.92035398,7.40000000 +1248,chr22,44163835,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.83000000,46.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.18987342,0.00000000,86.00000000,3.80530973,2.59000000 +1249,chr22,44173540,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.33000000,37.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22368421,0.00000000,88.00000000,3.89380531,4.61000000 +1250,chr22,44194728,TP,ATCCC,ATCCC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.13000000,50.00000000,0.00000000,1.00000000,TCCC,4.00000000,,ref->het,0.25806452,0.00000000,69.00000000,3.05309735,1.79000000 +1251,chr22,44196606,TP,C,C,CGG,CGG,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.28000000,47.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,2.87000000 +1252,chr22,44213907,TP,TATC,TATC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.32000000,69.00000000,0.00000000,2.00000000,ATC,3.00000000,,ref->het,0.33333333,0.00000000,89.00000000,3.93805310,3.31000000 +1253,chr22,44222284,TP,CAG,CAG,C,C,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.05000000,47.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.41333333,0.00000000,83.00000000,3.67256637,0.29000000 +1254,chr22,44228125,TP,CAG,CAG,C,C,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.17000000,66.00000000,0.00000000,2.00000000,AG,2.00000000,,ref->het,0.44594595,0.00000000,77.00000000,3.40707965,1.29000000 +1255,chr22,44232516,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.05000000,35.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.14516129,0.00000000,69.00000000,3.05309735,1.21000000 +1256,chr22,44282480,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,2.06000000,50.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.16867470,0.00000000,88.00000000,3.89380531,1.50000000 +1257,chr22,44288014,TP,TGGCTGGGCCACA,TGGCTGGGCCACA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.21000000,56.00000000,0.00000000,1.00000000,GGCTGGGCCACA,12.00000000,,ref->het,0.24489796,0.00000000,102.00000000,4.51327434,0.55000000 +1258,chr22,44293031,TP,GGC,GGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.50000000,44.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.22500000,0.00000000,86.00000000,3.80530973,1.37000000 +1259,chr22,44295519,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,9.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.09000000,36.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.20833333,0.00000000,77.00000000,3.40707965,2.05000000 +1260,chr22,44360235,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.26000000,33.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,80.00000000,3.53982301,2.54000000 +1261,chr22,44397446,TP,CCTCACAGGT,CCTCACAGGT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.35000000,41.00000000,0.00000000,2.00000000,CTCACAGGT,9.00000000,,ref->het,0.16216216,0.00000000,86.00000000,3.80530973,2.05000000 +1262,chr22,44400979,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,11.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.00000000,38.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.24000000,0.00000000,95.00000000,4.20353982,3.33000000 +1263,chr22,44437370,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.48000000,52.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,88.00000000,3.89380531,1.35000000 +1264,chr22,44438427,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.04000000,44.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.15294118,0.00000000,91.00000000,4.02654867,2.37000000 +1265,chr22,44521134,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.65000000,31.00000000,0.00000000,16.00000000,A,1.00000000,,ref->het,0.28571429,0.00000000,67.00000000,2.96460177,4.27000000 +1266,chr22,44535678,TP,T,T,TGTGCAGAG,TGTGCAGAG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.22000000,41.00000000,0.00000000,1.00000000,GTGCAGAG,8.00000000,,ref->het,0.21126761,0.00000000,78.00000000,3.45132743,2.63000000 +1267,chr22,44536831,TP,T,T,TTATTC,TTATTC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.95000000,49.00000000,0.00000000,0.00000000,TATTC,5.00000000,,ref->het,0.22988506,0.00000000,94.00000000,4.15929204,0.37000000 +1268,chr22,44539532,TP,GATGGTGGATGGATGA,GATGGTGGATGGATGA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.36000000,44.00000000,0.00000000,1.00000000,ATGGTGGATGGATGA,15.00000000,,ref->het,0.22033898,0.00000000,63.00000000,2.78761062,4.59000000 +1269,chr22,44583937,TP,CCAAG,CCAAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.78000000,40.00000000,0.00000000,2.00000000,CAAG,4.00000000,,ref->het,0.24000000,0.00000000,61.00000000,2.69911504,7.79000000 +1270,chr22,44604866,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.11000000,52.00000000,0.00000000,6.00000000,CA,2.00000000,,ref->het,0.25373134,0.00000000,74.00000000,3.27433628,4.91000000 +1271,chr22,44604938,TP,T,T,TACACACC,TACACACC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.29000000,51.00000000,0.00000000,1.00000000,ACACACC,7.00000000,,ref->het,0.24074074,0.00000000,68.00000000,3.00884956,4.49000000 +1272,chr22,44611042,TP,T,T,TAAAG,TAAAG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.30000000,49.00000000,0.00000000,0.00000000,AAAG,4.00000000,,ref->het,0.24242424,0.00000000,73.00000000,3.23008850,2.33000000 +1273,chr22,44611889,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,17.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.75000000,33.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.20312500,0.00000000,82.00000000,3.62831858,4.90000000 +1274,chr22,44613192,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.86000000,60.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,3.30000000 +1275,chr22,44614046,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.79000000,65.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.30851064,0.00000000,103.00000000,4.55752212,1.24000000 +1276,chr22,44615463,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.32000000,44.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.17346939,0.00000000,98.00000000,4.33628319,1.46000000 +1277,chr22,44619367,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.55000000,42.00000000,0.00000000,4.00000000,GT,2.00000000,,ref->het,0.27272727,0.00000000,52.00000000,2.30088496,9.87000000 +1278,chr22,44626492,TP,TGTTA,TGTTA,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,47.00000000,0.00000000,2.00000000,GTTA,4.00000000,,ref->het,0.30000000,0.00000000,74.00000000,3.27433628,0.61000000 +1279,chr22,44665025,TP,CAAT,CAAT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.68000000,36.00000000,0.00000000,12.00000000,AAT,3.00000000,,ref->het,0.24390244,0.00000000,64.00000000,2.83185841,0.70000000 +1280,chr22,44665578,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.34000000,50.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.22352941,0.00000000,90.00000000,3.98230088,2.13000000 +1281,chr22,44668548,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.00000000,42.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.18571429,0.00000000,73.00000000,3.23008850,0.62000000 +1282,chr22,44710626,TP,AGC,AGC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.30000000,55.00000000,0.00000000,1.00000000,GC,2.00000000,,ref->het,0.30487805,0.00000000,91.00000000,4.02654867,1.05000000 +1283,chr22,44714123,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.31000000,47.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.20000000,0.00000000,83.00000000,3.67256637,1.84000000 +1284,chr22,44718637,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.32000000,39.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.12500000,0.00000000,75.00000000,3.31858407,0.49000000 +1285,chr22,44719089,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,16.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.66000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.27419355,0.00000000,78.00000000,3.45132743,4.94000000 +1286,chr22,44821914,TP,T,T,TAGAG,TAGAG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.96000000,53.00000000,0.00000000,1.00000000,AG,2.00000000,,ref->het,0.27142857,0.00000000,75.00000000,3.31858407,1.35000000 +1287,chr22,44829297,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.80000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.35185185,0.00000000,77.00000000,3.40707965,6.43000000 +1288,chr22,44831522,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.45000000,38.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.17910448,0.00000000,74.00000000,3.27433628,0.43000000 +1289,chr22,44831699,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,8.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.07000000,34.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.14285714,0.00000000,86.00000000,3.80530973,2.48000000 +1290,chr22,44835915,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.05000000,52.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.27027027,0.00000000,79.00000000,3.49557522,0.75000000 +1291,chr22,44836541,TP,GCACAGTAGGTCCTCAGTA,GCACAGTAGGTCCTCAGTA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.04000000,37.00000000,0.00000000,1.00000000,CACAGTAGGTCCTCAGTA,18.00000000,,ref->het,0.18518519,0.00000000,61.00000000,2.69911504,0.55000000 +1292,chr22,44838140,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.75000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.25373134,0.00000000,89.00000000,3.93805310,3.82000000 +1293,chr22,44841241,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,5.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.61000000,47.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,82.00000000,3.62831858,2.40000000 +1294,chr22,44848361,TP,GTT,GTT,G,G,-1.00000000,,,,0.50000000,,,6.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.77000000,71.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.27472527,0.00000000,99.00000000,4.38053097,2.17000000 +1295,chr22,44857929,TP,A,A,ATTTC,ATTTC,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.29000000,47.00000000,0.00000000,0.00000000,TTTC,4.00000000,,ref->het,0.17910448,0.00000000,74.00000000,3.27433628,2.62000000 +1296,chr22,44860662,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.50000000,49.00000000,0.00000000,5.00000000,AG,2.00000000,,ref->het,0.18421053,0.00000000,82.00000000,3.62831858,1.14000000 +1297,chr22,44861010,TP,CAAAA,CAAAA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.47000000,40.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.14130435,0.00000000,98.00000000,4.33628319,1.05000000 +1298,chr22,44873891,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.89000000,34.00000000,0.00000000,3.00000000,AT,2.00000000,,ref->het,0.20370370,0.00000000,74.00000000,3.27433628,4.14000000 +1299,chr22,44875574,TP,TTTC,TTTC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,11.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.17000000,46.00000000,0.00000000,1.00000000,TTC,3.00000000,,ref->het,0.22077922,0.00000000,84.00000000,3.71681416,1.32000000 +1300,chr22,44883803,TP,TAAC,TAAC,T,T,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.60000000,83.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.37037037,0.00000000,87.00000000,3.84955752,1.62000000 +1301,chr22,44884739,TP,ACT,ACT,A,A,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.98000000,71.00000000,0.00000000,1.00000000,CT,2.00000000,,ref->het,0.35820896,0.00000000,73.00000000,3.23008850,5.11000000 +1302,chr22,45040090,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.36000000,53.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.23437500,0.00000000,69.00000000,3.05309735,0.86000000 +1303,chr22,45052196,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.29000000,47.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.25373134,0.00000000,75.00000000,3.31858407,1.43000000 +1304,chr22,45055185,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,5.41000000,32.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.25454545,0.00000000,71.00000000,3.14159292,8.79000000 +1305,chr22,45055187,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,1.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.32000000,45.00000000,0.00000000,0.00000000,AC,2.00000000,,ref->het,0.21311475,0.00000000,71.00000000,3.14159292,8.68000000 +1306,chr22,45063002,TP,A,A,AATTTT,AATTTT,-1.00000000,,,,1.00000000,,,12.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.02000000,42.00000000,0.00000000,11.00000000,ATTTT,5.00000000,,ref->het,0.57446809,0.00000000,100.00000000,4.42477876,1.99000000 +1307,chr22,45067498,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.94000000,58.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.38571429,0.00000000,77.00000000,3.40707965,4.87000000 +1308,chr22,45072789,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.52000000,64.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.42424242,0.00000000,73.00000000,3.23008850,2.00000000 +1309,chr22,45079230,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.42000000,40.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.41666667,0.00000000,70.00000000,3.09734513,12.70000000 +1310,chr22,45085849,TP,G,G,GGC,GGC,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.50000000,55.00000000,0.00000000,0.00000000,GC,2.00000000,,ref->het,0.38888889,0.00000000,80.00000000,3.53982301,2.84000000 +1311,chr22,45090888,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.89000000,52.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.59677419,0.00000000,69.00000000,3.05309735,2.04000000 +1312,chr22,45090979,TP,C,C,CCACACACA,CCACACACA,-1.00000000,,,,1.00000000,,,18.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.68000000,69.00000000,0.00000000,14.00000000,CA,2.00000000,,ref->het,0.41666667,0.00000000,73.00000000,3.23008850,2.17000000 +1313,chr22,45095132,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,12.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.46000000,47.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.46875000,0.00000000,81.00000000,3.58407080,6.43000000 +1314,chr22,45099324,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.98000000,54.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.23943662,0.00000000,76.00000000,3.36283186,15.76000000 +1315,chr22,45138098,TP,TAAC,TAAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.23000000,51.00000000,0.00000000,1.00000000,AAC,3.00000000,,ref->het,0.25842697,0.00000000,96.00000000,4.24778761,0.00000000 +1316,chr22,45246827,TP,C,C,CTTT,CTTT,-1.00000000,,,,0.50000000,,,21.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.43000000,49.00000000,0.00000000,18.00000000,T,1.00000000,,ref->het,0.29687500,0.00000000,79.00000000,3.49557522,9.49000000 +1317,chr22,45247918,TP,AGTT,AGTT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.34000000,43.00000000,0.00000000,5.00000000,GTT,3.00000000,,ref->het,0.18840580,0.00000000,81.00000000,3.58407080,1.10000000 +1318,chr22,45248208,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.91000000,51.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,1.66000000 +1319,chr22,45248773,TP,AGGTAGGGTGGGCCAG,AGGTAGGGTGGGCCAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.00000000,47.00000000,0.00000000,1.00000000,GGTAGGGTGGGCCAG,15.00000000,,ref->het,0.20000000,0.00000000,68.00000000,3.00884956,1.30000000 +1320,chr22,45251242,TP,GACA,GACA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,45.00000000,0.00000000,2.00000000,ACA,3.00000000,,ref->het,0.17283951,0.00000000,85.00000000,3.76106195,0.97000000 +1321,chr22,45251324,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.14000000,45.00000000,0.00000000,2.00000000,AGA,3.00000000,,ref->het,0.22105263,0.00000000,99.00000000,4.38053097,2.92000000 +1322,chr22,45401889,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,3.64000000,37.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.21794872,0.00000000,98.00000000,4.33628319,4.45000000 +1323,chr22,45440426,TP,TG,TG,T,T,-1.00000000,,,,1.00000000,,,5.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.45000000,60.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.38157895,0.00000000,82.00000000,3.62831858,4.50000000 +1324,chr22,45441081,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.01000000,41.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.49253731,0.00000000,75.00000000,3.31858407,1.72000000 +1325,chr22,45456155,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.97000000,45.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,3.08000000 +1326,chr22,45456330,TP,A,A,AAAAGCAAACAAAC,AAAAGCAAACAAAC,-1.00000000,,,,1.00000000,,,1.00000000,9.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.04000000,84.00000000,0.00000000,0.00000000,AAAGCAAACAAAC,13.00000000,,ref->het,0.44615385,0.00000000,73.00000000,3.23008850,1.49000000 +1327,chr22,45460719,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.65000000,91.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.41891892,0.00000000,78.00000000,3.45132743,1.42000000 +1328,chr22,45482799,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,15.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,6.22000000,58.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.44262295,0.00000000,82.00000000,3.62831858,8.70000000 +1329,chr22,45495191,TP,TAAAAC,TAAAAC,T,T,-1.00000000,,,,1.00000000,,,0.00000000,10.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.16000000,72.00000000,0.00000000,1.00000000,AAAAC,5.00000000,,ref->het,0.39325843,0.00000000,90.00000000,3.98230088,1.29000000 +1330,chr22,45528346,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.39000000,41.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.25925926,0.00000000,88.00000000,3.89380531,0.85000000 +1331,chr22,45638444,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,9.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.46000000,53.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.46666667,0.00000000,65.00000000,2.87610619,1.20000000 +1332,chr22,45643166,TP,TCTAAG,TCTAAG,T,T,-1.00000000,,,,1.00000000,,,1.00000000,2.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.48000000,76.00000000,0.00000000,2.00000000,CTAAG,5.00000000,,ref->het,0.43750000,0.00000000,104.00000000,4.60176991,2.53000000 +1333,chr22,45644259,TP,GA,GA,G,G,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.24000000,51.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.37500000,0.00000000,58.00000000,2.56637168,6.32000000 +1334,chr22,45653904,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.31000000,69.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.39705882,0.00000000,78.00000000,3.45132743,1.27000000 +1335,chr22,45654435,TP,G,G,GT,GT,-1.00000000,,,,1.00000000,,,12.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.19000000,50.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.48529412,0.00000000,76.00000000,3.36283186,4.79000000 +1336,chr22,45655048,TP,GT,GT,G,G,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.84000000,62.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.50000000,0.00000000,75.00000000,3.31858407,0.27000000 +1337,chr22,45659447,TP,A,A,ATG,ATG,-1.00000000,,,,1.00000000,,,7.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,43.00000000,0.00000000,6.00000000,TG,2.00000000,,ref->het,0.38888889,0.00000000,63.00000000,2.78761062,0.80000000 +1338,chr22,45715277,TP,TA,TA,T,T,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.43000000,78.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.45121951,0.00000000,84.00000000,3.71681416,1.50000000 +1339,chr22,45806163,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.02000000,59.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.26966292,0.00000000,96.00000000,4.24778761,0.54000000 +1340,chr22,45846594,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.59000000,47.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.51388889,0.00000000,92.00000000,4.07079646,2.51000000 +1341,chr22,45859423,TP,GC,GC,G,G,-1.00000000,,,,1.00000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.38000000,71.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.47191011,0.00000000,97.00000000,4.29203540,0.98000000 +1342,chr22,45902115,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.21000000,34.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.29687500,0.00000000,83.00000000,3.67256637,5.64000000 +1343,chr22,45913316,TP,C,C,CGAGG,CGAGG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.55000000,45.00000000,0.00000000,1.00000000,GAGG,4.00000000,,ref->het,0.25301205,0.00000000,89.00000000,3.93805310,0.91000000 +1344,chr22,45914398,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.83000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.35616438,0.00000000,80.00000000,3.53982301,2.58000000 +1345,chr22,45914904,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.24000000,56.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.24000000,0.00000000,80.00000000,3.53982301,3.75000000 +1346,chr22,45919243,TP,TGCC,TGCC,T,T,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,0.29000000,60.00000000,0.00000000,4.00000000,GCC,3.00000000,,ref->het,0.20481928,0.00000000,94.00000000,4.15929204,2.32000000 +1347,chr22,45926698,TP,CTAAG,CTAAG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.36000000,56.00000000,0.00000000,2.00000000,TAAG,4.00000000,,ref->het,0.27631579,0.00000000,84.00000000,3.71681416,0.88000000 +1348,chr22,45946064,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.94000000,60.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.29032258,0.00000000,100.00000000,4.42477876,1.00000000 +1349,chr22,45966942,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.30000000,63.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.26506024,0.00000000,93.00000000,4.11504425,1.90000000 +1350,chr22,45991300,TP,CAG,CAG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.45000000,42.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.25000000,0.00000000,74.00000000,3.27433628,0.85000000 +1351,chr22,46004596,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.85000000,51.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22727273,0.00000000,72.00000000,3.18584071,1.74000000 +1352,chr22,46016604,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.46000000,54.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.37313433,0.00000000,90.00000000,3.98230088,7.93000000 +1353,chr22,46025218,TP,CCTGAGTGCTCCCTCTCT,CCTGAGTGCTCCCTCTCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.28000000,34.00000000,0.00000000,1.00000000,CTGAGTGCTCCCTCTCT,17.00000000,,ref->het,0.17241379,0.00000000,71.00000000,3.14159292,4.38000000 +1354,chr22,46130149,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,47.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.18823529,0.00000000,90.00000000,3.98230088,1.97000000 +1355,chr22,46191485,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.21000000,32.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.25714286,0.00000000,89.00000000,3.93805310,5.96000000 +1356,chr22,46204837,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,13.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.32000000,40.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.23376623,0.00000000,88.00000000,3.89380531,1.51000000 +1357,chr22,46233827,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.02000000,35.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,90.00000000,3.98230088,4.91000000 +1358,chr22,46254853,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.45000000,42.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.15942029,0.00000000,80.00000000,3.53982301,1.96000000 +1359,chr22,46262985,TP,ACGAGCG,ACGAGCG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.77000000,55.00000000,0.00000000,2.00000000,CGAGCG,6.00000000,,ref->het,0.21238938,0.00000000,122.00000000,5.39823009,2.75000000 +1360,chr22,46263800,TP,T,T,TTTGC,TTTGC,-1.00000000,,,,0.50000000,,,1.00000000,9.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.89000000,41.00000000,0.00000000,0.00000000,TTGC,4.00000000,,ref->het,0.18181818,0.00000000,75.00000000,3.31858407,1.86000000 +1361,chr22,46264445,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.13000000,49.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.23404255,0.00000000,101.00000000,4.46902655,3.02000000 +1362,chr22,46264752,TP,C,C,CG,CG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.36000000,58.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.21111111,0.00000000,91.00000000,4.02654867,1.14000000 +1363,chr22,46271015,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,11.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,2.98000000,30.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.15853659,0.00000000,95.00000000,4.20353982,2.35000000 +1364,chr22,46274735,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,14.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.56000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.25333333,0.00000000,86.00000000,3.80530973,2.40000000 +1365,chr22,46323865,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.53000000,40.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,1.74000000 +1366,chr22,46443659,TP,TCA,TCA,T,T,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.44000000,48.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.19047619,0.00000000,102.00000000,4.51327434,2.87000000 +1367,chr22,46449952,TP,G,G,GCACTCACATGCTCACACA,GCACTCACATGCTCACACA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.16000000,47.00000000,0.00000000,1.00000000,CACTCACATGCTCACACA,18.00000000,,ref->het,0.29629630,0.00000000,67.00000000,2.96460177,1.88000000 +1368,chr22,46458891,TP,TTTTG,TTTTG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,12.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.80000000,52.00000000,0.00000000,2.00000000,TTTG,4.00000000,,ref->het,0.29032258,0.00000000,101.00000000,4.46902655,0.94000000 +1369,chr22,46481277,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.32000000,58.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.23684211,0.00000000,81.00000000,3.58407080,2.93000000 +1370,chr22,46519872,TP,C,C,CTT,CTT,-1.00000000,,,,0.50000000,,,18.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.14000000,42.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.28301887,0.00000000,80.00000000,3.53982301,8.35000000 +1371,chr22,46548509,TP,GTGTTT,GTGTTT,G,G,-1.00000000,,,,0.50000000,,,4.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.57000000,45.00000000,0.00000000,5.00000000,TGTTT,5.00000000,,ref->het,0.33928571,0.00000000,74.00000000,3.27433628,1.35000000 +1372,chr22,46556177,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,51.00000000,0.00000000,5.00000000,A,1.00000000,,ref->het,0.25333333,0.00000000,85.00000000,3.76106195,0.35000000 +1373,chr22,46585193,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.67000000,30.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,92.00000000,4.07079646,5.91000000 +1374,chr22,46588729,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.43000000,49.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,91.00000000,4.02654867,1.60000000 +1375,chr22,46588821,TP,AGGCTG,AGGCTG,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.13000000,41.00000000,0.00000000,3.00000000,GGCTG,5.00000000,,ref->het,0.19718310,0.00000000,82.00000000,3.62831858,0.80000000 +1376,chr22,46591070,TP,G,G,GAAAAAGA,GAAAAAGA,-1.00000000,,,,0.50000000,,,1.00000000,14.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.51000000,61.00000000,0.00000000,0.00000000,AAAAAGA,7.00000000,,ref->het,0.24137931,0.00000000,98.00000000,4.33628319,5.44000000 +1377,chr22,46591942,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,3.10000000,42.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.26582278,0.00000000,86.00000000,3.80530973,7.52000000 +1378,chr22,46639292,TP,G,G,GCCTGTGTGCAGCGGTGGTTAAC,GCCTGTGTGCAGCGGTGGTTAAC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.79000000,60.00000000,0.00000000,1.00000000,CCTGTGTGCAGCGGTGGTTAAC,22.00000000,,ref->het,0.27777778,0.00000000,85.00000000,3.76106195,3.77000000 +1379,chr22,46685076,TP,T,T,TG,TG,-1.00000000,,,,1.00000000,,,9.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.55000000,43.00000000,0.00000000,8.00000000,G,1.00000000,,ref->het,0.37931034,0.00000000,76.00000000,3.36283186,7.09000000 +1380,chr22,46694009,TP,CTGTT,CTGTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.00000000,60.00000000,0.00000000,1.00000000,TGTT,4.00000000,,ref->het,0.25974026,0.00000000,84.00000000,3.71681416,0.15000000 +1381,chr22,46716940,TP,CAAAAAAA,CAAAAAAA,C,C,-1.00000000,,,,0.50000000,,,3.00000000,17.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.78000000,64.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.31343284,0.00000000,72.00000000,3.18584071,2.61000000 +1382,chr22,46717905,TP,ACT,ACT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,44.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.19672131,0.00000000,64.00000000,2.83185841,0.85000000 +1383,chr22,46718097,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.30000000,49.00000000,0.00000000,7.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,73.00000000,3.23008850,1.44000000 +1384,chr22,46736462,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.37000000,64.00000000,0.00000000,1.00000000,T,1.00000000,,ref->het,0.25609756,0.00000000,84.00000000,3.71681416,1.19000000 +1385,chr22,46831957,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,53.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.23456790,0.00000000,88.00000000,3.89380531,2.13000000 +1386,chr22,46839262,TP,A,A,ACTT,ACTT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.40000000,51.00000000,0.00000000,0.00000000,CTT,3.00000000,,ref->het,0.19736842,0.00000000,88.00000000,3.89380531,3.15000000 +1387,chr22,46847952,TP,TGTGCGC,TGTGCGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.50000000,58.00000000,0.00000000,1.00000000,GTGCGC,6.00000000,,ref->het,0.27058824,0.00000000,87.00000000,3.84955752,4.75000000 +1388,chr22,46848888,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.45000000,33.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.24285714,0.00000000,78.00000000,3.45132743,3.68000000 +1389,chr22,46924745,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,11.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.45000000,45.00000000,0.00000000,10.00000000,A,1.00000000,,ref->het,0.30000000,0.00000000,93.00000000,4.11504425,0.35000000 +1390,chr22,46934051,TP,CATCTTT,CATCTTT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.38000000,52.00000000,0.00000000,1.00000000,ATCTTT,6.00000000,,ref->het,0.20618557,0.00000000,102.00000000,4.51327434,1.56000000 +1391,chr22,46952235,TP,C,C,CTGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,CTGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.87000000,42.00000000,0.00000000,1.00000000,TGGCCTTGGCATTCCTGTGGACCCTGTCCCTCCTCACCA,39.00000000,,ref->het,0.16000000,0.00000000,99.00000000,4.38053097,0.16000000 +1392,chr22,46953486,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.42000000,33.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.19672131,0.00000000,69.00000000,3.05309735,2.01000000 +1393,chr22,47132518,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,2.37000000,47.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.19178082,0.00000000,77.00000000,3.40707965,0.54000000 +1394,chr22,47159910,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.12000000,53.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.21428571,0.00000000,91.00000000,4.02654867,3.89000000 +1395,chr22,47160951,TP,CGGGG,CGGGG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.23000000,54.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.28395062,0.00000000,85.00000000,3.76106195,1.20000000 +1396,chr22,47177731,TP,G,G,GC,GC,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.07000000,59.00000000,0.00000000,0.00000000,C,1.00000000,,ref->het,0.24742268,0.00000000,99.00000000,4.38053097,2.12000000 +1397,chr22,47210615,TP,C,C,CTCTTT,CTCTTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.40000000,62.00000000,0.00000000,1.00000000,TCTTT,5.00000000,,ref->het,0.29885057,0.00000000,93.00000000,4.11504425,0.68000000 +1398,chr22,47212565,TP,CGT,CGT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,3.59000000,49.00000000,0.00000000,3.00000000,GT,2.00000000,,ref->het,0.21666667,0.00000000,69.00000000,3.05309735,11.07000000 +1399,chr22,47213244,TP,A,A,ACATT,ACATT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.82000000,52.00000000,0.00000000,0.00000000,CATT,4.00000000,,ref->het,0.28947368,0.00000000,89.00000000,3.93805310,12.66000000 +1400,chr22,47216039,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.67000000,66.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.31081081,0.00000000,80.00000000,3.53982301,1.58000000 +1401,chr22,47302601,TP,T,T,TCATC,TCATC,-1.00000000,,,,0.50000000,,,11.00000000,1.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.08000000,38.00000000,0.00000000,10.00000000,CATC,4.00000000,,ref->het,0.18181818,0.00000000,78.00000000,3.45132743,1.11000000 +1402,chr22,47354516,TP,C,C,CTCTT,CTCTT,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.37000000,68.00000000,0.00000000,1.00000000,TCTT,4.00000000,,ref->het,0.22222222,0.00000000,96.00000000,4.24778761,1.18000000 +1403,chr22,47361239,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,2.64000000,42.00000000,0.00000000,3.00000000,TG,2.00000000,,ref->het,0.15942029,0.00000000,78.00000000,3.45132743,6.74000000 +1404,chr22,47362462,TP,T,T,TCTTA,TCTTA,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.55000000,50.00000000,0.00000000,0.00000000,CTTA,4.00000000,,ref->het,0.20588235,0.00000000,78.00000000,3.45132743,3.16000000 +1405,chr22,47363098,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.60000000,30.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,73.00000000,3.23008850,1.36000000 +1406,chr22,47376476,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.57000000,41.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.16250000,0.00000000,85.00000000,3.76106195,1.95000000 +1407,chr22,47384783,TP,GGACCAGGCA,GGACCAGGCA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.92000000,41.00000000,0.00000000,1.00000000,GACCAGGCA,9.00000000,,ref->het,0.15942029,0.00000000,71.00000000,3.14159292,1.29000000 +1408,chr22,47386643,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,1.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.34000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.21666667,0.00000000,69.00000000,3.05309735,0.94000000 +1409,chr22,47392431,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.62000000,41.00000000,0.00000000,0.00000000,AT,2.00000000,,ref->het,0.26229508,0.00000000,68.00000000,3.00884956,1.73000000 +1410,chr22,47399338,TP,GCCA,GCCA,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.05000000,68.00000000,0.00000000,2.00000000,CCA,3.00000000,,ref->het,0.34375000,0.00000000,71.00000000,3.14159292,1.48000000 +1411,chr22,47405461,TP,GGGTGGCCAGGGTGTGAC,GGGTGGCCAGGGTGTGAC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,4.29000000,40.00000000,0.00000000,1.00000000,GGTGGCCAGGGTGTGAC,17.00000000,,ref->het,0.23404255,0.00000000,58.00000000,2.56637168,6.37000000 +1412,chr22,47422925,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.21000000,45.00000000,0.00000000,9.00000000,C,1.00000000,,ref->het,0.29069767,0.00000000,103.00000000,4.55752212,11.14000000 +1413,chr22,47432144,TP,ATATTTATT,ATATTTATT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,6.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,0.68000000,62.00000000,0.00000000,6.00000000,TATT,4.00000000,,ref->het,0.24418605,0.00000000,103.00000000,4.55752212,0.91000000 +1414,chr22,47437403,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.87000000,37.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.26027397,0.00000000,84.00000000,3.71681416,1.96000000 +1415,chr22,47438857,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,4.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.31000000,53.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.18823529,0.00000000,97.00000000,4.29203540,0.07000000 +1416,chr22,47440784,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.38000000,43.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20879121,0.00000000,98.00000000,4.33628319,2.21000000 +1417,chr22,47468698,TP,T,T,TACACCCC,TACACCCC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.49000000,60.00000000,0.00000000,0.00000000,ACACCCC,7.00000000,,ref->het,0.25609756,0.00000000,88.00000000,3.89380531,1.71000000 +1418,chr22,47476941,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.18000000,55.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.27536232,0.00000000,78.00000000,3.45132743,0.35000000 +1419,chr22,47488512,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.60000000,57.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.28205128,0.00000000,87.00000000,3.84955752,21.98000000 +1420,chr22,47514246,TP,G,G,GA,GA,-1.00000000,,,,0.50000000,,,10.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.55000000,41.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.22619048,0.00000000,93.00000000,4.11504425,0.54000000 +1421,chr22,47541511,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.76000000,61.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.23684211,0.00000000,80.00000000,3.53982301,1.93000000 +1422,chr22,47542895,TP,TTTTGTTTG,TTTTGTTTG,T,T,-1.00000000,,,,1.00000000,,,6.00000000,9.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.13000000,39.00000000,0.00000000,8.00000000,TTTG,4.00000000,,ref->het,0.41538462,0.00000000,91.00000000,4.02654867,2.15000000 +1423,chr22,47547113,TP,T,T,TCGC,TCGC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.82000000,56.00000000,0.00000000,1.00000000,CGC,3.00000000,,ref->het,0.33333333,0.00000000,68.00000000,3.00884956,1.68000000 +1424,chr22,47590612,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.78000000,43.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,40.00000000,1.76991150,1.10000000 +1425,chr22,47604275,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.06000000,31.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.18840580,0.00000000,72.00000000,3.18584071,1.74000000 +1426,chr22,47644914,TP,T,T,TA,TA,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.49000000,30.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.24561404,0.00000000,69.00000000,3.05309735,4.11000000 +1427,chr22,47723430,TP,AAG,AAG,A,A,-1.00000000,,,,1.00000000,,,2.00000000,4.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.41000000,65.00000000,0.00000000,3.00000000,AG,2.00000000,,ref->het,0.41071429,0.00000000,61.00000000,2.69911504,1.79000000 +1428,chr22,47806934,TP,GACCCAA,GACCCAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.62000000,42.00000000,0.00000000,1.00000000,ACCCAA,6.00000000,,ref->het,0.17647059,0.00000000,71.00000000,3.14159292,1.36000000 +1429,chr22,47807714,TP,GGGA,GGGA,G,G,-1.00000000,,,,0.50000000,,,7.00000000,6.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.88000000,40.00000000,0.00000000,8.00000000,GGA,3.00000000,,ref->het,0.23214286,0.00000000,67.00000000,2.96460177,3.51000000 +1430,chr22,47814653,TP,TTGTA,TTGTA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.25000000,39.00000000,0.00000000,1.00000000,TGTA,4.00000000,,ref->het,0.17187500,0.00000000,67.00000000,2.96460177,4.85000000 +1431,chr22,47814711,TP,TTGTG,TTGTG,T,T,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.45000000,40.00000000,0.00000000,5.00000000,TG,2.00000000,,ref->het,0.15384615,0.00000000,66.00000000,2.92035398,4.88000000 +1432,chr22,47845420,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.14000000,42.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.15492958,0.00000000,78.00000000,3.45132743,1.13000000 +1433,chr22,47855843,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,13.00000000,15.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.15000000,35.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.28333333,0.00000000,69.00000000,3.05309735,2.59000000 +1434,chr22,47857079,TP,TCC,TCC,T,T,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,3.22000000,40.00000000,0.00000000,10.00000000,C,1.00000000,,ref->het,0.29032258,0.00000000,72.00000000,3.18584071,8.51000000 +1435,chr22,47858141,TP,ACTTT,ACTTT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.49000000,40.00000000,0.00000000,2.00000000,CTTT,4.00000000,,ref->het,0.16091954,0.00000000,96.00000000,4.24778761,1.62000000 +1436,chr22,47859068,TP,T,T,TTTTC,TTTTC,-1.00000000,,,,0.50000000,,,2.00000000,17.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.70000000,47.00000000,0.00000000,1.00000000,TTTC,4.00000000,,ref->het,0.21333333,0.00000000,81.00000000,3.58407080,4.62000000 +1437,chr22,47859392,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.51000000,50.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.21052632,0.00000000,99.00000000,4.38053097,1.43000000 +1438,chr22,47859456,TP,CTA,CTA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.60000000,43.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.17500000,0.00000000,85.00000000,3.76106195,0.79000000 +1439,chr22,47860426,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,9.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.32000000,32.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.19512195,0.00000000,86.00000000,3.80530973,3.37000000 +1440,chr22,47864310,TP,G,G,GTTATT,GTTATT,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.00000000,56.00000000,0.00000000,1.00000000,TTATT,5.00000000,,ref->het,0.20202020,0.00000000,103.00000000,4.55752212,0.26000000 +1441,chr22,48003139,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.64000000,42.00000000,0.00000000,2.00000000,G,1.00000000,,ref->het,0.18055556,0.00000000,78.00000000,3.45132743,1.45000000 +1442,chr22,48044377,TP,TGATA,TGATA,T,T,-1.00000000,,,,1.00000000,,,10.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.04000000,36.00000000,0.00000000,11.00000000,GATA,4.00000000,,ref->het,0.42857143,0.00000000,74.00000000,3.27433628,2.71000000 +1443,chr22,48065905,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.22000000,50.00000000,0.00000000,5.00000000,G,1.00000000,,ref->het,0.24637681,0.00000000,76.00000000,3.36283186,3.81000000 +1444,chr22,48127031,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.24000000,48.00000000,0.00000000,16.00000000,T,1.00000000,,ref->het,0.35714286,0.00000000,76.00000000,3.36283186,5.22000000 +1445,chr22,48149457,TP,CTAAAAAA,CTAAAAAA,C,C,-1.00000000,,,,0.50000000,,,2.00000000,12.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.43000000,42.00000000,0.00000000,3.00000000,TAAAAAA,7.00000000,,ref->het,0.16923077,0.00000000,81.00000000,3.58407080,0.41000000 +1446,chr22,48195971,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.23000000,56.00000000,0.00000000,6.00000000,A,1.00000000,,ref->het,0.57407407,0.00000000,57.00000000,2.52212389,0.41000000 +1447,chr22,48204305,TP,GATAGATAGATAGATAC,GATAGATAGATAGATAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.29000000,42.00000000,0.00000000,2.00000000,ATAGATAGATAGATAC,16.00000000,,ref->het,0.22641509,0.00000000,73.00000000,3.23008850,4.49000000 +1448,chr22,48256156,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.39000000,46.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.28205128,0.00000000,88.00000000,3.89380531,1.84000000 +1449,chr22,48292527,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,46.00000000,0.00000000,2.00000000,AT,2.00000000,,ref->het,0.23076923,0.00000000,82.00000000,3.62831858,0.33000000 +1450,chr22,48292759,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,6.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,46.00000000,0.00000000,5.00000000,C,1.00000000,,ref->het,0.35384615,0.00000000,71.00000000,3.14159292,0.37000000 +1451,chr22,48293520,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.54000000,31.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.24705882,0.00000000,92.00000000,4.07079646,2.78000000 +1452,chr22,48293941,TP,CTATGCAACACAAT,CTATGCAACACAAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.60000000,53.00000000,0.00000000,1.00000000,TATGCAACACAAT,13.00000000,,ref->het,0.22784810,0.00000000,87.00000000,3.84955752,2.70000000 +1453,chr22,48297911,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,8.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,40.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.20547945,0.00000000,79.00000000,3.49557522,0.90000000 +1454,chr22,48313930,TP,A,A,AAAAAAGG,AAAAAAGG,-1.00000000,,,,0.50000000,,,2.00000000,8.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.01000000,48.00000000,0.00000000,1.00000000,AAAAAGG,7.00000000,,ref->het,0.21951220,0.00000000,86.00000000,3.80530973,1.29000000 +1455,chr22,48342436,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.37000000,53.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.19512195,0.00000000,91.00000000,4.02654867,1.85000000 +1456,chr22,48344810,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,9.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.53000000,36.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.23636364,0.00000000,62.00000000,2.74336283,1.30000000 +1457,chr22,48349178,TP,A,A,ACACT,ACACT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.89000000,42.00000000,0.00000000,0.00000000,CACT,4.00000000,,ref->het,0.12500000,0.00000000,59.00000000,2.61061947,3.55000000 +1458,chr22,48349619,TP,GCT,GCT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.03000000,44.00000000,0.00000000,8.00000000,CT,2.00000000,,ref->het,0.21818182,0.00000000,63.00000000,2.78761062,1.44000000 +1459,chr22,48350364,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.29000000,39.00000000,0.00000000,2.00000000,A,1.00000000,,ref->het,0.18518519,0.00000000,88.00000000,3.89380531,0.87000000 +1460,chr22,48355996,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,11.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.30000000,31.00000000,0.00000000,10.00000000,T,1.00000000,,ref->het,0.26153846,0.00000000,74.00000000,3.27433628,3.34000000 +1461,chr22,48386285,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,10.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.21000000,35.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.26760563,0.00000000,76.00000000,3.36283186,0.85000000 +1462,chr22,48430953,TP,A,A,AT,AT,-1.00000000,,,,1.00000000,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.28000000,51.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.41558442,0.00000000,86.00000000,3.80530973,2.42000000 +1463,chr22,48438083,TP,GAAC,GAAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.18000000,48.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.27419355,0.00000000,66.00000000,2.92035398,1.48000000 +1464,chr22,48465699,TP,T,T,TA,TA,-1.00000000,,,,1.00000000,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.58000000,50.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.36486486,0.00000000,84.00000000,3.71681416,1.67000000 +1465,chr22,48480984,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,7.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.06000000,50.00000000,0.00000000,8.00000000,A,1.00000000,,ref->het,0.26984127,0.00000000,71.00000000,3.14159292,0.38000000 +1466,chr22,48490826,TP,ACCT,ACCT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.53000000,31.00000000,0.00000000,2.00000000,CCT,3.00000000,,ref->het,0.45783133,0.00000000,93.00000000,4.11504425,10.67000000 +1467,chr22,48534192,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.01000000,66.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.37313433,0.00000000,76.00000000,3.36283186,3.60000000 +1468,chr22,48570829,TP,AG,AG,A,A,-1.00000000,,,,1.00000000,,,0.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.13000000,74.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.46511628,0.00000000,90.00000000,3.98230088,0.17000000 +1469,chr22,48601957,TP,CACAT,CACAT,C,C,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.13000000,66.00000000,0.00000000,1.00000000,ACAT,4.00000000,,ref->het,0.47872340,0.00000000,96.00000000,4.24778761,1.51000000 +1470,chr22,48626097,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.39000000,46.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.20000000,0.00000000,53.00000000,2.34513274,0.01000000 +1471,chr22,48653898,TP,TTGC,TTGC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.40000000,46.00000000,0.00000000,1.00000000,TGC,3.00000000,,ref->het,0.19512195,0.00000000,85.00000000,3.76106195,1.87000000 +1472,chr22,48660945,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.35000000,44.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.16216216,0.00000000,83.00000000,3.67256637,4.11000000 +1473,chr22,48662487,TP,G,G,GGTGATTC,GGTGATTC,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.94000000,38.00000000,0.00000000,1.00000000,GTGATTC,7.00000000,,ref->het,0.17142857,0.00000000,74.00000000,3.27433628,0.79000000 +1474,chr22,48663101,TP,C,C,CTG,CTG,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,52.00000000,0.00000000,1.00000000,TG,2.00000000,,ref->het,0.22784810,0.00000000,89.00000000,3.93805310,1.22000000 +1475,chr22,48663345,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.60000000,36.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.16216216,0.00000000,79.00000000,3.49557522,2.16000000 +1476,chr22,48665550,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.09000000,43.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.15942029,0.00000000,76.00000000,3.36283186,0.99000000 +1477,chr22,48673316,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,49.00000000,0.00000000,2.00000000,TC,2.00000000,,ref->het,0.19540230,0.00000000,95.00000000,4.20353982,4.86000000 +1478,chr22,48674350,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.20000000,43.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.20454545,0.00000000,52.00000000,2.30088496,0.71000000 +1479,chr22,48688005,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.19000000,42.00000000,0.00000000,11.00000000,T,1.00000000,,ref->het,0.28787879,0.00000000,77.00000000,3.40707965,1.77000000 +1480,chr22,48787709,TP,ATTAT,ATTAT,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.72000000,37.00000000,0.00000000,2.00000000,TTAT,4.00000000,,ref->het,0.47761194,0.00000000,71.00000000,3.14159292,0.99000000 +1481,chr22,48787828,TP,T,T,TAC,TAC,-1.00000000,,,,1.00000000,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.20000000,69.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.50724638,0.00000000,78.00000000,3.45132743,1.53000000 +1482,chr22,48789825,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,13.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.34000000,48.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.39743590,0.00000000,96.00000000,4.24778761,6.41000000 +1483,chr22,48796178,TP,AT,AT,A,A,-1.00000000,,,,1.00000000,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.60000000,94.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.44615385,0.00000000,76.00000000,3.36283186,1.32000000 +1484,chr22,48804071,TP,T,T,TCTC,TCTC,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.74000000,53.00000000,0.00000000,1.00000000,CTC,3.00000000,,ref->het,0.26250000,0.00000000,91.00000000,4.02654867,1.37000000 +1485,chr22,48811206,TP,GTATA,GTATA,G,G,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,2.14000000,48.00000000,0.00000000,6.00000000,TA,2.00000000,,ref->het,0.28358209,0.00000000,77.00000000,3.40707965,3.19000000 +1486,chr22,48816765,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.69000000,56.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.21978022,0.00000000,97.00000000,4.29203540,3.38000000 +1487,chr22,48831879,TP,CTTG,CTTG,C,C,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.71000000,51.00000000,0.00000000,2.00000000,TTG,3.00000000,,ref->het,0.23529412,0.00000000,90.00000000,3.98230088,0.85000000 +1488,chr22,48833617,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.22000000,42.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.18571429,0.00000000,74.00000000,3.27433628,0.90000000 +1489,chr22,48835017,TP,AAAAG,AAAAG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.33000000,44.00000000,0.00000000,1.00000000,AAAG,4.00000000,,ref->het,0.17948718,0.00000000,86.00000000,3.80530973,1.70000000 +1490,chr22,48843682,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.70000000,49.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.22727273,0.00000000,74.00000000,3.27433628,1.89000000 +1491,chr22,48846153,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.12000000,47.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.21126761,0.00000000,77.00000000,3.40707965,0.93000000 +1492,chr22,48847572,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.24000000,45.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.28813559,0.00000000,63.00000000,2.78761062,1.23000000 +1493,chr22,48865732,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,48.00000000,0.00000000,4.00000000,A,1.00000000,,ref->het,0.22413793,0.00000000,62.00000000,2.74336283,1.11000000 +1494,chr22,48870142,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,8.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.97000000,66.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,85.00000000,3.76106195,1.53000000 +1495,chr22,48877688,TP,GGTAA,GGTAA,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.27000000,46.00000000,0.00000000,1.00000000,GTAA,4.00000000,,ref->het,0.25333333,0.00000000,79.00000000,3.49557522,3.14000000 +1496,chr22,48928462,TP,C,C,CAT,CAT,-1.00000000,,,,0.50000000,,,5.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.54000000,46.00000000,0.00000000,4.00000000,AT,2.00000000,,ref->het,0.22222222,0.00000000,73.00000000,3.23008850,1.41000000 +1497,chr22,48928830,TP,TACTG,TACTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.54000000,46.00000000,0.00000000,1.00000000,ACTG,4.00000000,,ref->het,0.20253165,0.00000000,81.00000000,3.58407080,2.71000000 +1498,chr22,48943385,TP,ATGAG,ATGAG,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,0.00000000,46.00000000,0.00000000,2.00000000,TGAG,4.00000000,,ref->het,0.17647059,0.00000000,70.00000000,3.09734513,1.02000000 +1499,chr22,48948863,TP,CCTCCAGCCTCACCTCCCT,CCTCCAGCCTCACCTCCCT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,5.00000000,2.00000000,18.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.40000000,36.00000000,0.00000000,1.00000000,CTCCAGCCTCACCTCCCT,18.00000000,,ref->het,0.16666667,0.00000000,60.00000000,2.65486726,6.92000000 +1500,chr22,48949332,TP,TTCCAGCCTCACTCCTCC,TTCCAGCCTCACTCCTCC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.66000000,31.00000000,0.00000000,1.00000000,TCCAGCCTCACTCCTCC,17.00000000,,ref->het,0.16326531,0.00000000,54.00000000,2.38938053,9.45000000 +1501,chr22,48949858,TP,GAC,GAC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.86000000,49.00000000,0.00000000,2.00000000,AC,2.00000000,,ref->het,0.26760563,0.00000000,73.00000000,3.23008850,3.96000000 +1502,chr22,48952055,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.24000000,44.00000000,0.00000000,4.00000000,C,1.00000000,,ref->het,0.17808219,0.00000000,77.00000000,3.40707965,0.84000000 +1503,chr22,48956632,TP,A,A,ACACGCCACAACCACATT,ACACGCCACAACCACATT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.13000000,41.00000000,0.00000000,1.00000000,CACGCCACAACCACATT,17.00000000,,ref->het,0.21428571,0.00000000,51.00000000,2.25663717,2.39000000 +1504,chr22,48965214,TP,TAC,TAC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.48000000,46.00000000,0.00000000,1.00000000,AC,2.00000000,,ref->het,0.29230769,0.00000000,73.00000000,3.23008850,3.38000000 +1505,chr22,48968126,TP,CAACCAAA,CAACCAAA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,51.00000000,0.00000000,1.00000000,AACCAAA,7.00000000,,ref->het,0.19101124,0.00000000,96.00000000,4.24778761,4.04000000 +1506,chr22,48992253,TP,TGATA,TGATA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.37000000,61.00000000,0.00000000,3.00000000,GATA,4.00000000,,ref->het,0.33962264,0.00000000,59.00000000,2.61061947,1.69000000 +1507,chr22,48992489,TP,TAGAC,TAGAC,T,T,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.01000000,51.00000000,0.00000000,2.00000000,AGAC,4.00000000,,ref->het,0.28378378,0.00000000,82.00000000,3.62831858,0.01000000 +1508,chr22,48995595,TP,T,T,TCACA,TCACA,-1.00000000,,,,0.50000000,,,13.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.70000000,46.00000000,0.00000000,11.00000000,CA,2.00000000,,ref->het,0.21875000,0.00000000,83.00000000,3.67256637,1.87000000 +1509,chr22,49003279,TP,CCT,CCT,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.67000000,58.00000000,0.00000000,2.00000000,CT,2.00000000,,ref->het,0.28395062,0.00000000,84.00000000,3.71681416,1.27000000 +1510,chr22,49080337,TP,T,T,TC,TC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.49000000,45.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.18032787,0.00000000,62.00000000,2.74336283,0.69000000 +1511,chr22,49096342,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,7.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.95000000,34.00000000,0.00000000,8.00000000,CA,2.00000000,,ref->het,0.13432836,0.00000000,77.00000000,3.40707965,3.91000000 +1512,chr22,49096396,TP,AC,AC,A,A,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,2.89000000,38.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.12698413,0.00000000,69.00000000,3.05309735,4.08000000 +1513,chr22,49106469,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.13000000,53.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.19780220,0.00000000,96.00000000,4.24778761,1.64000000 +1514,chr22,49138199,TP,G,G,GTCCACCCATCCATCAACTCATCTATTA,GTCCACCCATCCATCAACTCATCTATTA,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,38.00000000,0.00000000,1.00000000,TCCACCCATCCATCAACTCATCTATTA,27.00000000,,ref->het,0.15625000,0.00000000,60.00000000,2.65486726,0.62000000 +1515,chr22,49146562,TP,ATGAGCG,ATGAGCG,A,A,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.82000000,55.00000000,0.00000000,1.00000000,TGAGCG,6.00000000,,ref->het,0.26582278,0.00000000,81.00000000,3.58407080,2.21000000 +1516,chr22,49152471,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.68000000,42.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.26760563,0.00000000,80.00000000,3.53982301,3.43000000 +1517,chr22,49224332,TP,C,C,CATGGATGG,CATGGATGG,-1.00000000,,,,1.00000000,,,13.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.71000000,38.00000000,0.00000000,11.00000000,ATGG,4.00000000,,ref->het,0.49206349,0.00000000,91.00000000,4.02654867,2.10000000 +1518,chr22,49292680,TP,A,A,AAC,AAC,-1.00000000,,,,0.50000000,,,3.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.41000000,54.00000000,0.00000000,2.00000000,AC,2.00000000,,ref->het,0.21052632,0.00000000,82.00000000,3.62831858,2.14000000 +1519,chr22,49308292,TP,GA,GA,G,G,-1.00000000,,,,0.50000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.59000000,32.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.22727273,0.00000000,73.00000000,3.23008850,5.62000000 +1520,chr22,49308313,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.20000000,49.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.25373134,0.00000000,79.00000000,3.49557522,4.65000000 +1521,chr22,49316634,TP,TTAAAG,TTAAAG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.04000000,55.00000000,0.00000000,1.00000000,TAAAG,5.00000000,,ref->het,0.22972973,0.00000000,77.00000000,3.40707965,2.78000000 +1522,chr22,49316836,TP,C,C,CT,CT,-1.00000000,,,,1.00000000,,,10.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.39000000,61.00000000,0.00000000,9.00000000,T,1.00000000,,ref->het,0.56060606,0.00000000,82.00000000,3.62831858,2.35000000 +1523,chr22,49328517,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.29000000,45.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.19117647,0.00000000,72.00000000,3.18584071,0.78000000 +1524,chr22,49338036,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.87000000,53.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,77.00000000,3.40707965,0.19000000 +1525,chr22,49357805,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.45000000,50.00000000,0.00000000,17.00000000,T,1.00000000,,ref->het,0.49122807,0.00000000,77.00000000,3.40707965,7.46000000 +1526,chr22,49359361,TP,A,A,ACTGGTGTAGAAAATGTCTTACCCTCTGAT,ACTGGTGTAGAAAATGTCTTACCCTCTGAT,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,1.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.18000000,58.00000000,0.00000000,1.00000000,CTGGTGTAGAAAATGTCTTACCCTCTGAT,29.00000000,,ref->het,0.50000000,0.00000000,76.00000000,3.36283186,0.63000000 +1527,chr22,49359830,TP,G,G,GA,GA,-1.00000000,,,,1.00000000,,,10.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.77000000,49.00000000,0.00000000,9.00000000,A,1.00000000,,ref->het,0.32786885,0.00000000,69.00000000,3.05309735,4.44000000 +1528,chr22,49365325,TP,AG,AG,A,A,-1.00000000,,,,0.50000000,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.15000000,61.00000000,0.00000000,4.00000000,G,1.00000000,,ref->het,0.29761905,0.00000000,91.00000000,4.02654867,0.42000000 +1529,chr22,49377537,TP,C,C,CGGCTCTGGGACTTGAGGAAAGTTGACCT,CGGCTCTGGGACTTGAGGAAAGTTGACCT,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,28.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.13000000,52.00000000,0.00000000,1.00000000,GGCTCTGGGACTTGAGGAAAGTTGACCT,28.00000000,,ref->het,0.27777778,0.00000000,78.00000000,3.45132743,0.29000000 +1530,chr22,49402902,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,10.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.77000000,37.00000000,0.00000000,11.00000000,A,1.00000000,,ref->het,0.41666667,0.00000000,60.00000000,2.65486726,5.15000000 +1531,chr22,49408981,TP,GT,GT,G,G,-1.00000000,,,,0.50000000,,,12.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.24000000,37.00000000,0.00000000,13.00000000,T,1.00000000,,ref->het,0.23529412,0.00000000,85.00000000,3.76106195,4.23000000 +1532,chr22,49426987,TP,ATG,ATG,A,A,-1.00000000,,,,0.50000000,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.96000000,42.00000000,0.00000000,5.00000000,TG,2.00000000,,ref->het,0.19354839,0.00000000,69.00000000,3.05309735,0.38000000 +1533,chr22,49427064,TP,A,A,ATG,ATG,-1.00000000,,,,0.50000000,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.59000000,49.00000000,0.00000000,2.00000000,TG,2.00000000,,ref->het,0.28169014,0.00000000,75.00000000,3.31858407,3.05000000 +1534,chr22,49427422,TP,AAAC,AAAC,A,A,-1.00000000,,,,0.50000000,,,1.00000000,7.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.46000000,44.00000000,0.00000000,2.00000000,AAC,3.00000000,,ref->het,0.22727273,0.00000000,69.00000000,3.05309735,1.50000000 +1535,chr22,49430526,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,56.00000000,0.00000000,6.00000000,T,1.00000000,,ref->het,0.28571429,0.00000000,80.00000000,3.53982301,0.96000000 +1536,chr22,49445770,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.32000000,36.00000000,0.00000000,0.00000000,G,1.00000000,,ref->het,0.15873016,0.00000000,73.00000000,3.23008850,0.96000000 +1537,chr22,49470868,TP,C,C,CCACACA,CCACACA,-1.00000000,,,,0.50000000,,,15.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,3.98000000,50.00000000,0.00000000,12.00000000,CA,2.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,4.71000000 +1538,chr22,49486538,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,5.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.68000000,48.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.24615385,0.00000000,71.00000000,3.14159292,2.27000000 +1539,chr22,49488447,TP,AGTTTT,AGTTTT,A,A,-1.00000000,,,,0.50000000,,,0.00000000,6.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,2.64000000,44.00000000,0.00000000,1.00000000,GTTTT,5.00000000,,ref->het,0.12380952,0.00000000,116.00000000,5.13274336,5.28000000 +1540,chr22,49507139,TP,GAGA,GAGA,G,G,-1.00000000,,,,0.50000000,,,4.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,3.55000000,35.00000000,0.00000000,5.00000000,AGA,3.00000000,,ref->het,0.19672131,0.00000000,78.00000000,3.45132743,7.93000000 +1541,chr22,49523955,TP,T,T,TG,TG,-1.00000000,,,,0.50000000,,,7.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.15000000,34.00000000,0.00000000,6.00000000,G,1.00000000,,ref->het,0.17777778,0.00000000,64.00000000,2.83185841,17.17000000 +1542,chr22,49580546,TP,GCA,GCA,G,G,-1.00000000,,,,0.50000000,,,6.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.98000000,35.00000000,0.00000000,7.00000000,CA,2.00000000,,ref->het,0.17460317,0.00000000,72.00000000,3.18584071,6.45000000 +1543,chr22,49601710,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.31000000,48.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.24324324,0.00000000,81.00000000,3.58407080,2.81000000 +1544,chr22,49847007,TP,CG,CG,C,C,-1.00000000,,,,0.50000000,,,2.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.03000000,45.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.25714286,0.00000000,77.00000000,3.40707965,2.40000000 +1545,chr22,49849678,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.61000000,39.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.15189873,0.00000000,89.00000000,3.93805310,1.04000000 +1546,chr22,49851602,TP,CAT,CAT,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.01000000,35.00000000,0.00000000,1.00000000,AT,2.00000000,,ref->het,0.12121212,0.00000000,71.00000000,3.14159292,0.93000000 +1547,chr22,49861001,TP,T,T,TCTC,TCTC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.11000000,47.00000000,0.00000000,0.00000000,CTC,3.00000000,,ref->het,0.19402985,0.00000000,75.00000000,3.31858407,0.56000000 +1548,chr22,49866136,TP,A,A,ATTTCT,ATTTCT,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.90000000,60.00000000,0.00000000,0.00000000,TTTCT,5.00000000,,ref->het,0.23750000,0.00000000,86.00000000,3.80530973,1.48000000 +1549,chr22,49871161,TP,A,A,AAGCTCCTGGGCTCAAACAATCCATCTGCCTC,AAGCTCCTGGGCTCAAACAATCCATCTGCCTC,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,31.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.00000000,49.00000000,0.00000000,0.00000000,AGCTCCTGGGCTCAAACAATCCATCTGCCTC,31.00000000,,ref->het,0.26415094,0.00000000,53.00000000,2.34513274,1.31000000 +1550,chr22,49871758,TP,T,T,TTTA,TTTA,-1.00000000,,,,0.50000000,,,1.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.72000000,39.00000000,0.00000000,0.00000000,TTA,3.00000000,,ref->het,0.16393443,0.00000000,66.00000000,2.92035398,5.67000000 +1551,chr22,49873858,TP,A,A,AG,AG,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.55000000,41.00000000,0.00000000,1.00000000,G,1.00000000,,ref->het,0.15277778,0.00000000,79.00000000,3.49557522,2.27000000 +1552,chr22,49877258,TP,ATTATTTATTTAT,ATTATTTATTTAT,A,A,-1.00000000,,,,0.50000000,,,9.00000000,6.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.36000000,35.00000000,0.00000000,12.00000000,TTAT,4.00000000,,ref->het,0.15517241,0.00000000,80.00000000,3.53982301,1.19000000 +1553,chr22,49880134,TP,G,G,GT,GT,-1.00000000,,,,0.50000000,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,1.02000000,55.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.19767442,0.00000000,91.00000000,4.02654867,0.78000000 +1554,chr22,49972882,TP,GTA,GTA,G,G,-1.00000000,,,,1.00000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.95000000,61.00000000,0.00000000,1.00000000,TA,2.00000000,,ref->het,0.47297297,0.00000000,82.00000000,3.62831858,9.17000000 +1555,chr22,50033191,TP,AC,AC,A,A,-1.00000000,,,,1.00000000,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.03000000,56.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.48648649,0.00000000,76.00000000,3.36283186,2.66000000 +1556,chr22,50037208,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,13.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.66000000,52.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.37500000,0.00000000,96.00000000,4.24778761,4.59000000 +1557,chr22,50048115,TP,A,A,AGT,AGT,-1.00000000,,,,1.00000000,,,16.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.95000000,68.00000000,0.00000000,15.00000000,GT,2.00000000,,ref->het,0.34328358,0.00000000,97.00000000,4.29203540,3.33000000 +1558,chr22,50055655,TP,CAA,CAA,C,C,-1.00000000,,,,0.50000000,,,16.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.44000000,36.00000000,0.00000000,18.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,82.00000000,3.62831858,6.66000000 +1559,chr22,50066906,TP,GC,GC,G,G,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.86000000,52.00000000,0.00000000,2.00000000,C,1.00000000,,ref->het,0.28409091,0.00000000,91.00000000,4.02654867,1.05000000 +1560,chr22,50199742,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.72000000,60.00000000,0.00000000,0.00000000,A,1.00000000,,ref->het,0.29411765,0.00000000,82.00000000,3.62831858,2.08000000 +1561,chr22,50231257,TP,CA,CA,C,C,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.67000000,49.00000000,0.00000000,1.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,0.81000000 +1562,chr22,50238137,TP,A,A,AAG,AAG,-1.00000000,,,,1.00000000,,,11.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,51.00000000,0.00000000,10.00000000,AG,2.00000000,,ref->het,0.37037037,0.00000000,71.00000000,3.14159292,1.97000000 +1563,chr22,50284510,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,7.00000000,10.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.29000000,43.00000000,0.00000000,6.00000000,C,1.00000000,,ref->het,0.17543860,0.00000000,65.00000000,2.87610619,6.45000000 +1564,chr22,50322046,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.78000000,37.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.28048780,0.00000000,95.00000000,4.20353982,5.38000000 +1565,chr22,50322078,TP,A,A,ATT,ATT,-1.00000000,,,,0.50000000,,,16.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.75000000,38.00000000,0.00000000,14.00000000,T,1.00000000,,ref->het,0.24691358,0.00000000,100.00000000,4.42477876,7.39000000 +1566,chr22,50331614,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.40000000,42.00000000,0.00000000,8.00000000,T,1.00000000,,ref->het,0.16470588,0.00000000,95.00000000,4.20353982,0.58000000 +1567,chr22,50337665,TP,GGT,GGT,G,G,-1.00000000,,,,0.50000000,,,6.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.14000000,43.00000000,0.00000000,7.00000000,GT,2.00000000,,ref->het,0.27450980,0.00000000,68.00000000,3.00884956,11.28000000 +1568,chr22,50440462,TP,GGTGA,GGTGA,G,G,-1.00000000,,,,1.00000000,,,1.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,1.35000000,91.00000000,0.00000000,2.00000000,GTGA,4.00000000,,ref->het,0.41250000,0.00000000,84.00000000,3.71681416,1.77000000 +1569,chr22,50443687,TP,CAGCAGA,CAGCAGA,C,C,-1.00000000,,,,1.00000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.20000000,91.00000000,0.00000000,1.00000000,AGCAGA,6.00000000,,ref->het,0.46913580,0.00000000,86.00000000,3.80530973,2.02000000 +1570,chr22,50444323,TP,CT,CT,C,C,-1.00000000,,,,1.00000000,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.98000000,81.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.36363636,0.00000000,96.00000000,4.24778761,2.96000000 +1571,chr22,50446815,TP,TTC,TTC,T,T,-1.00000000,,,,1.00000000,,,2.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.63000000,50.00000000,0.00000000,3.00000000,TC,2.00000000,,ref->het,0.45333333,0.00000000,84.00000000,3.71681416,1.37000000 +1572,chr22,50447464,TP,CCA,CCA,C,C,-1.00000000,,,,0.50000000,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.10000000,52.00000000,0.00000000,2.00000000,CA,2.00000000,,ref->het,0.24096386,0.00000000,89.00000000,3.93805310,7.94000000 +1573,chr22,50479746,TP,CA,CA,C,C,-1.00000000,,,,1.00000000,,,13.00000000,15.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,2.03000000,67.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.47540984,0.00000000,79.00000000,3.49557522,5.03000000 +1574,chr22,50514106,TP,C,C,CAAACA,CAAACA,-1.00000000,,,,0.50000000,,,6.00000000,7.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.46000000,37.00000000,0.00000000,5.00000000,AAACA,5.00000000,,ref->het,0.11475410,0.00000000,82.00000000,3.62831858,1.82000000 +1575,chr22,50519032,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,1.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,56.00000000,0.00000000,0.00000000,T,1.00000000,,ref->het,0.23863636,0.00000000,93.00000000,4.11504425,1.56000000 +1576,chr22,50536801,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,6.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.13000000,58.00000000,0.00000000,7.00000000,T,1.00000000,,ref->het,0.26506024,0.00000000,88.00000000,3.89380531,0.27000000 +1577,chr22,50537687,TP,CACAA,CACAA,C,C,-1.00000000,,,,0.50000000,,,2.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.59000000,48.00000000,0.00000000,3.00000000,ACAA,4.00000000,,ref->het,0.18823529,0.00000000,96.00000000,4.24778761,2.73000000 +1578,chr22,50540446,TP,G,G,GTATATA,GTATATA,-1.00000000,,,,0.50000000,,,9.00000000,5.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.47000000,64.00000000,0.00000000,6.00000000,TA,2.00000000,,ref->het,0.29166667,0.00000000,89.00000000,3.93805310,1.19000000 +1579,chr22,50540513,TP,TC,TC,T,T,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.57000000,48.00000000,0.00000000,3.00000000,C,1.00000000,,ref->het,0.26086957,0.00000000,75.00000000,3.31858407,1.80000000 +1580,chr22,50540674,TP,C,C,CA,CA,-1.00000000,,,,0.50000000,,,15.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,2.34000000,37.00000000,0.00000000,14.00000000,A,1.00000000,,ref->het,0.16091954,0.00000000,102.00000000,4.51327434,12.15000000 +1581,chr22,50541317,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,14.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.23000000,35.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.29411765,0.00000000,97.00000000,4.29203540,4.67000000 +1582,chr22,50564147,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,14.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.02000000,41.00000000,0.00000000,15.00000000,T,1.00000000,,ref->het,0.23943662,0.00000000,91.00000000,4.02654867,6.73000000 +1583,chr22,50565775,TP,A,A,AT,AT,-1.00000000,,,,0.50000000,,,5.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.55000000,46.00000000,0.00000000,4.00000000,T,1.00000000,,ref->het,0.20253165,0.00000000,88.00000000,3.89380531,3.95000000 +1584,chr22,50578780,TP,C,C,CCTT,CCTT,-1.00000000,,,,0.50000000,,,1.00000000,4.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.85000000,46.00000000,0.00000000,0.00000000,CTT,3.00000000,,ref->het,0.20547945,0.00000000,77.00000000,3.40707965,1.14000000 +1585,chr22,50582835,TP,GGCTCGGTTCCTTCCGGCCGC,GGCTCGGTTCCTTCCGGCCGC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,3.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,1.68000000,68.00000000,0.00000000,1.00000000,GCTCGGTTCCTTCCGGCCGC,20.00000000,,ref->het,0.27368421,0.00000000,90.00000000,3.98230088,4.20000000 +1586,chr22,50592860,TP,GAA,GAA,G,G,-1.00000000,,,,0.50000000,,,10.00000000,13.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.67000000,34.00000000,0.00000000,12.00000000,A,1.00000000,,ref->het,0.22222222,0.00000000,81.00000000,3.58407080,3.36000000 +1587,chr22,50614470,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.34000000,41.00000000,0.00000000,9.00000000,AG,2.00000000,,ref->het,0.19642857,0.00000000,74.00000000,3.27433628,9.19000000 +1588,chr22,50621405,TP,CT,CT,C,C,-1.00000000,,,,0.50000000,,,2.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.19000000,49.00000000,0.00000000,3.00000000,T,1.00000000,,ref->het,0.22500000,0.00000000,85.00000000,3.76106195,3.35000000 +1589,chr22,50626434,TP,A,A,AC,AC,-1.00000000,,,,0.50000000,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,41.00000000,1.81415929,0.74000000,59.00000000,0.00000000,1.00000000,C,1.00000000,,ref->het,0.20930233,0.00000000,94.00000000,4.15929204,1.99000000 +1590,chr22,50648256,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.90000000,40.00000000,0.00000000,12.00000000,T,1.00000000,,ref->het,0.28000000,0.00000000,99.00000000,4.38053097,3.30000000 +1591,chr22,50668253,TP,TTAAGTG,TTAAGTG,T,T,-1.00000000,,,,0.50000000,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.24000000,41.00000000,0.00000000,1.00000000,TAAGTG,6.00000000,,ref->het,0.29577465,0.00000000,76.00000000,3.36283186,0.48000000 +1592,chr22,50670334,TP,C,C,CA,CA,-1.00000000,,,,1.00000000,,,14.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.80000000,71.00000000,0.00000000,13.00000000,A,1.00000000,,ref->het,0.46666667,0.00000000,76.00000000,3.36283186,8.62000000 +1593,chr22,50725487,TP,TG,TG,T,T,-1.00000000,,,,0.50000000,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.79000000,43.00000000,0.00000000,3.00000000,G,1.00000000,,ref->het,0.17567568,0.00000000,82.00000000,3.62831858,1.04000000 +1594,chr22,50725583,TP,C,C,CT,CT,-1.00000000,,,,0.50000000,,,3.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.81000000,55.00000000,0.00000000,2.00000000,T,1.00000000,,ref->het,0.23376623,0.00000000,83.00000000,3.67256637,1.51000000 +1595,chr22,50761102,TP,AT,AT,A,A,-1.00000000,,,,0.50000000,,,4.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.41000000,36.00000000,0.00000000,5.00000000,T,1.00000000,,ref->het,0.14666667,0.00000000,78.00000000,3.45132743,0.63000000 +1596,chr22,50768353,TP,TA,TA,T,T,-1.00000000,,,,0.50000000,,,2.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.28000000,32.00000000,0.00000000,3.00000000,A,1.00000000,,ref->het,0.10526316,0.00000000,59.00000000,2.61061947,1.11000000 +1597,chr22,50769577,TP,GTC,GTC,G,G,-1.00000000,,,,0.50000000,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.20000000,32.00000000,0.00000000,1.00000000,TC,2.00000000,,ref->het,0.12765957,0.00000000,49.00000000,2.16814159,1.63000000 +1598,chr22,50781400,TP,A,A,AAG,AAG,-1.00000000,,,,0.50000000,,,12.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.52000000,45.00000000,0.00000000,11.00000000,AG,2.00000000,,ref->het,0.26666667,0.00000000,80.00000000,3.53982301,6.52000000 +1599,chr22,50790395,TP,ATCT,ATCT,A,A,-1.00000000,,,,0.50000000,,,1.00000000,5.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,33.00000000,0.00000000,2.00000000,TCT,3.00000000,,ref->het,0.15217391,0.00000000,48.00000000,2.12389381,0.03000000 +0,chr22,11625917,FP,G,,GA,,-1.00000000,,,,,,,3.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,63.00000000,2.78761062,3.20000000,42.00000000,,2.00000000,A,1.00000000,,ref->het,0.03311258,0.00000000,163.00000000,7.21238938,5.28000000 +1,chr22,16406880,FP,CA,,C,,-1.00000000,,,,,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,51.00000000,2.25663717,1.51000000,43.00000000,,4.00000000,A,1.00000000,,ref->het,0.05825243,0.00000000,112.00000000,4.95575221,1.81000000 +2,chr22,17285575,FP,G,,GTGTGTGTG,,-1.00000000,,,,,,,20.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,0.77000000,33.00000000,,16.00000000,TG,2.00000000,,ref->het,0.16666667,0.00000000,54.00000000,2.38938053,2.95000000 +3,chr22,19052414,FP,T,,TCACACA,,-1.00000000,,,,,,,16.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.81000000,50.00000000,,13.00000000,CA,2.00000000,,ref->het,0.36206897,0.00000000,83.00000000,3.67256637,4.79000000 +4,chr22,21667790,FP,TTTTGA,,T,,-1.00000000,,,,,,,0.00000000,28.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.44000000,34.00000000,,1.00000000,TTTGA,5.00000000,,ref->het,0.06976744,0.00000000,56.00000000,2.47787611,10.15000000 +5,chr22,22900687,FP,T,,TGTCAG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.73000000,31.00000000,,1.00000000,GTCAG,5.00000000,,ref->het,0.05714286,0.00000000,72.00000000,3.18584071,0.82000000 +6,chr22,25085783,FP,AAGGG,,A,,-1.00000000,,,,,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.55000000,35.00000000,,6.00000000,AGGG,4.00000000,,ref->het,0.20833333,0.00000000,65.00000000,2.87610619,10.48000000 +7,chr22,25436587,FP,C,,CG,,-1.00000000,,,,,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.84000000,35.00000000,,5.00000000,G,1.00000000,,ref->het,0.07017544,0.00000000,61.00000000,2.69911504,5.58000000 +8,chr22,25491655,FP,G,,GTCTTTCTT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.17000000,45.00000000,,0.00000000,TCTT,4.00000000,,ref->het,0.29545455,0.00000000,82.00000000,3.62831858,4.67000000 +9,chr22,26292034,FP,AGGATGGAT,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.60000000,35.00000000,,2.00000000,GGAT,4.00000000,,ref->het,0.22727273,0.00000000,78.00000000,3.45132743,6.96000000 +10,chr22,26390320,FP,GT,,G,,-1.00000000,,,,,,,1.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,4.55000000,33.00000000,,2.00000000,T,1.00000000,,ref->het,0.16129032,0.00000000,46.00000000,2.03539823,7.00000000 +11,chr22,26393177,FP,A,,ATGTGTGTGTGTGTGTGTGTGTG,,-1.00000000,,,,,,,16.00000000,2.00000000,1.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.17000000,36.00000000,,5.00000000,TG,2.00000000,,ref->het,0.11764706,0.00000000,71.00000000,3.14159292,3.50000000 +12,chr22,32373281,FP,GAA,,G,,-1.00000000,,,,,,,12.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.62000000,33.00000000,,14.00000000,A,1.00000000,,ref->het,0.21176471,0.00000000,92.00000000,4.07079646,3.50000000 +13,chr22,32585978,FP,ATATGTATGTATACGTATATATG,,A,,-1.00000000,,,,,,,1.00000000,2.00000000,2.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,36.00000000,,2.00000000,TATGTATGTATACGTATATATG,22.00000000,,ref->het,0.12658228,0.00000000,92.00000000,4.07079646,2.20000000 +14,chr22,33009751,FP,A,,AACAC,,-1.00000000,,,,,,,23.00000000,4.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.47000000,45.00000000,,21.00000000,AC,2.00000000,,ref->het,0.22727273,0.00000000,65.00000000,2.87610619,3.65000000 +15,chr22,33696235,FP,TTTTC,,T,,-1.00000000,,,,,,,6.00000000,8.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,1.84000000,65.00000000,,7.00000000,TTTC,4.00000000,,ref->het,0.45098039,0.00000000,93.00000000,4.11504425,4.33000000 +16,chr22,34479793,FP,G,,GTATCTATC,,-1.00000000,,,,,,,3.00000000,4.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.29000000,40.00000000,,1.00000000,TATC,4.00000000,,ref->het,0.27450980,0.00000000,71.00000000,3.14159292,0.64000000 +17,chr22,34898835,FP,A,,ACACACC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,1.47000000,33.00000000,,0.00000000,CACACC,6.00000000,,ref->het,0.06172840,0.00000000,90.00000000,3.98230088,5.30000000 +18,chr22,36618916,FP,TCAAAA,,T,,-1.00000000,,,,,,,0.00000000,12.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.51000000,31.00000000,,1.00000000,CAAAA,5.00000000,,ref->het,0.09677419,0.00000000,66.00000000,2.92035398,4.81000000 +19,chr22,36706245,FP,T,,TCTTCTTCTTCTTCTTCTTCTTCTT,,-1.00000000,,,,,,,20.00000000,4.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,2.50000000,40.00000000,,12.00000000,CTT,3.00000000,,ref->het,0.26923077,0.00000000,53.00000000,2.34513274,3.39000000 +20,chr22,38526736,FP,AT,,A,,-1.00000000,,,,,,,7.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.42000000,39.00000000,,8.00000000,T,1.00000000,,ref->het,0.06481481,0.00000000,115.00000000,5.08849558,0.99000000 +21,chr22,39570246,FP,C,,CCCTTCCTT,,-1.00000000,,,,,,,12.00000000,3.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.94000000,32.00000000,,10.00000000,CCTT,4.00000000,,ref->het,0.37500000,0.00000000,74.00000000,3.27433628,3.33000000 +22,chr22,40742863,FP,CT,,C,,-1.00000000,,,,,,,25.00000000,26.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,9.21000000,30.00000000,,26.00000000,T,1.00000000,,ref->het,0.29166667,0.00000000,66.00000000,2.92035398,13.86000000 +23,chr22,42475011,FP,CTCA,,C,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.30000000,51.00000000,,1.00000000,TCA,3.00000000,,ref->het,0.25000000,0.00000000,73.00000000,3.23008850,4.45000000 +24,chr22,43096313,FP,CAA,,C,,-1.00000000,,,,,,,24.00000000,28.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.49000000,34.00000000,,26.00000000,A,1.00000000,,ref->het,0.37837838,0.00000000,70.00000000,3.09734513,10.66000000 +25,chr22,43887794,FP,GGGCA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.34000000,45.00000000,,1.00000000,GGCA,4.00000000,,ref->het,0.20512821,0.00000000,85.00000000,3.76106195,7.75000000 +26,chr22,46146449,FP,GAGAAGAGAAGAGA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.82000000,40.00000000,,1.00000000,AGAAGAGAAGAGA,13.00000000,,ref->het,0.15384615,0.00000000,60.00000000,2.65486726,5.51000000 +27,chr22,46146490,FP,AGAAGGGAAGG,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.53000000,38.00000000,,2.00000000,GAAGG,5.00000000,,ref->het,0.13698630,0.00000000,74.00000000,3.27433628,3.43000000 +28,chr22,46523536,FP,A,,AAATAAATAAATAAATAAATA,,-1.00000000,,,,,,,13.00000000,6.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.87000000,47.00000000,,8.00000000,AATA,4.00000000,,ref->het,0.24528302,0.00000000,56.00000000,2.47787611,2.18000000 +29,chr22,46702221,FP,ATATG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.23000000,44.00000000,,1.00000000,TATG,4.00000000,,ref->het,0.25000000,0.00000000,79.00000000,3.49557522,13.18000000 +30,chr22,46841073,FP,T,,TGTGTGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.42000000,39.00000000,,0.00000000,GTGTGA,6.00000000,,ref->het,0.11764706,0.00000000,57.00000000,2.52212389,2.14000000 +31,chr22,47520489,FP,TATGATATGAATATGCTATTCATTCATGAGTATG,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,33.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.92000000,33.00000000,,1.00000000,ATGATATGAATATGCTATTCATTCATGAGTATG,33.00000000,,ref->het,0.08750000,0.00000000,75.00000000,3.31858407,2.41000000 +32,chr22,47867253,FP,G,,GTATATATA,,-1.00000000,,,,,,,13.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.79000000,39.00000000,,9.00000000,TA,2.00000000,,ref->het,0.19148936,0.00000000,69.00000000,3.05309735,0.99000000 +33,chr22,48080772,FP,CAAACCCACATACACCACACACACCAAACACACAATCAT,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.77000000,37.00000000,,1.00000000,AAACCCACATACACCACACACACCAAACACACAATCAT,38.00000000,,ref->het,0.13698630,0.00000000,79.00000000,3.49557522,5.29000000 +34,chr22,49399929,FP,ACACACAC,,A,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.19000000,57.00000000,,2.00000000,CACACAC,7.00000000,,ref->het,0.33898305,0.00000000,80.00000000,3.53982301,5.08000000 +35,chr22,50264049,FP,A,,AC,,-1.00000000,,,,,,,4.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.17000000,38.00000000,,3.00000000,C,1.00000000,,ref->het,0.23076923,0.00000000,63.00000000,2.78761062,15.30000000 +0,chr22,11295708,FN,,T,,TTTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +1,chr22,12538760,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +2,chr22,12585385,FN,,AAATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +3,chr22,12635555,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +4,chr22,15231814,FN,,AGTGT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +5,chr22,15295537,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +6,chr22,15334438,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +7,chr22,15375287,FN,,TGTGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +8,chr22,15393860,FN,,ACACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +9,chr22,15446047,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +10,chr22,15575886,FN,,TCTC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +11,chr22,15850491,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +12,chr22,15880184,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +13,chr22,16133744,FN,,GAAAA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +14,chr22,16136118,FN,,TG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +15,chr22,16148396,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +16,chr22,16170067,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +17,chr22,16178880,FN,,T,,TAA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +18,chr22,16183035,FN,,CTTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +19,chr22,16187506,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +20,chr22,16201032,FN,,CA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +21,chr22,16204198,FN,,GT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +22,chr22,16216723,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +23,chr22,16238336,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +24,chr22,16254967,FN,,G,,GAGAAAAGAAGGA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +25,chr22,16354607,FN,,GAATGGAATGA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +26,chr22,16356381,FN,,G,,GGAATT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +27,chr22,16378592,FN,,GAATCGAATGGAATCAT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +28,chr22,16387468,FN,,C,,CCCCGCCGCGGCTTTTTGCA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +29,chr22,16391159,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +30,chr22,16402263,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +31,chr22,16422281,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +32,chr22,16578791,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +33,chr22,16649027,FN,,GGGGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +34,chr22,16660163,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +35,chr22,16687926,FN,,A,,AACACAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +36,chr22,16724289,FN,,T,,TATAATATGCAGC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +37,chr22,16724684,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +38,chr22,16791800,FN,,AG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +39,chr22,16791802,FN,,AGAGAGAGAGAAAG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +40,chr22,16839772,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +41,chr22,16935562,FN,,A,,ATGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +42,chr22,16991313,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +43,chr22,17125117,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +44,chr22,17126428,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +45,chr22,17169809,FN,,A,,ATCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +46,chr22,17208445,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +47,chr22,17310269,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +48,chr22,17322142,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +49,chr22,17322777,FN,,CAAAAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +50,chr22,17329968,FN,,A,,AAAAAGAAAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +51,chr22,17331260,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +52,chr22,17331671,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +53,chr22,17454604,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +54,chr22,17482761,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +55,chr22,17527769,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +56,chr22,17534684,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +57,chr22,17534857,FN,,C,,CAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +58,chr22,17544497,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +59,chr22,17547237,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +60,chr22,17597243,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +61,chr22,17641387,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +62,chr22,17704987,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +63,chr22,17705113,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +64,chr22,17763710,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +65,chr22,17829165,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +66,chr22,17839567,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +67,chr22,17886804,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +68,chr22,17912368,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +69,chr22,17953930,FN,,CAAAAAAAAAAAAAAAAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +70,chr22,17954750,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +71,chr22,17990111,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +72,chr22,17993251,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +73,chr22,17994721,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +74,chr22,17996445,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +75,chr22,18124323,FN,,GGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +76,chr22,18162287,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +77,chr22,18238681,FN,,A,,AAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +78,chr22,18609475,FN,,C,,CGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +79,chr22,18733742,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +80,chr22,18788021,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +81,chr22,18881798,FN,,AAAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +82,chr22,19005324,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +83,chr22,19013311,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +84,chr22,19021292,FN,,CTTCTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +85,chr22,19022251,FN,,CAAA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +86,chr22,19023525,FN,,A,,AC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +87,chr22,19024366,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +88,chr22,19026294,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +89,chr22,19033994,FN,,TG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +90,chr22,19044996,FN,,GT,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +91,chr22,19084808,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +92,chr22,19092343,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +93,chr22,19093361,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +94,chr22,19096882,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +95,chr22,19103284,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +96,chr22,19108858,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +97,chr22,19113382,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +98,chr22,19161095,FN,,TATATACAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +99,chr22,19214682,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +100,chr22,19262631,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +101,chr22,19610330,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +102,chr22,19614977,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +103,chr22,19646174,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +104,chr22,19661204,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +105,chr22,19778439,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +106,chr22,19859088,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +107,chr22,19909577,FN,,A,,ATTCACACACACAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +108,chr22,19927651,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +109,chr22,20302018,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +110,chr22,20366004,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +111,chr22,20369740,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +112,chr22,20383044,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +113,chr22,20394761,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +114,chr22,20556302,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +115,chr22,20566030,FN,,CTTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +116,chr22,20566526,FN,,A,,ACAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +117,chr22,20570726,FN,,T,,TTTTCTTTCTTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +118,chr22,20623153,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +119,chr22,20623502,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +120,chr22,20624858,FN,,AAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +121,chr22,20625018,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +122,chr22,20625518,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +123,chr22,20628176,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +124,chr22,20630069,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +125,chr22,20659513,FN,,GC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +126,chr22,20683024,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +127,chr22,20790741,FN,,C,,CACACAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +128,chr22,20800873,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +129,chr22,20884331,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +130,chr22,20939789,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +131,chr22,21008219,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +132,chr22,21058052,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +133,chr22,21092166,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +134,chr22,21171187,FN,,GCCTCATGAT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +135,chr22,21222356,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +136,chr22,21251365,FN,,AC,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +137,chr22,21295555,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +138,chr22,21798717,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +139,chr22,21833940,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +140,chr22,21844187,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +141,chr22,21880911,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +142,chr22,21881204,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +143,chr22,21882942,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +144,chr22,21887839,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +145,chr22,21899153,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +146,chr22,21948334,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +147,chr22,22027529,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +148,chr22,22108921,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +149,chr22,22151848,FN,,T,,TGTGC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +150,chr22,22159416,FN,,A,,ATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +151,chr22,22161751,FN,,TAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +152,chr22,22178087,FN,,C,,CAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +153,chr22,22251789,FN,,C,,CTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +154,chr22,22325797,FN,,T,,TACTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +155,chr22,22541941,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +156,chr22,22606112,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +157,chr22,22626113,FN,,A,,AT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +158,chr22,22645134,FN,,CG,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +159,chr22,22675264,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +160,chr22,23082135,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +161,chr22,23163606,FN,,G,,GCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +162,chr22,23262691,FN,,TGGCGGGCCCGGGTGAG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +163,chr22,23305113,FN,,TAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +164,chr22,23332693,FN,,TA,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +165,chr22,23366868,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +166,chr22,23441168,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +167,chr22,23500471,FN,,G,,GGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +168,chr22,23502247,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +169,chr22,23502567,FN,,T,,TCC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +170,chr22,23503498,FN,,CT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +171,chr22,23593977,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +172,chr22,23597502,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +173,chr22,24127821,FN,,C,,CAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +174,chr22,24199015,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +175,chr22,24210360,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +176,chr22,24213730,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +177,chr22,24236762,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +178,chr22,24496404,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +179,chr22,24710278,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +180,chr22,24713889,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +181,chr22,24720259,FN,,GTTTTTTTTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +182,chr22,24726287,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +183,chr22,24734820,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +184,chr22,24740051,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +185,chr22,24756231,FN,,T,,TAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +186,chr22,24818045,FN,,A,,AACATGATGAAACCCTGTCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +187,chr22,24851435,FN,,AG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +188,chr22,24857247,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +189,chr22,24863744,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +190,chr22,24883071,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +191,chr22,24889959,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +192,chr22,24918495,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +193,chr22,24921703,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +194,chr22,24925356,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +195,chr22,24929563,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +196,chr22,24958652,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +197,chr22,24958980,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +198,chr22,24959565,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +199,chr22,24960546,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +200,chr22,25005346,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +201,chr22,25042642,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +202,chr22,25075778,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +203,chr22,25079233,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +204,chr22,25218818,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +205,chr22,25248690,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +206,chr22,25252108,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +207,chr22,25328125,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +208,chr22,25340333,FN,,A,,ATGAG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +209,chr22,25351058,FN,,T,,TA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +210,chr22,25352962,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +211,chr22,25355781,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +212,chr22,25439674,FN,,GC,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +213,chr22,25447622,FN,,AACAC,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +214,chr22,25453601,FN,,G,,GT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +215,chr22,25506572,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +216,chr22,25508835,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +217,chr22,25517718,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +218,chr22,25520208,FN,,A,,ATGTTTGTAAACC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +219,chr22,25552774,FN,,C,,CAAAAAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +220,chr22,25734088,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +221,chr22,25775884,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +222,chr22,25802966,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +223,chr22,25810407,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +224,chr22,25817416,FN,,TCTTTTCTTTCC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +225,chr22,25921702,FN,,TTGTGTGTGTGTGTGTGTGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +226,chr22,26327345,FN,,ACACACATGC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +227,chr22,26356955,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +228,chr22,26385039,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +229,chr22,26386744,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +230,chr22,26390308,FN,,TG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +231,chr22,26390318,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +232,chr22,26390320,FN,,GTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +233,chr22,26443619,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +234,chr22,26583555,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +235,chr22,26602590,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +236,chr22,26638231,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +237,chr22,26704098,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +238,chr22,26773336,FN,,A,,AC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +239,chr22,26811289,FN,,CGTGTGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +240,chr22,26843875,FN,,A,,AGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +241,chr22,26863383,FN,,CTTATT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +242,chr22,26907441,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +243,chr22,26979712,FN,,CCCTTTCTTTCATCCATTCATCTATCCATTATCCATCCACTCTGAAATACTTCATTTCATTTTTAATTCCCCTCCTCCTTCCTTCCTTTATCCCGCCCATCCTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +244,chr22,27019448,FN,,T,,TTTCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +245,chr22,27219480,FN,,TTTTC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +246,chr22,27244232,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +247,chr22,27376627,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +248,chr22,27395452,FN,,A,,AATGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +249,chr22,27426709,FN,,TA,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +250,chr22,27553635,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +251,chr22,27562424,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +252,chr22,27605264,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +253,chr22,27606694,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +254,chr22,27668014,FN,,G,,GTGTGTGTGTGTGTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +255,chr22,27720456,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +256,chr22,27728369,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +257,chr22,27728395,FN,,GAGAGAGAAAGAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +258,chr22,27728518,FN,,GAGAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +259,chr22,27750781,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +260,chr22,27772852,FN,,C,,CCAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +261,chr22,27777533,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +262,chr22,28161723,FN,,GAGGAC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +263,chr22,28201751,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +264,chr22,28716199,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +265,chr22,28734825,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +266,chr22,28766531,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +267,chr22,29502334,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +268,chr22,29757242,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +269,chr22,29777398,FN,,T,,TG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +270,chr22,30041425,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +271,chr22,30061960,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +272,chr22,30189320,FN,,AC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +273,chr22,30385785,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +274,chr22,30439803,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +275,chr22,30601774,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +276,chr22,30623296,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +277,chr22,30623711,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +278,chr22,30632836,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +279,chr22,30650332,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +280,chr22,30653985,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +281,chr22,30701095,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +282,chr22,30715368,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +283,chr22,30763637,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +284,chr22,30767069,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +285,chr22,30767545,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +286,chr22,30775453,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +287,chr22,30779035,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +288,chr22,30784777,FN,,A,,ATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +289,chr22,30985452,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +290,chr22,30991883,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +291,chr22,31003619,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +292,chr22,31006437,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +293,chr22,31008492,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +294,chr22,31008649,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +295,chr22,31018458,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +296,chr22,31026412,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +297,chr22,31043890,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +298,chr22,31108779,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +299,chr22,31162618,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +300,chr22,31162766,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +301,chr22,31174379,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +302,chr22,31184980,FN,,A,,AT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +303,chr22,31237942,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +304,chr22,31276452,FN,,T,,TCGG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +305,chr22,31281599,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +306,chr22,31294688,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +307,chr22,31400943,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +308,chr22,31412352,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +309,chr22,31437450,FN,,T,,TCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +310,chr22,31474487,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +311,chr22,31498860,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +312,chr22,31500788,FN,,GTTTTGTTTTTGTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +313,chr22,31573438,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +314,chr22,31575062,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +315,chr22,31593139,FN,,C,,CCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +316,chr22,31624646,FN,,C,,CACAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +317,chr22,31639180,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +318,chr22,31643102,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +319,chr22,31644242,FN,,C,,CTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +320,chr22,31658855,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +321,chr22,31663837,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +322,chr22,31664064,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +323,chr22,31696146,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +324,chr22,31710459,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +325,chr22,31719739,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +326,chr22,31727234,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +327,chr22,31728609,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +328,chr22,31733361,FN,,G,,GTGGTGCCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +329,chr22,31735642,FN,,G,,GAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +330,chr22,31736218,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +331,chr22,31745843,FN,,TAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +332,chr22,31774204,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +333,chr22,31799342,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +334,chr22,31799481,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +335,chr22,31800987,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +336,chr22,31855380,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +337,chr22,31989777,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +338,chr22,32139087,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +339,chr22,32139102,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +340,chr22,32213541,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +341,chr22,32213662,FN,,ATATC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +342,chr22,32214760,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +343,chr22,32257659,FN,,C,,CTTTTTTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +344,chr22,32274041,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +345,chr22,32287460,FN,,T,,TTAAAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +346,chr22,32291177,FN,,T,,TCTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +347,chr22,32291195,FN,,G,,GTTTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +348,chr22,32329661,FN,,GGTGT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +349,chr22,32330315,FN,,GGTGT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +350,chr22,32333858,FN,,CCA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +351,chr22,32334029,FN,,GCACA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +352,chr22,32364836,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +353,chr22,32367648,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +354,chr22,32368193,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +355,chr22,32382109,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +356,chr22,32391395,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +357,chr22,32428250,FN,,CGTGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +358,chr22,32428898,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +359,chr22,32447607,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +360,chr22,32448074,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +361,chr22,32452480,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +362,chr22,32452637,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +363,chr22,32550700,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +364,chr22,32644101,FN,,A,,AAAAAGAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +365,chr22,32645451,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +366,chr22,32709696,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +367,chr22,32710109,FN,,G,,GTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +368,chr22,32710111,FN,,A,,ATG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +369,chr22,32735523,FN,,TTTTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +370,chr22,32742273,FN,,G,,GTAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +371,chr22,32763943,FN,,CCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +372,chr22,32782073,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +373,chr22,32927263,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +374,chr22,32970482,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +375,chr22,33009749,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +376,chr22,33016009,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +377,chr22,33041294,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +378,chr22,33089391,FN,,T,,TTCC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +379,chr22,33089971,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +380,chr22,33122359,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +381,chr22,33432562,FN,,ATCAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +382,chr22,33586456,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +383,chr22,33591842,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +384,chr22,33597278,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +385,chr22,33689145,FN,,G,,GTCTCTC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +386,chr22,33843440,FN,,A,,AAAAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +387,chr22,33873000,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +388,chr22,33876861,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +389,chr22,33909522,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +390,chr22,33940785,FN,,GCACA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +391,chr22,34140335,FN,,A,,AG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +392,chr22,34298021,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +393,chr22,34406080,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +394,chr22,34544921,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +395,chr22,34639032,FN,,T,,TC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +396,chr22,34743181,FN,,C,,CGT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +397,chr22,34744955,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +398,chr22,34954403,FN,,C,,CTGAGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +399,chr22,35093731,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +400,chr22,35216949,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +401,chr22,35221560,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +402,chr22,35364747,FN,,A,,AAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +403,chr22,35562785,FN,,A,,AAAAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +404,chr22,35584979,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +405,chr22,35694020,FN,,A,,AC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +406,chr22,36026255,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +407,chr22,36081462,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +408,chr22,36088876,FN,,A,,AATTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +409,chr22,36116536,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +410,chr22,36129113,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +411,chr22,36397137,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +412,chr22,36402615,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +413,chr22,36408333,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +414,chr22,36434164,FN,,T,,TTTTCTTTCTTTCTTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +415,chr22,36470781,FN,,T,,TAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +416,chr22,36479334,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +417,chr22,36481640,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +418,chr22,36543644,FN,,CAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +419,chr22,36573328,FN,,A,,AATT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +420,chr22,36609411,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +421,chr22,36609657,FN,,G,,GC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +422,chr22,36618910,FN,,A,,ACT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +423,chr22,36618916,FN,,TCAAAAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +424,chr22,36627642,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +425,chr22,36825189,FN,,GTGTT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +426,chr22,36880353,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +427,chr22,36958149,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +428,chr22,36981395,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +429,chr22,36993016,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +430,chr22,36993568,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +431,chr22,36996137,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +432,chr22,37038138,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +433,chr22,37100414,FN,,A,,AG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +434,chr22,37220900,FN,,C,,CCCA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +435,chr22,37220903,FN,,TTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +436,chr22,37268419,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +437,chr22,37269736,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +438,chr22,37277294,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +439,chr22,37288583,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +440,chr22,37392325,FN,,T,,TC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +441,chr22,37395106,FN,,A,,AAAAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +442,chr22,37513944,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +443,chr22,37586447,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +444,chr22,37591155,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +445,chr22,37703503,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +446,chr22,37786975,FN,,TGG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +447,chr22,37878417,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +448,chr22,37883580,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +449,chr22,37914231,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +450,chr22,37934572,FN,,T,,TG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +451,chr22,38014122,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +452,chr22,38170195,FN,,CAAAAAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +453,chr22,38171823,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +454,chr22,38182417,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +455,chr22,38289410,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +456,chr22,38321948,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +457,chr22,38379356,FN,,AAAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +458,chr22,38389467,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +459,chr22,38707000,FN,,CTTTCCTGCCCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +460,chr22,38761767,FN,,CATGT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +461,chr22,38761792,FN,,ATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +462,chr22,38761822,FN,,TTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +463,chr22,38761898,FN,,T,,TGTGGGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +464,chr22,38931175,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +465,chr22,39003196,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +466,chr22,39119723,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +467,chr22,39193679,FN,,A,,AAAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +468,chr22,39197729,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +469,chr22,39198642,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +470,chr22,39199284,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +471,chr22,39200193,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +472,chr22,39200480,FN,,CTTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +473,chr22,39339463,FN,,C,,CATTTATTT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +474,chr22,39497867,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +475,chr22,39579648,FN,,CT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +476,chr22,39601875,FN,,T,,TTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +477,chr22,39603151,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +478,chr22,39923039,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +479,chr22,39993625,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +480,chr22,40350620,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +481,chr22,40739497,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +482,chr22,40781249,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +483,chr22,40907431,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +484,chr22,41010635,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +485,chr22,41187760,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +486,chr22,41251627,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +487,chr22,41453855,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +488,chr22,41564087,FN,,TAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +489,chr22,41566143,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +490,chr22,41570821,FN,,CAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +491,chr22,41570982,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +492,chr22,41587441,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +493,chr22,41785241,FN,,TTTTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +494,chr22,41840438,FN,,CTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +495,chr22,41871898,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +496,chr22,41872249,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +497,chr22,41957360,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +498,chr22,42047621,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +499,chr22,42057551,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +500,chr22,42235141,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +501,chr22,42266082,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +502,chr22,42449753,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +503,chr22,42458836,FN,,TAAAAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +504,chr22,42467202,FN,,C,,CTAATAATAATAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +505,chr22,42471935,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +506,chr22,42472098,FN,,CTTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +507,chr22,42474416,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +508,chr22,42475004,FN,,ACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +509,chr22,42475013,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +510,chr22,43022783,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +511,chr22,43044755,FN,,CAG,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +512,chr22,43072154,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +513,chr22,43088503,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +514,chr22,43091681,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +515,chr22,43099933,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +516,chr22,43100830,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +517,chr22,43102190,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +518,chr22,43108238,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +519,chr22,43146574,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +520,chr22,43205956,FN,,CCA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +521,chr22,43311423,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +522,chr22,43386258,FN,,CTTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +523,chr22,43393501,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +524,chr22,43641616,FN,,C,,CAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +525,chr22,43666954,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +526,chr22,43769856,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +527,chr22,43784670,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +528,chr22,43811363,FN,,G,,GGGGAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +529,chr22,43852348,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +530,chr22,43905226,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +531,chr22,43926706,FN,,CTAA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +532,chr22,43927490,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +533,chr22,43929599,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +534,chr22,43950783,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +535,chr22,44005413,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +536,chr22,44114252,FN,,TACTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +537,chr22,44170005,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +538,chr22,44170684,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +539,chr22,44208973,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +540,chr22,44213635,FN,,C,,CCAT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +541,chr22,44241831,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +542,chr22,44296239,FN,,AC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +543,chr22,44354780,FN,,TTGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +544,chr22,44539994,FN,,GTGGA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +545,chr22,44589704,FN,,G,,GT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +546,chr22,44614709,FN,,CAAAAAAAAAAAAG,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +547,chr22,44619587,FN,,AGT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +548,chr22,44619625,FN,,GTGTC,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +549,chr22,44619665,FN,,T,,TGTGTGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +550,chr22,44619877,FN,,TGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +551,chr22,44629286,FN,,AGAAG,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +552,chr22,44637166,FN,,AGATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +553,chr22,44719246,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +554,chr22,44722988,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +555,chr22,44777998,FN,,TTTTA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +556,chr22,44795040,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +557,chr22,44835231,FN,,CTA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +558,chr22,44858450,FN,,CTCTGTCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +559,chr22,44858498,FN,,GCT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +560,chr22,44859082,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +561,chr22,44859350,FN,,CCT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +562,chr22,44866575,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +563,chr22,44924079,FN,,A,,AG,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +564,chr22,44926026,FN,,C,,CCTGTGGTGGGAAGGCCCACACAGCACGGCCCTGTGGTGGATTCCCAGGGAAGTGGGTT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +565,chr22,45098677,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +566,chr22,45249648,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +567,chr22,45252501,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +568,chr22,45282547,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +569,chr22,45283051,FN,,TGC,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +570,chr22,45299668,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +571,chr22,45447383,FN,,C,,CA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +572,chr22,45479124,FN,,CA,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +573,chr22,45479947,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +574,chr22,45486007,FN,,G,,GATAAATAA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +575,chr22,45699467,FN,,C,,CT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +576,chr22,45858444,FN,,AT,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +577,chr22,45929801,FN,,C,,CATCTACCCACTCATCT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +578,chr22,45984671,FN,,TTGAA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +579,chr22,46033401,FN,,T,,TTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +580,chr22,46144361,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +581,chr22,46146416,FN,,AAAGAGAAGAG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +582,chr22,46146447,FN,,A,,AAG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +583,chr22,46253908,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +584,chr22,46254077,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +585,chr22,46268667,FN,,TTTTTG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +586,chr22,46314850,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +587,chr22,46402219,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +588,chr22,46611834,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +589,chr22,46643295,FN,,T,,TCATC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +590,chr22,46669577,FN,,CTCTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +591,chr22,46702214,FN,,AAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +592,chr22,46702223,FN,,ATG,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +593,chr22,46716191,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +594,chr22,46716505,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +595,chr22,46719148,FN,,T,,TTGTGTGTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +596,chr22,46719187,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +597,chr22,46719198,FN,,C,,CTTTTA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +598,chr22,46734067,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +599,chr22,47115196,FN,,ATTGCCAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +600,chr22,47127229,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +601,chr22,47159330,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +602,chr22,47253024,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +603,chr22,47355400,FN,,G,,GGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +604,chr22,47386804,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +605,chr22,47452123,FN,,T,,TAC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +606,chr22,47467579,FN,,G,,GTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +607,chr22,47477242,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +608,chr22,47632299,FN,,G,,GA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +609,chr22,47702390,FN,,CCTT,,C,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +610,chr22,47865974,FN,,CTT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +611,chr22,47867253,FN,,G,,GTATATATATA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +612,chr22,48005994,FN,,CT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +613,chr22,48044337,FN,,TAGAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +614,chr22,48081625,FN,,C,,CG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +615,chr22,48087012,FN,,G,,GAC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +616,chr22,48298725,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +617,chr22,48344566,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +618,chr22,48348844,FN,,A,,ACT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +619,chr22,48348962,FN,,TCA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +620,chr22,48348996,FN,,A,,ACACTCACACTTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +621,chr22,48349108,FN,,ACACT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +622,chr22,48349130,FN,,C,,CCACA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +623,chr22,48421333,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +624,chr22,48464910,FN,,GA,,G,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +625,chr22,48477750,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +626,chr22,48479855,FN,,GA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +627,chr22,48656005,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +628,chr22,48793455,FN,,TTTTTTC,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +629,chr22,48794122,FN,,A,,AGTGTGCGCGT,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +630,chr22,48794217,FN,,G,,GCA,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +631,chr22,48805390,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +632,chr22,48813481,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +633,chr22,48818008,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +634,chr22,48819664,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +635,chr22,48827223,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +636,chr22,48881873,FN,,ACACACAC,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +637,chr22,48942476,FN,,G,,GCGCACTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +638,chr22,48948996,FN,,TACTCG,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +639,chr22,48956381,FN,,TCATACACACACATCACACA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +640,chr22,48956699,FN,,TAC,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +641,chr22,48956725,FN,,CAT,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +642,chr22,48990321,FN,,TA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +643,chr22,48990324,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +644,chr22,48999717,FN,,GTGTGTGTA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +645,chr22,49083037,FN,,TGCAGTG,,T,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +646,chr22,49408253,FN,,G,,GAGAGAGACAC,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +647,chr22,49428652,FN,,C,,CTTTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +648,chr22,49429866,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +649,chr22,49445465,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +650,chr22,49675377,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +651,chr22,49720929,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +652,chr22,49870943,FN,,AT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +653,chr22,49875418,FN,,C,,CTT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +654,chr22,49875944,FN,,C,,CT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +655,chr22,49878301,FN,,C,,CAAA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +656,chr22,50053221,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +657,chr22,50057153,FN,,G,,GGTCAGGTCTGGGGATGGGA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +658,chr22,50057320,FN,,TGTCAGGTCTGGGTTGTGA,,T,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +659,chr22,50090676,FN,,T,,TTG,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +660,chr22,50235941,FN,,G,,GA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +661,chr22,50385507,FN,,GT,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +662,chr22,50449172,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +663,chr22,50461326,FN,,AG,,A,,,,,1.00000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +664,chr22,50501648,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +665,chr22,50547999,FN,,GCCCCAACCCCAGCCGCATCCCCTGCCCCAGCCCCCACCTCAGCCCCAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +666,chr22,50615576,FN,,GAA,,G,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +667,chr22,50616529,FN,,C,,CA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +668,chr22,50620504,FN,,CA,,C,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +669,chr22,50669906,FN,,T,,TA,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +670,chr22,50757796,FN,,ATTAT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +671,chr22,50758085,FN,,A,,AT,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +672,chr22,50762743,FN,,ATT,,A,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +673,chr22,50791171,FN,,T,,TCTC,,,,,0.50000000,,,,,,,,,,,,,,,,,0.00000000,,,,,,,,,, +0,chr22,10761246,UNK,A,,AAAAAAAC,,-1.00000000,,,,,,,1.00000000,5.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,8.27000000,40.00000000,,0.00000000,AAAAAAC,7.00000000,,ref->het,0.11764706,0.00000000,86.00000000,3.80530973,10.55000000 +1,chr22,10761945,UNK,GC,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.97000000,44.00000000,,1.00000000,C,1.00000000,,ref->het,0.21238938,0.00000000,145.00000000,6.41592920,2.98000000 +2,chr22,10762358,UNK,A,,AAAT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.12000000,33.00000000,,1.00000000,AAT,3.00000000,,ref->het,0.35937500,0.00000000,84.00000000,3.71681416,15.28000000 +3,chr22,10960523,UNK,TAAA,,T,,-1.00000000,,,,,,,3.00000000,8.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,55.00000000,2.43362832,0.45000000,47.00000000,,6.00000000,A,1.00000000,,ref->het,0.13008130,0.00000000,130.00000000,5.75221239,2.02000000 +4,chr22,10966210,UNK,TA,,T,,-1.00000000,,,,,,,8.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.46000000,37.00000000,,9.00000000,A,1.00000000,,ref->het,0.07586207,0.00000000,162.00000000,7.16814159,0.22000000 +5,chr22,11220228,UNK,TTTGA,,T,,-1.00000000,,,,,,,1.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.22000000,38.00000000,,2.00000000,TTGA,4.00000000,,ref->het,0.15873016,0.00000000,66.00000000,2.92035398,2.08000000 +6,chr22,11313562,UNK,TTCTTTAAGCAG,,T,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.63000000,51.00000000,,1.00000000,TCTTTAAGCAG,11.00000000,,ref->het,0.16216216,0.00000000,115.00000000,5.08849558,0.73000000 +7,chr22,11343824,UNK,TAA,,T,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,1.60000000,39.00000000,,3.00000000,A,1.00000000,,ref->het,0.12000000,0.00000000,132.00000000,5.84070796,1.68000000 +8,chr22,11346186,UNK,C,,CT,,-1.00000000,,,,,,,8.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,67.00000000,2.96460177,0.12000000,48.00000000,,7.00000000,T,1.00000000,,ref->het,0.14516129,0.00000000,144.00000000,6.37168142,1.68000000 +9,chr22,11355480,UNK,CTT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,0.98000000,38.00000000,,2.00000000,T,1.00000000,,ref->het,0.07971014,0.00000000,150.00000000,6.63716814,3.30000000 +10,chr22,11549273,UNK,TAA,,T,,-1.00000000,,,,,,,10.00000000,14.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,2.10000000,33.00000000,,12.00000000,A,1.00000000,,ref->het,0.10218978,0.00000000,167.00000000,7.38938053,7.92000000 +11,chr22,11578509,UNK,GC,,G,,-1.00000000,,,,,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,54.00000000,2.38938053,1.24000000,44.00000000,,4.00000000,C,1.00000000,,ref->het,0.11111111,0.00000000,155.00000000,6.85840708,4.82000000 +12,chr22,11591477,UNK,C,,CT,,-1.00000000,,,,,,,11.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,61.00000000,2.69911504,0.31000000,34.00000000,,10.00000000,T,1.00000000,,ref->het,0.11678832,0.00000000,154.00000000,6.81415929,2.21000000 +13,chr22,11595551,UNK,TA,,T,,-1.00000000,,,,,,,6.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,64.00000000,2.83185841,3.62000000,48.00000000,,7.00000000,A,1.00000000,,ref->het,0.10294118,0.00000000,152.00000000,6.72566372,5.60000000 +14,chr22,11597093,UNK,G,,GT,,-1.00000000,,,,,,,13.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,0.63000000,45.00000000,,12.00000000,T,1.00000000,,ref->het,0.21212121,0.00000000,113.00000000,5.00000000,6.53000000 +15,chr22,11598363,UNK,CTCCG,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,1.26000000,42.00000000,,1.00000000,TCCG,4.00000000,,ref->het,0.14035088,0.00000000,127.00000000,5.61946903,5.21000000 +16,chr22,11613917,UNK,CTTTCTTCTTTCTTTCT,,C,,-1.00000000,,,,,,,0.00000000,7.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,49.00000000,2.16814159,0.39000000,42.00000000,,1.00000000,TTTCTTCTTTCTTTCT,16.00000000,,ref->het,0.11278195,0.00000000,150.00000000,6.63716814,4.12000000 +17,chr22,11946548,UNK,A,,AC,,-1.00000000,,,,,,,2.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,14.00000000,0.61946903,0.79000000,30.00000000,,1.00000000,C,1.00000000,,ref->het,0.11428571,0.00000000,39.00000000,1.72566372,2.95000000 +18,chr22,11954058,UNK,GTT,,G,,-1.00000000,,,,,,,1.00000000,9.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.00000000,32.00000000,,3.00000000,T,1.00000000,,ref->het,0.17500000,0.00000000,45.00000000,1.99115044,2.23000000 +19,chr22,12037767,UNK,CT,,C,,-1.00000000,,,,,,,6.00000000,11.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.30000000,35.00000000,,7.00000000,T,1.00000000,,ref->het,0.04494382,0.00000000,99.00000000,4.38053097,0.66000000 +20,chr22,12201372,UNK,T,,TG,,-1.00000000,,,,,,,7.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,34.00000000,,6.00000000,G,1.00000000,,ref->het,0.06741573,0.00000000,96.00000000,4.24778761,0.49000000 +21,chr22,12205798,UNK,T,,TC,,-1.00000000,,,,,,,3.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,57.00000000,2.52212389,0.35000000,48.00000000,,2.00000000,C,1.00000000,,ref->het,0.05970149,0.00000000,162.00000000,7.16814159,1.27000000 +22,chr22,12299238,UNK,TAAA,,T,,-1.00000000,,,,,,,4.00000000,11.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.14000000,33.00000000,,7.00000000,A,1.00000000,,ref->het,0.15151515,0.00000000,71.00000000,3.14159292,0.72000000 +23,chr22,12354919,UNK,C,,CA,,-1.00000000,,,,,,,6.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.26000000,37.00000000,,5.00000000,A,1.00000000,,ref->het,0.04901961,0.00000000,115.00000000,5.08849558,0.48000000 +24,chr22,15599182,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.37000000,44.00000000,,0.00000000,G,1.00000000,,ref->het,0.16176471,0.00000000,72.00000000,3.18584071,6.66000000 +25,chr22,15646529,UNK,GA,,G,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.01000000,37.00000000,,4.00000000,A,1.00000000,,ref->het,0.09900990,0.00000000,111.00000000,4.91150442,1.42000000 +26,chr22,15669811,UNK,G,,GA,,-1.00000000,,,,,,,8.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.00000000,30.00000000,,7.00000000,A,1.00000000,,ref->het,0.08108108,0.00000000,86.00000000,3.80530973,0.26000000 +27,chr22,15703813,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.00000000,37.00000000,,3.00000000,T,1.00000000,,ref->het,0.12280702,0.00000000,58.00000000,2.56637168,0.32000000 +28,chr22,15711039,UNK,G,,GTC,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,47.00000000,2.07964602,0.52000000,51.00000000,,1.00000000,TC,2.00000000,,ref->het,0.16666667,0.00000000,115.00000000,5.08849558,1.25000000 +29,chr22,15745862,UNK,T,,TC,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,2.14000000,36.00000000,,1.00000000,C,1.00000000,,ref->het,0.06578947,0.00000000,65.00000000,2.87610619,6.37000000 +30,chr22,15747404,UNK,T,,TG,,-1.00000000,,,,,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.85000000,36.00000000,,5.00000000,G,1.00000000,,ref->het,0.07042254,0.00000000,77.00000000,3.40707965,0.00000000 +31,chr22,15764513,UNK,T,,TC,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,52.00000000,2.30088496,0.20000000,46.00000000,,3.00000000,C,1.00000000,,ref->het,0.04575163,0.00000000,166.00000000,7.34513274,1.06000000 +32,chr22,15791929,UNK,CATCTT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,0.21000000,35.00000000,,1.00000000,ATCTT,5.00000000,,ref->het,0.03030303,0.00000000,137.00000000,6.06194690,0.02000000 +33,chr22,15829424,UNK,TG,,T,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.31000000,35.00000000,,3.00000000,G,1.00000000,,ref->het,0.05042017,0.00000000,129.00000000,5.70796460,0.91000000 +34,chr22,15878059,UNK,T,,TA,,-1.00000000,,,,,,,8.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,0.39000000,36.00000000,,7.00000000,A,1.00000000,,ref->het,0.05376344,0.00000000,99.00000000,4.38053097,0.40000000 +35,chr22,15879940,UNK,C,,CAGAAA,,-1.00000000,,,,,,,2.00000000,5.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,46.00000000,,1.00000000,AGAAA,5.00000000,,ref->het,0.18181818,0.00000000,75.00000000,3.31858407,2.14000000 +36,chr22,16128570,UNK,A,,ATTTT,,-1.00000000,,,,,,,16.00000000,13.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,35.00000000,,12.00000000,T,1.00000000,,ref->het,0.33333333,0.00000000,46.00000000,2.03539823,1.64000000 +37,chr22,16138214,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,24.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,5.25000000,43.00000000,,0.00000000,C,1.00000000,,ref->het,0.18750000,0.00000000,60.00000000,2.65486726,9.20000000 +38,chr22,16140949,UNK,T,,TGG,,-1.00000000,,,,,,,5.00000000,8.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.18000000,52.00000000,,3.00000000,G,1.00000000,,ref->het,0.21153846,0.00000000,69.00000000,3.05309735,12.22000000 +39,chr22,16145719,UNK,CAA,,C,,-1.00000000,,,,,,,17.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.93000000,37.00000000,,19.00000000,A,1.00000000,,ref->het,0.30952381,0.00000000,60.00000000,2.65486726,10.29000000 +40,chr22,16157865,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.48000000,51.00000000,,3.00000000,T,1.00000000,,ref->het,0.42857143,0.00000000,61.00000000,2.69911504,2.87000000 +41,chr22,16234075,UNK,GCTCTGGAATCCTTTGTTATGGACAAGCCTTCACAAGCTCATAGCAGTT,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,48.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.18000000,65.00000000,,1.00000000,CTCTGGAATCCTTTGTTATGGACAAGCCTTCACAAGCTCATAGCAGTT,48.00000000,,ref->het,0.30000000,0.00000000,58.00000000,2.56637168,3.11000000 +42,chr22,16256159,UNK,C,,CT,,-1.00000000,,,,,,,6.00000000,8.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.01000000,33.00000000,,5.00000000,T,1.00000000,,ref->het,0.08510638,0.00000000,49.00000000,2.16814159,0.00000000 +43,chr22,16257585,UNK,T,,TA,,-1.00000000,,,,,,,1.00000000,6.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,45.00000000,,0.00000000,A,1.00000000,,ref->het,0.21875000,0.00000000,36.00000000,1.59292035,0.00000000 +44,chr22,16261495,UNK,GATTCCATTTGATTCCATTCA,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.90000000,45.00000000,,1.00000000,ATTCCATTTGATTCCATTCA,20.00000000,,ref->het,0.27397260,0.00000000,69.00000000,3.05309735,6.13000000 +45,chr22,16349867,UNK,AGAATGGAATG,,A,,-1.00000000,,,,,,,3.00000000,3.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.65000000,33.00000000,,5.00000000,GAATG,5.00000000,,ref->het,0.31818182,0.00000000,23.00000000,1.01769912,2.61000000 +46,chr22,16392989,UNK,A,,AT,,-1.00000000,,,,,,,18.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.81000000,40.00000000,,17.00000000,T,1.00000000,,ref->het,0.37209302,0.00000000,64.00000000,2.83185841,3.10000000 +47,chr22,16394812,UNK,G,,GA,,-1.00000000,,,,,,,16.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.83000000,42.00000000,,15.00000000,A,1.00000000,,ref->het,0.46296296,0.00000000,72.00000000,3.18584071,6.57000000 +48,chr22,16583763,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.60000000,36.00000000,,0.00000000,G,1.00000000,,ref->het,0.24390244,0.00000000,55.00000000,2.43362832,8.79000000 +49,chr22,16806260,UNK,C,,CAAAAAAAA,,-1.00000000,,,,,,,19.00000000,17.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.51000000,51.00000000,,11.00000000,A,1.00000000,,ref->het,0.46808511,0.00000000,59.00000000,2.61061947,2.84000000 +50,chr22,16897512,UNK,CATAT,,C,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.08000000,48.00000000,,2.00000000,AT,2.00000000,,ref->het,0.43333333,0.00000000,64.00000000,2.83185841,0.45000000 +51,chr22,16935554,UNK,A,,ATG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.83000000,42.00000000,,0.00000000,TG,2.00000000,,ref->het,0.15942029,0.00000000,72.00000000,3.18584071,7.62000000 +52,chr22,16959230,UNK,AAAAAAAAAT,,A,,-1.00000000,,,,,,,0.00000000,28.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.61000000,50.00000000,,1.00000000,AAAAAAAAT,9.00000000,,ref->het,0.44000000,0.00000000,66.00000000,2.92035398,12.02000000 +53,chr22,17219657,UNK,TG,,T,,-1.00000000,,,,,,,3.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,5.05000000,41.00000000,,4.00000000,G,1.00000000,,ref->het,0.20512821,0.00000000,75.00000000,3.31858407,15.82000000 +54,chr22,17248069,UNK,CGGATTCCAGGCTTCCTTGTGATTGGATAGCTCACTCTGT,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.17000000,40.00000000,,1.00000000,GGATTCCAGGCTTCCTTGTGATTGGATAGCTCACTCTGT,39.00000000,,ref->het,0.14117647,0.00000000,81.00000000,3.58407080,1.22000000 +55,chr22,17250522,UNK,G,,GATAAAATAAAATAAAAT,,-1.00000000,,,,,,,3.00000000,5.00000000,1.00000000,17.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,1.70000000,54.00000000,,2.00000000,ATAAAATAAAATAAAAT,17.00000000,,ref->het,0.27692308,0.00000000,96.00000000,4.24778761,8.69000000 +56,chr22,17324725,UNK,T,,TTTTC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.20000000,57.00000000,,0.00000000,TTTC,4.00000000,,ref->het,0.26027397,0.00000000,81.00000000,3.58407080,5.15000000 +57,chr22,17401828,UNK,A,,AC,,-1.00000000,,,,,,,10.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.79000000,31.00000000,,9.00000000,C,1.00000000,,ref->het,0.38235294,0.00000000,70.00000000,3.09734513,11.83000000 +58,chr22,17435684,UNK,TA,,T,,-1.00000000,,,,,,,25.00000000,27.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.63000000,30.00000000,,26.00000000,A,1.00000000,,ref->het,0.23913043,0.00000000,82.00000000,3.62831858,12.58000000 +59,chr22,17519288,UNK,TTG,,T,,-1.00000000,,,,,,,1.00000000,18.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.54000000,44.00000000,,2.00000000,TG,2.00000000,,ref->het,0.17948718,0.00000000,90.00000000,3.98230088,9.84000000 +60,chr22,17646716,UNK,C,,CTTT,,-1.00000000,,,,,,,24.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.98000000,37.00000000,,21.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,12.09000000 +61,chr22,17659783,UNK,ACAG,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.00000000,40.00000000,,1.00000000,CAG,3.00000000,,ref->het,0.39344262,0.00000000,64.00000000,2.83185841,0.83000000 +62,chr22,17670373,UNK,C,,CT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.25000000,35.00000000,,18.00000000,T,1.00000000,,ref->het,0.25531915,0.00000000,73.00000000,3.23008850,8.79000000 +63,chr22,17759241,UNK,C,,CAAAACAAAAAAAA,,-1.00000000,,,,,,,2.00000000,17.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.48000000,50.00000000,,1.00000000,AAAACAAAAAAAA,13.00000000,,ref->het,0.46296296,0.00000000,78.00000000,3.45132743,9.50000000 +64,chr22,17866608,UNK,C,,CAGAATAGAATAGAATAGAAT,,-1.00000000,,,,,,,4.00000000,3.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.61000000,41.00000000,,0.00000000,AGAAT,5.00000000,,ref->het,0.13888889,0.00000000,83.00000000,3.67256637,1.80000000 +65,chr22,17875682,UNK,T,,TAAA,,-1.00000000,,,,,,,24.00000000,21.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.83000000,34.00000000,,21.00000000,A,1.00000000,,ref->het,0.19642857,0.00000000,88.00000000,3.89380531,9.68000000 +66,chr22,18854959,UNK,TG,,T,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.19000000,30.00000000,,4.00000000,G,1.00000000,,ref->het,0.10000000,0.00000000,36.00000000,1.59292035,2.79000000 +67,chr22,18871896,UNK,TACA,,T,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,0.35000000,32.00000000,,1.00000000,ACA,3.00000000,,ref->het,0.21212121,0.00000000,39.00000000,1.72566372,0.00000000 +68,chr22,19020837,UNK,TTTTTTTTTTTTTGAGAAAGC,,T,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,4.99000000,44.00000000,,1.00000000,TTTTTTTTTTTTGAGAAAGC,20.00000000,,ref->het,0.35000000,0.00000000,77.00000000,3.40707965,10.22000000 +69,chr22,19022348,UNK,TC,,T,,-1.00000000,,,,,,,0.00000000,14.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.88000000,30.00000000,,1.00000000,C,1.00000000,,ref->het,0.35714286,0.00000000,51.00000000,2.25663717,10.75000000 +70,chr22,19062779,UNK,A,,ACT,,-1.00000000,,,,,,,15.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.50000000,46.00000000,,14.00000000,CT,2.00000000,,ref->het,0.23913043,0.00000000,76.00000000,3.36283186,9.53000000 +71,chr22,19082054,UNK,GGTT,,G,,-1.00000000,,,,,,,0.00000000,21.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.96000000,69.00000000,,1.00000000,GTT,3.00000000,,ref->het,0.34848485,0.00000000,77.00000000,3.40707965,5.14000000 +72,chr22,19083672,UNK,TCCCCTCTCCCTCTCCCTCTCC,,T,,-1.00000000,,,,,,,0.00000000,11.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,6.62000000,45.00000000,,1.00000000,CCCCTCTCCCTCTCCCTCTCC,21.00000000,,ref->het,0.22727273,0.00000000,73.00000000,3.23008850,15.64000000 +73,chr22,19104383,UNK,AGG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.63000000,77.00000000,,2.00000000,G,1.00000000,,ref->het,0.44047619,0.00000000,91.00000000,4.02654867,16.52000000 +74,chr22,19114151,UNK,G,,GA,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,42.00000000,1.85840708,3.90000000,61.00000000,,0.00000000,A,1.00000000,,ref->het,0.19101124,0.00000000,109.00000000,4.82300885,11.27000000 +75,chr22,19123906,UNK,AAAAAAAAGG,,A,,-1.00000000,,,,,,,0.00000000,20.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,8.44000000,42.00000000,,1.00000000,AAAAAAAGG,9.00000000,,ref->het,0.17307692,0.00000000,68.00000000,3.00884956,15.83000000 +76,chr22,19161093,UNK,C,,CATAT,,-1.00000000,,,,,,,5.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.28000000,41.00000000,,3.00000000,AT,2.00000000,,ref->het,0.29687500,0.00000000,79.00000000,3.49557522,5.71000000 +77,chr22,20074499,UNK,C,,CA,,-1.00000000,,,,,,,20.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,6.85000000,35.00000000,,19.00000000,A,1.00000000,,ref->het,0.26829268,0.00000000,62.00000000,2.74336283,14.99000000 +78,chr22,20201396,UNK,CCCTTCCTTCCTT,,C,,-1.00000000,,,,,,,7.00000000,3.00000000,2.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,4.40000000,37.00000000,,10.00000000,CCTT,4.00000000,,ref->het,0.15094340,0.00000000,79.00000000,3.49557522,8.11000000 +79,chr22,20293497,UNK,TA,,T,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.96000000,31.00000000,,21.00000000,A,1.00000000,,ref->het,0.20338983,0.00000000,87.00000000,3.84955752,9.87000000 +80,chr22,20337802,UNK,T,,TTA,,-1.00000000,,,,,,,6.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.00000000,31.00000000,,5.00000000,TA,2.00000000,,ref->het,0.14516129,0.00000000,62.00000000,2.74336283,1.96000000 +81,chr22,20916635,UNK,A,,AAAAGAAAGAAAGAAAG,,-1.00000000,,,,,,,16.00000000,10.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.20000000,34.00000000,,12.00000000,AAAG,4.00000000,,ref->het,0.15517241,0.00000000,72.00000000,3.18584071,4.39000000 +82,chr22,21077617,UNK,ATC,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,4.13000000,35.00000000,,1.00000000,TC,2.00000000,,ref->het,0.18867925,0.00000000,73.00000000,3.23008850,14.84000000 +83,chr22,21081189,UNK,T,,TACACACACACACACACACAC,,-1.00000000,,,,,,,28.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,1.87000000,54.00000000,,18.00000000,AC,2.00000000,,ref->het,0.31372549,0.00000000,77.00000000,3.40707965,3.69000000 +84,chr22,21085828,UNK,C,,CGCCTGTAATCCCAACATATATATGTATATATTGTTGTGGCTCAT,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,44.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,57.00000000,,0.00000000,GCCTGTAATCCCAACATATATATGTATATATTGTTGTGGCTCAT,44.00000000,,ref->het,0.38983051,0.00000000,82.00000000,3.62831858,1.12000000 +85,chr22,21328187,UNK,TAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,12.00000000,0.53097345,0.00000000,30.00000000,,1.00000000,AC,2.00000000,,ref->het,0.23076923,0.00000000,40.00000000,1.76991150,1.44000000 +86,chr22,21983400,UNK,A,,AT,,-1.00000000,,,,,,,2.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.33000000,41.00000000,,1.00000000,T,1.00000000,,ref->het,0.13846154,0.00000000,80.00000000,3.53982301,12.23000000 +87,chr22,22075639,UNK,AT,,A,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.00000000,52.00000000,,2.00000000,T,1.00000000,,ref->het,0.20895522,0.00000000,74.00000000,3.27433628,0.26000000 +88,chr22,22140929,UNK,T,,TAGTTAATTTTA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.00000000,38.00000000,,1.00000000,AGTTAATTTTA,11.00000000,,ref->het,0.07792208,0.00000000,84.00000000,3.71681416,0.90000000 +89,chr22,22142743,UNK,TA,,T,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.06000000,38.00000000,,2.00000000,A,1.00000000,,ref->het,0.10465116,0.00000000,91.00000000,4.02654867,1.29000000 +90,chr22,22154964,UNK,A,,AG,,-1.00000000,,,,,,,3.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.52000000,37.00000000,,2.00000000,G,1.00000000,,ref->het,0.09677419,0.00000000,67.00000000,2.96460177,0.42000000 +91,chr22,22157601,UNK,CA,,C,,-1.00000000,,,,,,,1.00000000,5.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,32.00000000,,2.00000000,A,1.00000000,,ref->het,0.12698413,0.00000000,71.00000000,3.14159292,0.40000000 +92,chr22,22166737,UNK,TCAA,,T,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.50000000,59.00000000,,2.00000000,CAA,3.00000000,,ref->het,0.31746032,0.00000000,68.00000000,3.00884956,2.20000000 +93,chr22,22365262,UNK,G,,GAAGAAAGAAAGA,,-1.00000000,,,,,,,17.00000000,5.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.03225806,0.00000000,30.00000000,1.32743363,3.05000000,39.00000000,,14.00000000,AAGA,4.00000000,,ref->het,0.36538462,0.00000000,57.00000000,2.52212389,8.33000000 +94,chr22,22513483,UNK,TC,,T,,-1.00000000,,,,,,,5.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.98000000,35.00000000,,6.00000000,C,1.00000000,,ref->het,0.07936508,0.00000000,69.00000000,3.05309735,1.87000000 +95,chr22,22554099,UNK,CA,,C,,-1.00000000,,,,,,,5.00000000,7.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,1.00000000,38.00000000,,6.00000000,A,1.00000000,,ref->het,0.07843137,0.00000000,54.00000000,2.38938053,1.00000000 +96,chr22,22557242,UNK,C,,CA,,-1.00000000,,,,,,,2.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.54000000,42.00000000,,1.00000000,A,1.00000000,,ref->het,0.18032787,0.00000000,66.00000000,2.92035398,1.44000000 +97,chr22,22563343,UNK,T,,TA,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.28000000,38.00000000,,1.00000000,A,1.00000000,,ref->het,0.06250000,0.00000000,71.00000000,3.14159292,1.20000000 +98,chr22,22567243,UNK,A,,AGGGG,,-1.00000000,,,,,,,7.00000000,3.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,0.07000000,42.00000000,,3.00000000,G,1.00000000,,ref->het,0.09589041,0.00000000,80.00000000,3.53982301,1.68000000 +99,chr22,22584887,UNK,CTTTTCCTTTCCTT,,C,,-1.00000000,,,,,,,1.00000000,8.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.32000000,31.00000000,,2.00000000,TTTTCCTTTCCTT,13.00000000,,ref->het,0.10769231,0.00000000,66.00000000,2.92035398,1.84000000 +100,chr22,22587548,UNK,TAA,,T,,-1.00000000,,,,,,,10.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.62000000,50.00000000,,12.00000000,A,1.00000000,,ref->het,0.36000000,0.00000000,81.00000000,3.58407080,4.55000000 +101,chr22,22596503,UNK,CA,,C,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.77000000,37.00000000,,21.00000000,A,1.00000000,,ref->het,0.28205128,0.00000000,68.00000000,3.00884956,10.63000000 +102,chr22,22597272,UNK,A,,AT,,-1.00000000,,,,,,,12.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.54000000,49.00000000,,11.00000000,T,1.00000000,,ref->het,0.36206897,0.00000000,79.00000000,3.49557522,3.24000000 +103,chr22,22605551,UNK,GAAAAAAGATTAGCTGCAAA,,G,,-1.00000000,,,,,,,1.00000000,10.00000000,2.00000000,19.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.03000000,55.00000000,,2.00000000,AAAAAAGATTAGCTGCAAA,19.00000000,,ref->het,0.32307692,0.00000000,82.00000000,3.62831858,1.13000000 +104,chr22,22606866,UNK,C,,CTTT,,-1.00000000,,,,,,,25.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.28000000,30.00000000,,22.00000000,T,1.00000000,,ref->het,0.19444444,0.00000000,69.00000000,3.05309735,9.89000000 +105,chr22,22607988,UNK,AT,,A,,-1.00000000,,,,,,,11.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.50000000,34.00000000,,12.00000000,T,1.00000000,,ref->het,0.34782609,0.00000000,78.00000000,3.45132743,1.08000000 +106,chr22,22625266,UNK,A,,ATT,,-1.00000000,,,,,,,10.00000000,8.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.48000000,60.00000000,,8.00000000,T,1.00000000,,ref->het,0.39062500,0.00000000,69.00000000,3.05309735,2.84000000 +107,chr22,22627125,UNK,CAAA,,C,,-1.00000000,,,,,,,16.00000000,19.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.91000000,46.00000000,,19.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,64.00000000,2.83185841,7.52000000 +108,chr22,22628371,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,4.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.01000000,38.00000000,,0.00000000,G,1.00000000,,ref->het,0.28260870,0.00000000,52.00000000,2.30088496,2.10000000 +109,chr22,22649667,UNK,GT,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,45.00000000,,1.00000000,T,1.00000000,,ref->het,0.31250000,0.00000000,37.00000000,1.63716814,0.34000000 +110,chr22,22654512,UNK,C,,CT,,-1.00000000,,,,,,,16.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.75000000,36.00000000,,15.00000000,T,1.00000000,,ref->het,0.36000000,0.00000000,68.00000000,3.00884956,7.54000000 +111,chr22,22799534,UNK,G,,GC,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.59000000,35.00000000,,1.00000000,C,1.00000000,,ref->het,0.18181818,0.00000000,35.00000000,1.54867257,0.49000000 +112,chr22,22827769,UNK,TA,,T,,-1.00000000,,,,,,,3.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.03000000,30.00000000,,4.00000000,A,1.00000000,,ref->het,0.10000000,0.00000000,45.00000000,1.99115044,2.61000000 +113,chr22,23307858,UNK,AGG,,A,,-1.00000000,,,,,,,4.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.00000000,36.00000000,,6.00000000,G,1.00000000,,ref->het,0.16363636,0.00000000,59.00000000,2.61061947,0.87000000 +114,chr22,23316087,UNK,T,,TTTC,,-1.00000000,,,,,,,2.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.64000000,45.00000000,,1.00000000,TTC,3.00000000,,ref->het,0.15662651,0.00000000,84.00000000,3.71681416,0.79000000 +115,chr22,23331669,UNK,A,,ATT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.46000000,43.00000000,,0.00000000,T,1.00000000,,ref->het,0.18918919,0.00000000,41.00000000,1.81415929,0.45000000 +116,chr22,23339841,UNK,C,,CAT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,46.00000000,2.03539823,1.85000000,100.00000000,,0.00000000,AT,2.00000000,,ref->het,0.41176471,0.00000000,70.00000000,3.09734513,1.83000000 +117,chr22,23341772,UNK,CTTTTTTT,,C,,-1.00000000,,,,,,,15.00000000,23.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,4.12000000,47.00000000,,22.00000000,T,1.00000000,,ref->het,0.39655172,0.00000000,83.00000000,3.67256637,12.00000000 +118,chr22,23509286,UNK,A,,AAAAAAT,,-1.00000000,,,,,,,1.00000000,15.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.29000000,30.00000000,,0.00000000,AAAAAT,6.00000000,,ref->het,0.18421053,0.00000000,52.00000000,2.30088496,10.91000000 +119,chr22,23600612,UNK,T,,TC,,-1.00000000,,,,,,,5.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.96000000,37.00000000,,4.00000000,C,1.00000000,,ref->het,0.07352941,0.00000000,73.00000000,3.23008850,11.29000000 +120,chr22,23683618,UNK,AC,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.02000000,44.00000000,,1.00000000,C,1.00000000,,ref->het,0.28125000,0.00000000,69.00000000,3.05309735,0.95000000 +121,chr22,23890836,UNK,G,,GAC,,-1.00000000,,,,,,,12.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.80000000,46.00000000,,11.00000000,AC,2.00000000,,ref->het,0.19444444,0.00000000,96.00000000,4.24778761,2.85000000 +122,chr22,24090517,UNK,AT,,A,,-1.00000000,,,,,,,20.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,45.00000000,1.99115044,5.63000000,32.00000000,,21.00000000,T,1.00000000,,ref->het,0.15000000,0.00000000,90.00000000,3.98230088,10.79000000 +123,chr22,24757615,UNK,T,,TACACACAC,,-1.00000000,,,,,,,15.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.78000000,36.00000000,,11.00000000,AC,2.00000000,,ref->het,0.15789474,0.00000000,78.00000000,3.45132743,4.83000000 +124,chr22,24814269,UNK,AAAAAC,,A,,-1.00000000,,,,,,,4.00000000,11.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.28000000,51.00000000,,5.00000000,AAAAC,5.00000000,,ref->het,0.23376623,0.00000000,92.00000000,4.07079646,2.34000000 +125,chr22,24822088,UNK,C,,CTT,,-1.00000000,,,,,,,22.00000000,21.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.70000000,33.00000000,,20.00000000,T,1.00000000,,ref->het,0.61538462,0.00000000,87.00000000,3.84955752,13.60000000 +126,chr22,24858654,UNK,A,,AAAAAAAG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,5.20000000,34.00000000,,0.00000000,AAAAAAG,7.00000000,,ref->het,0.13725490,0.00000000,64.00000000,2.83185841,8.32000000 +127,chr22,24929895,UNK,CA,,C,,-1.00000000,,,,,,,18.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.82000000,36.00000000,,19.00000000,A,1.00000000,,ref->het,0.41176471,0.00000000,62.00000000,2.74336283,14.91000000 +128,chr22,24930393,UNK,C,,CAAAA,,-1.00000000,,,,,,,23.00000000,21.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.53000000,39.00000000,,19.00000000,A,1.00000000,,ref->het,0.24561404,0.00000000,79.00000000,3.49557522,10.31000000 +129,chr22,24940712,UNK,C,,CCTTCTTT,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,2.16000000,38.00000000,,0.00000000,CTTCTTT,7.00000000,,ref->het,0.20454545,0.00000000,56.00000000,2.47787611,10.38000000 +130,chr22,24947323,UNK,TTTTTGTA,,T,,-1.00000000,,,,,,,0.00000000,24.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.56000000,35.00000000,,1.00000000,TTTTGTA,7.00000000,,ref->het,0.16666667,0.00000000,66.00000000,2.92035398,7.49000000 +131,chr22,24973394,UNK,T,,TTG,,-1.00000000,,,,,,,1.00000000,27.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,4.98000000,35.00000000,,0.00000000,TG,2.00000000,,ref->het,0.43750000,0.00000000,76.00000000,3.36283186,16.74000000 +132,chr22,25001249,UNK,GTGTA,,G,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.22000000,51.00000000,,1.00000000,TGTA,4.00000000,,ref->het,0.28378378,0.00000000,74.00000000,3.27433628,0.83000000 +133,chr22,25004117,UNK,AT,,A,,-1.00000000,,,,,,,15.00000000,16.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.18000000,34.00000000,,16.00000000,T,1.00000000,,ref->het,0.21153846,0.00000000,67.00000000,2.96460177,1.40000000 +134,chr22,25303831,UNK,G,,GTTTT,,-1.00000000,,,,,,,15.00000000,12.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.68000000,65.00000000,,11.00000000,T,1.00000000,,ref->het,0.42372881,0.00000000,71.00000000,3.14159292,3.33000000 +135,chr22,25322739,UNK,C,,CA,,-1.00000000,,,,,,,14.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,1.13000000,40.00000000,,13.00000000,A,1.00000000,,ref->het,0.26229508,0.00000000,77.00000000,3.40707965,7.40000000 +136,chr22,25338661,UNK,A,,AT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,3.19000000,50.00000000,,18.00000000,T,1.00000000,,ref->het,0.41071429,0.00000000,84.00000000,3.71681416,11.79000000 +137,chr22,25371750,UNK,G,,GT,,-1.00000000,,,,,,,24.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,5.22000000,32.00000000,,23.00000000,T,1.00000000,,ref->het,0.26666667,0.00000000,84.00000000,3.71681416,9.58000000 +138,chr22,25377057,UNK,GT,,G,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.31000000,30.00000000,,22.00000000,T,1.00000000,,ref->het,0.35294118,0.00000000,81.00000000,3.58407080,5.87000000 +139,chr22,25404898,UNK,C,,CCAAGTCCCAACTTGGTGCCCGGCCCGGGCCA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,31.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.26000000,40.00000000,,1.00000000,CAAGTCCCAACTTGGTGCCCGGCCCGGGCCA,31.00000000,,ref->het,0.17391304,0.00000000,65.00000000,2.87610619,3.46000000 +140,chr22,25423436,UNK,CTT,,C,,-1.00000000,,,,,,,18.00000000,24.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,6.45000000,30.00000000,,20.00000000,T,1.00000000,,ref->het,0.24000000,0.00000000,86.00000000,3.80530973,11.32000000 +141,chr22,25438890,UNK,C,,CAAAAA,,-1.00000000,,,,,,,21.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.64000000,37.00000000,,16.00000000,A,1.00000000,,ref->het,0.25581395,0.00000000,63.00000000,2.78761062,9.76000000 +142,chr22,25505375,UNK,A,,ATT,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.29000000,32.00000000,,18.00000000,T,1.00000000,,ref->het,0.22448980,0.00000000,79.00000000,3.49557522,4.88000000 +143,chr22,25531148,UNK,T,,TATTATTTATTTATTTA,,-1.00000000,,,,,,,1.00000000,11.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.06000000,54.00000000,,0.00000000,ATTATTTATTTATTTA,16.00000000,,ref->het,0.25316456,0.00000000,85.00000000,3.76106195,1.24000000 +144,chr22,25605962,UNK,CT,,C,,-1.00000000,,,,,,,3.00000000,6.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.00000000,31.00000000,,4.00000000,T,1.00000000,,ref->het,0.09210526,0.00000000,84.00000000,3.71681416,0.37000000 +145,chr22,25860302,UNK,AT,,A,,-1.00000000,,,,,,,7.00000000,9.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.01000000,54.00000000,,8.00000000,T,1.00000000,,ref->het,0.24675325,0.00000000,83.00000000,3.67256637,1.98000000 +146,chr22,26155968,UNK,AG,,A,,-1.00000000,,,,,,,9.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,3.89000000,37.00000000,,10.00000000,G,1.00000000,,ref->het,0.40625000,0.00000000,52.00000000,2.30088496,9.49000000 +147,chr22,26438550,UNK,TACAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.75000000,40.00000000,,2.00000000,AC,2.00000000,,ref->het,0.22448980,0.00000000,59.00000000,2.61061947,2.61000000 +148,chr22,26577649,UNK,ATT,,A,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,6.09000000,33.00000000,,23.00000000,T,1.00000000,,ref->het,0.35000000,0.00000000,63.00000000,2.78761062,9.86000000 +149,chr22,26644073,UNK,C,,CTTT,,-1.00000000,,,,,,,3.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,6.54000000,36.00000000,,0.00000000,T,1.00000000,,ref->het,0.09090909,0.00000000,67.00000000,2.96460177,13.59000000 +150,chr22,26673646,UNK,CTTTGAACTTGGCTAACACAGG,,C,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,21.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.00000000,41.00000000,,2.00000000,TTTGAACTTGGCTAACACAGG,21.00000000,,ref->het,0.18867925,0.00000000,59.00000000,2.61061947,1.15000000 +151,chr22,26691817,UNK,T,,TTTC,,-1.00000000,,,,,,,1.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.73000000,43.00000000,,0.00000000,TTC,3.00000000,,ref->het,0.19230769,0.00000000,70.00000000,3.09734513,10.37000000 +152,chr22,26852250,UNK,TCTCTCC,,T,,-1.00000000,,,,,,,0.00000000,7.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,5.31000000,49.00000000,,1.00000000,CTCTCC,6.00000000,,ref->het,0.27027027,0.00000000,86.00000000,3.80530973,9.88000000 +153,chr22,26860430,UNK,C,,CTCTGTAAAATGGACCAATCAGCAG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.74000000,41.00000000,,0.00000000,TCTGTAAAATGGACCAATCAGCAG,24.00000000,,ref->het,0.20547945,0.00000000,88.00000000,3.89380531,1.90000000 +154,chr22,26998124,UNK,CAAACAAACAAACAAACAAACAAACT,,C,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.00000000,42.00000000,,1.00000000,AAACAAACAAACAAACAAACAAACT,25.00000000,,ref->het,0.18181818,0.00000000,49.00000000,2.16814159,1.83000000 +155,chr22,27273910,UNK,T,,TC,,-1.00000000,,,,,,,7.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.96000000,32.00000000,,6.00000000,C,1.00000000,,ref->het,0.18421053,0.00000000,60.00000000,2.65486726,13.36000000 +156,chr22,27332561,UNK,A,,AAC,,-1.00000000,,,,,,,1.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.86000000,33.00000000,,0.00000000,AC,2.00000000,,ref->het,0.15384615,0.00000000,87.00000000,3.84955752,8.95000000 +157,chr22,27343659,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,1.46000000,56.00000000,,0.00000000,C,1.00000000,,ref->het,0.21348315,0.00000000,98.00000000,4.33628319,4.44000000 +158,chr22,27371867,UNK,T,,TGTGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.16000000,49.00000000,,0.00000000,GTGA,4.00000000,,ref->het,0.27777778,0.00000000,80.00000000,3.53982301,5.06000000 +159,chr22,27558090,UNK,T,,TTGTGTGTG,,-1.00000000,,,,,,,20.00000000,5.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,1.12000000,41.00000000,,16.00000000,TG,2.00000000,,ref->het,0.40425532,0.00000000,66.00000000,2.92035398,7.22000000 +160,chr22,27565483,UNK,A,,AATGGATGGATGGATGGATGG,,-1.00000000,,,,,,,10.00000000,2.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,5.64000000,39.00000000,,5.00000000,ATGG,4.00000000,,ref->het,0.30232558,0.00000000,77.00000000,3.40707965,14.85000000 +161,chr22,27568308,UNK,A,,AGAAGGAAGGAAGGAAG,,-1.00000000,,,,,,,15.00000000,3.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.71000000,50.00000000,,11.00000000,GAAG,4.00000000,,ref->het,0.31111111,0.00000000,68.00000000,3.00884956,2.85000000 +162,chr22,27573667,UNK,C,,CGGG,,-1.00000000,,,,,,,3.00000000,8.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.66000000,46.00000000,,0.00000000,G,1.00000000,,ref->het,0.19354839,0.00000000,74.00000000,3.27433628,5.44000000 +163,chr22,27721210,UNK,AC,,A,,-1.00000000,,,,,,,7.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,7.84000000,66.00000000,,8.00000000,C,1.00000000,,ref->het,0.41509434,0.00000000,70.00000000,3.09734513,14.64000000 +164,chr22,27728375,UNK,GAGAGAGAGAAAGAA,,G,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,5.47000000,48.00000000,,1.00000000,AGAGAGAGAAAGAA,14.00000000,,ref->het,0.20000000,0.00000000,75.00000000,3.31858407,18.12000000 +165,chr22,28536219,UNK,AAC,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,2.71000000,40.00000000,,1.00000000,AC,2.00000000,,ref->het,0.31372549,0.00000000,65.00000000,2.87610619,12.99000000 +166,chr22,28840860,UNK,C,,CT,,-1.00000000,,,,,,,22.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,3.77000000,33.00000000,,21.00000000,T,1.00000000,,ref->het,0.28000000,0.00000000,82.00000000,3.62831858,12.85000000 +167,chr22,29367338,UNK,G,,GGGA,,-1.00000000,,,,,,,3.00000000,5.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,1.47000000,61.00000000,,2.00000000,GGA,3.00000000,,ref->het,0.20000000,0.00000000,96.00000000,4.24778761,2.02000000 +168,chr22,29410372,UNK,CTA,,C,,-1.00000000,,,,,,,4.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.76000000,39.00000000,,5.00000000,TA,2.00000000,,ref->het,0.25531915,0.00000000,56.00000000,2.47787611,2.94000000 +169,chr22,29410573,UNK,G,,GTAGATATATCTATCTATATATAGATATATA,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.36000000,36.00000000,,1.00000000,TAGATATATCTATCTATATATAGATATATA,30.00000000,,ref->het,0.25714286,0.00000000,56.00000000,2.47787611,2.50000000 +170,chr22,30308284,UNK,A,,ATGCCTGCATGCCTGCC,,-1.00000000,,,,,,,1.00000000,1.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.14000000,53.00000000,,0.00000000,TGCCTGCATGCCTGCC,16.00000000,,ref->het,0.27868852,0.00000000,80.00000000,3.53982301,1.78000000 +171,chr22,30425382,UNK,T,,TTC,,-1.00000000,,,,,,,1.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.53000000,46.00000000,,0.00000000,TC,2.00000000,,ref->het,0.17808219,0.00000000,91.00000000,4.02654867,7.72000000 +172,chr22,30616487,UNK,C,,CAA,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.68000000,38.00000000,,18.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,51.00000000,2.25663717,9.21000000 +173,chr22,30657276,UNK,AAC,,A,,-1.00000000,,,,,,,14.00000000,6.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.79000000,40.00000000,,15.00000000,AC,2.00000000,,ref->het,0.26190476,0.00000000,53.00000000,2.34513274,3.22000000 +174,chr22,30725175,UNK,C,,CA,,-1.00000000,,,,,,,6.00000000,12.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,1.85000000,37.00000000,,5.00000000,A,1.00000000,,ref->het,0.18518519,0.00000000,74.00000000,3.27433628,8.97000000 +175,chr22,30778523,UNK,GT,,G,,-1.00000000,,,,,,,1.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,30.00000000,,2.00000000,T,1.00000000,,ref->het,0.07547170,0.00000000,57.00000000,2.52212389,0.01000000 +176,chr22,30985271,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,5.90000000,68.00000000,,0.00000000,TA,2.00000000,,ref->het,0.35849057,0.00000000,65.00000000,2.87610619,9.72000000 +177,chr22,30985451,UNK,T,,TTC,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.74000000,37.00000000,,0.00000000,TC,2.00000000,,ref->het,0.14516129,0.00000000,69.00000000,3.05309735,5.16000000 +178,chr22,31018460,UNK,C,,CACAT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.37000000,52.00000000,,0.00000000,ACAT,4.00000000,,ref->het,0.32692308,0.00000000,62.00000000,2.74336283,1.51000000 +179,chr22,31018544,UNK,T,,TAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.50000000,36.00000000,,0.00000000,AC,2.00000000,,ref->het,0.05000000,0.00000000,75.00000000,3.31858407,12.28000000 +180,chr22,31075680,UNK,T,,TA,,-1.00000000,,,,,,,18.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.54000000,46.00000000,,17.00000000,A,1.00000000,,ref->het,0.26530612,0.00000000,70.00000000,3.09734513,11.23000000 +181,chr22,31159711,UNK,C,,CTCT,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,3.74000000,50.00000000,,0.00000000,TCT,3.00000000,,ref->het,0.22950820,0.00000000,72.00000000,3.18584071,6.68000000 +182,chr22,31511474,UNK,T,,TG,,-1.00000000,,,,,,,1.00000000,23.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.20000000,49.00000000,,0.00000000,G,1.00000000,,ref->het,0.28571429,0.00000000,72.00000000,3.18584071,12.34000000 +183,chr22,31599881,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,16.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.21000000,56.00000000,,0.00000000,TA,2.00000000,,ref->het,0.21052632,0.00000000,77.00000000,3.40707965,2.58000000 +184,chr22,31606693,UNK,CTTTTTTTTTTTTT,,C,,-1.00000000,,,,,,,10.00000000,30.00000000,2.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,5.24000000,35.00000000,,23.00000000,T,1.00000000,,ref->het,0.26000000,0.00000000,63.00000000,2.78761062,7.64000000 +185,chr22,31652139,UNK,T,,TTG,,-1.00000000,,,,,,,9.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.63000000,44.00000000,,8.00000000,TG,2.00000000,,ref->het,0.23529412,0.00000000,61.00000000,2.69911504,1.37000000 +186,chr22,31655076,UNK,C,,CAAA,,-1.00000000,,,,,,,27.00000000,25.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,7.27000000,37.00000000,,24.00000000,A,1.00000000,,ref->het,0.25714286,0.00000000,67.00000000,2.96460177,19.52000000 +187,chr22,31655311,UNK,A,,AC,,-1.00000000,,,,,,,6.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.03000000,53.00000000,,5.00000000,C,1.00000000,,ref->het,0.27586207,0.00000000,66.00000000,2.92035398,4.27000000 +188,chr22,32213744,UNK,G,,GGATATATATCTATATATGTATACATATATATCTATACATATATATG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,46.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.58000000,44.00000000,,1.00000000,GATATATATCTATATATGTATACATATATATCTATACATATATATG,46.00000000,,ref->het,0.27027027,0.00000000,68.00000000,3.00884956,2.33000000 +189,chr22,32292140,UNK,T,,TAA,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,12.00000000,0.53097345,0.66000000,31.00000000,,0.00000000,A,1.00000000,,ref->het,0.14285714,0.00000000,68.00000000,3.00884956,5.13000000 +190,chr22,32292167,UNK,A,,ATATAG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,1.61000000,31.00000000,,0.00000000,TATAG,5.00000000,,ref->het,0.06666667,0.00000000,73.00000000,3.23008850,6.61000000 +191,chr22,32302259,UNK,T,,TTG,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.79000000,51.00000000,,0.00000000,TG,2.00000000,,ref->het,0.21348315,0.00000000,97.00000000,4.29203540,3.63000000 +192,chr22,32304443,UNK,GTTTTTTCT,,G,,-1.00000000,,,,,,,0.00000000,11.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.82000000,54.00000000,,1.00000000,TTTTTTCT,8.00000000,,ref->het,0.26027397,0.00000000,77.00000000,3.40707965,0.95000000 +193,chr22,32308763,UNK,CATGT,,C,,-1.00000000,,,,,,,1.00000000,2.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.84000000,49.00000000,,2.00000000,ATGT,4.00000000,,ref->het,0.22680412,0.00000000,101.00000000,4.46902655,2.23000000 +194,chr22,32324278,UNK,T,,TATACACACATATATGTATATATATATATAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.82000000,47.00000000,,0.00000000,ATACACACATATATGTATATATATATATAC,30.00000000,,ref->het,0.21794872,0.00000000,88.00000000,3.89380531,2.22000000 +195,chr22,32326270,UNK,A,,AT,,-1.00000000,,,,,,,17.00000000,17.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,1.46000000,32.00000000,,16.00000000,T,1.00000000,,ref->het,0.34545455,0.00000000,74.00000000,3.27433628,6.09000000 +196,chr22,32355797,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,2.41000000,62.00000000,,0.00000000,G,1.00000000,,ref->het,0.31481481,0.00000000,74.00000000,3.27433628,9.08000000 +197,chr22,32382486,UNK,G,,GTATGTA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.14000000,44.00000000,,0.00000000,TATGTA,6.00000000,,ref->het,0.27272727,0.00000000,70.00000000,3.09734513,2.70000000 +198,chr22,32420334,UNK,AAT,,A,,-1.00000000,,,,,,,0.00000000,19.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.90000000,47.00000000,,1.00000000,AT,2.00000000,,ref->het,0.50000000,0.00000000,78.00000000,3.45132743,8.92000000 +199,chr22,32423577,UNK,G,,GGTGTGTGTGTGT,,-1.00000000,,,,,,,21.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.73000000,46.00000000,,15.00000000,GT,2.00000000,,ref->het,0.49122807,0.00000000,67.00000000,2.96460177,3.26000000 +200,chr22,32450149,UNK,CACATATAT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.76000000,49.00000000,,1.00000000,ACATATAT,8.00000000,,ref->het,0.19444444,0.00000000,77.00000000,3.40707965,7.07000000 +201,chr22,32551527,UNK,GA,,G,,-1.00000000,,,,,,,11.00000000,13.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.81000000,31.00000000,,12.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,75.00000000,3.31858407,3.13000000 +202,chr22,32603356,UNK,C,,CAAAAA,,-1.00000000,,,,,,,20.00000000,16.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,3.04000000,46.00000000,,15.00000000,A,1.00000000,,ref->het,0.34615385,0.00000000,66.00000000,2.92035398,7.04000000 +203,chr22,32671572,UNK,AACAAGT,,A,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.94000000,42.00000000,,1.00000000,ACAAGT,6.00000000,,ref->het,0.22784810,0.00000000,83.00000000,3.67256637,4.21000000 +204,chr22,32724243,UNK,CTGTTT,,C,,-1.00000000,,,,,,,5.00000000,8.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.46000000,50.00000000,,6.00000000,TGTTT,5.00000000,,ref->het,0.25806452,0.00000000,80.00000000,3.53982301,1.71000000 +205,chr22,32755892,UNK,TA,,T,,-1.00000000,,,,,,,5.00000000,8.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.28000000,33.00000000,,6.00000000,A,1.00000000,,ref->het,0.14814815,0.00000000,82.00000000,3.62831858,0.76000000 +206,chr22,32820263,UNK,CGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.84000000,48.00000000,,1.00000000,GT,2.00000000,,ref->het,0.24193548,0.00000000,75.00000000,3.31858407,2.44000000 +207,chr22,32890072,UNK,C,,CTT,,-1.00000000,,,,,,,25.00000000,23.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.26000000,32.00000000,,23.00000000,T,1.00000000,,ref->het,0.34883721,0.00000000,81.00000000,3.58407080,10.61000000 +208,chr22,32988305,UNK,C,,CATAATA,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,1.26000000,52.00000000,,0.00000000,ATA,3.00000000,,ref->het,0.22535211,0.00000000,88.00000000,3.89380531,6.28000000 +209,chr22,32998791,UNK,A,,AAAC,,-1.00000000,,,,,,,1.00000000,27.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,7.36000000,62.00000000,,0.00000000,AAC,3.00000000,,ref->het,0.30263158,0.00000000,84.00000000,3.71681416,12.15000000 +210,chr22,33015242,UNK,A,,AAT,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,3.86000000,41.00000000,,0.00000000,AT,2.00000000,,ref->het,0.38095238,0.00000000,69.00000000,3.05309735,14.22000000 +211,chr22,33028685,UNK,GTGGTGA,,G,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,3.06000000,37.00000000,,1.00000000,TGGTGA,6.00000000,,ref->het,0.25581395,0.00000000,65.00000000,2.87610619,12.73000000 +212,chr22,33096566,UNK,GT,,G,,-1.00000000,,,,,,,15.00000000,21.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.32000000,38.00000000,,16.00000000,T,1.00000000,,ref->het,0.40000000,0.00000000,68.00000000,3.00884956,5.99000000 +213,chr22,33120366,UNK,CTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTT,,C,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,1.66000000,49.00000000,,1.00000000,TTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTTTCTT,38.00000000,,ref->het,0.20270270,0.00000000,55.00000000,2.43362832,4.77000000 +214,chr22,33128684,UNK,A,,AC,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,4.38000000,46.00000000,,0.00000000,C,1.00000000,,ref->het,0.25000000,0.00000000,66.00000000,2.92035398,10.04000000 +215,chr22,34137119,UNK,TTTTTTTTTTG,,T,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,4.12000000,45.00000000,,1.00000000,TTTTTTTTTG,10.00000000,,ref->het,0.18666667,0.00000000,77.00000000,3.40707965,8.57000000 +216,chr22,34155889,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.22000000,30.00000000,,3.00000000,T,1.00000000,,ref->het,0.06779661,0.00000000,67.00000000,2.96460177,3.60000000 +217,chr22,34209119,UNK,C,,CAA,,-1.00000000,,,,,,,4.00000000,9.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.26000000,45.00000000,,2.00000000,A,1.00000000,,ref->het,0.16666667,0.00000000,78.00000000,3.45132743,1.48000000 +218,chr22,34423166,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,3.16000000,36.00000000,,3.00000000,T,1.00000000,,ref->het,0.12500000,0.00000000,44.00000000,1.94690265,7.31000000 +219,chr22,34542050,UNK,ATTC,,A,,-1.00000000,,,,,,,2.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,40.00000000,1.76991150,0.68000000,54.00000000,,3.00000000,TTC,3.00000000,,ref->het,0.28048780,0.00000000,87.00000000,3.84955752,0.53000000 +220,chr22,35110978,UNK,AGCTACTCAGGAGGCTGAAACAGGAGAATT,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,29.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.04000000,45.00000000,,1.00000000,GCTACTCAGGAGGCTGAAACAGGAGAATT,29.00000000,,ref->het,0.18309859,0.00000000,73.00000000,3.23008850,0.87000000 +221,chr22,35156443,UNK,A,,ACACT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.08000000,57.00000000,,0.00000000,CACT,4.00000000,,ref->het,0.32653061,0.00000000,62.00000000,2.74336283,2.98000000 +222,chr22,35209170,UNK,AAG,,A,,-1.00000000,,,,,,,0.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,4.78000000,49.00000000,,1.00000000,AG,2.00000000,,ref->het,0.26984127,0.00000000,75.00000000,3.31858407,8.30000000 +223,chr22,35474638,UNK,T,,TTTA,,-1.00000000,,,,,,,9.00000000,7.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.97000000,58.00000000,,8.00000000,TTA,3.00000000,,ref->het,0.35714286,0.00000000,74.00000000,3.27433628,4.94000000 +224,chr22,35581317,UNK,CTT,,C,,-1.00000000,,,,,,,17.00000000,20.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,44.00000000,1.94690265,6.65000000,38.00000000,,19.00000000,T,1.00000000,,ref->het,0.26470588,0.00000000,100.00000000,4.42477876,15.68000000 +225,chr22,35999983,UNK,T,,TTA,,-1.00000000,,,,,,,12.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,2.61000000,45.00000000,,11.00000000,TA,2.00000000,,ref->het,0.19354839,0.00000000,92.00000000,4.07079646,6.06000000 +226,chr22,36000005,UNK,A,,ATAT,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.78000000,55.00000000,,0.00000000,TAT,3.00000000,,ref->het,0.26984127,0.00000000,75.00000000,3.31858407,7.94000000 +227,chr22,36235744,UNK,G,,GGT,,-1.00000000,,,,,,,2.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.12000000,42.00000000,,1.00000000,GT,2.00000000,,ref->het,0.20454545,0.00000000,60.00000000,2.65486726,13.28000000 +228,chr22,36428222,UNK,A,,AAAAAC,,-1.00000000,,,,,,,1.00000000,26.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,4.59000000,34.00000000,,0.00000000,AAAAC,5.00000000,,ref->het,0.19444444,0.00000000,56.00000000,2.47787611,12.66000000 +229,chr22,36444410,UNK,A,,AAAAAG,,-1.00000000,,,,,,,1.00000000,17.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,4.39000000,39.00000000,,0.00000000,AAAAG,5.00000000,,ref->het,0.18461538,0.00000000,69.00000000,3.05309735,10.13000000 +230,chr22,36502167,UNK,TCAAA,,T,,-1.00000000,,,,,,,5.00000000,6.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.00000000,35.00000000,,6.00000000,CAAA,4.00000000,,ref->het,0.18867925,0.00000000,72.00000000,3.18584071,2.65000000 +231,chr22,36606757,UNK,CGT,,C,,-1.00000000,,,,,,,10.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.00000000,42.00000000,,11.00000000,GT,2.00000000,,ref->het,0.22222222,0.00000000,70.00000000,3.09734513,1.11000000 +232,chr22,36816045,UNK,T,,TTG,,-1.00000000,,,,,,,15.00000000,5.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,1.95000000,34.00000000,,14.00000000,TG,2.00000000,,ref->het,0.20312500,0.00000000,80.00000000,3.53982301,6.24000000 +233,chr22,36831770,UNK,CT,,C,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.94000000,50.00000000,,2.00000000,T,1.00000000,,ref->het,0.22077922,0.00000000,66.00000000,2.92035398,3.62000000 +234,chr22,36838209,UNK,G,,GGTGGT,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,2.80000000,31.00000000,,0.00000000,GTGGT,5.00000000,,ref->het,0.09375000,0.00000000,43.00000000,1.90265487,10.47000000 +235,chr22,37072549,UNK,AATGGATGGATGATGGATGGATGGATGGATGATGGATGG,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,5.12000000,45.00000000,,2.00000000,ATGGATGGATGATGGATGG,19.00000000,,ref->het,0.21538462,0.00000000,71.00000000,3.14159292,13.05000000 +236,chr22,37220902,UNK,C,,CA,,-1.00000000,,,,,,,1.00000000,5.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.28000000,48.00000000,,0.00000000,A,1.00000000,,ref->het,0.20895522,0.00000000,77.00000000,3.40707965,8.37000000 +237,chr22,37226840,UNK,G,,GT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,0.47000000,44.00000000,,1.00000000,T,1.00000000,,ref->het,0.18965517,0.00000000,63.00000000,2.78761062,6.40000000 +238,chr22,37399472,UNK,A,,AGACCACCGGCCCACCTCTCCCACCTCCACCGACCACGGG,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,39.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,21.00000000,0.92920354,0.34000000,32.00000000,,1.00000000,GACCACCGGCCCACCTCTCCCACCTCCACCGACCACGGG,39.00000000,,ref->het,0.16666667,0.00000000,62.00000000,2.74336283,1.20000000 +239,chr22,37584724,UNK,T,,TTATTTT,,-1.00000000,,,,,,,2.00000000,9.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.00000000,33.00000000,,1.00000000,TATTTT,6.00000000,,ref->het,0.12244898,0.00000000,56.00000000,2.47787611,2.98000000 +240,chr22,37754417,UNK,C,,CA,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,6.86000000,31.00000000,,19.00000000,A,1.00000000,,ref->het,0.21153846,0.00000000,71.00000000,3.14159292,14.69000000 +241,chr22,37807331,UNK,T,,TCCC,,-1.00000000,,,,,,,12.00000000,14.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,43.00000000,1.90265487,5.21000000,30.00000000,,9.00000000,C,1.00000000,,ref->het,0.13432836,0.00000000,85.00000000,3.76106195,12.64000000 +242,chr22,37841848,UNK,AAAAT,,A,,-1.00000000,,,,,,,11.00000000,7.00000000,2.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.28000000,30.00000000,,12.00000000,AAAT,4.00000000,,ref->het,0.21875000,0.00000000,50.00000000,2.21238938,1.22000000 +243,chr22,37937418,UNK,C,,CTTT,,-1.00000000,,,,,,,25.00000000,22.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,48.00000000,2.12389381,5.04000000,31.00000000,,22.00000000,T,1.00000000,,ref->het,0.20408163,0.00000000,92.00000000,4.07079646,15.43000000 +244,chr22,38150051,UNK,C,,CAAA,,-1.00000000,,,,,,,20.00000000,18.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.44000000,36.00000000,,17.00000000,A,1.00000000,,ref->het,0.21666667,0.00000000,83.00000000,3.67256637,9.99000000 +245,chr22,38274066,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,13.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,2.10000000,57.00000000,,0.00000000,C,1.00000000,,ref->het,0.33333333,0.00000000,64.00000000,2.83185841,1.28000000 +246,chr22,38311808,UNK,C,,CTT,,-1.00000000,,,,,,,18.00000000,18.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,2.77000000,34.00000000,,16.00000000,T,1.00000000,,ref->het,0.23214286,0.00000000,77.00000000,3.40707965,5.89000000 +247,chr22,38426029,UNK,AAAAAATATAT,,A,,-1.00000000,,,,,,,0.00000000,16.00000000,2.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,1.92000000,35.00000000,,1.00000000,AAAAATATAT,10.00000000,,ref->het,0.14516129,0.00000000,66.00000000,2.92035398,6.79000000 +248,chr22,38464929,UNK,CTTT,,C,,-1.00000000,,,,,,,17.00000000,21.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.61000000,30.00000000,,20.00000000,T,1.00000000,,ref->het,0.20833333,0.00000000,72.00000000,3.18584071,8.98000000 +249,chr22,38813893,UNK,T,,TTCTTTC,,-1.00000000,,,,,,,1.00000000,11.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,0.53000000,31.00000000,,0.00000000,TCTTTC,6.00000000,,ref->het,0.07407407,0.00000000,59.00000000,2.61061947,2.32000000 +250,chr22,38988690,UNK,T,,TCTCT,,-1.00000000,,,,,,,3.00000000,6.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,18.00000000,0.79646018,1.28000000,35.00000000,,1.00000000,CT,2.00000000,,ref->het,0.16129032,0.00000000,41.00000000,1.81415929,8.76000000 +251,chr22,39112082,UNK,G,,GA,,-1.00000000,,,,,,,11.00000000,11.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.76000000,39.00000000,,10.00000000,A,1.00000000,,ref->het,0.25396825,0.00000000,65.00000000,2.87610619,2.40000000 +252,chr22,39194130,UNK,A,,AACC,,-1.00000000,,,,,,,1.00000000,25.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,6.99000000,49.00000000,,0.00000000,ACC,3.00000000,,ref->het,0.25000000,0.00000000,72.00000000,3.18584071,16.22000000 +253,chr22,39269913,UNK,A,,ACCCTAACTCCAGAGGGAGCCCCTGG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,25.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.00000000,57.00000000,,0.00000000,CCCTAACTCCAGAGGGAGCCCCTGG,25.00000000,,ref->het,0.31034483,0.00000000,65.00000000,2.87610619,1.25000000 +254,chr22,39340805,UNK,C,,CT,,-1.00000000,,,,,,,5.00000000,21.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,4.44000000,30.00000000,,4.00000000,T,1.00000000,,ref->het,0.10000000,0.00000000,80.00000000,3.53982301,13.02000000 +255,chr22,39347570,UNK,TCTCTC,,T,,-1.00000000,,,,,,,0.00000000,14.00000000,2.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.24000000,59.00000000,,1.00000000,CTCTC,5.00000000,,ref->het,0.29411765,0.00000000,60.00000000,2.65486726,2.11000000 +256,chr22,39616770,UNK,AAAAAAAAAAAAAAAAAAGAAAAG,,A,,-1.00000000,,,,,,,0.00000000,27.00000000,2.00000000,23.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,6.26000000,46.00000000,,1.00000000,AAAAAAAAAAAAAAAAAGAAAAG,23.00000000,,ref->het,0.17567568,0.00000000,62.00000000,2.74336283,5.83000000 +257,chr22,40938654,UNK,G,,GTGTGTGTGTA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.57000000,38.00000000,,0.00000000,TGTGTGTGTA,10.00000000,,ref->het,0.14925373,0.00000000,74.00000000,3.27433628,2.64000000 +258,chr22,41026435,UNK,CAGTGAG,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.40000000,43.00000000,,1.00000000,AGTGAG,6.00000000,,ref->het,0.24418605,0.00000000,88.00000000,3.89380531,1.95000000 +259,chr22,41119166,UNK,C,,CTTATTA,,-1.00000000,,,,,,,5.00000000,4.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.36000000,32.00000000,,3.00000000,TTA,3.00000000,,ref->het,0.18181818,0.00000000,55.00000000,2.43362832,7.68000000 +260,chr22,41449991,UNK,G,,GTGTGTGTGTGTGTG,,-1.00000000,,,,,,,21.00000000,4.00000000,1.00000000,14.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,13.00000000,0.57522124,1.23000000,37.00000000,,14.00000000,TG,2.00000000,,ref->het,0.26086957,0.00000000,46.00000000,2.03539823,2.87000000 +261,chr22,41561045,UNK,G,,GACACACACAC,,-1.00000000,,,,,,,23.00000000,2.00000000,1.00000000,10.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,2.15000000,47.00000000,,18.00000000,AC,2.00000000,,ref->het,0.21518987,0.00000000,97.00000000,4.29203540,5.58000000 +262,chr22,41785902,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,14.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.31000000,37.00000000,,0.00000000,TA,2.00000000,,ref->het,0.10606061,0.00000000,77.00000000,3.40707965,9.15000000 +263,chr22,41785912,UNK,T,,TTA,,-1.00000000,,,,,,,1.00000000,17.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,3.93000000,36.00000000,,0.00000000,TA,2.00000000,,ref->het,0.11111111,0.00000000,78.00000000,3.45132743,9.99000000 +264,chr22,41938141,UNK,A,,AT,,-1.00000000,,,,,,,19.00000000,18.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,4.27000000,42.00000000,,18.00000000,T,1.00000000,,ref->het,0.27868852,0.00000000,83.00000000,3.67256637,10.72000000 +265,chr22,42057826,UNK,CATATAT,,C,,-1.00000000,,,,,,,7.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.59000000,34.00000000,,10.00000000,AT,2.00000000,,ref->het,0.20512821,0.00000000,68.00000000,3.00884956,8.19000000 +266,chr22,42255488,UNK,AAACAAC,,A,,-1.00000000,,,,,,,11.00000000,5.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.53000000,39.00000000,,13.00000000,AAC,3.00000000,,ref->het,0.20689655,0.00000000,80.00000000,3.53982301,2.67000000 +267,chr22,42395881,UNK,C,,CA,,-1.00000000,,,,,,,17.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,2.95000000,45.00000000,,16.00000000,A,1.00000000,,ref->het,0.36764706,0.00000000,92.00000000,4.07079646,13.19000000 +268,chr22,42396925,UNK,G,,GGCGTGCACCTGGGGA,,-1.00000000,,,,,,,1.00000000,6.00000000,1.00000000,15.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.41000000,50.00000000,,0.00000000,GCGTGCACCTGGGGA,15.00000000,,ref->het,0.20238095,0.00000000,104.00000000,4.60176991,1.02000000 +269,chr22,42464592,UNK,AAAAAAAG,,A,,-1.00000000,,,,,,,0.00000000,23.00000000,2.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,3.51000000,60.00000000,,1.00000000,AAAAAAG,7.00000000,,ref->het,0.21333333,0.00000000,87.00000000,3.84955752,3.92000000 +270,chr22,42474179,UNK,A,,AGTG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.65000000,43.00000000,,0.00000000,GTG,3.00000000,,ref->het,0.19117647,0.00000000,74.00000000,3.27433628,6.57000000 +271,chr22,42709061,UNK,A,,ATT,,-1.00000000,,,,,,,3.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.53000000,40.00000000,,1.00000000,T,1.00000000,,ref->het,0.12903226,0.00000000,73.00000000,3.23008850,4.65000000 +272,chr22,42859695,UNK,A,,AAATATAT,,-1.00000000,,,,,,,1.00000000,19.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,4.41000000,31.00000000,,0.00000000,AATATAT,7.00000000,,ref->het,0.15384615,0.00000000,38.00000000,1.68141593,9.09000000 +273,chr22,42993179,UNK,A,,AAAAAAGG,,-1.00000000,,,,,,,2.00000000,12.00000000,1.00000000,7.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,2.52000000,37.00000000,,1.00000000,AAAAAGG,7.00000000,,ref->het,0.17460317,0.00000000,72.00000000,3.18584071,4.58000000 +274,chr22,43084962,UNK,CTTTTTTTTT,,C,,-1.00000000,,,,,,,14.00000000,23.00000000,2.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,4.97000000,42.00000000,,23.00000000,T,1.00000000,,ref->het,0.50793651,0.00000000,91.00000000,4.02654867,12.42000000 +275,chr22,43107317,UNK,GA,,G,,-1.00000000,,,,,,,21.00000000,23.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,2.84000000,31.00000000,,22.00000000,A,1.00000000,,ref->het,0.32608696,0.00000000,67.00000000,2.96460177,10.09000000 +276,chr22,43181999,UNK,G,,GAAGGCCTGGAAGCAGAAAGGCCCGGAAGCAGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,32.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.89000000,41.00000000,,0.00000000,AAGGCCTGGAAGCAGAAAGGCCCGGAAGCAGA,32.00000000,,ref->het,0.16470588,0.00000000,91.00000000,4.02654867,1.48000000 +277,chr22,43657126,UNK,C,,CA,,-1.00000000,,,,,,,9.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.01000000,36.00000000,,8.00000000,A,1.00000000,,ref->het,0.24590164,0.00000000,69.00000000,3.05309735,0.83000000 +278,chr22,43887808,UNK,GCA,,G,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.48000000,47.00000000,,1.00000000,CA,2.00000000,,ref->het,0.19540230,0.00000000,91.00000000,4.02654867,7.71000000 +279,chr22,44035373,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,6.03000000,53.00000000,,0.00000000,C,1.00000000,,ref->het,0.44680851,0.00000000,48.00000000,2.12389381,5.82000000 +280,chr22,44127252,UNK,CT,,C,,-1.00000000,,,,,,,10.00000000,12.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,50.00000000,2.21238938,2.35000000,84.00000000,,11.00000000,T,1.00000000,,ref->het,0.38666667,0.00000000,86.00000000,3.80530973,1.27000000 +281,chr22,44191386,UNK,C,,CTT,,-1.00000000,,,,,,,3.00000000,28.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.25000000,35.00000000,,1.00000000,T,1.00000000,,ref->het,0.11627907,0.00000000,71.00000000,3.14159292,12.30000000 +282,chr22,44214021,UNK,A,,ACATCAT,,-1.00000000,,,,,,,9.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,38.00000000,1.68141593,0.68000000,55.00000000,,7.00000000,CAT,3.00000000,,ref->het,0.24590164,0.00000000,77.00000000,3.40707965,1.73000000 +283,chr22,44306289,UNK,GACCTGGGCTCAGGGAGCTGTGATGACGATGGCATGTGTGGAGGGT,,G,,-1.00000000,,,,,,,0.00000000,6.00000000,2.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.20000000,35.00000000,,1.00000000,ACCTGGGCTCAGGGAGCTGTGATGACGATGGCATGTGTGGAGGGT,45.00000000,,ref->het,0.50746269,0.00000000,68.00000000,3.00884956,2.45000000 +284,chr22,44539592,UNK,GTGGATGGATGGATGAGTAGGTGGA,,G,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,24.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.74000000,47.00000000,,1.00000000,TGGATGGATGGATGAGTAGGTGGA,24.00000000,,ref->het,0.20833333,0.00000000,76.00000000,3.36283186,5.56000000 +285,chr22,44605020,UNK,A,,AGC,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.69000000,44.00000000,,0.00000000,GC,2.00000000,,ref->het,0.18867925,0.00000000,60.00000000,2.65486726,2.31000000 +286,chr22,44605021,UNK,C,,CCA,,-1.00000000,,,,,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.68000000,43.00000000,,8.00000000,CA,2.00000000,,ref->het,0.14583333,0.00000000,60.00000000,2.65486726,2.33000000 +287,chr22,44649471,UNK,TGGAGAC,,T,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.01000000,44.00000000,,1.00000000,GGAGAC,6.00000000,,ref->het,0.20481928,0.00000000,87.00000000,3.84955752,2.17000000 +288,chr22,44717189,UNK,C,,CT,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.64000000,48.00000000,,19.00000000,T,1.00000000,,ref->het,0.36363636,0.00000000,80.00000000,3.53982301,12.50000000 +289,chr22,44779099,UNK,T,,TC,,-1.00000000,,,,,,,1.00000000,20.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,2.64000000,31.00000000,,0.00000000,C,1.00000000,,ref->het,0.33962264,0.00000000,57.00000000,2.52212389,9.05000000 +290,chr22,44833096,UNK,C,,CTTTTCTTTTCT,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,23.00000000,1.01769912,3.29000000,36.00000000,,0.00000000,TTTTCTTTTCT,11.00000000,,ref->het,0.15000000,0.00000000,49.00000000,2.16814159,8.78000000 +291,chr22,45079644,UNK,CTCTCTCTT,,C,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,0.01000000,59.00000000,,2.00000000,TCTCTCTT,8.00000000,,ref->het,0.50793651,0.00000000,90.00000000,3.98230088,3.15000000 +292,chr22,45100709,UNK,AC,,A,,-1.00000000,,,,,,,3.00000000,10.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,0.59000000,53.00000000,,4.00000000,C,1.00000000,,ref->het,0.21428571,0.00000000,87.00000000,3.84955752,1.67000000 +293,chr22,45247564,UNK,A,,AAAGAAAAAG,,-1.00000000,,,,,,,1.00000000,9.00000000,1.00000000,9.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,1.77000000,37.00000000,,0.00000000,AAGAAAAAG,9.00000000,,ref->het,0.16981132,0.00000000,64.00000000,2.83185841,5.19000000 +294,chr22,45269254,UNK,A,,AGGCGGGGGCGGG,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,12.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.76000000,41.00000000,,0.00000000,GGCGGG,6.00000000,,ref->het,0.19047619,0.00000000,72.00000000,3.18584071,5.83000000 +295,chr22,45441614,UNK,T,,TTTTC,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.68000000,47.00000000,,0.00000000,TTTC,4.00000000,,ref->het,0.26530612,0.00000000,52.00000000,2.30088496,7.67000000 +296,chr22,45441631,UNK,T,,TTTGG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,3.63000000,34.00000000,,0.00000000,TTGG,4.00000000,,ref->het,0.07843137,0.00000000,59.00000000,2.61061947,10.09000000 +297,chr22,45449281,UNK,A,,ATT,,-1.00000000,,,,,,,20.00000000,19.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.69000000,44.00000000,,18.00000000,T,1.00000000,,ref->het,0.52272727,0.00000000,61.00000000,2.69911504,6.61000000 +298,chr22,45473207,UNK,TC,,T,,-1.00000000,,,,,,,0.00000000,17.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.93000000,43.00000000,,1.00000000,C,1.00000000,,ref->het,0.16363636,0.00000000,65.00000000,2.87610619,8.36000000 +299,chr22,45649113,UNK,C,,CT,,-1.00000000,,,,,,,4.00000000,7.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.57000000,55.00000000,,3.00000000,T,1.00000000,,ref->het,0.28235294,0.00000000,94.00000000,4.15929204,2.19000000 +300,chr22,45737690,UNK,CTTTTTTTT,,C,,-1.00000000,,,,,,,14.00000000,25.00000000,2.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,5.82000000,34.00000000,,22.00000000,T,1.00000000,,ref->het,0.22666667,0.00000000,99.00000000,4.38053097,12.16000000 +301,chr22,45861085,UNK,T,,TAAAAC,,-1.00000000,,,,,,,4.00000000,8.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.60000000,36.00000000,,3.00000000,AAAAC,5.00000000,,ref->het,0.15686275,0.00000000,69.00000000,3.05309735,1.99000000 +302,chr22,45981863,UNK,CA,,C,,-1.00000000,,,,,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,2.95000000,31.00000000,,17.00000000,A,1.00000000,,ref->het,0.21428571,0.00000000,69.00000000,3.05309735,6.11000000 +303,chr22,46142037,UNK,T,,TA,,-1.00000000,,,,,,,1.00000000,9.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,15.00000000,0.66371681,0.79000000,30.00000000,,0.00000000,A,1.00000000,,ref->het,0.33333333,0.00000000,38.00000000,1.68141593,1.96000000 +304,chr22,46196945,UNK,ACTC,,A,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,0.70000000,48.00000000,,1.00000000,CTC,3.00000000,,ref->het,0.22368421,0.00000000,79.00000000,3.49557522,2.85000000 +305,chr22,46276751,UNK,C,,CATATATTAAAAAT,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.58000000,42.00000000,,1.00000000,ATATATTAAAAAT,13.00000000,,ref->het,0.20588235,0.00000000,84.00000000,3.71681416,2.07000000 +306,chr22,46277038,UNK,TATATAC,,T,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.43000000,42.00000000,,1.00000000,ATATAC,6.00000000,,ref->het,0.22222222,0.00000000,70.00000000,3.09734513,4.57000000 +307,chr22,46504510,UNK,AAAAAAAAAAAC,,A,,-1.00000000,,,,,,,0.00000000,25.00000000,2.00000000,11.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,7.63000000,32.00000000,,1.00000000,AAAAAAAAAAC,11.00000000,,ref->het,0.09589041,0.00000000,73.00000000,3.23008850,13.21000000 +308,chr22,46904134,UNK,T,,TCTGC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.92000000,43.00000000,,0.00000000,CTGC,4.00000000,,ref->het,0.15384615,0.00000000,82.00000000,3.62831858,3.13000000 +309,chr22,46920057,UNK,T,,TTGTATGTATGTATGTA,,-1.00000000,,,,,,,11.00000000,6.00000000,1.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.02000000,42.00000000,,7.00000000,TGTA,4.00000000,,ref->het,0.22727273,0.00000000,72.00000000,3.18584071,1.45000000 +310,chr22,47118812,UNK,CAT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,31.00000000,1.37168142,0.29000000,61.00000000,,1.00000000,AT,2.00000000,,ref->het,0.47222222,0.00000000,76.00000000,3.36283186,1.32000000 +311,chr22,47174607,UNK,TCATGGACCGGTTCCTC,,T,,-1.00000000,,,,,,,1.00000000,4.00000000,2.00000000,16.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.44000000,51.00000000,,2.00000000,CATGGACCGGTTCCTC,16.00000000,,ref->het,0.25373134,0.00000000,81.00000000,3.58407080,1.82000000 +312,chr22,47211109,UNK,CGTCCACACTCAAATATGCACGTGTCCACACTTAAATATGTGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,42.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,0.00000000,30.00000000,,1.00000000,GTCCACACTCAAATATGCACGTGTCCACACTTAAATATGTGT,42.00000000,,ref->het,0.08433735,0.00000000,77.00000000,3.40707965,2.02000000 +313,chr22,47213477,UNK,CGCGTGTCCACACTCAAATATGT,,C,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,22.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,34.00000000,1.50442478,3.16000000,30.00000000,,1.00000000,GCGTGTCCACACTCAAATATGT,22.00000000,,ref->het,0.15151515,0.00000000,70.00000000,3.09734513,4.22000000 +314,chr22,47343183,UNK,TC,,T,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.58000000,32.00000000,,3.00000000,C,1.00000000,,ref->het,0.08888889,0.00000000,56.00000000,2.47787611,8.80000000 +315,chr22,47378997,UNK,AGAG,,A,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,0.82000000,35.00000000,,1.00000000,GAG,3.00000000,,ref->het,0.28947368,0.00000000,55.00000000,2.43362832,4.79000000 +316,chr22,47479549,UNK,GCA,,G,,-1.00000000,,,,,,,2.00000000,2.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.93000000,49.00000000,,3.00000000,CA,2.00000000,,ref->het,0.24050633,0.00000000,85.00000000,3.76106195,3.10000000 +317,chr22,47581927,UNK,A,,AAT,,-1.00000000,,,,,,,10.00000000,6.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,35.00000000,1.54867257,0.83000000,44.00000000,,9.00000000,AT,2.00000000,,ref->het,0.18518519,0.00000000,99.00000000,4.38053097,2.11000000 +318,chr22,47802913,UNK,AT,,A,,-1.00000000,,,,,,,2.00000000,3.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,1.04000000,50.00000000,,3.00000000,T,1.00000000,,ref->het,0.24242424,0.00000000,74.00000000,3.27433628,3.88000000 +319,chr22,47853610,UNK,GAGAGGA,,G,,-1.00000000,,,,,,,2.00000000,4.00000000,2.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,1.02000000,56.00000000,,3.00000000,AGAGGA,6.00000000,,ref->het,0.31034483,0.00000000,65.00000000,2.87610619,0.87000000 +320,chr22,47853659,UNK,A,,AGAAGAAGGAAGAAGAAGGAA,,-1.00000000,,,,,,,5.00000000,4.00000000,1.00000000,20.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,0.66000000,55.00000000,,3.00000000,GAAGAAGGAA,10.00000000,,ref->het,0.34000000,0.00000000,49.00000000,2.16814159,1.82000000 +321,chr22,48293804,UNK,A,,AACACAACTACGTG,,-1.00000000,,,,,,,1.00000000,3.00000000,1.00000000,13.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,24.00000000,1.06194690,0.43000000,55.00000000,,0.00000000,ACACAACTACGTG,13.00000000,,ref->het,0.35000000,0.00000000,66.00000000,2.92035398,1.06000000 +322,chr22,48341697,UNK,A,,AGACAGGAGGAGCAGGACAGACAGAAGGAGCAGGACG,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,36.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,1.55000000,54.00000000,,0.00000000,GACAGGAGGAGCAGGACAGACAGAAGGAGCAGGACG,36.00000000,,ref->het,0.27536232,0.00000000,80.00000000,3.53982301,1.45000000 +323,chr22,48344592,UNK,A,,ATG,,-1.00000000,,,,,,,1.00000000,4.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,37.00000000,1.63716814,3.04000000,55.00000000,,0.00000000,TG,2.00000000,,ref->het,0.21739130,0.00000000,78.00000000,3.45132743,3.51000000 +324,chr22,48349256,UNK,ACTCACACATAGGCTTTCACATACACT,,A,,-1.00000000,,,,,,,0.00000000,2.00000000,2.00000000,26.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,39.00000000,1.72566372,0.61000000,39.00000000,,1.00000000,CTCACACATAGGCTTTCACATACACT,26.00000000,,ref->het,0.10389610,0.00000000,73.00000000,3.23008850,1.43000000 +325,chr22,48442194,UNK,CCCTAATCCTGAACCCTGAGCCTTAATCCTGAGCCCTGAACCTTGAGG,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,47.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,22.00000000,0.97345133,2.28000000,35.00000000,,1.00000000,CCTAATCCTGAACCCTGAGCCTTAATCCTGAGCCCTGAACCTTGAGG,47.00000000,,ref->het,0.11940299,0.00000000,79.00000000,3.49557522,4.24000000 +326,chr22,48445849,UNK,TTTC,,T,,-1.00000000,,,,,,,0.00000000,18.00000000,2.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,20.00000000,0.88495575,5.19000000,33.00000000,,1.00000000,TTC,3.00000000,,ref->het,0.17021277,0.00000000,60.00000000,2.65486726,11.04000000 +327,chr22,48507154,UNK,TGGCCGCAAAGGGCCAGGTGTGTAGTTGGAGAAGGAGAC,,T,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,38.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,0.93000000,54.00000000,,1.00000000,GGCCGCAAAGGGCCAGGTGTGTAGTTGGAGAAGGAGAC,38.00000000,,ref->het,0.24096386,0.00000000,84.00000000,3.71681416,2.95000000 +328,chr22,48610936,UNK,ATT,,A,,-1.00000000,,,,,,,14.00000000,16.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,2.43000000,53.00000000,,16.00000000,T,1.00000000,,ref->het,0.41818182,0.00000000,72.00000000,3.18584071,4.00000000 +329,chr22,48659756,UNK,CCT,,C,,-1.00000000,,,,,,,0.00000000,5.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,0.98000000,47.00000000,,1.00000000,CT,2.00000000,,ref->het,0.20000000,0.00000000,70.00000000,3.09734513,6.99000000 +330,chr22,48788203,UNK,T,,TATATTATATATACACATATATTATATATAC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,30.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,0.18000000,33.00000000,,0.00000000,ATATTATATATACACATATATTATATATAC,30.00000000,,ref->het,0.07812500,0.00000000,68.00000000,3.00884956,1.52000000 +331,chr22,48797460,UNK,T,,TCCAGGA,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,6.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,30.00000000,1.32743363,0.23000000,38.00000000,,0.00000000,CCAGGA,6.00000000,,ref->het,0.11538462,0.00000000,69.00000000,3.05309735,3.60000000 +332,chr22,48802289,UNK,T,,TAC,,-1.00000000,,,,,,,14.00000000,2.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.44000000,45.00000000,,13.00000000,AC,2.00000000,,ref->het,0.21428571,0.00000000,59.00000000,2.61061947,3.78000000 +333,chr22,48847267,UNK,A,,AT,,-1.00000000,,,,,,,2.00000000,24.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,19.00000000,0.84070796,3.05000000,42.00000000,,1.00000000,T,1.00000000,,ref->het,0.23809524,0.00000000,56.00000000,2.47787611,6.93000000 +334,chr22,48931090,UNK,C,,CTTTCT,,-1.00000000,,,,,,,2.00000000,8.00000000,1.00000000,5.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,32.00000000,1.41592920,2.34000000,47.00000000,,1.00000000,TTTCT,5.00000000,,ref->het,0.21052632,0.00000000,63.00000000,2.78761062,6.41000000 +335,chr22,48947583,UNK,T,,TTA,,-1.00000000,,,,,,,9.00000000,3.00000000,1.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,16.00000000,0.70796460,0.59000000,34.00000000,,8.00000000,TA,2.00000000,,ref->het,0.28846154,0.00000000,67.00000000,2.96460177,4.24000000 +336,chr22,48951700,UNK,A,,AG,,-1.00000000,,,,,,,1.00000000,22.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,25.00000000,1.10619469,3.61000000,51.00000000,,0.00000000,G,1.00000000,,ref->het,0.28846154,0.00000000,71.00000000,3.14159292,11.65000000 +337,chr22,48956536,UNK,AG,,A,,-1.00000000,,,,,,,0.00000000,4.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,11.00000000,0.48672566,1.21000000,31.00000000,,1.00000000,G,1.00000000,,ref->het,0.24000000,0.00000000,54.00000000,2.38938053,8.83000000 +338,chr22,49224471,UNK,C,,CGATGGATG,,-1.00000000,,,,,,,2.00000000,2.00000000,1.00000000,8.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,0.95000000,36.00000000,,0.00000000,GATG,4.00000000,,ref->het,0.21052632,0.00000000,69.00000000,3.05309735,2.67000000 +339,chr22,49382624,UNK,CTGTGGGTCCAGCCTGACCCTGCCCTGTGGGTCCAGCCTCATGCCTGCCG,,C,,-1.00000000,,,,,,,0.00000000,3.00000000,2.00000000,49.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,27.00000000,1.19469027,1.16000000,53.00000000,,1.00000000,TGTGGGTCCAGCCTGACCCTGCCCTGTGGGTCCAGCCTCATGCCTGCCG,49.00000000,,ref->het,0.29487179,0.00000000,76.00000000,3.36283186,4.13000000 +340,chr22,49427132,UNK,A,,ATATC,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,4.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,1.33000000,66.00000000,,0.00000000,TATC,4.00000000,,ref->het,0.31250000,0.00000000,91.00000000,4.02654867,4.15000000 +341,chr22,49715054,UNK,C,,CA,,-1.00000000,,,,,,,17.00000000,16.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,33.00000000,1.46017699,3.54000000,32.00000000,,16.00000000,A,1.00000000,,ref->het,0.24074074,0.00000000,71.00000000,3.14159292,12.54000000 +342,chr22,49868957,UNK,CA,,C,,-1.00000000,,,,,,,16.00000000,18.00000000,2.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,29.00000000,1.28318584,1.80000000,33.00000000,,17.00000000,A,1.00000000,,ref->het,0.25000000,0.00000000,55.00000000,2.43362832,3.95000000 +343,chr22,50028587,UNK,G,,GCCCTCGTAAAGACCCCCATCACACCGTCCTGAAGACCCCCACATA,,-1.00000000,,,,,,,2.00000000,4.00000000,1.00000000,45.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,28.00000000,1.23893805,2.02000000,39.00000000,,1.00000000,CCCTCGTAAAGACCCCCATCACACCGTCCTGAAGACCCCCACATA,45.00000000,,ref->het,0.29166667,0.00000000,60.00000000,2.65486726,1.26000000 +344,chr22,50098218,UNK,G,,GTATTAAGATTAACATCTTAATAATAAT,,-1.00000000,,,,,,,2.00000000,3.00000000,1.00000000,27.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,36.00000000,1.59292035,0.55000000,33.00000000,,1.00000000,TATTAAGATTAACATCTTAATAATAAT,27.00000000,,ref->het,0.18421053,0.00000000,85.00000000,3.76106195,1.37000000 +345,chr22,50707032,UNK,C,,CT,,-1.00000000,,,,,,,16.00000000,26.00000000,1.00000000,1.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,2.76000000,31.00000000,,15.00000000,T,1.00000000,,ref->het,0.25000000,0.00000000,73.00000000,3.23008850,12.41000000 +346,chr22,50747317,UNK,G,,GTCT,,-1.00000000,,,,,,,1.00000000,2.00000000,1.00000000,3.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,26.00000000,1.15044248,0.31000000,48.00000000,,0.00000000,TCT,3.00000000,,ref->het,0.21428571,0.00000000,79.00000000,3.49557522,6.40000000 +347,chr22,50796327,UNK,CCA,,C,,-1.00000000,,,,,,,0.00000000,15.00000000,2.00000000,2.00000000,0.00000000,0.00000000,ref,1.00000000,0.00000000,0.00000000,17.00000000,0.75221239,2.46000000,32.00000000,,1.00000000,CA,2.00000000,,ref->het,0.13793103,0.00000000,48.00000000,2.12389381,12.76000000 diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.metrics.json b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.metrics.json new file mode 100644 index 0000000..f90b37d --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.metrics.json @@ -0,0 +1 @@ +{"runInfo": [{"value": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF", "key": "commandline"}], "metrics": [{"data": [{"values": [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "string", "id": "types", "label": "types"}, {"values": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "int64", "id": "ambi", "label": "ambi"}, {"values": [674, 674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "int64", "id": "fn", "label": "fn"}, {"values": [36, 36, 9, 9, 13, 4, 1, 0, 9, 9, 13, 4, 1, 0], "type": "int64", "id": "fp", "label": "fp"}, {"values": [1984, 1984, 56, 540, 982, 194, 168, 43, 56, 540, 982, 194, 168, 43], "type": "int64", "id": "total.query", "label": "total.query"}, {"values": [2274, 2274, 12, 426, 837, 140, 147, 38, 12, 426, 837, 140, 147, 38], "type": "int64", "id": "total.truth", "label": "total.truth"}, {"values": [1600, 1600, 12, 426, 837, 140, 147, 38, 12, 426, 837, 140, 147, 38], "type": "int64", "id": "tp", "label": "tp"}, {"values": ["indels", "records", "records.0.000000-0.100000", "records.0.100000-0.200000", "records.0.200000-0.300000", "records.0.300000-0.400000", "records.0.400000-0.500000", "records.0.500000-0.600000", "indels.0.000000-0.100000", "indels.0.100000-0.200000", "indels.0.200000-0.300000", "indels.0.300000-0.400000", "indels.0.400000-0.500000", "indels.0.500000-0.600000"], "type": "string", "id": "type", "label": "type"}, {"values": [348, 348, 35, 105, 132, 50, 20, 5, 35, 105, 132, 50, 20, 5], "type": "int64", "id": "unk", "label": "unk"}, {"values": [0.7036059806508356, 0.7036059806508356, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall", "label": "recall"}, {"values": [0.6845864592833382, 0.6845864592833382, 0.7353515306029488, 0.9913780426704333, 0.9956024343471863, 0.9739949706487073, 0.9752178295104192, 0.9074872385841217, 0.7353515306029488, 0.9913780426704333, 0.9956024343471863, 0.9739949706487073, 0.9752178295104192, 0.9074872385841217], "type": "double", "id": "recall_lower", "label": "recall_lower"}, {"values": [0.7221075867247546, 0.7221075867247546, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall_upper", "label": "recall_upper"}, {"values": [0.7036059806508356, 0.7036059806508356, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall2", "label": "recall2"}, {"values": [0.9779951100244498, 0.9779951100244498, 0.5714285714285714, 0.9793103448275862, 0.9847058823529412, 0.9722222222222222, 0.9932432432432432, 1.0, 0.5714285714285714, 0.9793103448275862, 0.9847058823529412, 0.9722222222222222, 0.9932432432432432, 1.0], "type": "double", "id": "precision", "label": "precision"}, {"values": [0.9700180229753866, 0.9700180229753866, 0.36205839517358845, 0.9625821867702706, 0.9747274132341969, 0.9353157617644251, 0.968859085563555, 0.9074872385841217, 0.36205839517358845, 0.9625821867702706, 0.9747274132341969, 0.9353157617644251, 0.968859085563555, 0.9074872385841217], "type": "double", "id": "precision_lower", "label": "precision_lower"}, {"values": [0.9842846465944767, 0.9842846465944767, 0.7625570264369239, 0.9897145828694494, 0.9914009686827736, 0.99055273682604, 1.0, 1.0, 0.7625570264369239, 0.9897145828694494, 0.9914009686827736, 0.99055273682604, 1.0, 1.0], "type": "double", "id": "precision_upper", "label": "precision_upper"}, {"values": [0.17540322580645162, 0.17540322580645162, 0.625, 0.19444444444444445, 0.13441955193482688, 0.25773195876288657, 0.11904761904761904, 0.11627906976744186, 0.625, 0.19444444444444445, 0.13441955193482688, 0.25773195876288657, 0.11904761904761904, 0.11627906976744186], "type": "double", "id": "na", "label": "na"}, {"values": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "type": "double", "id": "ambiguous", "label": "ambiguous"}, {"values": [32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860], "type": "int64", "id": "fp.region.size", "label": "fp.region.size"}, {"values": [1.094262840718493, 1.094262840718493, 0.2735657101796232, 0.2735657101796232, 0.3951504702594558, 0.12158476007983256, 0.03039619001995814, 0.0, 0.2735657101796232, 0.2735657101796232, 0.3951504702594558, 0.12158476007983256, 0.03039619001995814, 0.0], "type": "double", "id": "fp.rate", "label": "fp.rate"}], "properties": [], "type": "Table", "id": "result", "label": "result"}], "version": "v0.3.10", "sampleInfo": [], "name": "som.py.comparison", "parameters": [], "timestamp": "Mon Dec 18 13:57:37 2017", "metadata": {"required": {"version": "v0.3.10", "id": "haplotypes", "module": "som.py", "description": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py generated this JSON file via command line /illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF"}}} \ No newline at end of file diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.stats.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.stats.csv new file mode 100644 index 0000000..7033fe9 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels_af.stats.csv @@ -0,0 +1,15 @@ +,ambi,fn,fp,total.query,total.truth,tp,type,unk,recall,recall_lower,recall_upper,recall2,precision,precision_lower,precision_upper,na,ambiguous,fp.region.size,fp.rate,sompyversion,sompycmd +0,0,674,36,1984,2274,1600,indels,348,0.703605980651,0.684586459283,0.722107586725,0.703605980651,0.977995110024,0.970018022975,0.984284646594,0.175403225806,0.0,32898860,1.09426284072,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +5,0,674,36,1984,2274,1600,records,348,0.703605980651,0.684586459283,0.722107586725,0.703605980651,0.977995110024,0.970018022975,0.984284646594,0.175403225806,0.0,32898860,1.09426284072,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,9,56,12,12,records.0.000000-0.100000,35,1.0,0.735351530603,1.0,1.0,0.571428571429,0.362058395174,0.762557026437,0.625,0.0,32898860,0.27356571018,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,9,540,426,426,records.0.100000-0.200000,105,1.0,0.99137804267,1.0,1.0,0.979310344828,0.96258218677,0.989714582869,0.194444444444,0.0,32898860,0.27356571018,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,13,982,837,837,records.0.200000-0.300000,132,1.0,0.995602434347,1.0,1.0,0.984705882353,0.974727413234,0.991400968683,0.134419551935,0.0,32898860,0.395150470259,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,4,194,140,140,records.0.300000-0.400000,50,1.0,0.973994970649,1.0,1.0,0.972222222222,0.935315761764,0.990552736826,0.257731958763,0.0,32898860,0.12158476008,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,1,168,147,147,records.0.400000-0.500000,20,1.0,0.97521782951,1.0,1.0,0.993243243243,0.968859085564,1.0,0.119047619048,0.0,32898860,0.03039619002,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,43,38,38,records.0.500000-0.600000,5,1.0,0.907487238584,1.0,1.0,1.0,0.907487238584,1.0,0.116279069767,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,9,56,12,12,indels.0.000000-0.100000,35,1.0,0.735351530603,1.0,1.0,0.571428571429,0.362058395174,0.762557026437,0.625,0.0,32898860,0.27356571018,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,9,540,426,426,indels.0.100000-0.200000,105,1.0,0.99137804267,1.0,1.0,0.979310344828,0.96258218677,0.989714582869,0.194444444444,0.0,32898860,0.27356571018,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,13,982,837,837,indels.0.200000-0.300000,132,1.0,0.995602434347,1.0,1.0,0.984705882353,0.974727413234,0.991400968683,0.134419551935,0.0,32898860,0.395150470259,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,4,194,140,140,indels.0.300000-0.400000,50,1.0,0.973994970649,1.0,1.0,0.972222222222,0.935315761764,0.990552736826,0.257731958763,0.0,32898860,0.12158476008,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,1,168,147,147,indels.0.400000-0.500000,20,1.0,0.97521782951,1.0,1.0,0.993243243243,0.968859085564,1.0,0.119047619048,0.0,32898860,0.03039619002,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,43,38,38,indels.0.500000-0.600000,5,1.0,0.907487238584,1.0,1.0,1.0,0.907487238584,1.0,0.116279069767,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_indels.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz -o sompy.strelka_grch38_admix_pass_indels_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.indel --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.features.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.features.csv new file mode 100644 index 0000000..169df9f --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.features.csv @@ -0,0 +1,17566 @@ +,CHROM,POS,tag,REF,REF.truth,ALT,ALT.truth,EVS,FILTER,I.DP_normal,I.DP_tumor,I.T_ALT_RATE,I.count,I.tag,MQ,MQ0,NT,NT_REF,N_AF,N_DP,N_DP_RATE,N_FDP_RATE,N_SDP_RATE,QSS_NT,QUAL,ReadPosRankSum,SNVSB,SomaticEVS,T_AF,T_DP,T_DP_RATE,T_FDP_RATE,T_SDP_RATE,VQSR +0,chr22,11285076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,19.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,74.00000000,0.00000000,0.23000000,0.00000000,,0.15596330,117.00000000,5.17699115,0.06837607,0.00000000,4.57000000 +1,chr22,11285569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.70000000,8.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.12173913,117.00000000,5.17699115,0.01709402,0.00000000,4.36000000 +2,chr22,11285928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.32000000,25.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.13194444,145.00000000,6.41592920,0.00000000,0.00000000,4.72000000 +3,chr22,11286056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,57.65000000,14.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,0.00000000,0.30000000,0.00000000,,0.06617647,136.00000000,6.01769912,0.00000000,0.00000000,4.56000000 +4,chr22,11286320,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.96000000,18.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,0.00000000,-0.58000000,0.00000000,,0.07407407,165.00000000,7.30088496,0.01212121,0.00000000,4.71000000 +5,chr22,11287257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.47000000,4.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,0.00000000,-0.06000000,0.00000000,,0.09316770,164.00000000,7.25663717,0.01829268,0.00000000,4.22000000 +6,chr22,11287766,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,2.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.10897436,158.00000000,6.99115044,0.00632911,0.00000000,4.51000000 +7,chr22,11289275,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.10000000,13.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,0.00000000,-0.32000000,0.00000000,,0.05673759,141.00000000,6.23893805,0.00000000,0.00000000,4.66000000 +8,chr22,11295957,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.37000000,47.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,-1.63000000,0.00000000,,0.05645161,126.00000000,5.57522124,0.01587302,0.00000000,4.71000000 +9,chr22,11296090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.59000000,57.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,1.36000000,0.00000000,,0.08064516,126.00000000,5.57522124,0.01587302,0.00000000,4.41000000 +10,chr22,11305686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.13000000,5.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.12295082,123.00000000,5.44247788,0.00813008,0.00000000,4.69000000 +11,chr22,11312440,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.49000000,10.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,0.00000000,0.57000000,0.00000000,,0.10000000,163.00000000,7.21238938,0.01840491,0.00000000,4.34000000 +12,chr22,11312733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.91000000,32.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-0.94000000,0.00000000,,0.06382979,142.00000000,6.28318584,0.00704225,0.00000000,4.98000000 +13,chr22,11313880,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.35000000,11.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.10869565,140.00000000,6.19469027,0.01428571,0.00000000,4.67000000 +14,chr22,11320062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.06000000,12.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.05511811,129.00000000,5.70796460,0.01550388,0.00000000,4.55000000 +15,chr22,11326122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.82000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,73.00000000,0.00000000,1.73000000,0.00000000,,0.08724832,152.00000000,6.72566372,0.01315789,0.00000000,4.62000000 +16,chr22,11326179,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.97000000,5.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.45000000,0.00000000,,0.05384615,130.00000000,5.75221239,0.00000000,0.00000000,4.82000000 +17,chr22,11336505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.51000000,23.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.09090909,77.00000000,3.40707965,0.00000000,0.00000000,5.47000000 +18,chr22,11336606,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,53.86000000,27.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,4.80000000 +19,chr22,11337405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.03000000,12.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,-1.59000000,0.00000000,,0.06837607,117.00000000,5.17699115,0.00000000,0.00000000,5.52000000 +20,chr22,11337545,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,46.92000000,118.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.11111111,128.00000000,5.66371681,0.01562500,0.00000000,4.33000000 +21,chr22,11339215,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,50.41000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.58000000,0.00000000,,0.09202454,172.00000000,7.61061947,0.04651163,0.00000000,4.17000000 +22,chr22,11343944,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,48.11000000,70.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.07692308,91.00000000,4.02654867,0.00000000,0.00000000,5.41000000 +23,chr22,11345105,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,54.41000000,33.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.05042017,120.00000000,5.30973451,0.00833333,0.00000000,5.04000000 +24,chr22,11346908,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.78000000,6.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.11764706,154.00000000,6.81415929,0.00000000,0.00000000,4.66000000 +25,chr22,11348653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,43.96000000,145.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,0.00000000,-1.42000000,0.00000000,,0.09600000,128.00000000,5.66371681,0.01562500,0.00000000,4.69000000 +26,chr22,11354156,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,48.54000000,85.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.06722689,121.00000000,5.35398230,0.01652893,0.00000000,4.84000000 +27,chr22,11359091,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.41000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,0.00000000,-2.03000000,0.00000000,,0.11904762,129.00000000,5.70796460,0.00775194,0.00000000,4.65000000 +28,chr22,11360241,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,42.57000000,70.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.39000000,0.00000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,4.68000000 +29,chr22,11364387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.57000000,17.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.10563380,143.00000000,6.32743363,0.00699301,0.00000000,4.48000000 +30,chr22,11368511,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,-1.04000000,0.00000000,,0.08333333,160.00000000,7.07964602,0.01875000,0.00000000,4.28000000 +31,chr22,11368741,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.28000000,5.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.12025316,159.00000000,7.03539823,0.00628931,0.00000000,4.79000000 +32,chr22,11371678,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.63000000,24.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.08593750,129.00000000,5.70796460,0.00775194,0.00000000,4.83000000 +33,chr22,11372222,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,-1.78000000,0.00000000,,0.07042254,146.00000000,6.46017699,0.02054795,0.00000000,4.79000000 +34,chr22,11372223,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,-1.98000000,0.00000000,,0.07092199,145.00000000,6.41592920,0.02068966,0.00000000,4.81000000 +35,chr22,11373423,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.30000000,7.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,1.38000000,0.00000000,,0.05681818,177.00000000,7.83185841,0.00000000,0.00000000,4.74000000 +36,chr22,11549137,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,51.74000000,60.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.13492063,128.00000000,5.66371681,0.01562500,0.00000000,4.96000000 +37,chr22,11551449,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,47.65000000,88.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.15178571,113.00000000,5.00000000,0.00884956,0.00000000,5.19000000 +38,chr22,11552731,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,46.82000000,127.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.03571429,0.00000000,73.00000000,0.00000000,-3.24000000,0.00000000,,0.09459459,155.00000000,6.85840708,0.03870968,0.00000000,4.43000000 +39,chr22,11553037,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.20000000,13.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,75.00000000,0.00000000,-0.52000000,0.00000000,,0.14173228,129.00000000,5.70796460,0.01550388,0.00000000,4.51000000 +40,chr22,11561388,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,55.33000000,30.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.09523810,127.00000000,5.61946903,0.00000000,0.00000000,4.81000000 +41,chr22,11563450,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,47.09000000,118.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,-0.57000000,0.00000000,,0.11851852,138.00000000,6.10619469,0.01449275,0.00000000,4.15000000 +42,chr22,11563459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.02000000,108.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.11023622,128.00000000,5.66371681,0.00781250,0.00000000,4.13000000 +43,chr22,11565067,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,51.18000000,67.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,-0.36000000,0.00000000,,0.10743802,126.00000000,5.57522124,0.03968254,0.00000000,4.23000000 +44,chr22,11569839,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,4.88000000,,0.05217391,116.00000000,5.13274336,0.00862069,0.00000000,3.93000000 +45,chr22,11573112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.16793893,133.00000000,5.88495575,0.01503759,0.00000000,4.96000000 +46,chr22,11575095,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,49.40000000,82.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.17829457,132.00000000,5.84070796,0.02272727,0.00000000,5.33000000 +47,chr22,11575303,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.54000000,39.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.05172414,0.00000000,74.00000000,0.00000000,-1.91000000,0.00000000,,0.08510638,149.00000000,6.59292035,0.05369128,0.00000000,4.26000000 +48,chr22,11576007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.91000000,205.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.09944751,186.00000000,8.23008850,0.02150538,0.00000000,4.62000000 +49,chr22,11576292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,44.77000000,144.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,-0.76000000,0.00000000,,0.08053691,157.00000000,6.94690265,0.05095541,0.00000000,4.23000000 +50,chr22,11576429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.86000000,15.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,0.00000000,2.69000000,0.00000000,,0.12318841,139.00000000,6.15044248,0.00719424,0.00000000,4.19000000 +51,chr22,11577156,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.91000000,20.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,0.00000000,1.92000000,0.00000000,,0.08870968,128.00000000,5.66371681,0.02343750,0.00000000,4.60000000 +52,chr22,11577481,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.63000000,1.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,0.00000000,-0.85000000,0.00000000,,0.11678832,137.00000000,6.06194690,0.00000000,0.00000000,4.83000000 +53,chr22,11578805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,-0.65000000,0.00000000,,0.09523810,149.00000000,6.59292035,0.00671141,0.00000000,4.68000000 +54,chr22,11585744,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.05000000,137.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,81.00000000,0.00000000,-0.05000000,0.00000000,,0.09740260,157.00000000,6.94690265,0.01910828,0.00000000,4.21000000 +55,chr22,11587347,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.30000000,11.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,0.00000000,0.20000000,0.00000000,,0.07092199,142.00000000,6.28318584,0.00000000,0.00000000,4.66000000 +56,chr22,11587818,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.24000000,55.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.05691057,124.00000000,5.48672566,0.00806452,0.00000000,4.53000000 +57,chr22,11587846,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,53.34000000,48.00000000,ref,1.00000000,0.01785714,56.00000000,2.47787611,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.07317073,125.00000000,5.53097345,0.01600000,0.00000000,4.38000000 +58,chr22,11595008,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-1.14000000,0.00000000,,0.10000000,120.00000000,5.30973451,0.00000000,0.00000000,5.34000000 +59,chr22,11595258,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.44000000,11.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,79.00000000,0.00000000,-0.16000000,0.00000000,,0.13855422,171.00000000,7.56637168,0.02923977,0.00000000,4.64000000 +60,chr22,11604516,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.96000000,8.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,1.42000000,0.00000000,,0.09937888,161.00000000,7.12389381,0.00000000,0.00000000,4.80000000 +61,chr22,11605295,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.46000000,10.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.16541353,137.00000000,6.06194690,0.02919708,0.00000000,4.79000000 +62,chr22,11606438,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.47000000,9.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,74.00000000,0.00000000,-0.30000000,0.00000000,,0.09489051,141.00000000,6.23893805,0.02836879,0.00000000,4.34000000 +63,chr22,11606630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.49000000,10.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.11363636,134.00000000,5.92920354,0.00746269,0.00000000,4.32000000 +64,chr22,11608591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.23000000,6.00000000,ref,1.00000000,0.01587302,63.00000000,2.78761062,0.00000000,0.00000000,68.00000000,0.00000000,-1.26000000,0.00000000,,0.08588957,163.00000000,7.21238938,0.00000000,0.00000000,4.98000000 +65,chr22,11609464,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,23.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,0.00000000,0.01000000,0.00000000,,0.09600000,125.00000000,5.53097345,0.00000000,0.00000000,4.93000000 +66,chr22,11613423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.42000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,-0.49000000,0.00000000,,0.09859155,143.00000000,6.32743363,0.00699301,0.00000000,4.32000000 +67,chr22,11613458,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.89000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,80.00000000,0.00000000,-1.28000000,0.00000000,,0.15000000,144.00000000,6.37168142,0.01388889,0.00000000,5.29000000 +68,chr22,11613832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,1.36000000,0.00000000,,0.10526316,153.00000000,6.76991150,0.00653595,0.00000000,4.55000000 +69,chr22,11615681,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.02083333,48.00000000,2.12389381,0.00000000,0.00000000,68.00000000,0.00000000,-1.48000000,0.00000000,,0.13084112,113.00000000,5.00000000,0.05309735,0.00000000,4.48000000 +70,chr22,11619513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.10000000,0.00000000,62.00000000,0.00000000,-0.73000000,0.00000000,,0.06428571,150.00000000,6.63716814,0.06666667,0.00000000,4.05000000 +71,chr22,11620530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.15503876,130.00000000,5.75221239,0.00769231,0.00000000,4.97000000 +72,chr22,11620623,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.85000000,1.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.12318841,143.00000000,6.32743363,0.03496503,0.00000000,4.73000000 +73,chr22,11621062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.84000000,1.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,0.00000000,-0.34000000,0.00000000,,0.09375000,130.00000000,5.75221239,0.01538462,0.00000000,4.38000000 +74,chr22,11621530,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,74.00000000,0.00000000,-0.78000000,0.00000000,,0.09016393,132.00000000,5.84070796,0.06818182,0.00000000,4.12000000 +75,chr22,11621581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.06382979,0.00000000,69.00000000,0.00000000,-0.13000000,0.00000000,,0.11403509,120.00000000,5.30973451,0.05000000,0.00000000,4.12000000 +76,chr22,11621797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.98000000,13.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,72.00000000,0.00000000,-0.86000000,0.00000000,,0.13076923,133.00000000,5.88495575,0.00751880,0.00000000,5.13000000 +77,chr22,11622519,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.26000000,5.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.15819209,178.00000000,7.87610619,0.00561798,0.00000000,5.18000000 +78,chr22,11628685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.01515152,69.00000000,3.05309735,0.04347826,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.13291139,166.00000000,7.34513274,0.04216867,0.00000000,4.50000000 +79,chr22,11629674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.85000000,0.00000000,,0.10563380,145.00000000,6.41592920,0.02068966,0.00000000,4.49000000 +80,chr22,11801429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,27.72000000,105.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,0.00000000,-0.73000000,0.00000000,,0.42424242,34.00000000,1.50442478,0.02941176,0.00000000,3.00000000 +81,chr22,12028384,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.90000000,10.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-0.31000000,0.00000000,,0.11904762,87.00000000,3.84955752,0.03448276,0.00000000,5.11000000 +82,chr22,12033223,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,52.25000000,29.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.87000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,5.09000000 +83,chr22,12205210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.83000000,47.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.07812500,129.00000000,5.70796460,0.00775194,0.00000000,4.61000000 +84,chr22,12206405,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,56.46000000,11.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,2.44000000,0.00000000,,0.08805031,159.00000000,7.03539823,0.00000000,0.00000000,4.43000000 +85,chr22,12381527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.02000000,16.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.08653846,111.00000000,4.91150442,0.06306306,0.00000000,4.22000000 +86,chr22,12383406,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.63000000,42.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.04000000,0.00000000,,0.09649123,117.00000000,5.17699115,0.00854701,0.00000000,4.61000000 +87,chr22,12385011,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.97000000,5.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,0.00000000,0.43000000,0.00000000,,0.13333333,138.00000000,6.10619469,0.01449275,0.00000000,4.90000000 +88,chr22,12390696,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,48.85000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.08196721,125.00000000,5.53097345,0.01600000,0.00000000,4.35000000 +89,chr22,12394258,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,55.90000000,28.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-0.73000000,0.00000000,,0.11278195,133.00000000,5.88495575,0.00000000,0.00000000,4.80000000 +90,chr22,12395331,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.40000000,42.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.96000000,0.00000000,,0.15000000,102.00000000,4.51327434,0.01960784,0.00000000,5.18000000 +91,chr22,12402195,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.12000000,19.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,-0.86000000,0.00000000,,0.12676056,142.00000000,6.28318584,0.00000000,0.00000000,5.14000000 +92,chr22,12404198,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,49.55000000,83.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.14400000,126.00000000,5.57522124,0.00793651,0.00000000,4.68000000 +93,chr22,12405704,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.22000000,20.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,0.00000000,-1.60000000,0.00000000,,0.08053691,151.00000000,6.68141593,0.00662252,0.00000000,4.70000000 +94,chr22,12410012,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.57000000,3.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.91000000,0.00000000,,0.11612903,156.00000000,6.90265487,0.00641026,0.00000000,4.77000000 +95,chr22,12412870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.71000000,19.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,-2.08000000,0.00000000,,0.11811024,129.00000000,5.70796460,0.00775194,0.00000000,4.55000000 +96,chr22,12417262,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.92000000,32.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.52000000,0.00000000,,0.09278351,98.00000000,4.33628319,0.01020408,0.00000000,5.10000000 +97,chr22,12420898,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,48.76000000,91.00000000,ref,1.00000000,0.02173913,47.00000000,2.07964602,0.02127660,0.00000000,67.00000000,0.00000000,-2.06000000,0.00000000,,0.12598425,131.00000000,5.79646018,0.00763359,0.00000000,4.67000000 +98,chr22,12423826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.10526316,172.00000000,7.61061947,0.00581395,0.00000000,4.49000000 +99,chr22,12425325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,45.95000000,94.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-1.62000000,0.00000000,,0.06862745,105.00000000,4.64601770,0.01904762,0.00000000,4.45000000 +100,chr22,12425547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.29000000,32.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,0.00000000,-0.27000000,0.00000000,,0.06194690,115.00000000,5.08849558,0.01739130,0.00000000,4.36000000 +101,chr22,12428656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.34000000,27.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.97000000,0.00000000,,0.08965517,146.00000000,6.46017699,0.00684932,0.00000000,4.39000000 +102,chr22,12433750,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,38.56000000,268.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,0.00000000,1.64000000,0.00000000,,0.07692308,130.00000000,5.75221239,0.00000000,0.00000000,4.64000000 +103,chr22,12437876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.08000000,6.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,0.00000000,-0.80000000,0.00000000,,0.08510638,141.00000000,6.23893805,0.00000000,0.00000000,4.85000000 +104,chr22,12489557,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.51000000,8.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.00000000,0.00000000,98.00000000,0.00000000,0.64000000,0.00000000,,0.05136986,293.00000000,12.96460177,0.00341297,0.00000000,4.52000000 +105,chr22,12496530,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,43.85000000,67.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.17000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.35000000 +106,chr22,12504464,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,43.54000000,69.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.09000000,0.00000000,,0.12500000,121.00000000,5.35398230,0.00826446,0.00000000,4.97000000 +107,chr22,12509138,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,40.45000000,28.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.16000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.21000000 +108,chr22,12512435,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,31.80000000,98.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,-1.59000000,0.00000000,,0.10416667,50.00000000,2.21238938,0.02000000,0.00000000,3.92000000 +109,chr22,12517536,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,38.78000000,43.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.25000000,2.98000000,,0.09836066,62.00000000,2.74336283,0.01612903,0.00000000,3.63000000 +110,chr22,12520370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.45000000,13.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.27272727,66.00000000,2.92035398,0.00000000,0.00000000,6.47000000 +111,chr22,12522110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,40.00000000,124.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-2.20000000,0.00000000,,0.16346154,107.00000000,4.73451327,0.01869159,0.00000000,5.85000000 +112,chr22,12523880,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,36.61000000,63.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,0.00000000,0.96000000,0.00000000,,0.10416667,49.00000000,2.16814159,0.02040816,0.00000000,4.01000000 +113,chr22,12524052,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.30000000,64.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.89000000,0.00000000,,0.28571429,63.00000000,2.78761062,0.00000000,0.00000000,2.82000000 +114,chr22,12525295,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,40.39000000,43.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-1.44000000,0.00000000,,0.10752688,93.00000000,4.11504425,0.00000000,0.00000000,5.29000000 +115,chr22,12548624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,30.37000000,200.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.85000000,0.00000000,,0.13559322,60.00000000,2.65486726,0.01666667,0.00000000,5.48000000 +116,chr22,12576050,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,48.94000000,40.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.54000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.63000000 +117,chr22,12578780,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,48.35000000,27.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.12307692,68.00000000,3.00884956,0.02941176,0.00000000,5.22000000 +118,chr22,12580411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,34.80000000,59.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.00000000,0.00000000,5.74000000 +119,chr22,12587315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,29.23000000,240.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.19000000 +120,chr22,12588978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,32.94000000,333.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,0.00000000,0.89000000,0.00000000,,0.11023622,129.00000000,5.70796460,0.01550388,0.00000000,4.32000000 +121,chr22,12590414,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.41000000,18.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,1.79000000,0.00000000,,0.11042945,165.00000000,7.30088496,0.01212121,0.00000000,4.36000000 +122,chr22,12591451,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,50.43000000,81.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.12000000,154.00000000,6.81415929,0.02597403,0.00000000,4.35000000 +123,chr22,12594471,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,40.33000000,122.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.07812500,195.00000000,8.62831858,0.01025641,0.00000000,4.80000000 +124,chr22,12599774,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,48.63000000,56.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.08196721,0.00000000,75.00000000,0.00000000,-1.48000000,0.00000000,,0.07831325,175.00000000,7.74336283,0.04571429,0.00000000,4.03000000 +125,chr22,12600005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.30000000,27.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,78.00000000,0.00000000,-0.79000000,0.00000000,,0.10179641,169.00000000,7.47787611,0.00591716,0.00000000,4.28000000 +126,chr22,12602254,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.86000000,1.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.99000000,0.00000000,,0.08227848,160.00000000,7.07964602,0.00625000,0.00000000,4.57000000 +127,chr22,12603867,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,47.68000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,0.00000000,0.21000000,0.00000000,,0.10000000,142.00000000,6.28318584,0.01408451,0.00000000,4.47000000 +128,chr22,12610913,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,44.82000000,175.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,82.00000000,0.00000000,2.50000000,0.00000000,,0.13372093,174.00000000,7.69911504,0.01149425,0.00000000,4.40000000 +129,chr22,12614510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.78000000,19.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.60000000,0.00000000,,0.10156250,129.00000000,5.70796460,0.00775194,0.00000000,4.86000000 +130,chr22,12616073,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.90000000,46.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,75.00000000,0.00000000,1.22000000,0.00000000,,0.14864865,149.00000000,6.59292035,0.00671141,0.00000000,4.45000000 +131,chr22,12618190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.18000000,32.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.09146341,165.00000000,7.30088496,0.00606061,0.00000000,4.34000000 +132,chr22,12623218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,9.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,86.00000000,0.00000000,0.41000000,0.00000000,,0.15469613,185.00000000,8.18584071,0.01081081,0.00000000,4.74000000 +133,chr22,12624776,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.00000000,8.00000000,ref,1.00000000,0.01369863,73.00000000,3.23008850,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.10828025,158.00000000,6.99115044,0.00632911,0.00000000,4.63000000 +134,chr22,12628009,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,49.17000000,63.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,2.31000000,0.00000000,,0.08571429,140.00000000,6.19469027,0.00000000,0.00000000,4.46000000 +135,chr22,12632105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,51.55000000,61.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,69.00000000,0.00000000,-1.80000000,0.00000000,,0.13600000,126.00000000,5.57522124,0.00793651,0.00000000,4.64000000 +136,chr22,12634670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.77000000,28.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.09473684,98.00000000,4.33628319,0.03061224,0.00000000,4.54000000 +137,chr22,12636010,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.95000000,17.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.13235294,136.00000000,6.01769912,0.00000000,0.00000000,4.78000000 +138,chr22,12638532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,51.74000000,48.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.09302326,134.00000000,5.92920354,0.03731343,0.00000000,4.14000000 +139,chr22,12639209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.60000000,52.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,0.00000000,0.00000000,0.00000000,,0.09090909,155.00000000,6.85840708,0.00645161,0.00000000,4.21000000 +140,chr22,12699327,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.28000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,-1.01000000,0.00000000,,0.06976744,131.00000000,5.79646018,0.01526718,0.00000000,4.67000000 +141,chr22,15157537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.38000000,15.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,1.37000000,0.00000000,,0.30985915,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +142,chr22,15158777,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,41.73000000,6.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.68000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,5.64000000 +143,chr22,15158812,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,43.96000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.52000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.08000000 +144,chr22,15159746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,42.35000000,24.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.30000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.26000000 +145,chr22,15166759,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.96000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,6.20000000 +146,chr22,15222900,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,40.12000000,34.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.80000000,0.00000000,,0.16666667,54.00000000,2.38938053,0.00000000,0.00000000,5.35000000 +147,chr22,15246477,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,26.15000000,13.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,0.00000000,-0.17000000,0.00000000,,0.36842105,19.00000000,0.84070796,0.00000000,0.00000000,3.45000000 +148,chr22,15279513,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,45.74000000,13.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.45000000 +149,chr22,15284540,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,45.05000000,25.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.08000000,0.00000000,,0.15000000,40.00000000,1.76991150,0.00000000,0.00000000,4.33000000 +150,chr22,15295598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.62000000,20.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.50000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,4.19000000 +151,chr22,15313445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,42.53000000,36.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-1.79000000,0.00000000,,0.07228916,84.00000000,3.71681416,0.01190476,0.00000000,5.34000000 +152,chr22,15330107,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,46.15000000,24.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,36.00000000,0.00000000,0.92000000,0.00000000,,0.37777778,45.00000000,1.99115044,0.00000000,0.00000000,3.64000000 +153,chr22,15346042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.96000000,8.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +154,chr22,15346225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.68000000,27.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.90000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,4.67000000 +155,chr22,15368773,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.29000000,16.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,16.00000000,0.00000000,0.03000000,0.00000000,,0.35185185,55.00000000,2.43362832,0.01818182,0.00000000,3.49000000 +156,chr22,15404376,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,16.05000000,40.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,-0.87000000,0.00000000,,0.50000000,8.00000000,0.35398230,0.00000000,0.00000000,3.68000000 +157,chr22,15420791,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,23.03000000,11.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,0.00000000,0.07000000,0.00000000,,0.38461538,13.00000000,0.57522124,0.00000000,0.00000000,3.60000000 +158,chr22,15438668,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,50.12000000,16.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.11000000 +159,chr22,15448394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,36.91000000,7.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,22.00000000,0.00000000,0.00000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,3.11000000 +160,chr22,15448968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.28000000,18.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,7.06000000 +161,chr22,15449522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.22000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.50000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.58000000 +162,chr22,15460427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,32.44000000,28.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.47000000,0.00000000,,0.16666667,42.00000000,1.85840708,0.00000000,0.00000000,2.76000000 +163,chr22,15461412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,32.02000000,9.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,0.00000000,-0.62000000,0.00000000,,0.34482759,29.00000000,1.28318584,0.00000000,0.00000000,3.49000000 +164,chr22,15463803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,36.29000000,24.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,53.00000000,0.00000000,-0.65000000,0.00000000,,0.32558140,43.00000000,1.90265487,0.00000000,0.00000000,4.19000000 +165,chr22,15479576,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,36.02000000,49.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-1.44000000,0.00000000,,0.08771930,58.00000000,2.56637168,0.01724138,0.00000000,5.03000000 +166,chr22,15488724,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,40.15000000,36.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.64000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,4.86000000 +167,chr22,15515691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.21000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.33000000,0.00000000,,0.17307692,53.00000000,2.34513274,0.01886792,0.00000000,6.38000000 +168,chr22,15518376,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.31000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.14000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +169,chr22,15526718,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,33.23000000,35.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.54000000,0.00000000,,0.19148936,47.00000000,2.07964602,0.00000000,0.00000000,2.80000000 +170,chr22,15531753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,33.36000000,58.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.40000000 +171,chr22,15552149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,45.24000000,16.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.06000000,0.00000000,,0.14457831,84.00000000,3.71681416,0.01190476,0.00000000,5.68000000 +172,chr22,15557251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,48.85000000,31.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,63.00000000,0.00000000,0.58000000,0.00000000,,0.14634146,86.00000000,3.80530973,0.04651163,0.00000000,4.80000000 +173,chr22,15563787,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,44.80000000,50.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.21000000,0.00000000,,0.16346154,104.00000000,4.60176991,0.00000000,0.00000000,6.28000000 +174,chr22,15574482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.64000000,38.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,1.73000000,0.00000000,,0.10000000,94.00000000,4.15929204,0.04255319,0.00000000,4.56000000 +175,chr22,15578060,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.32000000,5.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,81.00000000,0.00000000,-0.42000000,0.00000000,,0.08374384,203.00000000,8.98230088,0.00000000,0.00000000,4.66000000 +176,chr22,15584651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.66000000,10.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.64000000,0.00000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,6.45000000 +177,chr22,15593019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,26.54000000,78.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.33000000,0.00000000,,0.19512195,41.00000000,1.81415929,0.00000000,0.00000000,5.92000000 +178,chr22,15613639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.71000000,26.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,1.94000000,0.00000000,,0.12222222,93.00000000,4.11504425,0.02150538,0.00000000,5.06000000 +179,chr22,15614932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,43.91000000,23.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,0.82000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.90000000 +180,chr22,15616968,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,39.55000000,42.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.78000000,0.00000000,,0.21311475,61.00000000,2.69911504,0.00000000,0.00000000,5.81000000 +181,chr22,15626511,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.08000000,18.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.09389671,216.00000000,9.55752212,0.01388889,0.00000000,4.40000000 +182,chr22,15628399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,53.88000000,12.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,81.00000000,0.00000000,0.83000000,0.00000000,,0.06250000,211.00000000,9.33628319,0.01421801,0.00000000,4.53000000 +183,chr22,15628531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.24000000,11.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.06159420,276.00000000,12.21238938,0.00000000,0.00000000,4.68000000 +184,chr22,15630423,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,56.76000000,8.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,1.08000000,0.00000000,,0.06403941,206.00000000,9.11504425,0.01456311,0.00000000,4.62000000 +185,chr22,15636469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.18000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.99000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,7.01000000 +186,chr22,15636539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.90000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.33000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.49000000 +187,chr22,15665506,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.25000000,8.00000000,ref,1.00000000,0.01851852,55.00000000,2.43362832,0.01818182,0.00000000,76.00000000,0.00000000,-1.22000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.00000000,0.00000000,5.83000000 +188,chr22,15726861,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,50.99000000,35.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.16666667,0.00000000,72.00000000,0.00000000,-1.33000000,0.00000000,,0.18072289,95.00000000,4.20353982,0.12631579,0.00000000,5.81000000 +189,chr22,15757486,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,30.97000000,64.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.80000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.44000000 +190,chr22,15772448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.14000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.16161616,100.00000000,4.42477876,0.00000000,0.00000000,5.66000000 +191,chr22,15807197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.33000000,24.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.11627907,88.00000000,3.89380531,0.02272727,0.00000000,5.20000000 +192,chr22,15841260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.74000000,14.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00000000,0.00000000,97.00000000,0.00000000,-0.27000000,0.00000000,,0.05263158,249.00000000,11.01769912,0.00803213,0.00000000,4.51000000 +193,chr22,15841336,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.12000000,16.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.00000000,0.00000000,95.00000000,0.00000000,1.40000000,0.00000000,,0.05932203,238.00000000,10.53097345,0.00840336,0.00000000,4.42000000 +194,chr22,15854799,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,33.56000000,58.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,0.00000000,-0.38000000,0.00000000,,0.06315789,96.00000000,4.24778761,0.01041667,0.00000000,5.11000000 +195,chr22,15862589,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,49.98000000,34.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.08333333,193.00000000,8.53982301,0.00518135,0.00000000,4.39000000 +196,chr22,15863808,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,55.95000000,40.00000000,ref,1.00000000,0.01265823,87.00000000,3.84955752,0.09195402,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.07216495,210.00000000,9.29203540,0.07619048,0.00000000,4.34000000 +197,chr22,15896335,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,33.73000000,45.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.09345794,109.00000000,4.82300885,0.01834862,0.00000000,4.80000000 +198,chr22,15920760,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.68000000,20.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,71.00000000,0.00000000,-0.32000000,0.00000000,,0.12359551,90.00000000,3.98230088,0.01111111,0.00000000,4.46000000 +199,chr22,15946380,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,42.75000000,124.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-3.01000000,0.00000000,,0.13953488,86.00000000,3.80530973,0.00000000,0.00000000,5.98000000 +200,chr22,16039493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,16.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.38000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,5.75000000 +201,chr22,16062726,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.92000000,18.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.90000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.03157895,0.00000000,6.44000000 +202,chr22,16086927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-1.94000000,0.00000000,,0.12121212,67.00000000,2.96460177,0.00000000,0.00000000,5.42000000 +203,chr22,16091132,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.47000000 +204,chr22,16104021,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.88000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,4.76000000 +205,chr22,16108248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.49000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.02777778,0.00000000,6.27000000 +206,chr22,16115191,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +207,chr22,16122492,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,49.00000000,0.00000000,-1.58000000,0.00000000,,0.46666667,77.00000000,3.40707965,0.02597403,0.00000000,4.41000000 +208,chr22,16122598,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.31000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.54000000,0.00000000,,0.48717949,78.00000000,3.45132743,0.00000000,0.00000000,4.51000000 +209,chr22,16122710,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.09000000,0.00000000,,0.47540984,64.00000000,2.83185841,0.03125000,0.00000000,8.24000000 +210,chr22,16122760,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.45000000,0.00000000,,0.57894737,57.00000000,2.52212389,0.00000000,0.00000000,8.77000000 +211,chr22,16122942,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.45238095,84.00000000,3.71681416,0.00000000,0.00000000,7.85000000 +212,chr22,16123197,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.16000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.42000000,0.00000000,,0.40000000,65.00000000,2.87610619,0.00000000,0.00000000,8.66000000 +213,chr22,16123677,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.54000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.06000000 +214,chr22,16123983,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,53.05000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,54.00000000,2.38938053,0.00000000,0.00000000,4.36000000 +215,chr22,16123984,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.05000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,54.00000000,2.38938053,0.00000000,0.00000000,4.36000000 +216,chr22,16124266,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.30000000 +217,chr22,16124352,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.25000000,0.00000000,,0.45098039,52.00000000,2.30088496,0.01923077,0.00000000,6.10000000 +218,chr22,16124604,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,31.00000000,0.00000000,0.37000000,0.00000000,,0.46031746,73.00000000,3.23008850,0.12328767,0.00000000,3.92000000 +219,chr22,16124792,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.63000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,0.94000000,0.00000000,,0.55555556,55.00000000,2.43362832,0.01818182,0.00000000,4.32000000 +220,chr22,16124801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-2.51000000,0.00000000,,0.27272727,55.00000000,2.43362832,0.00000000,0.00000000,7.07000000 +221,chr22,16124873,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.45000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.04000000,0.00000000,,0.43103448,59.00000000,2.61061947,0.01694915,0.00000000,7.57000000 +222,chr22,16124912,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.14000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,4.20000000 +223,chr22,16124959,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.75000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-2.37000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,4.26000000 +224,chr22,16125120,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.32000000,0.00000000,,0.48000000,75.00000000,3.31858407,0.00000000,0.00000000,3.59000000 +225,chr22,16125374,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.59000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.59000000,0.00000000,,0.54098361,62.00000000,2.74336283,0.01612903,0.00000000,3.63000000 +226,chr22,16125386,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.85000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,0.42000000,0.00000000,,0.56451613,64.00000000,2.83185841,0.03125000,0.00000000,3.60000000 +227,chr22,16125535,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.95000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,0.51000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.01408451,0.00000000,4.31000000 +228,chr22,16125941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.84000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,8.01000000 +229,chr22,16126243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.65000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,6.02000000 +230,chr22,16126269,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.45000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.61000000 +231,chr22,16127334,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.41000000,16.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.56923077,66.00000000,2.92035398,0.01515152,0.00000000,7.53000000 +232,chr22,16127694,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.01000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.65000000,0.00000000,,0.31481481,60.00000000,2.65486726,0.10000000,0.00000000,6.68000000 +233,chr22,16128386,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,1.00000000,0.00000000,,0.29411765,74.00000000,3.27433628,0.08108108,0.00000000,6.09000000 +234,chr22,16128396,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.33333333,76.00000000,3.36283186,0.09210526,0.00000000,7.96000000 +235,chr22,16128968,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.63000000,0.00000000,,0.51807229,86.00000000,3.80530973,0.03488372,0.00000000,8.14000000 +236,chr22,16129094,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-1.89000000,0.00000000,,0.45454545,58.00000000,2.56637168,0.05172414,0.00000000,4.30000000 +237,chr22,16129577,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.77000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,37.00000000,0.00000000,0.39000000,0.00000000,,0.53125000,64.00000000,2.83185841,0.00000000,0.00000000,3.75000000 +238,chr22,16129604,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.64000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,0.13000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.01587302,0.00000000,3.95000000 +239,chr22,16129626,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,36.00000000,0.00000000,0.56000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.00000000,0.00000000,3.69000000 +240,chr22,16130136,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.88000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,98.00000000,0.00000000,1.17000000,0.00000000,,0.40845070,72.00000000,3.18584071,0.01388889,0.00000000,7.77000000 +241,chr22,16130169,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,0.00000000,2.45000000,0.00000000,,0.34285714,71.00000000,3.14159292,0.01408451,0.00000000,13.20000000 +242,chr22,16130328,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.91000000,0.00000000,,0.45762712,59.00000000,2.61061947,0.00000000,0.00000000,8.08000000 +243,chr22,16130580,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,57.78000000,8.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,21.00000000,0.00000000,-0.39000000,0.00000000,,0.38888889,74.00000000,3.27433628,0.02702703,0.00000000,3.14000000 +244,chr22,16130638,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.47000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.00000000,0.00000000,7.95000000 +245,chr22,16131250,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,-2.46000000,0.00000000,,0.45454545,90.00000000,3.98230088,0.00000000,0.00000000,8.67000000 +246,chr22,16131347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,0.20000000,0.00000000,,0.48387097,94.00000000,4.15929204,0.01063830,0.00000000,4.18000000 +247,chr22,16131932,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.48000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.37500000,89.00000000,3.93805310,0.01123596,0.00000000,8.44000000 +248,chr22,16132140,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,-0.48000000,0.00000000,,0.32467532,77.00000000,3.40707965,0.00000000,0.00000000,8.72000000 +249,chr22,16132677,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,0.41000000,0.00000000,,0.32835821,69.00000000,3.05309735,0.02898551,0.00000000,4.47000000 +250,chr22,16132814,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-2.28000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,8.52000000 +251,chr22,16132845,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.88000000,0.00000000,,0.46052632,76.00000000,3.36283186,0.00000000,0.00000000,5.99000000 +252,chr22,16132992,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.70000000,0.00000000,,0.47619048,86.00000000,3.80530973,0.02325581,0.00000000,8.23000000 +253,chr22,16133090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.75000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,7.20000000 +254,chr22,16133180,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,0.65000000,0.00000000,,0.39062500,64.00000000,2.83185841,0.00000000,0.00000000,6.44000000 +255,chr22,16133375,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.35000000,2.00000000,ref,1.00000000,0.05882353,17.00000000,0.75221239,0.00000000,0.00000000,5.00000000,0.00000000,-1.86000000,0.00000000,,0.33783784,74.00000000,3.27433628,0.00000000,0.00000000,3.24000000 +256,chr22,16133434,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,53.00000000,0.00000000,0.31000000,0.00000000,,0.36111111,74.00000000,3.27433628,0.02702703,0.00000000,4.89000000 +257,chr22,16133506,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.08000000,0.00000000,,0.30508475,61.00000000,2.69911504,0.01639344,0.00000000,6.98000000 +258,chr22,16133554,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.44000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.28571429,49.00000000,2.16814159,0.00000000,0.00000000,6.57000000 +259,chr22,16133603,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.67000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-1.44000000,0.00000000,,0.31250000,64.00000000,2.83185841,0.00000000,0.00000000,8.05000000 +260,chr22,16133642,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.62000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,40.00000000,0.00000000,-1.80000000,0.00000000,,0.37931034,63.00000000,2.78761062,0.03174603,0.00000000,4.48000000 +261,chr22,16133893,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-1.18000000,0.00000000,,0.40740741,56.00000000,2.47787611,0.03571429,0.00000000,4.67000000 +262,chr22,16133918,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.87000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.01538462,0.00000000,4.47000000 +263,chr22,16134469,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.60810811,75.00000000,3.31858407,0.01333333,0.00000000,8.60000000 +264,chr22,16134591,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,57.00000000,0.00000000,-0.60000000,0.00000000,,0.46753247,78.00000000,3.45132743,0.01282051,0.00000000,4.79000000 +265,chr22,16134606,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,50.00000000,0.00000000,-0.47000000,0.00000000,,0.49367089,79.00000000,3.49557522,0.00000000,0.00000000,4.17000000 +266,chr22,16134752,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.45454545,79.00000000,3.49557522,0.02531646,0.00000000,8.30000000 +267,chr22,16135263,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.59000000,0.00000000,,0.46511628,86.00000000,3.80530973,0.00000000,0.00000000,7.70000000 +268,chr22,16135608,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,32.00000000,0.00000000,-1.71000000,0.00000000,,0.44705882,86.00000000,3.80530973,0.01162791,0.00000000,3.35000000 +269,chr22,16136260,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.21000000,8.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,109.00000000,0.00000000,-0.38000000,0.00000000,,0.44594595,75.00000000,3.31858407,0.01333333,0.00000000,12.31000000 +270,chr22,16136382,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.16000000,7.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.36363636,77.00000000,3.40707965,0.00000000,0.00000000,8.76000000 +271,chr22,16136750,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.58000000,1.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-1.14000000,0.00000000,,0.37288136,59.00000000,2.61061947,0.00000000,0.00000000,8.74000000 +272,chr22,16136818,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.60000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,1.47000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,13.80000000 +273,chr22,16136819,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.60000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,1.47000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,13.23000000 +274,chr22,16136832,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,55.57000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.77000000,0.00000000,,0.37500000,52.00000000,2.30088496,0.05769231,0.00000000,7.70000000 +275,chr22,16137186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.91000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.72000000,0.00000000,,0.31666667,60.00000000,2.65486726,0.00000000,0.00000000,7.29000000 +276,chr22,16137278,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.76000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.34615385,52.00000000,2.30088496,0.00000000,0.00000000,8.92000000 +277,chr22,16137304,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.67000000,7.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,-0.25000000,0.00000000,,0.37096774,63.00000000,2.78761062,0.00000000,0.00000000,8.59000000 +278,chr22,16137487,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.38000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,7.84000000 +279,chr22,16137595,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.90000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,0.60000000,0.00000000,,0.29411765,52.00000000,2.30088496,0.00000000,0.00000000,4.42000000 +280,chr22,16137676,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.82000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.29000000,0.00000000,,0.35000000,62.00000000,2.74336283,0.03225806,0.00000000,8.60000000 +281,chr22,16137688,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.85000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.35000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,8.37000000 +282,chr22,16137976,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.67000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.30000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,4.56000000 +283,chr22,16138011,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,51.00000000,0.00000000,0.54000000,0.00000000,,0.42857143,80.00000000,3.53982301,0.03750000,0.00000000,4.60000000 +284,chr22,16138234,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.44000000,0.00000000,18.00000000,0.00000000,-0.58000000,0.00000000,,0.51063830,67.00000000,2.96460177,0.28358209,0.00000000,3.36000000 +285,chr22,16138522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.76000000,0.00000000,,0.48863636,90.00000000,3.98230088,0.02222222,0.00000000,7.58000000 +286,chr22,16138587,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-2.87000000,0.00000000,,0.45454545,78.00000000,3.45132743,0.01282051,0.00000000,8.61000000 +287,chr22,16139010,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.45000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.75000000,0.00000000,,0.34210526,79.00000000,3.49557522,0.03797468,0.00000000,8.00000000 +288,chr22,16139076,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.17000000,7.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,97.00000000,0.00000000,-0.04000000,0.00000000,,0.30263158,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +289,chr22,16139350,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.67000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,52.00000000,0.00000000,-0.42000000,0.00000000,,0.43902439,85.00000000,3.76106195,0.03529412,0.00000000,4.56000000 +290,chr22,16139379,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.32000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,0.16000000,0.00000000,,0.42222222,91.00000000,4.02654867,0.01098901,0.00000000,8.17000000 +291,chr22,16139522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.47000000,6.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.67000000,0.00000000,,0.38666667,76.00000000,3.36283186,0.01315789,0.00000000,8.53000000 +292,chr22,16139908,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.00000000,0.00000000,,0.37179487,81.00000000,3.58407080,0.03703704,0.00000000,7.70000000 +293,chr22,16140111,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,56.66000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.74000000,0.00000000,,0.53521127,74.00000000,3.27433628,0.04054054,0.00000000,8.04000000 +294,chr22,16140529,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.43243243,75.00000000,3.31858407,0.01333333,0.00000000,8.56000000 +295,chr22,16140611,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,1.04000000,0.00000000,,0.40000000,72.00000000,3.18584071,0.01388889,0.00000000,4.68000000 +296,chr22,16141593,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.49000000,0.00000000,,0.41538462,69.00000000,3.05309735,0.05797101,0.00000000,7.63000000 +297,chr22,16141669,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.48000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,0.06000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.02777778,0.00000000,4.61000000 +298,chr22,16141749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.76000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,0.48000000,0.00000000,,0.32812500,67.00000000,2.96460177,0.04477612,0.00000000,7.12000000 +299,chr22,16141951,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.12000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.00000000,0.00000000,8.12000000 +300,chr22,16142519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.35000000,0.00000000,,0.43589744,78.00000000,3.45132743,0.00000000,0.00000000,8.15000000 +301,chr22,16143347,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,106.00000000,0.00000000,0.47000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.01111111,0.00000000,13.14000000 +302,chr22,16144333,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.44000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.91000000,0.00000000,,0.53333333,76.00000000,3.36283186,0.00000000,0.00000000,7.93000000 +303,chr22,16144401,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.15000000,0.00000000,,0.44871795,78.00000000,3.45132743,0.00000000,0.00000000,8.41000000 +304,chr22,16146005,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,46.00000000,0.00000000,-1.38000000,0.00000000,,0.44827586,59.00000000,2.61061947,0.00000000,0.00000000,4.60000000 +305,chr22,16146292,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.26000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,8.58000000 +306,chr22,16146757,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.43000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.33000000 +307,chr22,16146903,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.74000000,0.00000000,,0.51562500,66.00000000,2.92035398,0.03030303,0.00000000,7.99000000 +308,chr22,16147807,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.50000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.52000000 +309,chr22,16147906,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.03000000,0.00000000,,0.41666667,72.00000000,3.18584071,0.00000000,0.00000000,8.96000000 +310,chr22,16147944,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.33000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.25000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,7.66000000 +311,chr22,16148516,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.64000000,0.00000000,,0.43103448,58.00000000,2.56637168,0.00000000,0.00000000,4.00000000 +312,chr22,16149527,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.76000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.01000000,0.00000000,,0.41428571,70.00000000,3.09734513,0.00000000,0.00000000,4.24000000 +313,chr22,16149733,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,18.00000000,0.00000000,-0.19000000,0.00000000,,0.44927536,70.00000000,3.09734513,0.01428571,0.00000000,3.06000000 +314,chr22,16151478,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.60000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.19000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,5.94000000 +315,chr22,16151583,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.52000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,99.00000000,0.00000000,-0.19000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,7.88000000 +316,chr22,16151953,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.35000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.73000000,0.00000000,,0.52564103,79.00000000,3.49557522,0.01265823,0.00000000,7.82000000 +317,chr22,16151997,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.41463415,82.00000000,3.62831858,0.00000000,0.00000000,9.36000000 +318,chr22,16152774,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.19000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.01388889,0.00000000,4.32000000 +319,chr22,16153597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,0.66000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,3.70000000 +320,chr22,16153637,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.73000000,0.00000000,,0.46774194,62.00000000,2.74336283,0.00000000,0.00000000,5.89000000 +321,chr22,16154491,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.30000000,6.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,2.02000000,0.00000000,,0.39726027,75.00000000,3.31858407,0.02666667,0.00000000,7.84000000 +322,chr22,16154601,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-2.90000000,0.00000000,,0.43076923,69.00000000,3.05309735,0.04347826,0.00000000,4.62000000 +323,chr22,16154615,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-1.90000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,4.46000000 +324,chr22,16154840,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.44000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,54.00000000,0.00000000,-0.09000000,0.00000000,,0.33734940,84.00000000,3.71681416,0.00000000,0.00000000,4.08000000 +325,chr22,16155236,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.08000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.64000000,0.00000000,,0.48571429,71.00000000,3.14159292,0.01408451,0.00000000,4.12000000 +326,chr22,16155382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.46000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,69.00000000,0.00000000,1.26000000,0.00000000,,0.36363636,61.00000000,2.69911504,0.08196721,0.00000000,7.43000000 +327,chr22,16155434,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.57000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.37704918,63.00000000,2.78761062,0.03174603,0.00000000,8.07000000 +328,chr22,16155484,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.91000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.39506173,82.00000000,3.62831858,0.01219512,0.00000000,7.99000000 +329,chr22,16155703,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.95000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,4.41000000 +330,chr22,16156072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.47191011,92.00000000,4.07079646,0.02173913,0.00000000,8.32000000 +331,chr22,16156134,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.35000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.36000000,0.00000000,,0.35135135,74.00000000,3.27433628,0.00000000,0.00000000,7.69000000 +332,chr22,16156138,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.88000000,11.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,100.00000000,0.00000000,1.83000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,7.50000000 +333,chr22,16156407,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.08000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,44.00000000,0.00000000,0.37000000,0.00000000,,0.44871795,79.00000000,3.49557522,0.01265823,0.00000000,3.94000000 +334,chr22,16156443,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.38000000,14.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.87000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,7.45000000 +335,chr22,16156859,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,52.81000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.30000000,0.00000000,,0.33333333,45.00000000,1.99115044,0.00000000,0.00000000,7.81000000 +336,chr22,16156952,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.73000000,6.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-0.79000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.01754386,0.00000000,4.20000000 +337,chr22,16158283,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,40.00000000,0.00000000,-0.38000000,0.00000000,,0.47058824,60.00000000,2.65486726,0.15000000,0.00000000,4.45000000 +338,chr22,16158532,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.06000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,1.85000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,7.53000000 +339,chr22,16158605,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.36000000,0.00000000,,0.38888889,76.00000000,3.36283186,0.03947368,0.00000000,7.87000000 +340,chr22,16159296,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.16000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,47.00000000,0.00000000,-0.23000000,0.00000000,,0.47500000,81.00000000,3.58407080,0.00000000,0.00000000,4.31000000 +341,chr22,16159370,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,51.00000000,0.00000000,1.83000000,0.00000000,,0.38983051,63.00000000,2.78761062,0.06349206,0.00000000,4.94000000 +342,chr22,16160820,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,1.89000000,0.00000000,,0.37500000,72.00000000,3.18584071,0.00000000,0.00000000,7.99000000 +343,chr22,16161019,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.47000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,8.48000000 +344,chr22,16161190,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.88000000,0.00000000,,0.49315068,73.00000000,3.23008850,0.00000000,0.00000000,8.73000000 +345,chr22,16161746,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,0.12000000,0.00000000,,0.45714286,71.00000000,3.14159292,0.00000000,0.00000000,4.46000000 +346,chr22,16162219,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,99.00000000,0.00000000,-1.24000000,0.00000000,,0.34177215,79.00000000,3.49557522,0.00000000,0.00000000,8.65000000 +347,chr22,16162718,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.49000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,8.27000000 +348,chr22,16163442,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,-1.74000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,4.67000000 +349,chr22,16163992,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.48529412,70.00000000,3.09734513,0.02857143,0.00000000,8.32000000 +350,chr22,16164187,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.38235294,75.00000000,3.31858407,0.06666667,0.00000000,8.68000000 +351,chr22,16164263,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.25000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,79.00000000,0.00000000,1.76000000,0.00000000,,0.42028986,79.00000000,3.49557522,0.12658228,0.00000000,7.80000000 +352,chr22,16164451,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.35000000,0.00000000,,0.40740741,57.00000000,2.52212389,0.05263158,0.00000000,7.93000000 +353,chr22,16164468,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.75000000,0.00000000,,0.42105263,59.00000000,2.61061947,0.03389831,0.00000000,7.84000000 +354,chr22,16164622,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.44000000,8.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-0.12000000,0.00000000,,0.45901639,61.00000000,2.69911504,0.00000000,0.00000000,3.59000000 +355,chr22,16165476,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.12000000,0.00000000,,0.39344262,62.00000000,2.74336283,0.01612903,0.00000000,4.19000000 +356,chr22,16165479,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,38.00000000,0.00000000,-2.11000000,0.00000000,,0.44827586,60.00000000,2.65486726,0.01666667,0.00000000,3.94000000 +357,chr22,16165689,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.87000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.49000000,0.00000000,,0.34482759,58.00000000,2.56637168,0.00000000,0.00000000,4.23000000 +358,chr22,16166163,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.34920635,64.00000000,2.83185841,0.01562500,0.00000000,8.06000000 +359,chr22,16166263,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.41269841,64.00000000,2.83185841,0.01562500,0.00000000,7.47000000 +360,chr22,16166593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.24000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,39.00000000,0.00000000,0.43000000,0.00000000,,0.42857143,58.00000000,2.56637168,0.03448276,0.00000000,4.01000000 +361,chr22,16166795,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.92000000,8.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-1.35000000,0.00000000,,0.50000000,53.00000000,2.34513274,0.01886792,0.00000000,3.84000000 +362,chr22,16166830,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.21000000,11.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.05000000,0.00000000,,0.47540984,62.00000000,2.74336283,0.01612903,0.00000000,3.58000000 +363,chr22,16167211,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.98000000,0.00000000,,0.41935484,64.00000000,2.83185841,0.03125000,0.00000000,4.36000000 +364,chr22,16167225,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,2.72000000,0.00000000,,0.38095238,66.00000000,2.92035398,0.04545455,0.00000000,5.20000000 +365,chr22,16167272,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,0.57000000,0.00000000,,0.32786885,62.00000000,2.74336283,0.01612903,0.00000000,4.08000000 +366,chr22,16167380,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,53.56000000,13.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.21000000,0.00000000,,0.43333333,30.00000000,1.32743363,0.00000000,0.00000000,3.87000000 +367,chr22,16167424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,52.42000000,18.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-0.18000000,0.00000000,,0.44444444,36.00000000,1.59292035,0.00000000,0.00000000,4.24000000 +368,chr22,16167678,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.82000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.85000000 +369,chr22,16167727,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.60000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.27586207,58.00000000,2.56637168,0.00000000,0.00000000,6.09000000 +370,chr22,16167777,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.07000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.07000000,0.00000000,,0.29411765,52.00000000,2.30088496,0.01923077,0.00000000,6.89000000 +371,chr22,16168019,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.94000000,5.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,0.62000000,0.00000000,,0.40000000,52.00000000,2.30088496,0.01923077,0.00000000,3.51000000 +372,chr22,16168072,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.40000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,30.00000000,0.00000000,-1.30000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,3.40000000 +373,chr22,16168276,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.62000000,0.00000000,,0.47560976,82.00000000,3.62831858,0.00000000,0.00000000,4.62000000 +374,chr22,16168927,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,0.15000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,4.49000000 +375,chr22,16169206,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.83000000,0.00000000,,0.45977011,88.00000000,3.89380531,0.01136364,0.00000000,8.04000000 +376,chr22,16169268,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +377,chr22,16169642,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-1.62000000,0.00000000,,0.50000000,78.00000000,3.45132743,0.00000000,0.00000000,4.04000000 +378,chr22,16170218,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,1.28000000,0.00000000,,0.43243243,77.00000000,3.40707965,0.03896104,0.00000000,7.93000000 +379,chr22,16170431,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.66000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,60.00000000,0.00000000,-1.70000000,0.00000000,,0.48684211,77.00000000,3.40707965,0.00000000,0.00000000,7.75000000 +380,chr22,16170522,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.49000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.02352941,0.00000000,8.41000000 +381,chr22,16170796,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,-1.09000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +382,chr22,16170969,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.54000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-0.85000000,0.00000000,,0.52380952,86.00000000,3.80530973,0.02325581,0.00000000,4.11000000 +383,chr22,16171230,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,7.96000000 +384,chr22,16171430,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.42000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-3.55000000,0.00000000,,0.43617021,97.00000000,4.29203540,0.03092784,0.00000000,7.40000000 +385,chr22,16171475,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.84000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,96.00000000,0.00000000,1.43000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,7.41000000 +386,chr22,16171510,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.26000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,92.00000000,0.00000000,-1.73000000,0.00000000,,0.29729730,76.00000000,3.36283186,0.02631579,0.00000000,6.08000000 +387,chr22,16171752,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,-1.58000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,4.05000000 +388,chr22,16171809,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,-0.23000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,4.40000000 +389,chr22,16172029,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.01000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,55.00000000,0.00000000,-0.74000000,0.00000000,,0.36065574,62.00000000,2.74336283,0.01612903,0.00000000,4.65000000 +390,chr22,16172168,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.58000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.37000000,0.00000000,,0.45833333,74.00000000,3.27433628,0.01351351,0.00000000,7.82000000 +391,chr22,16172275,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,51.00000000,0.00000000,0.15000000,0.00000000,,0.38961039,80.00000000,3.53982301,0.03750000,0.00000000,4.39000000 +392,chr22,16172605,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,31.00000000,0.00000000,-1.39000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,3.20000000 +393,chr22,16172618,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,-0.18000000,0.00000000,,0.47500000,80.00000000,3.53982301,0.00000000,0.00000000,3.20000000 +394,chr22,16173096,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.03000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,90.00000000,0.00000000,1.14000000,0.00000000,,0.33333333,80.00000000,3.53982301,0.02500000,0.00000000,7.30000000 +395,chr22,16173097,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.06000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,92.00000000,0.00000000,1.10000000,0.00000000,,0.33333333,81.00000000,3.58407080,0.02469136,0.00000000,7.30000000 +396,chr22,16173627,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-2.62000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.23000000 +397,chr22,16174279,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.76000000,0.00000000,,0.55263158,78.00000000,3.45132743,0.02564103,0.00000000,7.82000000 +398,chr22,16174311,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.76000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,1.32000000,0.00000000,,0.56578947,77.00000000,3.40707965,0.01298701,0.00000000,8.32000000 +399,chr22,16174471,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.01000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,4.51000000 +400,chr22,16174578,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.45000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.70000000 +401,chr22,16174585,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.74000000,0.00000000,,0.39726027,74.00000000,3.27433628,0.00000000,0.00000000,8.94000000 +402,chr22,16174668,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.17000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,8.30000000 +403,chr22,16174939,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.00000000,0.00000000,8.51000000 +404,chr22,16175116,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.99000000,0.00000000,,0.47619048,85.00000000,3.76106195,0.01176471,0.00000000,8.76000000 +405,chr22,16176203,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.25000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.41000000,0.00000000,,0.43548387,63.00000000,2.78761062,0.01587302,0.00000000,4.28000000 +406,chr22,16176826,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,58.00000000,0.00000000,0.90000000,0.00000000,,0.42307692,80.00000000,3.53982301,0.01250000,0.00000000,6.24000000 +407,chr22,16176930,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.66000000,0.00000000,,0.40000000,66.00000000,2.92035398,0.09090909,0.00000000,8.41000000 +408,chr22,16177136,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.47000000,0.00000000,,0.49367089,80.00000000,3.53982301,0.01250000,0.00000000,4.24000000 +409,chr22,16177619,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,30.00000000,0.00000000,-0.06000000,0.00000000,,0.34782609,92.00000000,4.07079646,0.00000000,0.00000000,2.97000000 +410,chr22,16178107,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,0.16000000,0.00000000,,0.40697674,87.00000000,3.84955752,0.01149425,0.00000000,4.52000000 +411,chr22,16178521,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,1.42000000,0.00000000,,0.38235294,70.00000000,3.09734513,0.02857143,0.00000000,4.68000000 +412,chr22,16178754,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.96000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-1.30000000,0.00000000,,0.46250000,82.00000000,3.62831858,0.01219512,0.00000000,8.35000000 +413,chr22,16179004,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.71000000,0.00000000,,0.58571429,74.00000000,3.27433628,0.05405405,0.00000000,8.06000000 +414,chr22,16179334,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-3.19000000,0.00000000,,0.50000000,92.00000000,4.07079646,0.00000000,0.00000000,8.52000000 +415,chr22,16179497,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.45000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.41000000,0.00000000,,0.58024691,82.00000000,3.62831858,0.00000000,0.00000000,8.64000000 +416,chr22,16179693,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.02000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,8.54000000 +417,chr22,16179804,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.47000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.76000000,0.00000000,,0.52542373,63.00000000,2.78761062,0.06349206,0.00000000,8.29000000 +418,chr22,16179865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.59000000,0.00000000,,0.53448276,61.00000000,2.69911504,0.03278689,0.00000000,4.39000000 +419,chr22,16179936,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.66000000,0.00000000,,0.53225806,64.00000000,2.83185841,0.03125000,0.00000000,4.46000000 +420,chr22,16180086,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.77000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.18000000 +421,chr22,16180564,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.18000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.66000000,0.00000000,,0.45454545,70.00000000,3.09734513,0.05714286,0.00000000,3.92000000 +422,chr22,16180577,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.72000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,1.78000000,0.00000000,,0.43835616,77.00000000,3.40707965,0.05194805,0.00000000,4.01000000 +423,chr22,16180580,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.61000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-2.22000000,0.00000000,,0.45070423,75.00000000,3.31858407,0.05333333,0.00000000,4.15000000 +424,chr22,16180956,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.16000000,0.00000000,,0.54687500,66.00000000,2.92035398,0.01515152,0.00000000,4.14000000 +425,chr22,16180962,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.48000000,0.00000000,,0.50746269,70.00000000,3.09734513,0.02857143,0.00000000,7.64000000 +426,chr22,16181290,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.92000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.77000000,0.00000000,,0.53947368,76.00000000,3.36283186,0.00000000,0.00000000,4.09000000 +427,chr22,16181827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.94000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.33000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.00000000,0.00000000,5.81000000 +428,chr22,16181909,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.60000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.51428571,70.00000000,3.09734513,0.00000000,0.00000000,7.87000000 +429,chr22,16182090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.45000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,8.71000000 +430,chr22,16182168,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.92000000,0.00000000,,0.50632911,80.00000000,3.53982301,0.01250000,0.00000000,8.76000000 +431,chr22,16182178,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.55000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.01176471,0.00000000,8.73000000 +432,chr22,16182275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.86000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.04000000,0.00000000,,0.37349398,83.00000000,3.67256637,0.00000000,0.00000000,7.87000000 +433,chr22,16182299,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.22000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,0.25000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,4.31000000 +434,chr22,16182394,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.96000000,0.00000000,,0.46478873,72.00000000,3.18584071,0.01388889,0.00000000,3.73000000 +435,chr22,16182457,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.24000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,0.80000000,0.00000000,,0.59090909,66.00000000,2.92035398,0.00000000,0.00000000,4.00000000 +436,chr22,16182573,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.54411765,68.00000000,3.00884956,0.00000000,0.00000000,8.17000000 +437,chr22,16182669,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,41.00000000,0.00000000,0.40000000,0.00000000,,0.48148148,82.00000000,3.62831858,0.01219512,0.00000000,3.97000000 +438,chr22,16182974,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.19000000,0.00000000,,0.48780488,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +439,chr22,16183066,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,42.00000000,0.00000000,-1.13000000,0.00000000,,0.46268657,83.00000000,3.67256637,0.16867470,0.00000000,4.15000000 +440,chr22,16183106,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,16.00000000,0.00000000,-0.12000000,0.00000000,,0.50000000,75.00000000,3.31858407,0.12000000,0.00000000,3.27000000 +441,chr22,16183180,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,0.62000000,0.00000000,,0.55932203,59.00000000,2.61061947,0.00000000,0.00000000,4.22000000 +442,chr22,16183224,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,-1.56000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,3.66000000 +443,chr22,16183398,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.00000000,0.00000000,,0.48529412,69.00000000,3.05309735,0.01449275,0.00000000,4.08000000 +444,chr22,16183809,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.40000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,8.13000000 +445,chr22,16183880,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,7.93000000 +446,chr22,16183903,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.46753247,79.00000000,3.49557522,0.01265823,0.00000000,8.62000000 +447,chr22,16183975,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.06000000,0.00000000,,0.51351351,76.00000000,3.36283186,0.02631579,0.00000000,4.42000000 +448,chr22,16184892,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.68000000,15.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,7.51000000 +449,chr22,16184948,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.22000000,20.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.95000000,0.00000000,,0.42622951,63.00000000,2.78761062,0.03174603,0.00000000,7.79000000 +450,chr22,16185049,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,52.35000000,21.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,0.09000000,0.00000000,,0.39583333,49.00000000,2.16814159,0.02040816,0.00000000,3.70000000 +451,chr22,16185078,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.54000000,21.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,24.00000000,0.00000000,0.32000000,0.00000000,,0.41666667,49.00000000,2.16814159,0.02040816,0.00000000,3.55000000 +452,chr22,16185379,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,-0.37000000,0.00000000,,0.40677966,59.00000000,2.61061947,0.00000000,0.00000000,4.07000000 +453,chr22,16185643,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.36000000,10.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,41.00000000,0.00000000,-2.99000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.00000000,0.00000000,3.90000000 +454,chr22,16185848,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,48.81000000,23.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,-1.50000000,0.00000000,,0.42857143,35.00000000,1.54867257,0.00000000,0.00000000,3.61000000 +455,chr22,16186231,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.19000000,20.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,11.00000000,0.00000000,1.01000000,0.00000000,,0.38709677,32.00000000,1.41592920,0.03125000,0.00000000,3.82000000 +456,chr22,16186672,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,40.86000000,37.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,13.00000000,0.00000000,-0.53000000,0.00000000,,0.40909091,22.00000000,0.97345133,0.00000000,0.00000000,3.57000000 +457,chr22,16186878,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,52.05000000,24.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,46.00000000,0.00000000,0.21000000,0.00000000,,0.36538462,52.00000000,2.30088496,0.00000000,0.00000000,4.10000000 +458,chr22,16187017,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.41000000,30.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.74000000,0.00000000,,0.48076923,52.00000000,2.30088496,0.00000000,0.00000000,4.06000000 +459,chr22,16187126,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,35.56000000,48.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,8.00000000,0.00000000,0.14000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.50000000 +460,chr22,16187437,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,49.21000000,36.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-0.99000000,0.00000000,,0.52830189,53.00000000,2.34513274,0.00000000,0.00000000,3.96000000 +461,chr22,16187460,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,46.39000000,37.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.74000000,0.00000000,,0.48571429,35.00000000,1.54867257,0.00000000,0.00000000,4.02000000 +462,chr22,16187826,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,51.29000000,21.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,43.00000000,0.00000000,1.42000000,0.00000000,,0.36111111,38.00000000,1.68141593,0.05263158,0.00000000,4.07000000 +463,chr22,16187829,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,51.53000000,21.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,45.00000000,0.00000000,1.57000000,0.00000000,,0.35135135,39.00000000,1.72566372,0.05128205,0.00000000,4.09000000 +464,chr22,16188029,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.24000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.44000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,6.77000000 +465,chr22,16188332,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.77000000,12.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,-0.57000000,0.00000000,,0.45000000,41.00000000,1.81415929,0.02439024,0.00000000,4.03000000 +466,chr22,16188597,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,48.62000000,23.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,50.00000000,0.00000000,1.14000000,0.00000000,,0.27272727,23.00000000,1.01769912,0.04347826,0.00000000,2.89000000 +467,chr22,16188998,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,54.90000000,14.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,0.20000000,0.00000000,,0.22448980,49.00000000,2.16814159,0.00000000,0.00000000,4.54000000 +468,chr22,16189184,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,53.67000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,1.44000000,0.00000000,,0.23529412,35.00000000,1.54867257,0.02857143,0.00000000,5.57000000 +469,chr22,16189188,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.67000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.44000000,0.00000000,,0.23529412,35.00000000,1.54867257,0.02857143,0.00000000,5.68000000 +470,chr22,16189545,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.26000000,5.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,13.00000000,0.00000000,-2.58000000,0.00000000,,0.44736842,38.00000000,1.68141593,0.00000000,0.00000000,3.54000000 +471,chr22,16189706,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,39.00000000,0.00000000,-1.19000000,0.00000000,,0.41860465,55.00000000,2.43362832,0.21818182,0.00000000,4.29000000 +472,chr22,16190108,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.16000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.09000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.85000000 +473,chr22,16190115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.16000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,0.49000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.37000000 +474,chr22,16190174,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.35000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.48387097,63.00000000,2.78761062,0.01587302,0.01562500,8.14000000 +475,chr22,16190187,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.17000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.09000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.68000000 +476,chr22,16191048,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.33000000,0.00000000,,0.52000000,76.00000000,3.36283186,0.01315789,0.00000000,8.40000000 +477,chr22,16191310,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-2.12000000,0.00000000,,0.54216867,85.00000000,3.76106195,0.02352941,0.00000000,8.16000000 +478,chr22,16191730,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.37000000,0.00000000,,0.51388889,73.00000000,3.23008850,0.01369863,0.00000000,4.51000000 +479,chr22,16192804,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,36.00000000,0.00000000,0.55000000,0.00000000,,0.32352941,70.00000000,3.09734513,0.02857143,0.00000000,3.92000000 +480,chr22,16192878,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,41.00000000,0.00000000,-0.25000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,4.31000000 +481,chr22,16193140,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.95000000,0.00000000,,0.38888889,75.00000000,3.31858407,0.04000000,0.00000000,8.15000000 +482,chr22,16193472,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.32000000,0.00000000,,0.44117647,72.00000000,3.18584071,0.05555556,0.00000000,8.33000000 +483,chr22,16193567,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.42424242,68.00000000,3.00884956,0.02941176,0.00000000,7.82000000 +484,chr22,16193717,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.98000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.90000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,4.51000000 +485,chr22,16193988,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.78000000,0.00000000,,0.49295775,71.00000000,3.14159292,0.00000000,0.00000000,4.41000000 +486,chr22,16194081,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,0.18000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,4.57000000 +487,chr22,16195298,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.81000000,9.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,-0.74000000,0.00000000,,0.46666667,61.00000000,2.69911504,0.00000000,0.00000000,3.63000000 +488,chr22,16195504,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.67000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,0.50000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,6.05000000 +489,chr22,16195800,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.09000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.46478873,73.00000000,3.23008850,0.02739726,0.00000000,7.49000000 +490,chr22,16196062,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,99.00000000,0.00000000,-0.21000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.01315789,0.00000000,8.45000000 +491,chr22,16196362,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.18000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.59000000 +492,chr22,16196556,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.39705882,71.00000000,3.14159292,0.00000000,0.00000000,8.46000000 +493,chr22,16196645,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,0.20000000,0.00000000,,0.45333333,77.00000000,3.40707965,0.02597403,0.00000000,5.88000000 +494,chr22,16196814,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-1.01000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.01369863,0.00000000,8.49000000 +495,chr22,16196823,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.33000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.68000000 +496,chr22,16196956,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,35.00000000,0.00000000,0.07000000,0.00000000,,0.39215686,51.00000000,2.25663717,0.00000000,0.00000000,3.78000000 +497,chr22,16197003,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,28.00000000,0.00000000,-0.45000000,0.00000000,,0.47916667,48.00000000,2.12389381,0.00000000,0.00000000,3.58000000 +498,chr22,16197281,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.22000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.14000000,0.00000000,,0.53703704,55.00000000,2.43362832,0.00000000,0.00000000,5.66000000 +499,chr22,16197403,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.87000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.30000000,0.00000000,,0.45000000,60.00000000,2.65486726,0.00000000,0.00000000,9.09000000 +500,chr22,16197423,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.36000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.42187500,64.00000000,2.83185841,0.00000000,0.00000000,9.13000000 +501,chr22,16197638,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.73000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,-0.30000000,0.00000000,,0.40625000,67.00000000,2.96460177,0.01492537,0.00000000,6.26000000 +502,chr22,16198000,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.58000000,7.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,51.00000000,0.00000000,-1.57000000,0.00000000,,0.32835821,68.00000000,3.00884956,0.01470588,0.00000000,4.04000000 +503,chr22,16198043,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.41000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.53000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.01234568,0.00000000,8.09000000 +504,chr22,16198158,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.49000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.18000000,0.00000000,,0.44444444,75.00000000,3.31858407,0.04000000,0.00000000,7.92000000 +505,chr22,16198221,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.48000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.49000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.87000000 +506,chr22,16198718,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.95000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,-1.00000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.16000000 +507,chr22,16198869,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.97000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.99000000,0.00000000,,0.36250000,86.00000000,3.80530973,0.06976744,0.00000000,7.52000000 +508,chr22,16199127,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.51250000,80.00000000,3.53982301,0.00000000,0.00000000,4.21000000 +509,chr22,16199242,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,47.00000000,0.00000000,2.47000000,0.00000000,,0.35897436,79.00000000,3.49557522,0.01265823,0.00000000,4.18000000 +510,chr22,16199562,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.02000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,0.00000000,1.04000000,0.00000000,,0.44067797,61.00000000,2.69911504,0.03278689,0.00000000,3.95000000 +511,chr22,16199564,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.05000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,1.04000000,0.00000000,,0.44067797,61.00000000,2.69911504,0.03278689,0.00000000,4.06000000 +512,chr22,16199574,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.49000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,1.05000000,0.00000000,,0.45312500,66.00000000,2.92035398,0.03030303,0.00000000,3.97000000 +513,chr22,16199997,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.60000000,0.00000000,,0.37349398,85.00000000,3.76106195,0.02352941,0.00000000,7.65000000 +514,chr22,16200509,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.99000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.02173913,0.00000000,8.16000000 +515,chr22,16200702,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.28000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.05000000,0.00000000,,0.44736842,76.00000000,3.36283186,0.00000000,0.00000000,8.76000000 +516,chr22,16200812,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,1.06000000,0.00000000,,0.41666667,75.00000000,3.31858407,0.04000000,0.00000000,4.61000000 +517,chr22,16200821,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.55000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,36.00000000,0.00000000,-1.78000000,0.00000000,,0.45714286,74.00000000,3.27433628,0.04054054,0.00000000,4.07000000 +518,chr22,16201582,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.88000000,6.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,0.00000000,0.44000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.01612903,0.00000000,3.60000000 +519,chr22,16202247,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,1.71000000,0.00000000,,0.42424242,68.00000000,3.00884956,0.02941176,0.00000000,8.13000000 +520,chr22,16202292,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,2.16000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.14000000 +521,chr22,16202942,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.50000000,88.00000000,3.89380531,0.02272727,0.00000000,8.20000000 +522,chr22,16202965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.77000000,0.00000000,,0.50588235,88.00000000,3.89380531,0.02272727,0.00000000,4.70000000 +523,chr22,16203345,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.90000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.00000000,0.00000000,9.28000000 +524,chr22,16203476,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.69000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.38750000,80.00000000,3.53982301,0.00000000,0.00000000,7.88000000 +525,chr22,16203611,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.71000000,0.00000000,,0.53333333,47.00000000,2.07964602,0.04255319,0.00000000,4.65000000 +526,chr22,16203682,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,-1.67000000,0.00000000,,0.50000000,54.00000000,2.38938053,0.03703704,0.00000000,4.22000000 +527,chr22,16203704,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,44.00000000,0.00000000,0.85000000,0.00000000,,0.36842105,59.00000000,2.61061947,0.03389831,0.00000000,4.34000000 +528,chr22,16203775,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,0.36000000,0.00000000,,0.41333333,76.00000000,3.36283186,0.01315789,0.00000000,7.89000000 +529,chr22,16203853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.56000000,2.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,100.00000000,0.00000000,0.28000000,0.00000000,,0.39534884,87.00000000,3.84955752,0.01149425,0.00000000,8.17000000 +530,chr22,16203880,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.32000000,3.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.75000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.27000000 +531,chr22,16204187,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.47000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,24.00000000,0.00000000,-0.30000000,0.00000000,,0.49350649,83.00000000,3.67256637,0.06024096,0.00000000,3.55000000 +532,chr22,16204203,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-1.63000000,0.00000000,,0.48437500,70.00000000,3.09734513,0.08571429,0.00000000,4.12000000 +533,chr22,16204791,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.91000000,0.00000000,,0.51282051,79.00000000,3.49557522,0.01265823,0.00000000,4.68000000 +534,chr22,16204859,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,2.06000000,0.00000000,,0.37647059,91.00000000,4.02654867,0.06593407,0.00000000,7.67000000 +535,chr22,16204860,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.65000000,0.00000000,,0.36144578,89.00000000,3.93805310,0.06741573,0.00000000,7.67000000 +536,chr22,16205109,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.81000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.95000000,0.00000000,,0.34246575,73.00000000,3.23008850,0.00000000,0.00000000,7.91000000 +537,chr22,16205290,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,7.75000000 +538,chr22,16205531,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.13000000,10.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,27.00000000,0.00000000,1.60000000,0.00000000,,0.40540541,76.00000000,3.36283186,0.02631579,0.00000000,3.54000000 +539,chr22,16205685,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.12000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.59000000,0.00000000,,0.45454545,56.00000000,2.47787611,0.01785714,0.00000000,7.73000000 +540,chr22,16206835,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.00000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,7.74000000 +541,chr22,16206989,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.24000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.50000000,77.00000000,3.40707965,0.03896104,0.00000000,8.16000000 +542,chr22,16207036,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.43000000,0.00000000,,0.49333333,78.00000000,3.45132743,0.03846154,0.00000000,8.11000000 +543,chr22,16207151,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.01000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,-0.53000000,0.00000000,,0.32258065,94.00000000,4.15929204,0.01063830,0.00000000,8.07000000 +544,chr22,16207491,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.79000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.37142857,72.00000000,3.18584071,0.02777778,0.00000000,7.97000000 +545,chr22,16208549,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.10000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.93000000,0.00000000,,0.50909091,55.00000000,2.43362832,0.00000000,0.00000000,4.52000000 +546,chr22,16208683,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.01388889,0.00000000,6.14000000 +547,chr22,16208704,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,-0.08000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,4.28000000 +548,chr22,16208941,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.61000000,0.00000000,,0.30645161,64.00000000,2.83185841,0.01562500,0.00000000,6.90000000 +549,chr22,16209034,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,42.00000000,0.00000000,-0.70000000,0.00000000,,0.36206897,59.00000000,2.61061947,0.01694915,0.00000000,4.30000000 +550,chr22,16209226,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.54000000,0.00000000,,0.51111111,47.00000000,2.07964602,0.04255319,0.00000000,4.58000000 +551,chr22,16209503,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,-0.64000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,4.86000000 +552,chr22,16209674,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,43.00000000,0.00000000,-0.80000000,0.00000000,,0.53225806,63.00000000,2.78761062,0.01587302,0.00000000,4.32000000 +553,chr22,16210362,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.76000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-0.55000000,0.00000000,,0.49333333,77.00000000,3.40707965,0.01298701,0.00000000,4.02000000 +554,chr22,16210364,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.76000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,36.00000000,0.00000000,-0.35000000,0.00000000,,0.49350649,78.00000000,3.45132743,0.01282051,0.00000000,3.78000000 +555,chr22,16211005,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.41000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.49000000,0.00000000,,0.43396226,53.00000000,2.34513274,0.00000000,0.00000000,7.96000000 +556,chr22,16211446,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-1.62000000,0.00000000,,0.48214286,56.00000000,2.47787611,0.00000000,0.00000000,6.08000000 +557,chr22,16212032,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.12000000,0.00000000,,0.34375000,65.00000000,2.87610619,0.01538462,0.00000000,8.27000000 +558,chr22,16212252,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-1.31000000,0.00000000,,0.47959184,100.00000000,4.42477876,0.01000000,0.00000000,4.22000000 +559,chr22,16212512,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.85000000,13.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.46835443,79.00000000,3.49557522,0.00000000,0.00000000,8.65000000 +560,chr22,16212979,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.21000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,0.42000000,0.00000000,,0.54285714,72.00000000,3.18584071,0.02777778,0.00000000,4.46000000 +561,chr22,16213221,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.26000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.16000000,0.00000000,,0.29090909,56.00000000,2.47787611,0.01785714,0.00000000,6.41000000 +562,chr22,16214062,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.25000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.52000000,0.00000000,,0.41269841,63.00000000,2.78761062,0.00000000,0.00000000,8.01000000 +563,chr22,16214142,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.72000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.56000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.52000000 +564,chr22,16214407,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.15000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.36000000,0.00000000,,0.47058824,68.00000000,3.00884956,0.00000000,0.00000000,8.46000000 +565,chr22,16214611,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.78000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,0.24000000,0.00000000,,0.51219512,83.00000000,3.67256637,0.01204819,0.00000000,7.81000000 +566,chr22,16214960,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,46.00000000,0.00000000,-2.25000000,0.00000000,,0.58666667,78.00000000,3.45132743,0.03846154,0.00000000,4.61000000 +567,chr22,16215016,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-0.37000000,0.00000000,,0.53164557,81.00000000,3.58407080,0.02469136,0.00000000,4.34000000 +568,chr22,16215516,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.81000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.65000000,0.00000000,,0.50000000,64.00000000,2.83185841,0.03125000,0.00000000,4.43000000 +569,chr22,16215804,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.49000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.36486486,74.00000000,3.27433628,0.00000000,0.00000000,7.87000000 +570,chr22,16215970,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.29000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.37000000,0.00000000,,0.43283582,68.00000000,3.00884956,0.01470588,0.00000000,4.54000000 +571,chr22,16216086,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.76000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,0.42000000,0.00000000,,0.38333333,61.00000000,2.69911504,0.01639344,0.00000000,4.32000000 +572,chr22,16216115,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,32.00000000,0.00000000,2.21000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.00000000,0.00000000,3.61000000 +573,chr22,16216251,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.71000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-2.71000000,0.00000000,,0.31818182,67.00000000,2.96460177,0.01492537,0.00000000,7.08000000 +574,chr22,16216529,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,1.87000000,0.00000000,,0.33333333,53.00000000,2.34513274,0.03773585,0.00000000,7.78000000 +575,chr22,16216766,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,27.00000000,0.00000000,-0.34000000,0.00000000,,0.52112676,74.00000000,3.27433628,0.02702703,0.00000000,3.71000000 +576,chr22,16217028,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.81000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.68000000,0.00000000,,0.50980392,52.00000000,2.30088496,0.01923077,0.00000000,6.00000000 +577,chr22,16217062,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.54000000,4.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,49.00000000,0.00000000,-2.32000000,0.00000000,,0.42000000,51.00000000,2.25663717,0.01960784,0.00000000,4.16000000 +578,chr22,16217089,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.21000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,1.06000000,0.00000000,,0.42592593,54.00000000,2.38938053,0.00000000,0.00000000,4.38000000 +579,chr22,16217467,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.51000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,-0.60000000,0.00000000,,0.34782609,70.00000000,3.09734513,0.01428571,0.00000000,5.00000000 +580,chr22,16218566,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.01000000,6.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.91000000,0.00000000,,0.45454545,67.00000000,2.96460177,0.01492537,0.00000000,3.51000000 +581,chr22,16218751,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.11000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.00000000,0.00000000,7.55000000 +582,chr22,16218846,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,8.06000000 +583,chr22,16219095,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.49425287,87.00000000,3.84955752,0.00000000,0.00000000,7.91000000 +584,chr22,16219365,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.71000000,0.00000000,,0.46153846,79.00000000,3.49557522,0.00000000,0.00000000,4.44000000 +585,chr22,16219470,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,2.21000000,0.00000000,,0.40000000,80.00000000,3.53982301,0.00000000,0.00000000,8.26000000 +586,chr22,16219517,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.88000000,0.00000000,,0.29729730,76.00000000,3.36283186,0.01315789,0.00000000,7.18000000 +587,chr22,16219522,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.08000000,0.00000000,,0.31081081,76.00000000,3.36283186,0.01315789,0.00000000,3.76000000 +588,chr22,16219574,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,0.00000000,-1.56000000,0.00000000,,0.32835821,68.00000000,3.00884956,0.01470588,0.00000000,4.30000000 +589,chr22,16219705,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.64000000,0.00000000,,0.40540541,75.00000000,3.31858407,0.01333333,0.00000000,8.43000000 +590,chr22,16219895,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.66000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.59000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,8.80000000 +591,chr22,16220055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.63000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.96000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,7.92000000 +592,chr22,16220205,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.95000000,0.00000000,,0.45588235,69.00000000,3.05309735,0.01449275,0.00000000,4.54000000 +593,chr22,16220253,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.04000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.64000000,0.00000000,,0.43636364,57.00000000,2.52212389,0.03508772,0.00000000,6.09000000 +594,chr22,16220367,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.04000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,31.00000000,0.00000000,0.34000000,0.00000000,,0.41176471,69.00000000,3.05309735,0.01449275,0.00000000,3.65000000 +595,chr22,16220976,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,38.00000000,0.00000000,-2.45000000,0.00000000,,0.28813559,59.00000000,2.61061947,0.00000000,0.00000000,2.81000000 +596,chr22,16221337,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.94000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,4.28000000 +597,chr22,16221479,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.67000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-0.60000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.03225806,0.00000000,4.71000000 +598,chr22,16221728,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.86000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,2.04000000,0.00000000,,0.31666667,63.00000000,2.78761062,0.03174603,0.00000000,4.04000000 +599,chr22,16221750,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,-1.65000000,0.00000000,,0.33898305,59.00000000,2.61061947,0.00000000,0.00000000,4.37000000 +600,chr22,16221860,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.86000000,3.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.00000000,29.00000000,0.00000000,-0.01000000,0.00000000,,0.40677966,61.00000000,2.69911504,0.01639344,0.00000000,3.76000000 +601,chr22,16221897,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.29000000,4.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,22.00000000,0.00000000,-1.13000000,0.00000000,,0.40000000,53.00000000,2.34513274,0.05660377,0.00000000,4.06000000 +602,chr22,16222221,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.40000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-1.19000000,0.00000000,,0.48148148,57.00000000,2.52212389,0.05263158,0.00000000,8.21000000 +603,chr22,16222383,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,44.00000000,0.00000000,-0.81000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,4.40000000 +604,chr22,16222494,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,67.00000000,0.00000000,0.86000000,0.00000000,,0.41818182,57.00000000,2.52212389,0.03508772,0.00000000,7.97000000 +605,chr22,16222598,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.47000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,8.62000000 +606,chr22,16223210,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.22000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,-1.09000000,0.00000000,,0.42307692,53.00000000,2.34513274,0.00000000,0.00000000,4.39000000 +607,chr22,16223309,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.15000000,11.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-0.81000000,0.00000000,,0.49152542,63.00000000,2.78761062,0.04761905,0.00000000,4.24000000 +608,chr22,16223393,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.11000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.41000000,0.00000000,,0.51948052,78.00000000,3.45132743,0.01282051,0.00000000,7.66000000 +609,chr22,16223428,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.06000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,1.13000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,7.96000000 +610,chr22,16223455,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.98000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.41095890,74.00000000,3.27433628,0.01351351,0.00000000,7.84000000 +611,chr22,16223615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,1.00000000,0.00000000,,0.46153846,65.00000000,2.87610619,0.00000000,0.00000000,4.01000000 +612,chr22,16223705,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.58000000,8.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,32.00000000,0.00000000,-0.97000000,0.00000000,,0.39583333,49.00000000,2.16814159,0.02040816,0.00000000,3.85000000 +613,chr22,16223962,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.09000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,0.11000000,0.00000000,,0.50819672,63.00000000,2.78761062,0.03174603,0.00000000,3.93000000 +614,chr22,16224114,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.12000000,5.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,0.81000000,0.00000000,,0.45205479,75.00000000,3.31858407,0.02666667,0.00000000,7.62000000 +615,chr22,16224417,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.32000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.33000000 +616,chr22,16224480,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.96000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,-1.71000000,0.00000000,,0.31818182,70.00000000,3.09734513,0.04285714,0.00000000,8.11000000 +617,chr22,16224680,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.93000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.28000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +618,chr22,16224683,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.92000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.05000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.64000000 +619,chr22,16224688,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.86000000,2.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,6.03000000 +620,chr22,16225026,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.47000000,0.00000000,,0.43023256,88.00000000,3.89380531,0.02272727,0.00000000,8.27000000 +621,chr22,16225418,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.73000000,21.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,1.75000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,7.45000000 +622,chr22,16225990,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.22000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-1.20000000,0.00000000,,0.42187500,64.00000000,2.83185841,0.00000000,0.00000000,8.79000000 +623,chr22,16226037,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.94000000,7.00000000,ref,1.00000000,0.06451613,31.00000000,1.37168142,0.00000000,0.00000000,53.00000000,0.00000000,0.42000000,0.00000000,,0.42857143,76.00000000,3.36283186,0.06578947,0.00000000,4.28000000 +624,chr22,16226495,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.76000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.40277778,75.00000000,3.31858407,0.04000000,0.00000000,7.87000000 +625,chr22,16226683,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.77000000,1.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,13.00000000,0.00000000,-0.56000000,0.00000000,,0.43243243,78.00000000,3.45132743,0.03846154,0.00000000,3.15000000 +626,chr22,16227055,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.84000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.01492537,0.00000000,4.37000000 +627,chr22,16227108,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.31000000,0.00000000,,0.48611111,74.00000000,3.27433628,0.02702703,0.00000000,3.98000000 +628,chr22,16227118,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.51000000,0.00000000,,0.47222222,75.00000000,3.31858407,0.04000000,0.00000000,3.77000000 +629,chr22,16227276,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,40.00000000,0.00000000,-2.89000000,0.00000000,,0.45333333,77.00000000,3.40707965,0.02597403,0.00000000,4.32000000 +630,chr22,16227366,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.23000000,0.00000000,,0.50877193,58.00000000,2.56637168,0.00000000,0.00000000,4.26000000 +631,chr22,16227579,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.21000000,2.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,0.88000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.92000000 +632,chr22,16227583,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.21000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,1.24000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.81000000 +633,chr22,16227860,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,1.29000000,0.00000000,,0.54838710,63.00000000,2.78761062,0.01587302,0.00000000,4.29000000 +634,chr22,16228063,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.77000000,0.00000000,,0.52542373,59.00000000,2.61061947,0.00000000,0.00000000,8.72000000 +635,chr22,16228274,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.77000000,0.00000000,,0.42682927,82.00000000,3.62831858,0.00000000,0.00000000,8.95000000 +636,chr22,16228279,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.30000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,8.95000000 +637,chr22,16228528,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-1.18000000,0.00000000,,0.46296296,55.00000000,2.43362832,0.01818182,0.00000000,7.58000000 +638,chr22,16228740,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,0.76000000,0.00000000,,0.43548387,63.00000000,2.78761062,0.00000000,0.00000000,8.27000000 +639,chr22,16228944,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.79000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,0.83000000,0.00000000,,0.53424658,73.00000000,3.23008850,0.00000000,0.00000000,3.96000000 +640,chr22,16228996,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.23000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.17000000,0.00000000,,0.55932203,59.00000000,2.61061947,0.00000000,0.00000000,4.03000000 +641,chr22,16229014,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.31000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,1.37000000,0.00000000,,0.62295082,61.00000000,2.69911504,0.00000000,0.00000000,4.47000000 +642,chr22,16229841,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.85000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.35000000 +643,chr22,16229900,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.20000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,4.57000000 +644,chr22,16230050,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.72000000,0.00000000,,0.53846154,92.00000000,4.07079646,0.01086957,0.00000000,7.94000000 +645,chr22,16230171,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,57.00000000,0.00000000,-1.89000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.00000000,0.00000000,4.63000000 +646,chr22,16230261,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.15000000,0.00000000,,0.42465753,77.00000000,3.40707965,0.05194805,0.00000000,8.55000000 +647,chr22,16230267,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.43421053,80.00000000,3.53982301,0.05000000,0.00000000,8.41000000 +648,chr22,16230311,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,0.05000000,0.00000000,,0.45454545,80.00000000,3.53982301,0.03750000,0.00000000,8.11000000 +649,chr22,16230430,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.19000000,0.00000000,,0.42857143,79.00000000,3.49557522,0.02531646,0.00000000,8.35000000 +650,chr22,16230627,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.22000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.72000000,0.00000000,,0.20408163,51.00000000,2.25663717,0.03921569,0.00000000,6.07000000 +651,chr22,16230629,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.22000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.17021277,51.00000000,2.25663717,0.07843137,0.00000000,5.72000000 +652,chr22,16230649,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.75000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-3.14000000,0.00000000,,0.11363636,55.00000000,2.43362832,0.20000000,0.00000000,4.43000000 +653,chr22,16230650,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.76000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-2.62000000,0.00000000,,0.23529412,55.00000000,2.43362832,0.07272727,0.00000000,6.60000000 +654,chr22,16230653,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.81000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-2.43000000,0.00000000,,0.23076923,56.00000000,2.47787611,0.07142857,0.00000000,6.61000000 +655,chr22,16230835,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-1.58000000,0.00000000,,0.37333333,77.00000000,3.40707965,0.02597403,0.00000000,8.35000000 +656,chr22,16230881,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,32.00000000,1.41592920,0.00000000,0.00000000,18.00000000,0.00000000,0.62000000,0.00000000,,0.42465753,73.00000000,3.23008850,0.00000000,0.00000000,3.23000000 +657,chr22,16230909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,32.00000000,0.00000000,-1.33000000,0.00000000,,0.44444444,75.00000000,3.31858407,0.01333333,0.00000000,3.26000000 +658,chr22,16231055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.07407407,27.00000000,1.19469027,0.00000000,0.00000000,32.00000000,0.00000000,0.94000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.00000000,0.00000000,3.16000000 +659,chr22,16231727,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.79000000 +660,chr22,16231800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.92000000,0.00000000,,0.39436620,73.00000000,3.23008850,0.02739726,0.00000000,7.88000000 +661,chr22,16232148,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.48000000,0.00000000,,0.45000000,65.00000000,2.87610619,0.07692308,0.00000000,8.18000000 +662,chr22,16232360,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,0.38000000,0.00000000,,0.50632911,82.00000000,3.62831858,0.02439024,0.00000000,8.04000000 +663,chr22,16232479,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.06000000,0.00000000,,0.41379310,60.00000000,2.65486726,0.03333333,0.00000000,7.36000000 +664,chr22,16232771,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,36.00000000,0.00000000,0.48000000,0.00000000,,0.42647059,71.00000000,3.14159292,0.04225352,0.00000000,4.14000000 +665,chr22,16232800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,50.00000000,0.00000000,-0.21000000,0.00000000,,0.40579710,71.00000000,3.14159292,0.02816901,0.00000000,4.81000000 +666,chr22,16233251,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.41000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,0.09000000,0.00000000,,0.46376812,70.00000000,3.09734513,0.01428571,0.00000000,4.55000000 +667,chr22,16233665,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,-0.94000000,0.00000000,,0.43373494,90.00000000,3.98230088,0.07777778,0.00000000,4.71000000 +668,chr22,16233716,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.53000000,0.00000000,,0.50000000,103.00000000,4.55752212,0.04854369,0.00000000,8.06000000 +669,chr22,16234309,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,53.00000000,0.00000000,-2.02000000,0.00000000,,0.44444444,84.00000000,3.71681416,0.03571429,0.00000000,4.48000000 +670,chr22,16234761,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,49.00000000,0.00000000,0.23000000,0.00000000,,0.44444444,66.00000000,2.92035398,0.03030303,0.00000000,4.46000000 +671,chr22,16235066,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.56451613,63.00000000,2.78761062,0.01587302,0.00000000,7.99000000 +672,chr22,16235245,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.67000000,0.00000000,,0.41463415,83.00000000,3.67256637,0.01204819,0.00000000,4.24000000 +673,chr22,16235320,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.47560976,84.00000000,3.71681416,0.02380952,0.00000000,7.51000000 +674,chr22,16235393,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.43055556,73.00000000,3.23008850,0.01369863,0.00000000,8.37000000 +675,chr22,16235405,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,55.00000000,0.00000000,1.08000000,0.00000000,,0.45070423,74.00000000,3.27433628,0.04054054,0.00000000,4.83000000 +676,chr22,16235593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.71000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,32.00000000,0.00000000,-0.67000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.01388889,0.00000000,3.74000000 +677,chr22,16235694,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.95000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,8.12000000 +678,chr22,16235698,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,7.99000000 +679,chr22,16235838,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.90000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,4.29000000 +680,chr22,16236593,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.20000000,0.00000000,,0.52727273,56.00000000,2.47787611,0.01785714,0.00000000,7.57000000 +681,chr22,16236714,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.55000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,0.51000000,0.00000000,,0.40983607,61.00000000,2.69911504,0.00000000,0.00000000,3.95000000 +682,chr22,16236723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.19000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,2.75000000 +683,chr22,16236818,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.24000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,4.45000000 +684,chr22,16237248,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,53.00000000,0.00000000,0.68000000,0.00000000,,0.40000000,68.00000000,3.00884956,0.04411765,0.00000000,4.31000000 +685,chr22,16237259,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,1.46000000,0.00000000,,0.38095238,66.00000000,2.92035398,0.04545455,0.00000000,4.26000000 +686,chr22,16237429,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.49000000,12.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-0.50000000,0.00000000,,0.52941176,52.00000000,2.30088496,0.01923077,0.00000000,3.79000000 +687,chr22,16237623,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.21000000 +688,chr22,16238414,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.89000000,23.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,32.00000000,0.00000000,-0.10000000,0.00000000,,0.45238095,42.00000000,1.85840708,0.00000000,0.00000000,3.65000000 +689,chr22,16238591,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.82000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,41.00000000,0.00000000,-0.49000000,0.00000000,,0.32142857,57.00000000,2.52212389,0.01754386,0.00000000,3.80000000 +690,chr22,16238592,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,42.00000000,0.00000000,-0.33000000,0.00000000,,0.31578947,58.00000000,2.56637168,0.01724138,0.00000000,3.18000000 +691,chr22,16238955,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,54.99000000,12.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,27.00000000,0.00000000,0.24000000,0.00000000,,0.41666667,48.00000000,2.12389381,0.00000000,0.00000000,3.66000000 +692,chr22,16239552,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.04000000,0.00000000,,0.36065574,61.00000000,2.69911504,0.00000000,0.00000000,8.38000000 +693,chr22,16239643,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.51000000,0.00000000,,0.47368421,57.00000000,2.52212389,0.00000000,0.00000000,4.43000000 +694,chr22,16239658,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.26000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,0.03000000,0.00000000,,0.43859649,57.00000000,2.52212389,0.00000000,0.00000000,4.26000000 +695,chr22,16239785,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,0.17000000,0.00000000,,0.60655738,61.00000000,2.69911504,0.00000000,0.00000000,4.49000000 +696,chr22,16240475,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,52.47000000,20.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-0.37000000,0.00000000,,0.51063830,47.00000000,2.07964602,0.00000000,0.00000000,3.63000000 +697,chr22,16240729,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,52.16000000,21.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,28.00000000,0.00000000,-0.31000000,0.00000000,,0.37500000,49.00000000,2.16814159,0.02040816,0.00000000,3.87000000 +698,chr22,16240779,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.45000000,13.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,31.00000000,0.00000000,-0.74000000,0.00000000,,0.41071429,58.00000000,2.56637168,0.03448276,0.00000000,3.81000000 +699,chr22,16240830,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.75000000,10.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,-0.79000000,0.00000000,,0.41538462,65.00000000,2.87610619,0.00000000,0.00000000,3.88000000 +700,chr22,16241076,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.76000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.11000000,0.00000000,,0.38805970,71.00000000,3.14159292,0.04225352,0.00000000,4.89000000 +701,chr22,16241989,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.79000000,0.00000000,,0.49090909,56.00000000,2.47787611,0.01785714,0.00000000,7.48000000 +702,chr22,16242905,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.46000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,4.50000000 +703,chr22,16242920,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.65000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,4.66000000 +704,chr22,16243197,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.37000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.41000000,0.00000000,,0.19672131,64.00000000,2.83185841,0.01562500,0.00000000,6.34000000 +705,chr22,16243202,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.38000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.26000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.31000000 +706,chr22,16243746,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.15000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +707,chr22,16243793,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.41000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.36000000,0.10000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,5.94000000 +708,chr22,16243936,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.20000000,0.00000000,,0.37704918,62.00000000,2.74336283,0.01612903,0.00000000,4.40000000 +709,chr22,16244215,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.51851852,81.00000000,3.58407080,0.00000000,0.00000000,8.56000000 +710,chr22,16244919,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.47142857,74.00000000,3.27433628,0.04054054,0.00000000,8.17000000 +711,chr22,16245016,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.95000000,0.00000000,,0.40740741,81.00000000,3.58407080,0.00000000,0.00000000,8.38000000 +712,chr22,16245115,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.76000000,0.00000000,,0.43835616,73.00000000,3.23008850,0.00000000,0.00000000,8.95000000 +713,chr22,16245233,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.76000000,14.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.40625000,64.00000000,2.83185841,0.00000000,0.00000000,8.43000000 +714,chr22,16245305,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,54.08000000,21.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-1.86000000,0.00000000,,0.46969697,67.00000000,2.96460177,0.00000000,0.00000000,8.22000000 +715,chr22,16245538,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.06000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,40.00000000,0.00000000,0.65000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,3.76000000 +716,chr22,16246670,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.15000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-1.44000000,0.00000000,,0.39393939,66.00000000,2.92035398,0.00000000,0.00000000,4.41000000 +717,chr22,16246762,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.47000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,-0.56000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,6.26000000 +718,chr22,16246805,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.62000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.40000000,88.00000000,3.89380531,0.02272727,0.00000000,8.24000000 +719,chr22,16246847,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.37647059,85.00000000,3.76106195,0.00000000,0.00000000,8.76000000 +720,chr22,16247046,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,54.00000000,0.00000000,-0.49000000,0.00000000,,0.32530120,83.00000000,3.67256637,0.00000000,0.00000000,4.27000000 +721,chr22,16247170,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.41000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,4.29000000 +722,chr22,16247310,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.46000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.78000000,0.00000000,,0.43396226,54.00000000,2.38938053,0.01851852,0.00000000,8.21000000 +723,chr22,16247597,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.08000000,0.00000000,,0.50000000,64.00000000,2.83185841,0.00000000,0.00000000,4.49000000 +724,chr22,16247859,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,-1.47000000,0.00000000,,0.43076923,73.00000000,3.23008850,0.06849315,0.00000000,7.69000000 +725,chr22,16248288,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.39772727,89.00000000,3.93805310,0.01123596,0.00000000,8.31000000 +726,chr22,16249170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.26000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.84000000,0.00000000,,0.31428571,73.00000000,3.23008850,0.04109589,0.00000000,6.58000000 +727,chr22,16249174,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.29000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,0.96000000,0.00000000,,0.30985915,74.00000000,3.27433628,0.04054054,0.00000000,5.99000000 +728,chr22,16249348,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,48.00000000,0.00000000,-1.54000000,0.00000000,,0.39393939,66.00000000,2.92035398,0.00000000,0.00000000,3.89000000 +729,chr22,16249477,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.95000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,2.80000000 +730,chr22,16249560,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.01000000,0.00000000,,0.50724638,69.00000000,3.05309735,0.00000000,0.00000000,3.87000000 +731,chr22,16250525,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.86000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.83000000,0.00000000,,0.36619718,72.00000000,3.18584071,0.01388889,0.00000000,4.19000000 +732,chr22,16250785,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.60000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.26000000,0.00000000,,0.50000000,56.00000000,2.47787611,0.00000000,0.00000000,4.11000000 +733,chr22,16250915,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.06000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.25454545,58.00000000,2.56637168,0.03448276,0.00000000,6.32000000 +734,chr22,16250958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.78000000,0.00000000,,0.37037037,57.00000000,2.52212389,0.03508772,0.00000000,7.80000000 +735,chr22,16251091,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.43000000,0.00000000,,0.49019608,52.00000000,2.30088496,0.01923077,0.00000000,4.39000000 +736,chr22,16251395,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.49000000,0.00000000,,0.47058824,68.00000000,3.00884956,0.00000000,0.00000000,7.97000000 +737,chr22,16251469,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.72000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,7.95000000 +738,chr22,16251588,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.19000000,14.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,0.31000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,3.83000000 +739,chr22,16251711,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,1.07000000,0.00000000,,0.38235294,68.00000000,3.00884956,0.00000000,0.00000000,8.24000000 +740,chr22,16251722,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.08000000,0.00000000,,0.40259740,78.00000000,3.45132743,0.01282051,0.00000000,8.59000000 +741,chr22,16251899,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.73000000,14.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.05000000,0.00000000,,0.45762712,61.00000000,2.69911504,0.01639344,0.00000000,7.64000000 +742,chr22,16252094,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,-0.19000000,0.00000000,,0.38709677,93.00000000,4.11504425,0.00000000,0.00000000,8.74000000 +743,chr22,16252148,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.08000000,0.00000000,,0.36619718,73.00000000,3.23008850,0.02739726,0.00000000,8.18000000 +744,chr22,16252241,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-0.51000000,0.00000000,,0.41666667,72.00000000,3.18584071,0.00000000,0.00000000,4.62000000 +745,chr22,16252407,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.01000000,13.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.49000000,0.00000000,,0.42622951,62.00000000,2.74336283,0.01612903,0.00000000,7.70000000 +746,chr22,16252420,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.96000000,13.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.08000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,7.84000000 +747,chr22,16252549,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-1.06000000,0.00000000,,0.50847458,59.00000000,2.61061947,0.00000000,0.00000000,3.98000000 +748,chr22,16252659,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,7.82000000 +749,chr22,16252672,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.90000000 +750,chr22,16252789,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.60000000,8.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.88000000,0.00000000,,0.34848485,67.00000000,2.96460177,0.01492537,0.00000000,7.75000000 +751,chr22,16252906,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.92000000,0.00000000,,0.48051948,79.00000000,3.49557522,0.00000000,0.00000000,9.17000000 +752,chr22,16252951,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.96000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,8.55000000 +753,chr22,16253411,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.20000000,0.00000000,,0.52857143,70.00000000,3.09734513,0.00000000,0.00000000,6.02000000 +754,chr22,16254083,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.47000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,-1.00000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,4.33000000 +755,chr22,16254085,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.47000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-1.24000000,0.00000000,,0.52941176,68.00000000,3.00884956,0.00000000,0.00000000,4.25000000 +756,chr22,16254443,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,51.00000000,0.00000000,0.12000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,4.53000000 +757,chr22,16254620,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.58000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,36.00000000,0.00000000,0.07000000,0.00000000,,0.36956522,48.00000000,2.12389381,0.04166667,0.00000000,3.81000000 +758,chr22,16254624,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.59000000,0.00000000,ref,1.00000000,0.11111111,18.00000000,0.79646018,0.00000000,0.00000000,14.00000000,0.00000000,0.43000000,0.00000000,,0.36170213,49.00000000,2.16814159,0.04081633,0.00000000,3.62000000 +759,chr22,16254890,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.10714286,0.00000000,9.00000000,0.00000000,-1.62000000,0.00000000,,0.47916667,53.00000000,2.34513274,0.07547170,0.00000000,3.26000000 +760,chr22,16255177,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.24000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,54.00000000,0.00000000,-1.75000000,0.00000000,,0.44285714,76.00000000,3.36283186,0.05263158,0.00000000,4.53000000 +761,chr22,16255328,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.54000000,21.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.96000000,0.00000000,,0.44680851,48.00000000,2.12389381,0.00000000,0.00000000,4.08000000 +762,chr22,16255394,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,49.72000000,26.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,33.00000000,0.00000000,-1.74000000,0.00000000,,0.43589744,40.00000000,1.76991150,0.02500000,0.00000000,3.69000000 +763,chr22,16255833,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,44.68000000,49.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,47.00000000,0.00000000,-0.31000000,6.96000000,,0.35000000,40.00000000,1.76991150,0.00000000,0.00000000,3.54000000 +764,chr22,16256829,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,49.12000000,32.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.19000000,0.00000000,,0.48837209,43.00000000,1.90265487,0.00000000,0.00000000,4.23000000 +765,chr22,16257045,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,49.87000000,30.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.27000000,0.00000000,,0.23684211,38.00000000,1.68141593,0.00000000,0.00000000,5.64000000 +766,chr22,16257221,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.15000000,12.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.29000000,0.00000000,,0.45454545,44.00000000,1.94690265,0.00000000,0.00000000,4.25000000 +767,chr22,16257313,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.81000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,7.82000000 +768,chr22,16257342,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.88000000,13.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,-3.07000000,0.00000000,,0.43333333,61.00000000,2.69911504,0.01639344,0.00000000,4.44000000 +769,chr22,16257519,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,48.53000000,28.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.80000000,2.31000000,,0.19354839,31.00000000,1.37168142,0.00000000,0.00000000,4.18000000 +770,chr22,16257525,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.89000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.73000000,2.10000000,,0.20000000,31.00000000,1.37168142,0.03225806,0.00000000,4.89000000 +771,chr22,16259655,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.25000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,-0.19000000,0.00000000,,0.39062500,66.00000000,2.92035398,0.03030303,0.00000000,4.58000000 +772,chr22,16260033,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.81000000,37.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,12.00000000,0.00000000,-1.74000000,0.00000000,,0.52542373,62.00000000,2.74336283,0.04838710,0.01587302,3.24000000 +773,chr22,16260107,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.94000000,31.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,36.00000000,0.00000000,-2.31000000,0.00000000,,0.47272727,60.00000000,2.65486726,0.08333333,0.00000000,3.88000000 +774,chr22,16260347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.76000000,0.00000000,,0.45454545,77.00000000,3.40707965,0.00000000,0.00000000,5.85000000 +775,chr22,16260476,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,44.03000000,72.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,32.00000000,0.00000000,0.28000000,0.00000000,,0.55932203,62.00000000,2.74336283,0.04838710,0.00000000,3.85000000 +776,chr22,16260534,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,41.92000000,86.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,27.00000000,0.00000000,-1.61000000,0.00000000,,0.50769231,65.00000000,2.87610619,0.00000000,0.00000000,3.59000000 +777,chr22,16260805,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,44.05000000,71.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,-0.05000000,0.00000000,,0.56666667,62.00000000,2.74336283,0.01612903,0.00000000,4.13000000 +778,chr22,16260913,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,47.56000000,51.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.16000000,0.00000000,,0.49206349,66.00000000,2.92035398,0.04545455,0.00000000,3.93000000 +779,chr22,16261017,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,43.80000000,52.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,8.00000000,0.00000000,-1.00000000,0.00000000,,0.54347826,50.00000000,2.21238938,0.08000000,0.00000000,3.82000000 +780,chr22,16261300,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,34.40000000,194.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,0.77000000,0.00000000,,0.38181818,56.00000000,2.47787611,0.01785714,0.00000000,7.51000000 +781,chr22,16261429,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.27000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,48.00000000,0.00000000,0.99000000,0.00000000,,0.37096774,63.00000000,2.78761062,0.01587302,0.00000000,4.17000000 +782,chr22,16262038,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.62000000,41.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-1.27000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,3.71000000 +783,chr22,16262463,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.01000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.34000000,0.00000000,,0.42622951,63.00000000,2.78761062,0.01587302,0.00000000,4.37000000 +784,chr22,16262650,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,54.10000000,20.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,5.00000000,0.00000000,0.03000000,0.00000000,,0.40000000,67.00000000,2.96460177,0.02985075,0.00000000,3.48000000 +785,chr22,16262725,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,54.77000000,17.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,1.10000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,4.54000000 +786,chr22,16262751,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.86000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.31000000 +787,chr22,16262861,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.87000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.05000000,0.00000000,,0.47222222,75.00000000,3.31858407,0.04000000,0.00000000,4.83000000 +788,chr22,16263059,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.71000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,1.18000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,3.89000000 +789,chr22,16263331,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.78000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.13000000,0.00000000,,0.47058824,86.00000000,3.80530973,0.01162791,0.00000000,8.62000000 +790,chr22,16263839,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.81000000,0.00000000,,0.43661972,71.00000000,3.14159292,0.00000000,0.00000000,4.35000000 +791,chr22,16263909,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.70000000,10.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,67.00000000,0.00000000,-1.62000000,0.00000000,,0.43209877,84.00000000,3.71681416,0.03571429,0.00000000,8.17000000 +792,chr22,16264072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.80000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.04347826,41.00000000,0.00000000,-0.29000000,0.00000000,,0.50704225,74.00000000,3.27433628,0.04054054,0.00000000,4.21000000 +793,chr22,16264363,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.33000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-1.31000000,0.00000000,,0.38297872,47.00000000,2.07964602,0.00000000,0.00000000,8.63000000 +794,chr22,16264444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.45000000,8.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.50000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.25000000 +795,chr22,16264528,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,0.00000000,0.00000000,,0.43750000,64.00000000,2.83185841,0.00000000,0.00000000,3.89000000 +796,chr22,16264770,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.92000000,10.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,21.00000000,0.00000000,-0.98000000,0.00000000,,0.48387097,62.00000000,2.74336283,0.00000000,0.00000000,3.09000000 +797,chr22,16264961,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,47.00000000,0.00000000,0.34000000,0.00000000,,0.43636364,57.00000000,2.52212389,0.03508772,0.00000000,3.89000000 +798,chr22,16265035,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.95000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,51.00000000,0.00000000,-0.83000000,0.00000000,,0.45098039,53.00000000,2.34513274,0.03773585,0.00000000,4.35000000 +799,chr22,16265155,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,42.92000000,84.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.08333333,47.00000000,0.00000000,0.44000000,0.00000000,,0.44615385,66.00000000,2.92035398,0.01515152,0.01492537,3.77000000 +800,chr22,16265343,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.33000000,20.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,27.00000000,0.00000000,-0.55000000,0.00000000,,0.55555556,66.00000000,2.92035398,0.04545455,0.00000000,3.61000000 +801,chr22,16265687,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.81000000,17.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,35.00000000,0.00000000,-0.25000000,0.00000000,,0.51948052,78.00000000,3.45132743,0.01282051,0.00000000,3.25000000 +802,chr22,16265948,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,54.33000000,20.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-1.05000000,0.00000000,,0.55223881,67.00000000,2.96460177,0.00000000,0.00000000,4.19000000 +803,chr22,16266083,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.60000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,33.00000000,0.00000000,-1.60000000,0.00000000,,0.47435897,78.00000000,3.45132743,0.00000000,0.00000000,3.14000000 +804,chr22,16266106,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.28000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,33.00000000,0.00000000,-1.54000000,0.00000000,,0.52054795,75.00000000,3.31858407,0.02666667,0.00000000,3.45000000 +805,chr22,16266150,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.35000000,0.00000000,,0.48648649,74.00000000,3.27433628,0.00000000,0.00000000,8.35000000 +806,chr22,16266247,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.55000000,17.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.37000000,0.00000000,,0.41333333,75.00000000,3.31858407,0.00000000,0.00000000,8.34000000 +807,chr22,16266333,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,52.03000000,31.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,42.00000000,0.00000000,-0.88000000,0.00000000,,0.50769231,71.00000000,3.14159292,0.08450704,0.00000000,4.22000000 +808,chr22,16266383,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,48.99000000,43.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,18.00000000,0.00000000,-2.97000000,0.00000000,,0.45000000,64.00000000,2.83185841,0.04687500,0.00000000,3.45000000 +809,chr22,16266451,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.79000000,13.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-1.79000000,0.00000000,,0.43103448,59.00000000,2.61061947,0.01694915,0.00000000,4.47000000 +810,chr22,16266590,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.21000000,11.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.40506329,82.00000000,3.62831858,0.03658537,0.00000000,8.00000000 +811,chr22,16266875,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,51.43000000,35.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,32.00000000,0.00000000,-0.41000000,0.00000000,,0.38571429,70.00000000,3.09734513,0.00000000,0.00000000,3.05000000 +812,chr22,16266996,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.96000000,18.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,56.00000000,0.00000000,-0.18000000,0.00000000,,0.37878788,71.00000000,3.14159292,0.05633803,0.00000000,4.82000000 +813,chr22,16267144,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.92000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.49315068,76.00000000,3.36283186,0.02631579,0.00000000,8.01000000 +814,chr22,16267197,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.35000000,17.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.82000000,0.00000000,,0.54411765,69.00000000,3.05309735,0.01449275,0.00000000,7.67000000 +815,chr22,16267559,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,52.98000000,26.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,30.00000000,0.00000000,-1.81000000,0.00000000,,0.52112676,72.00000000,3.18584071,0.00000000,0.00000000,3.47000000 +816,chr22,16267908,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.11000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.32876712,74.00000000,3.27433628,0.01351351,0.00000000,7.59000000 +817,chr22,16268052,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,8.33000000 +818,chr22,16268101,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.44155844,78.00000000,3.45132743,0.01282051,0.00000000,8.72000000 +819,chr22,16268249,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.02000000,12.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.33783784,79.00000000,3.49557522,0.01265823,0.01250000,8.18000000 +820,chr22,16268394,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.96000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,0.47000000,0.00000000,,0.48543689,103.00000000,4.55752212,0.00000000,0.00000000,8.12000000 +821,chr22,16269101,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,54.98000000,21.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,101.00000000,0.00000000,-0.25000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,8.55000000 +822,chr22,16269493,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.19000000,13.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,56.00000000,0.00000000,0.40000000,0.00000000,,0.35294118,73.00000000,3.23008850,0.06849315,0.00000000,4.65000000 +823,chr22,16269515,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.25000000,13.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,96.00000000,0.00000000,-0.82000000,0.00000000,,0.32812500,72.00000000,3.18584071,0.11111111,0.00000000,7.73000000 +824,chr22,16269838,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.19000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-1.11000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.04054054,0.00000000,8.27000000 +825,chr22,16269863,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-0.41000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.02702703,0.00000000,8.33000000 +826,chr22,16270496,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.05000000,0.00000000,,0.46153846,67.00000000,2.96460177,0.02985075,0.00000000,4.07000000 +827,chr22,16270585,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.31000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,4.54000000 +828,chr22,16270649,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.14000000,0.00000000,,0.45945946,74.00000000,3.27433628,0.00000000,0.00000000,6.09000000 +829,chr22,16270728,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.89000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,0.34000000,0.00000000,,0.46969697,68.00000000,3.00884956,0.02941176,0.00000000,6.02000000 +830,chr22,16270898,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.50000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,8.71000000 +831,chr22,16270941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-0.10000000,0.00000000,,0.39062500,64.00000000,2.83185841,0.00000000,0.00000000,4.48000000 +832,chr22,16270970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-1.71000000,0.00000000,,0.46478873,71.00000000,3.14159292,0.00000000,0.00000000,4.08000000 +833,chr22,16270991,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.90000000,0.00000000,,0.45454545,77.00000000,3.40707965,0.00000000,0.00000000,6.21000000 +834,chr22,16271004,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.86000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,7.82000000 +835,chr22,16271443,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.14000000 +836,chr22,16271561,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.17000000,0.00000000,,0.43421053,79.00000000,3.49557522,0.01265823,0.00000000,8.62000000 +837,chr22,16271628,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.43000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.02352941,0.00000000,8.20000000 +838,chr22,16272013,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.40000000,25.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.36764706,70.00000000,3.09734513,0.02857143,0.00000000,8.43000000 +839,chr22,16272018,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.77000000,19.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.81000000,0.00000000,,0.39130435,71.00000000,3.14159292,0.02816901,0.00000000,8.35000000 +840,chr22,16272201,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.12000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,0.38000000,0.00000000,,0.38235294,69.00000000,3.05309735,0.01449275,0.00000000,3.92000000 +841,chr22,16272208,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.35000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,39.00000000,0.00000000,0.84000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,3.67000000 +842,chr22,16272844,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.55000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,1.25000000,0.00000000,,0.33928571,58.00000000,2.56637168,0.01724138,0.00000000,4.45000000 +843,chr22,16272884,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.42000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.08000000,0.00000000,,0.35849057,54.00000000,2.38938053,0.01851852,0.00000000,7.79000000 +844,chr22,16273008,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,55.32000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.22000000,0.00000000,,0.33928571,57.00000000,2.52212389,0.01754386,0.00000000,7.50000000 +845,chr22,16273288,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,52.88000000,20.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-0.22000000,0.00000000,,0.49019608,53.00000000,2.34513274,0.03773585,0.00000000,4.23000000 +846,chr22,16273536,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.23000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,38.00000000,0.00000000,-0.31000000,0.00000000,,0.46000000,53.00000000,2.34513274,0.01886792,0.00000000,3.61000000 +847,chr22,16273577,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.99000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,44.00000000,0.00000000,-0.31000000,0.00000000,,0.51785714,57.00000000,2.52212389,0.01754386,0.00000000,3.84000000 +848,chr22,16273990,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.07000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.34000000,0.00000000,,0.50000000,79.00000000,3.49557522,0.01265823,0.00000000,4.52000000 +849,chr22,16274026,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.81000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,0.01000000,0.00000000,,0.41095890,73.00000000,3.23008850,0.00000000,0.00000000,4.12000000 +850,chr22,16274395,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.14000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.21000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.09000000 +851,chr22,16274550,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.73000000,0.00000000,,0.41428571,71.00000000,3.14159292,0.01408451,0.00000000,4.31000000 +852,chr22,16274597,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.54000000,0.00000000,,0.37142857,70.00000000,3.09734513,0.00000000,0.00000000,8.60000000 +853,chr22,16274930,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.04545455,22.00000000,0.97345133,0.00000000,0.00000000,9.00000000,0.00000000,1.49000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,3.49000000 +854,chr22,16275215,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.59000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,-0.15000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,4.54000000 +855,chr22,16275289,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,53.26000000,23.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,1.47000000,0.00000000,,0.38333333,60.00000000,2.65486726,0.00000000,0.00000000,7.79000000 +856,chr22,16275383,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.98000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,45.00000000,0.00000000,-0.55000000,0.00000000,,0.34000000,50.00000000,2.21238938,0.00000000,0.00000000,4.00000000 +857,chr22,16275555,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.63000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.84000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,5.50000000 +858,chr22,16275787,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,55.48000000,15.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.35384615,65.00000000,2.87610619,0.00000000,0.00000000,7.75000000 +859,chr22,16276132,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.45000000,10.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.43902439,82.00000000,3.62831858,0.00000000,0.00000000,8.40000000 +860,chr22,16276262,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.90000000,6.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.64000000,0.00000000,,0.37500000,66.00000000,2.92035398,0.03030303,0.00000000,7.59000000 +861,chr22,16276271,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.97000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.33000000,0.00000000,,0.40298507,68.00000000,3.00884956,0.01470588,0.00000000,7.80000000 +862,chr22,16276393,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.04000000,9.00000000,ref,1.00000000,0.05555556,36.00000000,1.59292035,0.00000000,0.00000000,3.00000000,0.00000000,-0.60000000,0.00000000,,0.50684932,73.00000000,3.23008850,0.00000000,0.00000000,2.94000000 +863,chr22,16276625,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.91000000,9.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.31000000,0.00000000,,0.38271605,81.00000000,3.58407080,0.00000000,0.00000000,8.51000000 +864,chr22,16276682,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.55000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.35000000,0.00000000,,0.48717949,78.00000000,3.45132743,0.00000000,0.00000000,8.64000000 +865,chr22,16276892,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.69000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.27692308,65.00000000,2.87610619,0.00000000,0.00000000,6.50000000 +866,chr22,16277100,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.46000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-0.14000000,0.00000000,,0.40740741,54.00000000,2.38938053,0.00000000,0.00000000,4.15000000 +867,chr22,16277399,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,0.93000000,0.00000000,,0.36046512,86.00000000,3.80530973,0.00000000,0.00000000,9.13000000 +868,chr22,16277695,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,-0.45000000,0.00000000,,0.43283582,67.00000000,2.96460177,0.00000000,0.00000000,3.96000000 +869,chr22,16277858,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.84000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,8.28000000 +870,chr22,16278089,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.84000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,38.00000000,0.00000000,1.54000000,0.00000000,,0.55882353,70.00000000,3.09734513,0.01428571,0.00000000,3.97000000 +871,chr22,16278956,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.93000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.30000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.77000000 +872,chr22,16279129,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.27000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.28000000 +873,chr22,16279424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,-1.08000000,0.00000000,,0.39534884,43.00000000,1.90265487,0.00000000,0.00000000,3.95000000 +874,chr22,16279535,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,26.00000000,0.00000000,-1.16000000,0.00000000,,0.53846154,39.00000000,1.72566372,0.00000000,0.00000000,3.95000000 +875,chr22,16279597,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.31000000,3.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,0.00000000,1.41000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.72000000 +876,chr22,16345279,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,38.15000000,54.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,26.00000000,0.00000000,0.39000000,0.00000000,,0.46428571,29.00000000,1.28318584,0.03448276,0.00000000,3.88000000 +877,chr22,16345292,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,35.55000000,57.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,17.00000000,0.00000000,0.23000000,0.00000000,,0.46153846,27.00000000,1.19469027,0.03703704,0.00000000,3.77000000 +878,chr22,16356677,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,43.54000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,0.52000000,0.00000000,,0.37735849,53.00000000,2.34513274,0.00000000,0.00000000,4.44000000 +879,chr22,16356936,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,33.60000000,19.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,0.00000000,-1.01000000,0.00000000,,0.43750000,16.00000000,0.70796460,0.00000000,0.00000000,3.47000000 +880,chr22,16360731,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,38.95000000,67.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.13333333,0.00000000,29.00000000,0.00000000,1.05000000,0.00000000,,0.31428571,40.00000000,1.76991150,0.12500000,0.00000000,2.89000000 +881,chr22,16374130,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,18.79000000,21.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,-1.47000000,0.00000000,,0.55555556,9.00000000,0.39823009,0.00000000,0.00000000,3.53000000 +882,chr22,16382067,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,23.69000000,62.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,7.00000000,0.00000000,-0.04000000,0.00000000,,0.35000000,20.00000000,0.88495575,0.00000000,0.00000000,3.64000000 +883,chr22,16385677,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,40.23000000,30.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,-0.07000000,0.00000000,,0.50000000,22.00000000,0.97345133,0.00000000,0.00000000,3.65000000 +884,chr22,16386087,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.47000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,34.00000000,0.00000000,-1.70000000,0.00000000,,0.63013699,73.00000000,3.23008850,0.00000000,0.00000000,3.56000000 +885,chr22,16386232,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.61000000,21.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.53000000,0.00000000,,0.37037037,56.00000000,2.47787611,0.03571429,0.00000000,8.24000000 +886,chr22,16386526,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,50.14000000,35.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-1.25000000,0.00000000,,0.46666667,60.00000000,2.65486726,0.00000000,0.00000000,3.97000000 +887,chr22,16386752,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.09000000,7.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.01000000,0.00000000,,0.44186047,46.00000000,2.03539823,0.06521739,0.00000000,3.78000000 +888,chr22,16387638,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,98.00000000,0.00000000,-0.46000000,0.00000000,,0.34482759,59.00000000,2.61061947,0.01694915,0.00000000,8.17000000 +889,chr22,16388497,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.97000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,8.01000000 +890,chr22,16388785,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.30000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.15000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,8.91000000 +891,chr22,16389233,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.90000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.41000000,0.00000000,,0.45555556,92.00000000,4.07079646,0.00000000,0.00000000,8.73000000 +892,chr22,16389329,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.02000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-2.36000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,7.55000000 +893,chr22,16389382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.01000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.24000000,0.00000000,,0.43103448,61.00000000,2.69911504,0.04918033,0.00000000,7.31000000 +894,chr22,16389436,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.54000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.03000000 +895,chr22,16389488,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.94000000,0.00000000,,0.45762712,60.00000000,2.65486726,0.00000000,0.00000000,4.45000000 +896,chr22,16389655,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.30000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.01538462,0.00000000,7.65000000 +897,chr22,16389667,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,39.00000000,0.00000000,-1.06000000,0.00000000,,0.39655172,59.00000000,2.61061947,0.01694915,0.00000000,3.65000000 +898,chr22,16389699,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.13000000,0.00000000,,0.38983051,60.00000000,2.65486726,0.00000000,0.00000000,8.76000000 +899,chr22,16389835,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.67000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,38.00000000,0.00000000,0.69000000,0.00000000,,0.43333333,62.00000000,2.74336283,0.03225806,0.00000000,4.08000000 +900,chr22,16390038,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,38.00000000,0.00000000,-0.27000000,0.00000000,,0.26530612,50.00000000,2.21238938,0.02000000,0.00000000,2.76000000 +901,chr22,16390164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,-0.09000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,4.85000000 +902,chr22,16390354,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.01000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.86000000,0.00000000,,0.27272727,66.00000000,2.92035398,0.00000000,0.00000000,4.52000000 +903,chr22,16390407,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,-0.65000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,4.69000000 +904,chr22,16390592,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.22000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,41.00000000,0.00000000,-0.24000000,0.00000000,,0.34545455,57.00000000,2.52212389,0.03508772,0.00000000,4.17000000 +905,chr22,16390714,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,50.00000000,0.00000000,-0.25000000,0.00000000,,0.38235294,70.00000000,3.09734513,0.02857143,0.00000000,5.02000000 +906,chr22,16390737,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.13000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,7.87000000 +907,chr22,16390983,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,24.00000000,0.00000000,1.18000000,0.00000000,,0.44827586,65.00000000,2.87610619,0.10769231,0.00000000,3.47000000 +908,chr22,16391137,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,49.00000000,0.00000000,-0.17000000,0.00000000,,0.41428571,72.00000000,3.18584071,0.02777778,0.00000000,4.31000000 +909,chr22,16391177,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,34.00000000,0.00000000,-1.21000000,0.00000000,,0.38571429,75.00000000,3.31858407,0.06666667,0.00000000,3.48000000 +910,chr22,16391225,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,0.35000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.01388889,0.00000000,3.16000000 +911,chr22,16391917,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,1.22000000,0.00000000,,0.42307692,56.00000000,2.47787611,0.07142857,0.00000000,4.59000000 +912,chr22,16392165,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.74000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,53.00000000,0.00000000,0.92000000,0.00000000,,0.44067797,63.00000000,2.78761062,0.06349206,0.00000000,4.59000000 +913,chr22,16392178,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.59000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-0.51000000,0.00000000,,0.41509434,60.00000000,2.65486726,0.11666667,0.00000000,4.39000000 +914,chr22,16392500,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,0.00000000,0.31000000,0.00000000,,0.53333333,63.00000000,2.78761062,0.04761905,0.00000000,4.25000000 +915,chr22,16392675,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.68000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.27000000 +916,chr22,16393941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.75000000,9.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,37.00000000,0.00000000,-0.93000000,0.00000000,,0.51562500,65.00000000,2.87610619,0.01538462,0.00000000,3.81000000 +917,chr22,16393989,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.51000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-0.62000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,3.73000000 +918,chr22,16394015,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.91000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,0.36000000,0.00000000,,0.53225806,63.00000000,2.78761062,0.01587302,0.00000000,3.47000000 +919,chr22,16395527,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.57000000,9.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.69000000,0.00000000,,0.46153846,53.00000000,2.34513274,0.01886792,0.00000000,3.56000000 +920,chr22,16395566,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.39000000,8.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.26000000,0.00000000,,0.46268657,67.00000000,2.96460177,0.00000000,0.00000000,3.84000000 +921,chr22,16395579,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.33000000,5.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.03000000,0.00000000,,0.45588235,69.00000000,3.05309735,0.01449275,0.00000000,3.78000000 +922,chr22,16395859,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,45.00000000,0.00000000,-1.03000000,0.00000000,,0.48529412,71.00000000,3.14159292,0.02816901,0.00000000,4.54000000 +923,chr22,16395989,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,50.00000000,0.00000000,-1.15000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,4.84000000 +924,chr22,16396587,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,0.00000000,-0.70000000,0.00000000,,0.45000000,62.00000000,2.74336283,0.03225806,0.00000000,3.99000000 +925,chr22,16397071,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.68000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,5.67000000 +926,chr22,16397311,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.03000000,21.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.82000000,0.00000000,,0.31372549,52.00000000,2.30088496,0.01923077,0.00000000,7.32000000 +927,chr22,16397637,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,42.92000000,55.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,23.00000000,0.00000000,-1.36000000,0.00000000,,0.45652174,46.00000000,2.03539823,0.00000000,0.00000000,3.82000000 +928,chr22,16397695,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,37.63000000,78.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,-0.80000000,0.00000000,,0.55555556,37.00000000,1.63716814,0.02702703,0.00000000,3.67000000 +929,chr22,16398154,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.40000000,34.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.82000000,0.00000000,,0.46376812,70.00000000,3.09734513,0.01428571,0.00000000,7.40000000 +930,chr22,16398328,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.76000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-0.02000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.04054054,0.00000000,4.62000000 +931,chr22,16398423,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,51.58000000,30.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.28000000 +932,chr22,16399344,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-1.17000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,7.24000000 +933,chr22,16399502,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.54000000,9.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,102.00000000,0.00000000,0.57000000,0.00000000,,0.31666667,60.00000000,2.65486726,0.00000000,0.00000000,12.07000000 +934,chr22,16399709,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.95000000,11.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.21000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,7.77000000 +935,chr22,16400002,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.17000000,0.00000000,,0.47727273,89.00000000,3.93805310,0.01123596,0.00000000,8.45000000 +936,chr22,16403202,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,48.19000000,48.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,51.00000000,0.00000000,-0.22000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.20000000,0.00000000,2.83000000 +937,chr22,16405528,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.68000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.41000000,0.00000000,,0.45588235,70.00000000,3.09734513,0.02857143,0.00000000,7.98000000 +938,chr22,16405529,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,55.68000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.41000000,0.00000000,,0.45588235,70.00000000,3.09734513,0.02857143,0.00000000,8.00000000 +939,chr22,16406147,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.83000000,5.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,105.00000000,0.00000000,0.79000000,0.00000000,,0.40243902,83.00000000,3.67256637,0.01204819,0.00000000,14.24000000 +940,chr22,16407486,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.43000000,0.00000000,,0.45333333,75.00000000,3.31858407,0.00000000,0.00000000,8.61000000 +941,chr22,16407851,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-1.01000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.00000000,0.00000000,4.19000000 +942,chr22,16408174,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.10000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.29000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,7.60000000 +943,chr22,16408688,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,0.81000000,0.00000000,,0.46031746,64.00000000,2.83185841,0.01562500,0.00000000,3.54000000 +944,chr22,16409570,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,55.19000000,18.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,123.00000000,0.00000000,-0.74000000,0.00000000,,0.36363636,110.00000000,4.86725664,0.00000000,0.00000000,11.23000000 +945,chr22,16410090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,46.09000000,75.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.46590909,89.00000000,3.93805310,0.01123596,0.00000000,7.66000000 +946,chr22,16411263,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,46.40000000,60.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.32530120,86.00000000,3.80530973,0.03488372,0.00000000,7.75000000 +947,chr22,16413538,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.60000000,21.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.38356164,75.00000000,3.31858407,0.01333333,0.00000000,8.11000000 +948,chr22,16413666,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.45000000,15.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.53000000,0.00000000,,0.45000000,60.00000000,2.65486726,0.00000000,0.00000000,8.51000000 +949,chr22,16414030,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,53.03000000,27.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.83000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.75000000 +950,chr22,16414520,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.95000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.55000000,0.00000000,,0.37500000,73.00000000,3.23008850,0.01369863,0.00000000,8.06000000 +951,chr22,16414656,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.29000000,19.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +952,chr22,16415742,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.68000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,25.00000000,0.00000000,-1.27000000,0.00000000,,0.48235294,87.00000000,3.84955752,0.02298851,0.00000000,3.27000000 +953,chr22,16416036,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.22000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,0.56000000,0.00000000,,0.40243902,82.00000000,3.62831858,0.00000000,0.00000000,4.51000000 +954,chr22,16416895,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.19000000,12.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.46000000,0.00000000,,0.41379310,91.00000000,4.02654867,0.04395604,0.00000000,8.15000000 +955,chr22,16417036,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.47000000,34.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,75.00000000,0.00000000,1.57000000,0.00000000,,0.13815789,152.00000000,6.72566372,0.00000000,0.00000000,4.64000000 +956,chr22,16417663,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.46000000,16.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.32432432,75.00000000,3.31858407,0.01333333,0.00000000,8.24000000 +957,chr22,16418937,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.65000000,52.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.37000000,0.00000000,,0.33783784,75.00000000,3.31858407,0.01333333,0.00000000,8.23000000 +958,chr22,16419079,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.02000000,58.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,100.00000000,0.00000000,2.09000000,0.00000000,,0.29411765,103.00000000,4.55752212,0.00970874,0.00000000,5.89000000 +959,chr22,16419408,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.64000000,43.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,79.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,120.00000000,5.30973451,0.00000000,0.00000000,4.73000000 +960,chr22,16422809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.50000000,0.00000000,,0.48192771,86.00000000,3.80530973,0.03488372,0.00000000,4.44000000 +961,chr22,16424254,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,54.03000000,24.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,114.00000000,0.00000000,2.56000000,0.00000000,,0.37113402,99.00000000,4.38053097,0.02020202,0.00000000,11.96000000 +962,chr22,16573213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.97000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.00000000,0.00000000,6.12000000 +963,chr22,16573401,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.85000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +964,chr22,16573442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.85000000,0.00000000,,0.12328767,76.00000000,3.36283186,0.02631579,0.00000000,5.01000000 +965,chr22,16573905,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,5.79000000 +966,chr22,16575088,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.33000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.59000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,4.48000000 +967,chr22,16577726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.18000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.19000000 +968,chr22,16579026,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.70000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,1.07000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,5.60000000 +969,chr22,16579529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.31000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.99000000 +970,chr22,16580157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.67000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +971,chr22,16580203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,5.60000000 +972,chr22,16580666,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.81000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +973,chr22,16583361,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.81000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.72000000,0.00000000,,0.16666667,54.00000000,2.38938053,0.00000000,0.00000000,5.76000000 +974,chr22,16583995,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.72000000 +975,chr22,16585603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.63000000,0.00000000,,0.16279070,44.00000000,1.94690265,0.02272727,0.00000000,4.31000000 +976,chr22,16585878,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,30.00000000,0.00000000,-0.59000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,3.85000000 +977,chr22,16599732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.74000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +978,chr22,16612526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,-0.39000000,0.00000000,,0.18181818,56.00000000,2.47787611,0.00000000,0.00000000,2.87000000 +979,chr22,16613057,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.10000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.19000000 +980,chr22,16613264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.67000000 +981,chr22,16618217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.75000000 +982,chr22,16622188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.03000000 +983,chr22,16625553,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.79000000,0.00000000,,0.17391304,72.00000000,3.18584071,0.04166667,0.00000000,5.63000000 +984,chr22,16626741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.00000000,0.00000000,7.16000000 +985,chr22,16629375,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.70000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,7.43000000 +986,chr22,16631746,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.44000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,1.40000000,0.00000000,,0.30666667,77.00000000,3.40707965,0.02597403,0.00000000,5.68000000 +987,chr22,16632936,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.93000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.87000000 +988,chr22,16641442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.44000000 +989,chr22,16642285,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,50.85000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.36000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,5.70000000 +990,chr22,16644003,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,46.77000000,17.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.08000000,0.00000000,,0.26865672,67.00000000,2.96460177,0.00000000,0.00000000,6.05000000 +991,chr22,16646267,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.42000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.41000000 +992,chr22,16648018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.14492754,73.00000000,3.23008850,0.05479452,0.00000000,5.49000000 +993,chr22,16649378,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.98000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +994,chr22,16649512,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +995,chr22,16650526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.16000000 +996,chr22,16652119,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,7.08000000 +997,chr22,16653604,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-1.68000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.02739726,0.00000000,5.47000000 +998,chr22,16654447,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.58000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +999,chr22,16655970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.61000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,2.97000000 +1000,chr22,16658976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.56000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.19000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,5.92000000 +1001,chr22,16660449,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,67.00000000,0.00000000,1.77000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.00000000,0.00000000,5.81000000 +1002,chr22,16661781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.02000000,15.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.38000000 +1003,chr22,16664924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.87000000,9.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,23.00000000,0.00000000,-1.44000000,0.00000000,,0.31428571,35.00000000,1.54867257,0.00000000,0.00000000,3.02000000 +1004,chr22,16665686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,27.00000000,0.00000000,1.77000000,0.00000000,,0.35294118,51.00000000,2.25663717,0.00000000,0.00000000,3.64000000 +1005,chr22,16665687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,27.00000000,0.00000000,1.77000000,0.00000000,,0.35294118,51.00000000,2.25663717,0.00000000,0.00000000,3.64000000 +1006,chr22,16667879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.72000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.00000000,0.00000000,6.77000000 +1007,chr22,16669786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.14000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.54000000 +1008,chr22,16670178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,57.00000000,0.00000000,1.17000000,0.00000000,,0.25000000,91.00000000,4.02654867,0.02197802,0.00000000,2.92000000 +1009,chr22,16681997,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,22.00000000,0.97345133,0.04545455,0.00000000,13.00000000,0.00000000,-0.41000000,0.00000000,,0.33333333,84.00000000,3.71681416,0.03571429,0.00000000,3.29000000 +1010,chr22,16689707,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +1011,chr22,16689902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.95000000,10.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.53000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.00000000 +1012,chr22,16694891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.01000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.99000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.61000000 +1013,chr22,16697711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.65000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.12000000 +1014,chr22,16699785,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.97000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.01136364,0.00000000,5.76000000 +1015,chr22,16703270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.60000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.71000000 +1016,chr22,16714378,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.44000000 +1017,chr22,16716496,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.85000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.00000000,0.00000000,7.41000000 +1018,chr22,16719756,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.48000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,6.08000000 +1019,chr22,16720766,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.60000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.28000000 +1020,chr22,16720934,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,0.71000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.53000000 +1021,chr22,16722678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.49000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.03571429,0.00000000,5.52000000 +1022,chr22,16722872,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +1023,chr22,16725912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.26373626,94.00000000,4.15929204,0.02127660,0.00000000,5.75000000 +1024,chr22,16727533,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,2.53000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.33000000 +1025,chr22,16732408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1026,chr22,16733220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.11000000,0.00000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,5.42000000 +1027,chr22,16735646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,2.09000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.01000000,0.00000000,6.60000000 +1028,chr22,16738684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.82000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.69000000 +1029,chr22,16739923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-1.45000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.21000000 +1030,chr22,16742374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.12658228,83.00000000,3.67256637,0.03614458,0.00000000,4.99000000 +1031,chr22,16742381,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.36000000,0.00000000,,0.12987013,80.00000000,3.53982301,0.03750000,0.00000000,4.98000000 +1032,chr22,16742672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.19000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.01587302,0.00000000,6.73000000 +1033,chr22,16743136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.56000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,55.00000000,0.00000000,1.20000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.01219512,0.00000000,3.04000000 +1034,chr22,16743395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.06000000 +1035,chr22,16751711,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.01000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,6.36000000 +1036,chr22,16754717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.89000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +1037,chr22,16767958,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.68000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.95000000 +1038,chr22,16768054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.84000000,14.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.25000000,48.00000000,2.12389381,0.00000000,0.00000000,6.47000000 +1039,chr22,16774125,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1040,chr22,16774862,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.01298701,0.00000000,6.75000000 +1041,chr22,16775960,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.70000000,0.00000000,,0.25641026,82.00000000,3.62831858,0.04878049,0.00000000,5.98000000 +1042,chr22,16776308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.50000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1043,chr22,16781098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,1.30000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +1044,chr22,16782453,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.29000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.13000000 +1045,chr22,16784014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.32000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +1046,chr22,16784304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.30000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.05000000 +1047,chr22,16789308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.41000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.63000000 +1048,chr22,16789597,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.29000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +1049,chr22,16795218,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.35555556,91.00000000,4.02654867,0.01098901,0.00000000,8.46000000 +1050,chr22,16795961,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,5.00000000,0.00000000,-1.69000000,0.00000000,,0.50602410,87.00000000,3.84955752,0.04597701,0.00000000,3.44000000 +1051,chr22,16797540,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.78000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.24000000 +1052,chr22,16797575,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,45.00000000,0.00000000,0.56000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,4.56000000 +1053,chr22,16797605,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,24.00000000,0.00000000,-0.55000000,0.00000000,,0.42857143,58.00000000,2.56637168,0.03448276,0.00000000,4.14000000 +1054,chr22,16798225,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,39.00000000,0.00000000,0.54000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.02631579,0.00000000,4.01000000 +1055,chr22,16799455,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,-1.45000000,0.00000000,,0.51724138,61.00000000,2.69911504,0.03278689,0.00000000,4.50000000 +1056,chr22,16799498,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,-2.13000000,0.00000000,,0.46153846,66.00000000,2.92035398,0.01515152,0.00000000,7.53000000 +1057,chr22,16800502,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.49000000,0.00000000,,0.44736842,79.00000000,3.49557522,0.03797468,0.00000000,8.17000000 +1058,chr22,16801041,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.91000000 +1059,chr22,16803175,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,0.84000000,0.00000000,,0.43333333,62.00000000,2.74336283,0.03225806,0.00000000,7.81000000 +1060,chr22,16803473,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.43283582,71.00000000,3.14159292,0.05633803,0.00000000,8.24000000 +1061,chr22,16805439,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-2.71000000,0.00000000,,0.50649351,79.00000000,3.49557522,0.02531646,0.00000000,8.16000000 +1062,chr22,16805822,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.45205479,76.00000000,3.36283186,0.03947368,0.00000000,8.10000000 +1063,chr22,16806945,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,43.00000000,0.00000000,-0.68000000,0.00000000,,0.38461538,78.00000000,3.45132743,0.00000000,0.00000000,3.97000000 +1064,chr22,16807168,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02325581,43.00000000,1.90265487,0.00000000,0.00000000,105.00000000,0.00000000,-0.07000000,0.00000000,,0.34831461,90.00000000,3.98230088,0.01111111,0.00000000,14.00000000 +1065,chr22,16807376,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.51219512,83.00000000,3.67256637,0.00000000,0.00000000,8.41000000 +1066,chr22,16814529,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.74000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +1067,chr22,16816517,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.84000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,8.26000000 +1068,chr22,16828991,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.75000000,0.00000000,,0.31081081,74.00000000,3.27433628,0.00000000,0.00000000,6.76000000 +1069,chr22,16834212,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,0.40000000,0.00000000,,0.52173913,70.00000000,3.09734513,0.00000000,0.00000000,8.49000000 +1070,chr22,16835423,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,102.00000000,0.00000000,-0.55000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,10.36000000 +1071,chr22,16836097,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.03000000,0.00000000,,0.50704225,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +1072,chr22,16836100,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-1.04000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.00000000,0.00000000,8.54000000 +1073,chr22,16840138,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.09000000 +1074,chr22,16841465,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.12000000,0.00000000,,0.54666667,77.00000000,3.40707965,0.02597403,0.00000000,3.70000000 +1075,chr22,16843689,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.74000000,0.00000000,,0.47126437,87.00000000,3.84955752,0.00000000,0.00000000,8.95000000 +1076,chr22,16845388,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.45679012,83.00000000,3.67256637,0.02409639,0.00000000,7.61000000 +1077,chr22,16845542,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.08888889,0.00000000,106.00000000,0.00000000,2.84000000,0.00000000,,0.38834951,109.00000000,4.82300885,0.05504587,0.00000000,11.96000000 +1078,chr22,16845626,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,100.00000000,0.00000000,-2.13000000,0.00000000,,0.33333333,85.00000000,3.76106195,0.01176471,0.00000000,8.03000000 +1079,chr22,16845660,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,0.42000000,0.00000000,,0.41666667,77.00000000,3.40707965,0.06493506,0.00000000,7.61000000 +1080,chr22,16846249,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.34000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +1081,chr22,16846310,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-0.22000000,0.00000000,,0.37037037,82.00000000,3.62831858,0.01219512,0.00000000,8.64000000 +1082,chr22,16846476,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.31000000,0.00000000,,0.40000000,101.00000000,4.46902655,0.00990099,0.00000000,8.67000000 +1083,chr22,16847912,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.39240506,81.00000000,3.58407080,0.01234568,0.00000000,8.63000000 +1084,chr22,16849480,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,19.00000000,0.00000000,-0.91000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,3.20000000 +1085,chr22,16850130,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,-0.19000000,0.00000000,,0.39393939,100.00000000,4.42477876,0.01000000,0.00000000,8.60000000 +1086,chr22,16852607,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,-0.13000000,0.00000000,,0.37837838,74.00000000,3.27433628,0.00000000,0.00000000,8.93000000 +1087,chr22,16856564,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,0.83000000,0.00000000,,0.44927536,70.00000000,3.09734513,0.01428571,0.00000000,4.31000000 +1088,chr22,16857172,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.42857143,92.00000000,4.07079646,0.01086957,0.00000000,8.52000000 +1089,chr22,16857396,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.43678161,89.00000000,3.93805310,0.01123596,0.00000000,8.46000000 +1090,chr22,16857817,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.01000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.06000000,0.00000000,,0.50000000,66.00000000,2.92035398,0.00000000,0.00000000,4.22000000 +1091,chr22,16858151,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.12000000,0.00000000,,0.48571429,72.00000000,3.18584071,0.02777778,0.00000000,4.29000000 +1092,chr22,16858352,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.83000000,0.00000000,,0.36000000,76.00000000,3.36283186,0.01315789,0.00000000,8.45000000 +1093,chr22,16858862,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-1.47000000,0.00000000,,0.44047619,87.00000000,3.84955752,0.02298851,0.00000000,8.20000000 +1094,chr22,16859187,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,45.00000000,0.00000000,-1.28000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,4.49000000 +1095,chr22,16859529,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,0.62000000,0.00000000,,0.40740741,81.00000000,3.58407080,0.00000000,0.00000000,8.06000000 +1096,chr22,16859749,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.06000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,8.55000000 +1097,chr22,16859779,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.47000000,0.00000000,,0.37179487,79.00000000,3.49557522,0.01265823,0.00000000,8.72000000 +1098,chr22,16861014,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.00000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,8.36000000 +1099,chr22,16861713,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,1.82000000,0.00000000,,0.42528736,89.00000000,3.93805310,0.02247191,0.00000000,4.74000000 +1100,chr22,16862095,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.63000000,0.00000000,,0.53333333,78.00000000,3.45132743,0.03846154,0.00000000,8.28000000 +1101,chr22,16863969,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,105.00000000,0.00000000,-0.61000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,14.38000000 +1102,chr22,16865994,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,0.77000000,0.00000000,,0.44186047,89.00000000,3.93805310,0.02247191,0.00000000,7.92000000 +1103,chr22,16883828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.24000000,34.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.11764706,0.00000000,15.00000000,0.00000000,-0.54000000,0.00000000,,0.42222222,46.00000000,2.03539823,0.02173913,0.00000000,3.47000000 +1104,chr22,16887603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.18000000,15.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.49000000,0.00000000,,0.10606061,67.00000000,2.96460177,0.01492537,0.00000000,4.86000000 +1105,chr22,16889203,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.22000000,13.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-2.00000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.33000000 +1106,chr22,16889276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.00000000,19.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.76000000,0.00000000,,0.33333333,58.00000000,2.56637168,0.01724138,0.00000000,8.69000000 +1107,chr22,16891366,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.15000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.23000000,0.00000000,,0.16666667,93.00000000,4.11504425,0.03225806,0.00000000,5.62000000 +1108,chr22,16891465,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.07000000,14.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.53000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.96000000 +1109,chr22,16891467,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.83000000,15.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.82000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,6.21000000 +1110,chr22,16891474,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.26000000,18.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.20000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.19000000 +1111,chr22,16892119,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,48.67000000,51.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.61000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,6.26000000 +1112,chr22,16893167,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,46.80000000,70.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,-0.72000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.83000000 +1113,chr22,16898095,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.10000000,10.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.42000000,0.00000000,,0.31343284,68.00000000,3.00884956,0.01470588,0.00000000,6.69000000 +1114,chr22,16898164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.50000000,33.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-1.07000000,0.00000000,,0.31578947,59.00000000,2.61061947,0.03389831,0.00000000,6.51000000 +1115,chr22,16899672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.68000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +1116,chr22,16900449,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,47.11000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-0.78000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,4.26000000 +1117,chr22,16904256,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.70000000 +1118,chr22,16904647,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.08000000 +1119,chr22,16904736,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.35000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.69000000 +1120,chr22,16905335,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,51.22000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.66000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,5.29000000 +1121,chr22,16906755,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,45.79000000,61.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.71000000,0.00000000,,0.37313433,67.00000000,2.96460177,0.00000000,0.00000000,8.43000000 +1122,chr22,16906867,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.29000000,8.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-0.90000000,0.00000000,,0.47540984,61.00000000,2.69911504,0.00000000,0.00000000,8.70000000 +1123,chr22,16907080,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.33000000,14.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.39000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.02941176,0.00000000,6.15000000 +1124,chr22,16907149,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,54.29000000,18.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,2.15000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,5.88000000 +1125,chr22,16907203,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.09000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.35000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.58000000 +1126,chr22,16907260,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.88000000,9.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.53000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.08000000 +1127,chr22,16907290,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,57.74000000,7.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.48000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.02739726,0.00000000,5.39000000 +1128,chr22,16907297,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.74000000,7.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.23000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.51000000 +1129,chr22,16907397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.07000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,3.44000000 +1130,chr22,16907833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.88000000,7.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.24000000 +1131,chr22,16907944,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,58.00000000,0.00000000,-0.79000000,0.00000000,,0.20895522,73.00000000,3.23008850,0.02739726,0.00000000,4.34000000 +1132,chr22,16908266,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-1.24000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1133,chr22,16909268,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.42000000,11.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,73.00000000,0.00000000,-2.67000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.31000000 +1134,chr22,16910198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.60000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,0.98000000,3.20000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,3.61000000 +1135,chr22,16911741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,49.85000000,56.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,4.89000000 +1136,chr22,16911769,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,53.38000000,33.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.45000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.03750000,0.00000000,5.50000000 +1137,chr22,16911982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.86000000,29.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.28000000,0.00000000,,0.24000000,51.00000000,2.25663717,0.01960784,0.00000000,6.44000000 +1138,chr22,16912130,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,35.00000000,0.00000000,-0.17000000,0.00000000,,0.40384615,52.00000000,2.30088496,0.00000000,0.00000000,4.09000000 +1139,chr22,16915084,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.88000000 +1140,chr22,16917618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-1.26000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.67000000 +1141,chr22,16917922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.72000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,5.94000000 +1142,chr22,16924021,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.88000000,0.00000000,,0.38750000,82.00000000,3.62831858,0.02439024,0.00000000,7.20000000 +1143,chr22,16924385,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.01190476,0.00000000,6.36000000 +1144,chr22,16925360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.73000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.01136364,0.00000000,6.65000000 +1145,chr22,16925691,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.40000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.00000000 +1146,chr22,16926676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.76000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.41000000 +1147,chr22,16927226,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,0.00000000,-1.82000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.02325581,0.00000000,13.80000000 +1148,chr22,16929007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.87000000 +1149,chr22,16929855,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.20000000 +1150,chr22,16931326,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,60.00000000,0.00000000,-0.75000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.53000000 +1151,chr22,16933213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,78.00000000,0.00000000,-0.27000000,0.00000000,,0.17000000,100.00000000,4.42477876,0.00000000,0.00000000,5.45000000 +1152,chr22,16933495,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,84.00000000,0.00000000,1.68000000,0.00000000,,0.20731707,86.00000000,3.80530973,0.04651163,0.00000000,5.24000000 +1153,chr22,16935588,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,68.00000000,0.00000000,2.01000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.03947368,0.00000000,5.41000000 +1154,chr22,16935715,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.29000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +1155,chr22,16936035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.54000000,0.00000000,,0.16393443,64.00000000,2.83185841,0.04687500,0.00000000,4.25000000 +1156,chr22,16938448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-1.98000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.59000000 +1157,chr22,16938678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.03000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.22000000 +1158,chr22,16940239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,1.21000000,0.00000000,,0.30232558,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +1159,chr22,16942011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,7.03000000 +1160,chr22,16943040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,1.30000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +1161,chr22,16943607,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,70.00000000,0.00000000,1.01000000,0.00000000,,0.12643678,88.00000000,3.89380531,0.01136364,0.00000000,4.71000000 +1162,chr22,16946774,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.16000000,0.00000000,,0.36170213,94.00000000,4.15929204,0.00000000,0.00000000,8.93000000 +1163,chr22,16948092,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,0.00000000,0.00000000,,0.45679012,82.00000000,3.62831858,0.01219512,0.00000000,4.28000000 +1164,chr22,16948456,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.43478261,94.00000000,4.15929204,0.02127660,0.00000000,8.23000000 +1165,chr22,16948494,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.45000000,0.00000000,,0.43750000,96.00000000,4.24778761,0.00000000,0.00000000,7.89000000 +1166,chr22,16948544,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,50.00000000,0.00000000,-0.68000000,0.00000000,,0.40000000,80.00000000,3.53982301,0.00000000,0.00000000,4.23000000 +1167,chr22,16950489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.61000000,0.00000000,,0.16504854,103.00000000,4.55752212,0.00000000,0.00000000,5.56000000 +1168,chr22,16951592,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.21000000,0.00000000,,0.60493827,82.00000000,3.62831858,0.00000000,0.00000000,8.52000000 +1169,chr22,16953102,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.65000000,0.00000000,,0.44927536,69.00000000,3.05309735,0.00000000,0.00000000,8.93000000 +1170,chr22,16953363,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.93000000,0.00000000,,0.52000000,76.00000000,3.36283186,0.01315789,0.00000000,4.21000000 +1171,chr22,16954041,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.59000000,0.00000000,,0.39240506,81.00000000,3.58407080,0.02469136,0.00000000,8.10000000 +1172,chr22,16958924,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.38372093,88.00000000,3.89380531,0.02272727,0.00000000,8.36000000 +1173,chr22,16960634,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.81000000,0.00000000,,0.45555556,91.00000000,4.02654867,0.01098901,0.00000000,8.43000000 +1174,chr22,16961849,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.42352941,86.00000000,3.80530973,0.01162791,0.00000000,7.83000000 +1175,chr22,16963341,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,51.00000000,0.00000000,-1.38000000,0.00000000,,0.37209302,86.00000000,3.80530973,0.00000000,0.00000000,4.41000000 +1176,chr22,16965825,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.40243902,83.00000000,3.67256637,0.00000000,0.00000000,8.95000000 +1177,chr22,16966016,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.50000000,0.00000000,,0.38888889,93.00000000,4.11504425,0.03225806,0.00000000,7.99000000 +1178,chr22,16970820,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.36000000,0.00000000,,0.50000000,81.00000000,3.58407080,0.01234568,0.00000000,7.56000000 +1179,chr22,16970964,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,1.80000000,0.00000000,,0.42307692,83.00000000,3.67256637,0.06024096,0.00000000,8.40000000 +1180,chr22,16971410,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.43902439,84.00000000,3.71681416,0.02380952,0.00000000,8.39000000 +1181,chr22,16978878,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,-0.21000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.01298701,0.00000000,4.71000000 +1182,chr22,16980993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.00000000,0.00000000,6.11000000 +1183,chr22,16982299,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-2.12000000,0.00000000,,0.46987952,86.00000000,3.80530973,0.03488372,0.00000000,7.52000000 +1184,chr22,16982730,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.17000000,0.00000000,,0.52054795,73.00000000,3.23008850,0.00000000,0.00000000,4.28000000 +1185,chr22,16992998,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,0.00000000,-0.86000000,0.00000000,,0.53488372,86.00000000,3.80530973,0.00000000,0.00000000,8.74000000 +1186,chr22,16996676,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.06000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.87000000 +1187,chr22,16996699,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.42000000,0.00000000,,0.45614035,58.00000000,2.56637168,0.01724138,0.00000000,7.48000000 +1188,chr22,16997346,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,53.73000000,21.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.70000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.03174603,0.00000000,3.16000000 +1189,chr22,17007540,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.22000000,0.00000000,,0.49180328,62.00000000,2.74336283,0.01612903,0.00000000,3.94000000 +1190,chr22,17008234,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.25000000,0.00000000,,0.49152542,59.00000000,2.61061947,0.00000000,0.00000000,4.60000000 +1191,chr22,17008391,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,41.00000000,0.00000000,-1.85000000,0.00000000,,0.48611111,78.00000000,3.45132743,0.07692308,0.00000000,4.15000000 +1192,chr22,17010694,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.37000000 +1193,chr22,17011562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.25000000 +1194,chr22,17021269,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,55.71000000,16.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.28421053,96.00000000,4.24778761,0.01041667,0.00000000,5.77000000 +1195,chr22,17113582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.10000000,0.00000000,83.00000000,0.00000000,-1.70000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,5.93000000 +1196,chr22,17115339,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.86000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.23000000 +1197,chr22,17116407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,86.00000000,0.00000000,0.57000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.00000000,0.00000000,5.99000000 +1198,chr22,17116823,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,-1.11000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.82000000 +1199,chr22,17116878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,1.03000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +1200,chr22,17117420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.90000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,6.06000000 +1201,chr22,17117923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.22000000 +1202,chr22,17118954,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,0.32000000,0.00000000,,0.29545455,88.00000000,3.89380531,0.00000000,0.00000000,5.92000000 +1203,chr22,17128341,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.87000000,0.00000000,,0.28571429,75.00000000,3.31858407,0.06666667,0.00000000,4.86000000 +1204,chr22,17129414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,0.30000000,0.00000000,,0.15714286,71.00000000,3.14159292,0.00000000,0.00000000,6.26000000 +1205,chr22,17129901,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.98000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.21000000 +1206,chr22,17133802,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.19000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.34000000 +1207,chr22,17134412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,2.01000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.69000000 +1208,chr22,17134482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.12676056,74.00000000,3.27433628,0.02702703,0.00000000,5.60000000 +1209,chr22,17135151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,-1.27000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.20000000 +1210,chr22,17138402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.04000000,0.00000000,6.25000000 +1211,chr22,17138826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.90000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +1212,chr22,17141728,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.42000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.95000000 +1213,chr22,17143535,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.90000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +1214,chr22,17151243,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.31000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.07000000 +1215,chr22,17151304,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.61000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.30000000 +1216,chr22,17156988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,43.00000000,0.00000000,0.13000000,0.00000000,,0.34042553,49.00000000,2.16814159,0.02040816,0.00000000,4.18000000 +1217,chr22,17158433,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,-0.82000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.62000000 +1218,chr22,17160610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,72.00000000,0.00000000,0.47000000,0.00000000,,0.24324324,80.00000000,3.53982301,0.07500000,0.00000000,5.74000000 +1219,chr22,17161022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.12000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,7.21000000 +1220,chr22,17162835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.49000000 +1221,chr22,17162953,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +1222,chr22,17163241,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.88000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +1223,chr22,17163835,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.30000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,7.04000000 +1224,chr22,17165706,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +1225,chr22,17166125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.38000000,0.00000000,,0.18965517,62.00000000,2.74336283,0.04838710,0.00000000,6.41000000 +1226,chr22,17166972,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.41000000 +1227,chr22,17166989,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.28000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.69000000 +1228,chr22,17170551,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +1229,chr22,17171571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.00000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +1230,chr22,17172140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.22950820,63.00000000,2.78761062,0.01587302,0.00000000,5.78000000 +1231,chr22,17173178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,70.00000000,0.00000000,-0.44000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,4.96000000 +1232,chr22,17173501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.39000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +1233,chr22,17174211,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.29411765,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +1234,chr22,17175834,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,-0.18000000,0.00000000,,0.23008850,120.00000000,5.30973451,0.05000000,0.00000000,5.86000000 +1235,chr22,17187601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,-0.87000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.03260870,0.00000000,5.87000000 +1236,chr22,17187678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.03703704,0.00000000,5.72000000 +1237,chr22,17189366,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.24000000,0.00000000,,0.40540541,75.00000000,3.31858407,0.01333333,0.00000000,8.51000000 +1238,chr22,17190243,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.43902439,85.00000000,3.76106195,0.03529412,0.00000000,8.06000000 +1239,chr22,17199169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.18181818,74.00000000,3.27433628,0.08108108,0.00000000,5.84000000 +1240,chr22,17199629,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,0.32000000,0.00000000,,0.43076923,69.00000000,3.05309735,0.05797101,0.00000000,7.98000000 +1241,chr22,17200081,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-1.07000000,0.00000000,,0.36000000,52.00000000,2.30088496,0.01923077,0.00000000,8.05000000 +1242,chr22,17202785,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.07692308,30.00000000,1.32743363,0.13333333,0.00000000,6.00000000,0.00000000,0.64000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.06666667,0.00000000,3.50000000 +1243,chr22,17204304,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.66000000,0.00000000,,0.45070423,73.00000000,3.23008850,0.02739726,0.00000000,4.41000000 +1244,chr22,17204461,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,92.00000000,0.00000000,-0.32000000,0.00000000,,0.38235294,71.00000000,3.14159292,0.04225352,0.00000000,8.30000000 +1245,chr22,17204468,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,-0.84000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.04054054,0.00000000,8.14000000 +1246,chr22,17209228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.00000000,0.00000000,6.33000000 +1247,chr22,17209519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,103.00000000,0.00000000,-0.15000000,0.00000000,,0.33333333,88.00000000,3.89380531,0.00000000,0.00000000,13.91000000 +1248,chr22,17232488,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,0.22000000,0.00000000,,0.37681159,88.00000000,3.89380531,0.21590909,0.00000000,6.44000000 +1249,chr22,17234205,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.23000000,0.00000000,,0.30769231,78.00000000,3.45132743,0.00000000,0.00000000,6.46000000 +1250,chr22,17238021,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.71000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.75000000 +1251,chr22,17239465,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.04000000,0.00000000,,0.21649485,97.00000000,4.29203540,0.00000000,0.00000000,6.39000000 +1252,chr22,17239813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.43000000 +1253,chr22,17241995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.51000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.58000000 +1254,chr22,17247148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.18965517,73.00000000,3.23008850,0.20547945,0.00000000,5.77000000 +1255,chr22,17247356,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-2.49000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.11000000 +1256,chr22,17248816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.03000000,0.00000000,,0.25490196,52.00000000,2.30088496,0.01923077,0.00000000,6.38000000 +1257,chr22,17258347,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.19178082,79.00000000,3.49557522,0.07594937,0.00000000,6.06000000 +1258,chr22,17258621,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.16000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,6.10000000 +1259,chr22,17274907,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +1260,chr22,17308355,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.27000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.09000000 +1261,chr22,17308367,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.24000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,7.00000000 +1262,chr22,17316557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-2.09000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.00000000,0.00000000,5.23000000 +1263,chr22,17316560,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.67000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.88000000 +1264,chr22,17316838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.55000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +1265,chr22,17318973,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,84.00000000,0.00000000,0.06000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.82000000 +1266,chr22,17319066,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.14000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.80000000 +1267,chr22,17319582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.90000000,0.00000000,,0.09859155,71.00000000,3.14159292,0.00000000,0.00000000,5.44000000 +1268,chr22,17319622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.91000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +1269,chr22,17321891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,55.00000000,0.00000000,0.78000000,0.00000000,,0.13235294,79.00000000,3.49557522,0.12658228,0.00000000,2.90000000 +1270,chr22,17321924,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-1.61000000,0.00000000,,0.09090909,62.00000000,2.74336283,0.11290323,0.00000000,4.46000000 +1271,chr22,17321937,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-2.36000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.36000000 +1272,chr22,17322703,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.23076923,0.00000000,57.00000000,0.00000000,0.31000000,0.00000000,,0.25000000,54.00000000,2.38938053,0.11111111,0.00000000,3.08000000 +1273,chr22,17323944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.58000000 +1274,chr22,17324319,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.93000000,0.00000000,,0.26666667,78.00000000,3.45132743,0.03846154,0.00000000,6.28000000 +1275,chr22,17324323,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +1276,chr22,17324540,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,93.00000000,0.00000000,-1.24000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.79000000 +1277,chr22,17324562,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,-1.08000000,0.00000000,,0.26804124,97.00000000,4.29203540,0.00000000,0.00000000,6.66000000 +1278,chr22,17324842,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,72.00000000,0.00000000,-2.40000000,0.00000000,,0.19354839,68.00000000,3.00884956,0.08823529,0.00000000,5.80000000 +1279,chr22,17325250,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,5.75000000 +1280,chr22,17325332,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.20408163,49.00000000,2.16814159,0.00000000,0.00000000,6.96000000 +1281,chr22,17325832,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.99000000 +1282,chr22,17326058,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.21212121,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +1283,chr22,17326108,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.78000000 +1284,chr22,17326457,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1285,chr22,17326541,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.58000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.68000000 +1286,chr22,17326841,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,52.00000000,0.00000000,0.43000000,0.00000000,,0.25862069,59.00000000,2.61061947,0.01694915,0.00000000,2.87000000 +1287,chr22,17326875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.86000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.00000000 +1288,chr22,17326996,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,30.00000000,1.32743363,0.06666667,0.00000000,59.00000000,0.00000000,2.05000000,0.00000000,,0.13793103,64.00000000,2.83185841,0.09375000,0.00000000,4.02000000 +1289,chr22,17327057,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.16417910,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +1290,chr22,17327167,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.18032787,64.00000000,2.83185841,0.04687500,0.00000000,5.46000000 +1291,chr22,17327260,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.40000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +1292,chr22,17327261,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +1293,chr22,17327589,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.08000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.54000000 +1294,chr22,17327618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,1.28000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +1295,chr22,17327745,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.06000000,0.00000000,,0.08695652,70.00000000,3.09734513,0.01428571,0.00000000,4.96000000 +1296,chr22,17328071,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,6.75000000 +1297,chr22,17328559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.65000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +1298,chr22,17329163,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.84000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.54000000 +1299,chr22,17329593,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.13000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +1300,chr22,17329753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +1301,chr22,17331140,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.43000000 +1302,chr22,17331706,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.49000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +1303,chr22,17331770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-1.34000000,0.00000000,,0.26136364,91.00000000,4.02654867,0.03296703,0.00000000,6.58000000 +1304,chr22,17331907,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.94000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +1305,chr22,17334485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.19000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.26000000 +1306,chr22,17366152,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.11111111,55.00000000,2.43362832,0.01818182,0.00000000,5.19000000 +1307,chr22,17387263,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.83000000 +1308,chr22,17390451,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.42000000 +1309,chr22,17393983,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.24324324,0.00000000,66.00000000,0.00000000,-1.96000000,0.00000000,,0.16363636,63.00000000,2.78761062,0.12698413,0.00000000,5.23000000 +1310,chr22,17395621,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-1.24000000,0.00000000,,0.10666667,77.00000000,3.40707965,0.02597403,0.00000000,5.11000000 +1311,chr22,17396359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-1.25000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.10000000 +1312,chr22,17396384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.50000000 +1313,chr22,17401381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.01000000 +1314,chr22,17415033,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,6.08000000 +1315,chr22,17415036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,5.94000000 +1316,chr22,17415391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.35000000,0.00000000,,0.24096386,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +1317,chr22,17417159,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.25609756,86.00000000,3.80530973,0.04651163,0.00000000,6.42000000 +1318,chr22,17417487,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-0.06000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.96000000 +1319,chr22,17417488,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.00000000,0.00000000,6.83000000 +1320,chr22,17417920,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-1.04000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +1321,chr22,17417993,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.48000000 +1322,chr22,17418417,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.36000000 +1323,chr22,17418497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,6.30000000 +1324,chr22,17418561,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,86.00000000,0.00000000,-1.00000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,5.41000000 +1325,chr22,17418775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-2.69000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.00000000,0.00000000,5.95000000 +1326,chr22,17418870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.81000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.38000000 +1327,chr22,17419146,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,80.00000000,0.00000000,0.79000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.03296703,0.00000000,5.63000000 +1328,chr22,17419179,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.86000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.02469136,0.00000000,6.05000000 +1329,chr22,17419194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +1330,chr22,17420089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,4.65000000 +1331,chr22,17420128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,77.00000000,0.00000000,1.31000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,5.63000000 +1332,chr22,17420471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.04000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.24000000 +1333,chr22,17420794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.89000000 +1334,chr22,17421478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,6.74000000 +1335,chr22,17421757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.09000000,0.00000000,,0.16666667,70.00000000,3.09734513,0.05714286,0.00000000,5.37000000 +1336,chr22,17421886,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.18644068,62.00000000,2.74336283,0.04838710,0.00000000,6.15000000 +1337,chr22,17423309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +1338,chr22,17423794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.98000000 +1339,chr22,17426546,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.34000000 +1340,chr22,17427131,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.37000000 +1341,chr22,17427662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.17000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +1342,chr22,17428305,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +1343,chr22,17428366,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.62000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +1344,chr22,17428693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.40000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.70000000 +1345,chr22,17430479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.50000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.69000000 +1346,chr22,17439492,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +1347,chr22,17448122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.17000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.01041667,0.00000000,6.51000000 +1348,chr22,17460779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.58000000,0.00000000,,0.20202020,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +1349,chr22,17463835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.02000000 +1350,chr22,17463875,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-1.34000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,7.02000000 +1351,chr22,17465129,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.23636364,55.00000000,2.43362832,0.00000000,0.00000000,6.06000000 +1352,chr22,17465328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-0.31000000,0.00000000,,0.25301205,88.00000000,3.89380531,0.05681818,0.00000000,5.78000000 +1353,chr22,17469293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.97000000 +1354,chr22,17469300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,7.01000000 +1355,chr22,17469431,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.98000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +1356,chr22,17469875,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +1357,chr22,17471754,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.37000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.05000000,0.00000000,6.62000000 +1358,chr22,17484706,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.15294118,86.00000000,3.80530973,0.01162791,0.00000000,5.82000000 +1359,chr22,17486499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,1.14000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.51000000 +1360,chr22,17486830,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-1.12000000,0.00000000,,0.14516129,66.00000000,2.92035398,0.04545455,0.00000000,5.32000000 +1361,chr22,17486932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.93000000 +1362,chr22,17487140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,2.39000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.67000000 +1363,chr22,17487574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.88000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +1364,chr22,17488006,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.74000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,3.51000000 +1365,chr22,17489123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +1366,chr22,17489562,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.07000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.36000000 +1367,chr22,17489973,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,2.01000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +1368,chr22,17506764,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.39000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.54000000 +1369,chr22,17512410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.92000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.12000000 +1370,chr22,17514600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.24000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.91000000 +1371,chr22,17515556,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.43000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.59000000 +1372,chr22,17515610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,72.00000000,0.00000000,-2.06000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,4.86000000 +1373,chr22,17516116,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-2.19000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.03000000 +1374,chr22,17516996,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,0.00000000,0.10000000,0.00000000,,0.29824561,60.00000000,2.65486726,0.05000000,0.00000000,2.89000000 +1375,chr22,17517896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +1376,chr22,17518422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +1377,chr22,17518587,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.13000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.30000000 +1378,chr22,17519222,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.83000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,5.66000000 +1379,chr22,17519777,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,-0.68000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.03529412,0.00000000,6.28000000 +1380,chr22,17520584,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.23076923,58.00000000,2.56637168,0.08620690,0.00000000,6.66000000 +1381,chr22,17520935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.08000000,0.00000000,,0.24074074,54.00000000,2.38938053,0.00000000,0.00000000,6.37000000 +1382,chr22,17522081,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.22000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +1383,chr22,17525900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +1384,chr22,17526251,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +1385,chr22,17526540,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,2.58000000,0.00000000,,0.28571429,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +1386,chr22,17526908,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.28571429,87.00000000,3.84955752,0.03448276,0.00000000,6.01000000 +1387,chr22,17527743,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.30555556,90.00000000,3.98230088,0.20000000,0.00000000,5.88000000 +1388,chr22,17527978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,0.41000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,6.54000000 +1389,chr22,17528247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.00000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,5.79000000 +1390,chr22,17530966,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.48000000 +1391,chr22,17531249,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.82000000 +1392,chr22,17531250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.74000000 +1393,chr22,17531499,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.01000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,6.20000000 +1394,chr22,17532049,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.13000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.10000000 +1395,chr22,17532316,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.02500000,0.00000000,6.55000000 +1396,chr22,17532580,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.19387755,101.00000000,4.46902655,0.02970297,0.00000000,5.79000000 +1397,chr22,17535089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,36.00000000,0.00000000,-0.86000000,0.00000000,,0.29787234,48.00000000,2.12389381,0.02083333,0.00000000,2.99000000 +1398,chr22,17537871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.21000000,0.00000000,,0.15662651,87.00000000,3.84955752,0.04597701,0.00000000,5.23000000 +1399,chr22,17538827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.98000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,6.20000000 +1400,chr22,17539251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.14285714,86.00000000,3.80530973,0.02325581,0.00000000,4.98000000 +1401,chr22,17541084,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.56000000,0.00000000,,0.15476190,88.00000000,3.89380531,0.03409091,0.00000000,5.57000000 +1402,chr22,17541167,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.24000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +1403,chr22,17541323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.97000000 +1404,chr22,17541915,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.24000000 +1405,chr22,17542071,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.57000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1406,chr22,17545891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.24000000 +1407,chr22,17551053,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.78000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.02105263,0.00000000,5.96000000 +1408,chr22,17556692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,2.70000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,6.00000000 +1409,chr22,17558731,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.02150538,0.00000000,6.14000000 +1410,chr22,17558945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.30000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.32000000 +1411,chr22,17559209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.41000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +1412,chr22,17562533,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,0.55000000,0.00000000,,0.25252525,101.00000000,4.46902655,0.00990099,0.00000000,6.61000000 +1413,chr22,17562676,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.42000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.63000000 +1414,chr22,17564557,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.17000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.04395604,0.00000000,5.91000000 +1415,chr22,17564675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.43000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.81000000 +1416,chr22,17566578,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.08000000,0.00000000,,0.14925373,68.00000000,3.00884956,0.01470588,0.00000000,5.50000000 +1417,chr22,17566919,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.98000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.93000000 +1418,chr22,17567352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.00000000,0.00000000,6.72000000 +1419,chr22,17567525,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.30000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +1420,chr22,17570321,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.03000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.75000000 +1421,chr22,17573432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.54000000 +1422,chr22,17576210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,6.28000000 +1423,chr22,17577230,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.11000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.03448276,0.00000000,6.31000000 +1424,chr22,17598694,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,0.17000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.49000000 +1425,chr22,17612968,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.32000000 +1426,chr22,17618603,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,0.97000000,0.00000000,,0.16949153,68.00000000,3.00884956,0.13235294,0.00000000,5.52000000 +1427,chr22,17619627,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.96000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.97000000 +1428,chr22,17619861,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.84000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.50000000 +1429,chr22,17620272,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,73.00000000,0.00000000,-0.64000000,0.00000000,,0.26229508,63.00000000,2.78761062,0.03174603,0.00000000,6.19000000 +1430,chr22,17624511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.57000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,6.89000000 +1431,chr22,17624705,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,68.00000000,0.00000000,1.64000000,0.00000000,,0.14285714,82.00000000,3.62831858,0.04878049,0.00000000,4.94000000 +1432,chr22,17625200,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.07000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.71000000 +1433,chr22,17628334,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,7.01000000 +1434,chr22,17629087,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.58000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.01000000 +1435,chr22,17632685,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +1436,chr22,17632686,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +1437,chr22,17636379,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.55000000,0.00000000,,0.13235294,73.00000000,3.23008850,0.06849315,0.00000000,5.44000000 +1438,chr22,17636750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.69000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.02666667,0.00000000,6.01000000 +1439,chr22,17640043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.94000000 +1440,chr22,17643396,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.66000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +1441,chr22,17644310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,0.00000000,0.68000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,5.77000000 +1442,chr22,17645315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,1.69000000,0.00000000,,0.20312500,76.00000000,3.36283186,0.15789474,0.00000000,5.77000000 +1443,chr22,17647372,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.29310345,58.00000000,2.56637168,0.00000000,0.00000000,6.79000000 +1444,chr22,17649238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.02469136,0.00000000,6.31000000 +1445,chr22,17650724,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.03614458,0.00000000,6.33000000 +1446,chr22,17658555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.28000000,0.00000000,,0.19642857,56.00000000,2.47787611,0.00000000,0.00000000,2.77000000 +1447,chr22,17664260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.52000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +1448,chr22,17668156,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.97000000 +1449,chr22,17669412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.68000000 +1450,chr22,17671000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-1.33000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,3.02000000 +1451,chr22,17673619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-1.45000000,0.00000000,,0.12307692,74.00000000,3.27433628,0.12162162,0.00000000,4.66000000 +1452,chr22,17676938,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,6.65000000 +1453,chr22,17679213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,0.00000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.03658537,0.00000000,5.44000000 +1454,chr22,17681029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.79000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,4.75000000 +1455,chr22,17681836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.11000000 +1456,chr22,17682100,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,2.18000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.01075269,0.00000000,6.30000000 +1457,chr22,17684848,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.65000000,0.00000000,,0.23287671,82.00000000,3.62831858,0.08536585,0.00000000,5.83000000 +1458,chr22,17689861,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.29000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.01612903,6.30000000 +1459,chr22,17690241,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,1.26000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.03000000 +1460,chr22,17691752,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.06000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.12000000 +1461,chr22,17692264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +1462,chr22,17694147,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.28000000 +1463,chr22,17696334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-2.26000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,7.14000000 +1464,chr22,17696623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.15957447,95.00000000,4.20353982,0.01052632,0.00000000,5.58000000 +1465,chr22,17696633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.13000000,0.00000000,,0.14606742,90.00000000,3.98230088,0.01111111,0.00000000,5.86000000 +1466,chr22,17698855,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.01000000 +1467,chr22,17704039,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.52000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.72000000 +1468,chr22,17704450,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.22950820,63.00000000,2.78761062,0.03174603,0.00000000,6.33000000 +1469,chr22,17705703,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.30000000 +1470,chr22,17705759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.83000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.95000000 +1471,chr22,17706530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.23000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.72000000 +1472,chr22,17708011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,2.46000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +1473,chr22,17710350,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.41000000 +1474,chr22,17710753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.49000000 +1475,chr22,17710941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.33000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +1476,chr22,17713571,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,0.93000000,0.00000000,,0.16000000,52.00000000,2.30088496,0.03846154,0.00000000,4.42000000 +1477,chr22,17714287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.05000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.68000000 +1478,chr22,17714395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.12000000 +1479,chr22,17718112,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,-0.73000000,0.00000000,,0.23076923,59.00000000,2.61061947,0.10169492,0.00000000,6.19000000 +1480,chr22,17718438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.60000000 +1481,chr22,17719384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.16000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +1482,chr22,17720349,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.18367347,49.00000000,2.16814159,0.00000000,0.00000000,6.28000000 +1483,chr22,17720958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.97000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,2.90000000 +1484,chr22,17721176,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,1.23000000,0.00000000,,0.24074074,59.00000000,2.61061947,0.06779661,0.00000000,2.95000000 +1485,chr22,17721178,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.05000000,0.00000000,,0.24074074,58.00000000,2.56637168,0.06896552,0.00000000,2.79000000 +1486,chr22,17721180,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.32000000,0.00000000,,0.24074074,58.00000000,2.56637168,0.06896552,0.00000000,2.79000000 +1487,chr22,17729765,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,-0.55000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.55000000 +1488,chr22,17732754,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,1.79000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.54000000 +1489,chr22,17735675,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.65000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +1490,chr22,17736327,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.41000000 +1491,chr22,17736961,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.92000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.44000000 +1492,chr22,17738546,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.53000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.48000000 +1493,chr22,17739219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.94000000,0.00000000,,0.18279570,95.00000000,4.20353982,0.02105263,0.00000000,6.49000000 +1494,chr22,17739584,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,0.31000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.34000000 +1495,chr22,17740531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.23188406,78.00000000,3.45132743,0.11538462,0.00000000,5.81000000 +1496,chr22,17742918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,76.00000000,0.00000000,1.39000000,0.00000000,,0.19444444,78.00000000,3.45132743,0.05128205,0.00000000,5.85000000 +1497,chr22,17743755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.35000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +1498,chr22,17746421,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.13000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,6.64000000 +1499,chr22,17751823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.96000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +1500,chr22,17756546,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.42000000,0.00000000,,0.23529412,56.00000000,2.47787611,0.07142857,0.00000000,4.95000000 +1501,chr22,17757494,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,0.70000000,0.00000000,,0.53448276,62.00000000,2.74336283,0.06451613,0.00000000,4.53000000 +1502,chr22,17757658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,5.93000000 +1503,chr22,17758208,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.59000000,0.00000000,,0.12500000,83.00000000,3.67256637,0.02409639,0.00000000,5.18000000 +1504,chr22,17759416,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.84000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.02469136,0.00000000,7.64000000 +1505,chr22,17768860,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.28571429,0.00000000,56.00000000,0.00000000,0.37000000,0.00000000,,0.15384615,68.00000000,3.00884956,0.23529412,0.00000000,2.78000000 +1506,chr22,17771240,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,41.00000000,1.81415929,0.04878049,0.00000000,70.00000000,0.00000000,0.95000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.19000000 +1507,chr22,17771292,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-0.54000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,5.91000000 +1508,chr22,17771866,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.64000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.01149425,0.00000000,5.86000000 +1509,chr22,17773177,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.36000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.18000000 +1510,chr22,17773222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,0.04000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.02409639,0.00000000,4.75000000 +1511,chr22,17775616,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-1.53000000,0.00000000,,0.35294118,87.00000000,3.84955752,0.02298851,0.00000000,8.32000000 +1512,chr22,17777044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,69.00000000,0.00000000,-0.07000000,0.00000000,,0.18333333,67.00000000,2.96460177,0.10447761,0.00000000,6.09000000 +1513,chr22,17778262,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.17142857,111.00000000,4.91150442,0.01801802,0.00000000,6.29000000 +1514,chr22,17794548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.23000000,0.00000000,,0.19230769,106.00000000,4.69026549,0.01886792,0.00000000,6.17000000 +1515,chr22,17795362,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.14000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.23000000 +1516,chr22,17813672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.09000000 +1517,chr22,17813675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.16304348,92.00000000,4.07079646,0.00000000,0.00000000,5.74000000 +1518,chr22,17813718,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-1.59000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.01265823,0.00000000,6.57000000 +1519,chr22,17814957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.21000000,0.00000000,,0.11111111,74.00000000,3.27433628,0.02702703,0.00000000,4.92000000 +1520,chr22,17815224,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-1.05000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.00000000,0.00000000,6.38000000 +1521,chr22,17815323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,1.10000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.57000000 +1522,chr22,17815761,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.13000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,5.92000000 +1523,chr22,17815912,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,0.37000000,0.00000000,,0.22891566,86.00000000,3.80530973,0.03488372,0.00000000,5.59000000 +1524,chr22,17815957,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.22727273,92.00000000,4.07079646,0.04347826,0.00000000,6.00000000 +1525,chr22,17816431,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,90.00000000,0.00000000,0.11000000,0.00000000,,0.27722772,102.00000000,4.51327434,0.00000000,0.00000000,5.62000000 +1526,chr22,17816985,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.79000000,0.00000000,,0.21153846,106.00000000,4.69026549,0.01886792,0.00000000,6.14000000 +1527,chr22,17817171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.65000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.01204819,0.00000000,5.50000000 +1528,chr22,17817828,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.67000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.77000000 +1529,chr22,17818113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-1.62000000,0.00000000,,0.12162162,81.00000000,3.58407080,0.07407407,0.00000000,5.40000000 +1530,chr22,17819356,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.24000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.87000000 +1531,chr22,17819800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.20338983,62.00000000,2.74336283,0.04838710,0.00000000,6.30000000 +1532,chr22,17820304,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.02666667,0.00000000,5.90000000 +1533,chr22,17820643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +1534,chr22,17821626,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.47000000 +1535,chr22,17823719,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,0.97000000,0.00000000,,0.17431193,111.00000000,4.91150442,0.01801802,0.00000000,5.79000000 +1536,chr22,17824046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.25000000 +1537,chr22,17826170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.19718310,76.00000000,3.36283186,0.06578947,0.00000000,5.74000000 +1538,chr22,17826645,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,72.00000000,0.00000000,1.43000000,0.00000000,,0.15789474,98.00000000,4.33628319,0.02040816,0.00000000,4.83000000 +1539,chr22,17826672,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,76.00000000,0.00000000,-0.19000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.02173913,0.00000000,5.03000000 +1540,chr22,17826780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,-0.13000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.09000000 +1541,chr22,17826892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.77000000 +1542,chr22,17826900,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.22352941,89.00000000,3.93805310,0.04494382,0.00000000,5.75000000 +1543,chr22,17827037,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,81.00000000,0.00000000,-0.71000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.23000000 +1544,chr22,17827060,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.32000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.00000000,0.00000000,6.64000000 +1545,chr22,17827093,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.67000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +1546,chr22,17827185,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.34000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.27000000 +1547,chr22,17829079,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,61.00000000,0.00000000,-1.14000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,7.44000000 +1548,chr22,17829577,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,116.00000000,0.00000000,-1.32000000,0.00000000,,0.41250000,81.00000000,3.58407080,0.01234568,0.00000000,12.67000000 +1549,chr22,17830252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.63000000,0.00000000,,0.26153846,66.00000000,2.92035398,0.01515152,0.00000000,6.34000000 +1550,chr22,17830278,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.15000000,0.00000000,,0.43750000,67.00000000,2.96460177,0.04477612,0.00000000,8.34000000 +1551,chr22,17830746,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,13.00000000,0.00000000,0.44000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.01351351,0.00000000,3.35000000 +1552,chr22,17830818,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.92000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,7.94000000 +1553,chr22,17830825,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-2.48000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.17000000 +1554,chr22,17830849,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-1.88000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.00000000,0.00000000,4.64000000 +1555,chr22,17831398,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.50000000 +1556,chr22,17831625,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,-0.66000000,0.00000000,,0.43333333,95.00000000,4.20353982,0.04210526,0.00000000,4.76000000 +1557,chr22,17832223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.53000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.09000000 +1558,chr22,17833217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.88000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +1559,chr22,17833325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.98000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,5.86000000 +1560,chr22,17833538,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.10000000,0.00000000,,0.28125000,66.00000000,2.92035398,0.01515152,0.00000000,6.56000000 +1561,chr22,17833567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.92000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.28000000 +1562,chr22,17833760,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,62.00000000,0.00000000,0.88000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,7.76000000 +1563,chr22,17833854,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.08000000 +1564,chr22,17834329,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,1.25000000,0.00000000,,0.36781609,89.00000000,3.93805310,0.02247191,0.00000000,8.01000000 +1565,chr22,17834657,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.58000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,6.75000000 +1566,chr22,17834855,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,78.00000000,0.00000000,1.87000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.02127660,0.00000000,5.62000000 +1567,chr22,17835055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-2.24000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.01250000,0.00000000,7.10000000 +1568,chr22,17836197,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.78000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.13000000 +1569,chr22,17836413,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.99000000,0.00000000,,0.15384615,94.00000000,4.15929204,0.03191489,0.00000000,5.54000000 +1570,chr22,17837292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.84000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +1571,chr22,17837492,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-1.19000000,0.00000000,,0.14606742,90.00000000,3.98230088,0.01111111,0.00000000,5.76000000 +1572,chr22,17837545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.78000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,4.76000000 +1573,chr22,17837546,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,4.85000000 +1574,chr22,17837915,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.21000000 +1575,chr22,17838120,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,76.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,5.95000000 +1576,chr22,17840672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,0.61000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.91000000 +1577,chr22,17840716,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.17000000 +1578,chr22,17840843,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,1.16000000,0.00000000,,0.12195122,84.00000000,3.71681416,0.02380952,0.00000000,4.65000000 +1579,chr22,17841535,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.63000000 +1580,chr22,17841798,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.06000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +1581,chr22,17842301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.18840580,74.00000000,3.27433628,0.05405405,0.00000000,5.51000000 +1582,chr22,17843988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.49000000 +1583,chr22,17844047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.23000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +1584,chr22,17844057,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.84000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,4.39000000 +1585,chr22,17844824,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.66000000 +1586,chr22,17845737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.13000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +1587,chr22,17846380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,79.00000000,0.00000000,-2.33000000,0.00000000,,0.18681319,95.00000000,4.20353982,0.04210526,0.00000000,5.78000000 +1588,chr22,17846645,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.95000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,7.09000000 +1589,chr22,17848352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.26881720,93.00000000,4.11504425,0.00000000,0.00000000,6.70000000 +1590,chr22,17848388,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.08000000,0.00000000,,0.28409091,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +1591,chr22,17849105,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.00000000,0.00000000,6.09000000 +1592,chr22,17849644,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,58.00000000,0.00000000,2.02000000,0.00000000,,0.22352941,98.00000000,4.33628319,0.13265306,0.06666667,4.25000000 +1593,chr22,17851136,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.09000000,0.00000000,,0.27692308,65.00000000,2.87610619,0.00000000,0.00000000,6.46000000 +1594,chr22,17855114,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,1.28000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.02816901,0.00000000,5.39000000 +1595,chr22,17855590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.81000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.63000000 +1596,chr22,17856246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,-0.04000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +1597,chr22,17860245,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.72000000,0.00000000,,0.25000000,102.00000000,4.51327434,0.01960784,0.00000000,6.32000000 +1598,chr22,17861077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,69.00000000,0.00000000,-0.43000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.26000000 +1599,chr22,17861833,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.42000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +1600,chr22,17865673,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.32000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.01176471,0.00000000,6.37000000 +1601,chr22,17866057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.82000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +1602,chr22,17867182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.02000000,1.81000000,,0.13750000,83.00000000,3.67256637,0.03614458,0.00000000,4.42000000 +1603,chr22,17869913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,-0.71000000,0.00000000,,0.22580645,97.00000000,4.29203540,0.04123711,0.00000000,5.99000000 +1604,chr22,17870202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.93000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,6.75000000 +1605,chr22,17870864,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.01111111,0.00000000,6.36000000 +1606,chr22,17871144,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,4.85000000 +1607,chr22,17871506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-1.57000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.00000000 +1608,chr22,17871562,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.44000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.88000000 +1609,chr22,17873020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-0.16000000,0.00000000,,0.25688073,109.00000000,4.82300885,0.00000000,0.00000000,6.41000000 +1610,chr22,17874743,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.02000000 +1611,chr22,17874783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,71.00000000,0.00000000,0.61000000,0.00000000,,0.16666667,88.00000000,3.89380531,0.03409091,0.00000000,5.65000000 +1612,chr22,17875867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.85000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,4.23000000 +1613,chr22,17876477,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.99000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,5.68000000 +1614,chr22,17878044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,1.42000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +1615,chr22,17878417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.39000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.00000000,0.00000000,7.09000000 +1616,chr22,17879105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21904762,106.00000000,4.69026549,0.00943396,0.00000000,6.23000000 +1617,chr22,17880174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.33000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +1618,chr22,17880621,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,0.86000000,0.00000000,,0.24096386,86.00000000,3.80530973,0.03488372,0.00000000,5.72000000 +1619,chr22,17881813,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.67000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.33000000 +1620,chr22,17884874,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-1.35000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.76000000 +1621,chr22,17885782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.18000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.30000000 +1622,chr22,17886944,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-1.18000000,0.00000000,,0.26000000,61.00000000,2.69911504,0.18032787,0.00000000,3.11000000 +1623,chr22,17887150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.68000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.06000000 +1624,chr22,17888231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-1.00000000,0.00000000,,0.33962264,53.00000000,2.34513274,0.00000000,0.00000000,9.00000000 +1625,chr22,17888395,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.81000000 +1626,chr22,17888527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.38000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.75000000 +1627,chr22,17888592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.61000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +1628,chr22,17888871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.42000000 +1629,chr22,17889254,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.50000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.01149425,0.00000000,6.64000000 +1630,chr22,17891119,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +1631,chr22,17891248,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,75.00000000,0.00000000,-1.11000000,0.00000000,,0.16867470,89.00000000,3.93805310,0.06741573,0.00000000,4.89000000 +1632,chr22,17891384,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,88.00000000,0.00000000,0.71000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.19000000 +1633,chr22,17891788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.36000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,6.13000000 +1634,chr22,17891792,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,2.07000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,6.14000000 +1635,chr22,17892109,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,6.65000000 +1636,chr22,17894433,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-0.74000000,0.00000000,,0.17307692,53.00000000,2.34513274,0.01886792,0.00000000,5.82000000 +1637,chr22,17894563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.45000000 +1638,chr22,17895236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.45000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.36000000 +1639,chr22,17896394,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.02000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +1640,chr22,17897315,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.28000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,6.22000000 +1641,chr22,17898920,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,92.00000000,0.00000000,0.42000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,5.22000000 +1642,chr22,17903640,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-0.03000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.31000000 +1643,chr22,17904249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,0.03000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.25000000 +1644,chr22,17905549,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.58000000,0.00000000,,0.23711340,99.00000000,4.38053097,0.02020202,0.00000000,5.92000000 +1645,chr22,17906316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.61000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.30000000 +1646,chr22,17906782,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.02298851,0.00000000,5.48000000 +1647,chr22,17907514,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.35000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.02173913,0.00000000,6.00000000 +1648,chr22,17908295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.56000000 +1649,chr22,17910768,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-1.98000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,6.33000000 +1650,chr22,17914354,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,1.46000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,5.63000000 +1651,chr22,17914806,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +1652,chr22,17915147,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.63000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +1653,chr22,17915252,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.12643678,87.00000000,3.84955752,0.00000000,0.00000000,5.59000000 +1654,chr22,17915441,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.98000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,6.25000000 +1655,chr22,17919252,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,-2.07000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.00000000,0.00000000,4.17000000 +1656,chr22,17932810,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.26000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.00000000,0.00000000,5.87000000 +1657,chr22,17933721,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.24000000,4.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,-1.57000000,0.00000000,,0.24761905,108.00000000,4.77876106,0.01851852,0.00000000,5.44000000 +1658,chr22,17935510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.88000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.80000000 +1659,chr22,17935549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.39000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.60000000,0.00000000,,0.17567568,77.00000000,3.40707965,0.03896104,0.00000000,5.97000000 +1660,chr22,17936128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.03000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,3.02000000 +1661,chr22,17937289,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,1.65000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.87000000 +1662,chr22,17937488,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.92000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.16000000 +1663,chr22,17939018,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.14666667,78.00000000,3.45132743,0.03846154,0.00000000,5.34000000 +1664,chr22,17939133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.10000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,5.74000000 +1665,chr22,17939160,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,5.98000000 +1666,chr22,17939399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.38000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,6.49000000 +1667,chr22,17940077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.02298851,0.00000000,6.25000000 +1668,chr22,17943533,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,-0.42000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +1669,chr22,17943606,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +1670,chr22,17943613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +1671,chr22,17944652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.47000000,0.00000000,,0.18518519,58.00000000,2.56637168,0.06896552,0.00000000,5.28000000 +1672,chr22,17945014,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,1.52000000,0.00000000,,0.18644068,67.00000000,2.96460177,0.10447761,0.00000000,5.63000000 +1673,chr22,17945677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +1674,chr22,17946235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.30000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,5.95000000 +1675,chr22,17946513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.30000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.49000000 +1676,chr22,17946928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,-0.92000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.56000000 +1677,chr22,17947427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +1678,chr22,17948298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.55000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.03061224,0.00000000,6.33000000 +1679,chr22,17949080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,69.00000000,0.00000000,-3.19000000,0.00000000,,0.15116279,90.00000000,3.98230088,0.03333333,0.00000000,5.32000000 +1680,chr22,17949267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.56000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.48000000 +1681,chr22,17950542,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.27000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.79000000 +1682,chr22,17951322,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.18292683,85.00000000,3.76106195,0.03529412,0.00000000,6.21000000 +1683,chr22,17952123,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.38000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.01030928,6.63000000 +1684,chr22,17952520,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,-0.29000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +1685,chr22,17953992,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,70.00000000,0.00000000,0.99000000,0.00000000,,0.23376623,84.00000000,3.71681416,0.08333333,0.03448276,5.38000000 +1686,chr22,17954178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.48000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.15000000 +1687,chr22,17954277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +1688,chr22,17955455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.06000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.82000000 +1689,chr22,17955719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.17000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.43000000 +1690,chr22,17956281,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.58000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.02197802,0.00000000,5.73000000 +1691,chr22,17957310,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,91.00000000,0.00000000,0.03000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,5.35000000 +1692,chr22,17957862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +1693,chr22,17958697,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.20312500,69.00000000,3.05309735,0.07246377,0.00000000,6.02000000 +1694,chr22,17958705,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.02000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.04347826,0.00000000,6.17000000 +1695,chr22,17958797,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.16176471,72.00000000,3.18584071,0.04166667,0.00000000,5.96000000 +1696,chr22,17959001,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,77.00000000,0.00000000,-1.59000000,0.00000000,,0.23728814,67.00000000,2.96460177,0.11940299,0.00000000,5.88000000 +1697,chr22,17959756,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.32500000,82.00000000,3.62831858,0.00000000,0.00000000,8.39000000 +1698,chr22,17960192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,1.10000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +1699,chr22,17960915,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-1.13000000,0.00000000,,0.29761905,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +1700,chr22,17961414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.05000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +1701,chr22,17962265,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.72000000 +1702,chr22,17962684,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.02040816,0.00000000,6.24000000 +1703,chr22,17963350,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,45.00000000,0.00000000,-0.47000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.01408451,0.00000000,2.81000000 +1704,chr22,17964065,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.35000000 +1705,chr22,17964730,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,88.00000000,0.00000000,-0.54000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,5.93000000 +1706,chr22,17965363,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.02409639,0.00000000,5.86000000 +1707,chr22,17965510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,2.29000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +1708,chr22,17966194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.06000000,0.00000000,,0.27160494,85.00000000,3.76106195,0.04705882,0.00000000,6.27000000 +1709,chr22,17966810,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.16000000 +1710,chr22,17966992,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,6.05000000 +1711,chr22,17967458,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-1.19000000,0.00000000,,0.15116279,89.00000000,3.93805310,0.03370787,0.00000000,5.36000000 +1712,chr22,17968199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-1.33000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.62000000 +1713,chr22,17968827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.93000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.89000000 +1714,chr22,17971359,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.24000000,0.00000000,,0.12500000,77.00000000,3.40707965,0.05194805,0.00000000,5.49000000 +1715,chr22,17971822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.77000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,5.68000000 +1716,chr22,17972466,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.74000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.39000000 +1717,chr22,17972615,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-1.25000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,2.95000000 +1718,chr22,17972855,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,0.49000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.01063830,0.00000000,5.40000000 +1719,chr22,17972934,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,0.00000000,1.54000000,0.00000000,,0.10389610,77.00000000,3.40707965,0.00000000,0.00000000,5.11000000 +1720,chr22,17973064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.07407407,82.00000000,3.62831858,0.01219512,0.00000000,4.90000000 +1721,chr22,17974108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,6.39000000 +1722,chr22,17974480,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,84.00000000,0.00000000,1.43000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,6.15000000 +1723,chr22,17976361,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.21000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,6.36000000 +1724,chr22,17979652,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,0.75000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.02352941,0.00000000,5.75000000 +1725,chr22,17982267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,81.00000000,0.00000000,1.00000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,5.76000000 +1726,chr22,17983212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.53000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.59000000 +1727,chr22,17983536,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.77000000 +1728,chr22,17984036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.81000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,5.95000000 +1729,chr22,17984087,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.40000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,5.85000000 +1730,chr22,17984355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.08000000 +1731,chr22,17984367,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.97000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,7.00000000 +1732,chr22,17984568,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,49.00000000,0.00000000,1.84000000,0.00000000,,0.35555556,51.00000000,2.25663717,0.11764706,0.00000000,4.68000000 +1733,chr22,17984717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.25000000 +1734,chr22,17984736,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.06000000 +1735,chr22,17985178,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.73000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.18000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.01234568,0.00000000,6.36000000 +1736,chr22,17985280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-1.76000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.67000000 +1737,chr22,17985301,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,-2.08000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.91000000 +1738,chr22,17985321,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-1.42000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,6.03000000 +1739,chr22,17985346,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-1.82000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.01000000 +1740,chr22,17986781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.21348315,94.00000000,4.15929204,0.03191489,0.00000000,6.27000000 +1741,chr22,17986833,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.86000000,0.00000000,,0.22448980,101.00000000,4.46902655,0.02970297,0.00000000,6.00000000 +1742,chr22,17987264,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.43000000,0.00000000,,0.16666667,82.00000000,3.62831858,0.03658537,0.00000000,6.40000000 +1743,chr22,17988131,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.31000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,2.93000000 +1744,chr22,17988167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.96000000 +1745,chr22,17989664,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +1746,chr22,17990576,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.59000000,2.68000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,4.47000000 +1747,chr22,17991043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.15555556,91.00000000,4.02654867,0.01098901,0.00000000,5.83000000 +1748,chr22,17991525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.03846154,0.00000000,6.19000000 +1749,chr22,17991619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.60000000 +1750,chr22,17991633,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +1751,chr22,17991936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,58.00000000,0.00000000,-0.38000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,4.06000000 +1752,chr22,17991962,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.02000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +1753,chr22,17992499,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-1.42000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,2.83000000 +1754,chr22,17992612,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.28000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.01298701,0.00000000,4.47000000 +1755,chr22,17992928,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.10975610,84.00000000,3.71681416,0.02380952,0.00000000,4.64000000 +1756,chr22,17994258,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,1.30000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.00000000,0.00000000,6.62000000 +1757,chr22,17994637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-2.23000000,0.00000000,,0.20270270,80.00000000,3.53982301,0.07500000,0.00000000,5.87000000 +1758,chr22,17994660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.10000000,0.00000000,,0.19718310,78.00000000,3.45132743,0.08974359,0.00000000,6.24000000 +1759,chr22,17996616,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,96.00000000,0.00000000,-0.93000000,0.00000000,,0.28125000,97.00000000,4.29203540,0.00000000,0.00000000,6.62000000 +1760,chr22,17996681,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.14000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +1761,chr22,17997712,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.44000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +1762,chr22,17998550,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.20000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.05333333,0.00000000,6.12000000 +1763,chr22,18003251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +1764,chr22,18006486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.10000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.28000000 +1765,chr22,18007751,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-0.18000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.01639344,0.00000000,5.71000000 +1766,chr22,18011878,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +1767,chr22,18012010,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,70.00000000,0.00000000,1.77000000,0.00000000,,0.17977528,92.00000000,4.07079646,0.03260870,0.00000000,5.79000000 +1768,chr22,18012171,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.13000000 +1769,chr22,18012373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.13000000,0.00000000,,0.27272727,91.00000000,4.02654867,0.01098901,0.00000000,6.68000000 +1770,chr22,18012450,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.37000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.91000000 +1771,chr22,18042370,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,-1.90000000,0.00000000,,0.43859649,60.00000000,2.65486726,0.05000000,0.00000000,6.68000000 +1772,chr22,18049193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.03000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,7.05000000 +1773,chr22,18049336,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.55000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.92000000 +1774,chr22,18050569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.16000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.01388889,0.00000000,6.97000000 +1775,chr22,18050668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.31250000,82.00000000,3.62831858,0.02439024,0.00000000,6.41000000 +1776,chr22,18051092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.02702703,0.00000000,7.06000000 +1777,chr22,18051415,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.22000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.18000000 +1778,chr22,18052696,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.58000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.67000000 +1779,chr22,18052756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.42000000,0.00000000,,0.10958904,73.00000000,3.23008850,0.00000000,0.00000000,4.81000000 +1780,chr22,18052772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.21000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.34000000 +1781,chr22,18053014,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.92000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,1.33000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.01851852,0.00000000,4.89000000 +1782,chr22,18053226,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.22000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-3.05000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,5.79000000 +1783,chr22,18054379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.25000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.20000000 +1784,chr22,18054703,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.17000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.01492537,0.00000000,5.78000000 +1785,chr22,18070637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.34000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.42000000 +1786,chr22,18077845,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.80000000 +1787,chr22,18083522,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +1788,chr22,18113683,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,77.00000000,0.00000000,-0.44000000,0.00000000,,0.16853933,89.00000000,3.93805310,0.00000000,0.00000000,5.62000000 +1789,chr22,18114735,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.18000000 +1790,chr22,18116524,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.47000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.43000000 +1791,chr22,18125105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.74000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.46000000 +1792,chr22,18125985,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +1793,chr22,18127343,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.16483516,100.00000000,4.42477876,0.08000000,0.00000000,5.37000000 +1794,chr22,18127379,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,0.70000000,0.00000000,,0.15294118,89.00000000,3.93805310,0.04494382,0.00000000,4.98000000 +1795,chr22,18127519,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-0.87000000,0.00000000,,0.18750000,68.00000000,3.00884956,0.02941176,0.00000000,5.00000000 +1796,chr22,18127543,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.30000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,3.18000000 +1797,chr22,18127601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.26744186,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +1798,chr22,18128031,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +1799,chr22,18128456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.07142857,0.00000000,60.00000000,0.00000000,-0.21000000,0.00000000,,0.21794872,83.00000000,3.67256637,0.01204819,0.00000000,5.69000000 +1800,chr22,18130278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.62000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +1801,chr22,18137072,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.27272727,68.00000000,3.00884956,0.02941176,0.00000000,6.62000000 +1802,chr22,18150236,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.68000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.01388889,0.00000000,5.71000000 +1803,chr22,18150237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,-1.27000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.71000000 +1804,chr22,18155357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,1.49000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +1805,chr22,18184900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.03000000,23.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.48000000,5.46000000,,0.09615385,53.00000000,2.34513274,0.01886792,0.00000000,4.03000000 +1806,chr22,18184963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,46.41000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,2.59000000,3.10000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,3.66000000 +1807,chr22,18185985,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.10000000,10.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,26.00000000,0.00000000,-1.01000000,0.00000000,,0.40000000,57.00000000,2.52212389,0.03508772,0.00000000,3.75000000 +1808,chr22,18201954,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,46.40000000,11.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,0.00000000,1.03000000,0.00000000,,0.35714286,28.00000000,1.23893805,0.00000000,0.00000000,3.00000000 +1809,chr22,18637212,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,46.83000000,35.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,1.15000000,0.00000000,,0.34146341,41.00000000,1.81415929,0.00000000,0.00000000,4.22000000 +1810,chr22,18658943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,28.25000000,41.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,6.00000000,0.00000000,0.33000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.00000000,0.00000000,3.64000000 +1811,chr22,18727918,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,40.19000000,56.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.59000000,0.00000000,,0.16666667,96.00000000,4.24778761,0.00000000,0.00000000,6.16000000 +1812,chr22,18727946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,36.22000000,66.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.48000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.62000000 +1813,chr22,18780879,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,23.89000000,48.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,5.00000000,0.00000000,1.00000000,0.00000000,,0.30434783,23.00000000,1.01769912,0.00000000,0.00000000,2.77000000 +1814,chr22,18791999,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,19.11000000,37.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,0.99000000,0.00000000,,0.43478261,23.00000000,1.01769912,0.00000000,0.00000000,3.67000000 +1815,chr22,18863160,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,19.38000000,80.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.00000000,8.00000000,0.00000000,1.69000000,0.00000000,,0.28571429,23.00000000,1.01769912,0.04347826,0.00000000,2.92000000 +1816,chr22,18948246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +1817,chr22,18950677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,92.00000000,0.00000000,-1.06000000,0.00000000,,0.23595506,94.00000000,4.15929204,0.05319149,0.00000000,5.13000000 +1818,chr22,18950680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,90.00000000,0.00000000,-0.95000000,0.00000000,,0.22471910,95.00000000,4.20353982,0.05263158,0.00000000,5.13000000 +1819,chr22,18956352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.78000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.01176471,0.00000000,6.62000000 +1820,chr22,18956557,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.08000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.03614458,0.00000000,5.41000000 +1821,chr22,18956567,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.02000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.14666667,79.00000000,3.49557522,0.05063291,0.00000000,4.69000000 +1822,chr22,18956848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +1823,chr22,18960337,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,1.95000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.18000000 +1824,chr22,18962017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.94000000,7.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,63.00000000,0.00000000,0.86000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,4.74000000 +1825,chr22,18962865,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.00000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.23000000 +1826,chr22,18963660,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,57.10000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.58000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.40000000 +1827,chr22,18963994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.62000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +1828,chr22,18964032,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.20000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.01204819,0.00000000,6.36000000 +1829,chr22,18964183,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.58000000 +1830,chr22,18964957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-1.06000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.01960784,0.00000000,6.10000000 +1831,chr22,18965286,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.70000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,7.10000000 +1832,chr22,18965816,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,-1.52000000,0.00000000,,0.24793388,121.00000000,5.35398230,0.00000000,0.00000000,6.66000000 +1833,chr22,18966678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,-0.78000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.09000000 +1834,chr22,18966776,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.37000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.06000000 +1835,chr22,18967680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,82.00000000,0.00000000,-0.25000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,5.89000000 +1836,chr22,18967869,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,0.00000000,1.64000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.00000000,0.00000000,6.08000000 +1837,chr22,18968082,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,80.00000000,0.00000000,0.70000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.03750000,0.00000000,5.75000000 +1838,chr22,18969019,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,74.00000000,0.00000000,-0.21000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.02247191,0.00000000,5.78000000 +1839,chr22,18970199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.17241379,63.00000000,2.78761062,0.07936508,0.00000000,5.56000000 +1840,chr22,18970276,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.82000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.51000000 +1841,chr22,18971161,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.26595745,96.00000000,4.24778761,0.02083333,0.00000000,5.45000000 +1842,chr22,18971656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +1843,chr22,18974269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.01123596,0.00000000,6.17000000 +1844,chr22,18977905,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.35000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.32000000 +1845,chr22,18990791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.53000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,6.12000000 +1846,chr22,19001039,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.39000000,0.00000000,,0.32098765,84.00000000,3.71681416,0.01190476,0.00000000,8.58000000 +1847,chr22,19001507,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.41250000,80.00000000,3.53982301,0.00000000,0.00000000,8.53000000 +1848,chr22,19001685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.26000000,0.00000000,,0.23157895,97.00000000,4.29203540,0.02061856,0.00000000,6.35000000 +1849,chr22,19001953,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.01190476,0.00000000,6.28000000 +1850,chr22,19002241,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.10000000 +1851,chr22,19002615,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,5.81000000 +1852,chr22,19003864,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,-0.46000000,0.00000000,,0.40740741,82.00000000,3.62831858,0.01219512,0.00000000,8.25000000 +1853,chr22,19004608,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.44000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.40000000 +1854,chr22,19005615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.91000000,0.00000000,,0.49350649,77.00000000,3.40707965,0.00000000,0.00000000,8.91000000 +1855,chr22,19006580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.06000000,0.00000000,,0.22077922,82.00000000,3.62831858,0.06097561,0.00000000,2.85000000 +1856,chr22,19007917,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.00000000,0.00000000,6.28000000 +1857,chr22,19008036,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-2.72000000,0.00000000,,0.46376812,72.00000000,3.18584071,0.02777778,0.00000000,8.20000000 +1858,chr22,19009854,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.51648352,94.00000000,4.15929204,0.02127660,0.00000000,8.21000000 +1859,chr22,19010485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,5.73000000 +1860,chr22,19011998,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,1.85000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.01000000 +1861,chr22,19012548,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.63000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.00000000,0.00000000,8.52000000 +1862,chr22,19014328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.67000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.07000000 +1863,chr22,19014496,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.01000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.33000000 +1864,chr22,19014646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +1865,chr22,19015018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.74000000 +1866,chr22,19015498,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,46.00000000,0.00000000,-0.26000000,0.00000000,,0.36734694,54.00000000,2.38938053,0.07407407,0.00000000,4.23000000 +1867,chr22,19016425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.00000000,0.00000000,5.87000000 +1868,chr22,19016988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.66000000,0.00000000,,0.32258065,62.00000000,2.74336283,0.00000000,0.00000000,4.29000000 +1869,chr22,19017259,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,101.00000000,0.00000000,-0.12000000,0.00000000,,0.38823529,88.00000000,3.89380531,0.02272727,0.00000000,8.88000000 +1870,chr22,19018693,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.57000000,0.00000000,,0.40229885,89.00000000,3.93805310,0.02247191,0.00000000,8.44000000 +1871,chr22,19018702,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,98.00000000,0.00000000,-1.58000000,0.00000000,,0.39534884,88.00000000,3.89380531,0.02272727,0.00000000,8.45000000 +1872,chr22,19018732,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,102.00000000,0.00000000,0.09000000,0.00000000,,0.39285714,89.00000000,3.93805310,0.04494382,0.00000000,13.52000000 +1873,chr22,19018733,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,0.39000000,0.00000000,,0.39080460,91.00000000,4.02654867,0.04395604,0.00000000,14.89000000 +1874,chr22,19020512,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +1875,chr22,19020595,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-0.03000000,0.00000000,,0.46250000,80.00000000,3.53982301,0.00000000,0.00000000,4.24000000 +1876,chr22,19020997,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.53000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.16000000 +1877,chr22,19021388,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,52.00000000,0.00000000,-0.18000000,0.00000000,,0.36507937,77.00000000,3.40707965,0.18181818,0.00000000,4.52000000 +1878,chr22,19021389,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.36507937,77.00000000,3.40707965,0.18181818,0.00000000,4.44000000 +1879,chr22,19021654,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.00000000,0.00000000,57.00000000,0.00000000,-0.05000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.01333333,0.00000000,3.97000000 +1880,chr22,19021798,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.84000000,0.00000000,,0.44303797,80.00000000,3.53982301,0.01250000,0.00000000,7.90000000 +1881,chr22,19022201,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.35294118,0.00000000,17.00000000,0.00000000,1.52000000,0.00000000,,0.60526316,44.00000000,1.94690265,0.13636364,0.00000000,3.81000000 +1882,chr22,19022210,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.31578947,0.00000000,18.00000000,0.00000000,0.07000000,0.00000000,,0.61538462,47.00000000,2.07964602,0.17021277,0.00000000,3.84000000 +1883,chr22,19022291,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,48.00000000,0.00000000,0.88000000,0.00000000,,0.31707317,49.00000000,2.16814159,0.16326531,0.00000000,3.36000000 +1884,chr22,19022569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.28846154,52.00000000,2.30088496,0.00000000,0.00000000,6.79000000 +1885,chr22,19022636,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.10000000,0.00000000,,0.41176471,52.00000000,2.30088496,0.01923077,0.00000000,7.70000000 +1886,chr22,19023118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.37000000,0.00000000,,0.21126761,76.00000000,3.36283186,0.06578947,0.00000000,5.55000000 +1887,chr22,19023197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,2.29000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.61000000 +1888,chr22,19023339,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.83000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.32075472,55.00000000,2.43362832,0.03636364,0.00000000,6.53000000 +1889,chr22,19023582,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.09000000,10.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.14000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.40000000 +1890,chr22,19024487,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.73000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.16000000 +1891,chr22,19024789,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,53.82000000,12.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,7.16000000 +1892,chr22,19024811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.39000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.52000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.39000000 +1893,chr22,19025238,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.59000000,0.00000000,,0.42168675,85.00000000,3.76106195,0.01176471,0.00000000,8.56000000 +1894,chr22,19027122,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.49000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-1.69000000,0.00000000,,0.16666667,58.00000000,2.56637168,0.06896552,0.00000000,5.69000000 +1895,chr22,19027136,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.53000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,6.47000000 +1896,chr22,19027736,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.63000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.35526316,77.00000000,3.40707965,0.01298701,0.00000000,7.97000000 +1897,chr22,19028292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.39000000,14.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,5.32000000 +1898,chr22,19028734,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,1.38000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.79000000 +1899,chr22,19029150,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.07000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.36000000 +1900,chr22,19029249,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.30000000 +1901,chr22,19029533,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,5.80000000 +1902,chr22,19030450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-0.22000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +1903,chr22,19030587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.72000000 +1904,chr22,19030889,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,5.65000000 +1905,chr22,19030987,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.62000000,8.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,0.49000000,0.00000000,,0.40322581,63.00000000,2.78761062,0.01587302,0.00000000,4.30000000 +1906,chr22,19031467,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.00000000,0.00000000,5.71000000 +1907,chr22,19031473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.04000000,0.00000000,,0.23880597,67.00000000,2.96460177,0.00000000,0.00000000,6.51000000 +1908,chr22,19031804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.97000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,6.04000000 +1909,chr22,19032265,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.40000000,5.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.80000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,3.00000000 +1910,chr22,19032679,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.69000000 +1911,chr22,19032789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.16000000,9.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.24691358,86.00000000,3.80530973,0.05813953,0.00000000,5.72000000 +1912,chr22,19034306,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.38000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-1.79000000,0.00000000,,0.12345679,81.00000000,3.58407080,0.00000000,0.00000000,4.32000000 +1913,chr22,19034669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.07042254,72.00000000,3.18584071,0.01388889,0.00000000,4.99000000 +1914,chr22,19034719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.48000000,1.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,61.00000000,0.00000000,-2.25000000,0.00000000,,0.12987013,77.00000000,3.40707965,0.00000000,0.00000000,5.25000000 +1915,chr22,19035067,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.02000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-1.16000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,2.88000000 +1916,chr22,19035928,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.25000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.73000000 +1917,chr22,19036126,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,55.00000000,0.00000000,0.26000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.01265823,0.00000000,4.20000000 +1918,chr22,19037138,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.96000000,0.00000000,,0.50561798,91.00000000,4.02654867,0.02197802,0.00000000,8.38000000 +1919,chr22,19037817,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.77000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.58000000 +1920,chr22,19037868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.35000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +1921,chr22,19038384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.55000000 +1922,chr22,19038512,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.39080460,87.00000000,3.84955752,0.00000000,0.00000000,8.52000000 +1923,chr22,19039100,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.05000000,0.00000000,,0.31428571,72.00000000,3.18584071,0.01388889,0.00000000,7.54000000 +1924,chr22,19039364,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,85.00000000,0.00000000,0.18000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,6.85000000 +1925,chr22,19039943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,1.36000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +1926,chr22,19040069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.73000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,7.24000000 +1927,chr22,19040084,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.17000000,0.00000000,,0.48275862,89.00000000,3.93805310,0.01123596,0.00000000,4.40000000 +1928,chr22,19040807,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-1.44000000,0.00000000,,0.43835616,79.00000000,3.49557522,0.07594937,0.00000000,7.98000000 +1929,chr22,19040963,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.36206897,59.00000000,2.61061947,0.00000000,0.00000000,8.57000000 +1930,chr22,19040967,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.36206897,58.00000000,2.56637168,0.00000000,0.00000000,8.43000000 +1931,chr22,19041269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.00000000,0.00000000,6.11000000 +1932,chr22,19042494,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.05000000,0.00000000,,0.50000000,103.00000000,4.55752212,0.00000000,0.00000000,8.89000000 +1933,chr22,19042600,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.27000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.96000000 +1934,chr22,19042823,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.13000000,0.00000000,,0.51724138,88.00000000,3.89380531,0.00000000,0.00000000,6.14000000 +1935,chr22,19043209,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.08000000,0.00000000,,0.49230769,69.00000000,3.05309735,0.04347826,0.00000000,8.10000000 +1936,chr22,19043319,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,6.29000000 +1937,chr22,19044101,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.31000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,2.86000000 +1938,chr22,19044305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.58000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.86000000 +1939,chr22,19044702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,86.00000000,0.00000000,0.13000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +1940,chr22,19044931,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,89.00000000,0.00000000,-0.20000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,8.74000000 +1941,chr22,19045452,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,101.00000000,0.00000000,-1.13000000,0.00000000,,0.50000000,92.00000000,4.07079646,0.01086957,0.00000000,8.74000000 +1942,chr22,19045894,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,58.00000000,0.00000000,-0.45000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.05333333,0.00000000,3.83000000 +1943,chr22,19045930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.31000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +1944,chr22,19046019,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,56.00000000,0.00000000,-1.18000000,0.00000000,,0.36708861,80.00000000,3.53982301,0.01250000,0.00000000,4.18000000 +1945,chr22,19046255,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,2.07000000,0.00000000,,0.27027027,79.00000000,3.49557522,0.06329114,0.00000000,5.65000000 +1946,chr22,19046727,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,3.66000000,0.00000000,,0.37777778,92.00000000,4.07079646,0.00000000,0.00000000,8.57000000 +1947,chr22,19047316,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.01000000,0.00000000,,0.43055556,75.00000000,3.31858407,0.02666667,0.00000000,7.64000000 +1948,chr22,19047473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.05000000,0.00000000,,0.19117647,72.00000000,3.18584071,0.05555556,0.00000000,6.45000000 +1949,chr22,19047559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,0.70000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,5.77000000 +1950,chr22,19048184,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,-0.43000000,0.00000000,,0.45238095,87.00000000,3.84955752,0.03448276,0.00000000,12.98000000 +1951,chr22,19048210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.42000000 +1952,chr22,19048659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,72.00000000,0.00000000,-0.96000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.41000000 +1953,chr22,19048719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +1954,chr22,19048966,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,0.00000000,1.62000000,0.00000000,,0.33783784,75.00000000,3.31858407,0.01333333,0.00000000,14.39000000 +1955,chr22,19049226,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.27000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.01282051,0.00000000,4.44000000 +1956,chr22,19050022,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.00000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,7.13000000 +1957,chr22,19051334,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.02000000,0.00000000,,0.43564356,103.00000000,4.55752212,0.00970874,0.00000000,8.52000000 +1958,chr22,19051978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.13483146,91.00000000,4.02654867,0.02197802,0.00000000,4.75000000 +1959,chr22,19052193,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.85000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.67000000 +1960,chr22,19052245,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,50.00000000,0.00000000,-0.07000000,0.00000000,,0.38095238,63.00000000,2.78761062,0.00000000,0.00000000,4.62000000 +1961,chr22,19052896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.82000000,0.00000000,,0.25609756,87.00000000,3.84955752,0.05747126,0.00000000,6.17000000 +1962,chr22,19053262,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.54000000,0.00000000,,0.48148148,83.00000000,3.67256637,0.02409639,0.00000000,4.41000000 +1963,chr22,19053365,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.43529412,87.00000000,3.84955752,0.02298851,0.00000000,7.94000000 +1964,chr22,19054186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,2.74000000,0.00000000,,0.14285714,85.00000000,3.76106195,0.01176471,0.00000000,5.71000000 +1965,chr22,19054383,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.36000000,0.00000000,,0.51807229,86.00000000,3.80530973,0.03488372,0.00000000,4.38000000 +1966,chr22,19055029,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.19000000,0.00000000,,0.43589744,78.00000000,3.45132743,0.00000000,0.00000000,9.13000000 +1967,chr22,19055309,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,101.00000000,0.00000000,0.22000000,0.00000000,,0.41489362,94.00000000,4.15929204,0.00000000,0.00000000,8.52000000 +1968,chr22,19058271,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.50000000,0.00000000,,0.48529412,69.00000000,3.05309735,0.01449275,0.00000000,4.60000000 +1969,chr22,19058496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.40000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.04054054,0.00000000,6.72000000 +1970,chr22,19059222,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,60.00000000,0.00000000,0.33000000,0.00000000,,0.38157895,79.00000000,3.49557522,0.03797468,0.00000000,7.50000000 +1971,chr22,19059275,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.18000000 +1972,chr22,19059430,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.26086957,72.00000000,3.18584071,0.02777778,0.00000000,6.32000000 +1973,chr22,19059694,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.83000000 +1974,chr22,19059856,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,1.99000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.62000000 +1975,chr22,19060066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.55000000 +1976,chr22,19060263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.48000000 +1977,chr22,19060874,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.19354839,62.00000000,2.74336283,0.00000000,0.00000000,4.90000000 +1978,chr22,19060900,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,22.00000000,0.97345133,0.00000000,0.00000000,7.00000000,0.00000000,-0.17000000,0.00000000,,0.45614035,58.00000000,2.56637168,0.01724138,0.00000000,3.59000000 +1979,chr22,19060923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.68000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,5.72000000 +1980,chr22,19060936,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,1.22000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.01538462,0.00000000,5.76000000 +1981,chr22,19061175,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.40000000,0.00000000,,0.52380952,69.00000000,3.05309735,0.08695652,0.00000000,7.56000000 +1982,chr22,19061765,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,39.00000000,0.00000000,0.03000000,0.00000000,,0.47222222,73.00000000,3.23008850,0.00000000,0.00000000,4.04000000 +1983,chr22,19062089,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.12000000,0.00000000,,0.52380952,65.00000000,2.87610619,0.00000000,0.00000000,8.03000000 +1984,chr22,19062144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.41000000,0.00000000,,0.27777778,76.00000000,3.36283186,0.03947368,0.00000000,6.27000000 +1985,chr22,19062358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.83000000,0.00000000,,0.27692308,67.00000000,2.96460177,0.02985075,0.00000000,5.82000000 +1986,chr22,19062494,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-0.17000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.02739726,0.00000000,4.68000000 +1987,chr22,19062497,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,-0.13000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,4.78000000 +1988,chr22,19062597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.02702703,0.00000000,6.33000000 +1989,chr22,19062876,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.15000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,6.34000000 +1990,chr22,19063122,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,1.35000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.02631579,0.00000000,3.59000000 +1991,chr22,19063365,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,-0.21000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.02777778,0.00000000,4.68000000 +1992,chr22,19063495,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,60.00000000,0.00000000,-0.76000000,0.00000000,,0.25352113,75.00000000,3.31858407,0.05333333,0.00000000,6.09000000 +1993,chr22,19063619,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,0.61000000,0.00000000,,0.22222222,70.00000000,3.09734513,0.10000000,0.00000000,5.61000000 +1994,chr22,19063868,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,58.00000000,0.00000000,1.19000000,0.00000000,,0.38709677,65.00000000,2.87610619,0.03076923,0.00000000,6.19000000 +1995,chr22,19065459,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.57000000,0.00000000,,0.42682927,86.00000000,3.80530973,0.04651163,0.00000000,6.10000000 +1996,chr22,19065503,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.50000000,0.00000000,,0.43037975,80.00000000,3.53982301,0.01250000,0.00000000,8.26000000 +1997,chr22,19065777,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.38000000,0.00000000,,0.49295775,75.00000000,3.31858407,0.05333333,0.00000000,4.40000000 +1998,chr22,19065893,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,1.74000000,0.00000000,,0.56790123,81.00000000,3.58407080,0.00000000,0.00000000,4.51000000 +1999,chr22,19066523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.19000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,5.94000000 +2000,chr22,19066647,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,80.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,5.65000000 +2001,chr22,19066780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.03174603,0.00000000,5.67000000 +2002,chr22,19067508,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-1.39000000,0.00000000,,0.50724638,72.00000000,3.18584071,0.04166667,0.00000000,4.39000000 +2003,chr22,19067946,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.78000000,0.00000000,,0.11688312,79.00000000,3.49557522,0.02531646,0.00000000,5.22000000 +2004,chr22,19068029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.14000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.01333333,0.00000000,6.82000000 +2005,chr22,19069063,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,36.00000000,0.00000000,-1.51000000,0.00000000,,0.42500000,85.00000000,3.76106195,0.04705882,0.00000000,3.61000000 +2006,chr22,19069402,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-0.75000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +2007,chr22,19069466,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.47000000,102.00000000,4.51327434,0.01960784,0.00000000,8.13000000 +2008,chr22,19069675,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,1.12000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.03846154,0.00000000,6.36000000 +2009,chr22,19070210,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,96.00000000,0.00000000,0.80000000,0.00000000,,0.36263736,91.00000000,4.02654867,0.00000000,0.00000000,8.25000000 +2010,chr22,19070277,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.92000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.47000000 +2011,chr22,19070346,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.41000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,8.57000000 +2012,chr22,19070373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.71000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,5.85000000 +2013,chr22,19071034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.65000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.64000000 +2014,chr22,19071765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.46000000 +2015,chr22,19073817,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.01000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +2016,chr22,19074741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-1.88000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.46000000 +2017,chr22,19074840,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.40909091,89.00000000,3.93805310,0.01123596,0.00000000,8.52000000 +2018,chr22,19075372,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.59000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.15000000 +2019,chr22,19075631,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +2020,chr22,19075791,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,0.72000000,0.00000000,,0.38372093,86.00000000,3.80530973,0.00000000,0.00000000,8.36000000 +2021,chr22,19075861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.09782609,92.00000000,4.07079646,0.00000000,0.00000000,5.72000000 +2022,chr22,19076121,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,99.00000000,0.00000000,0.66000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,5.36000000 +2023,chr22,19076191,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,103.00000000,0.00000000,-0.85000000,0.00000000,,0.36263736,94.00000000,4.15929204,0.03191489,0.00000000,12.38000000 +2024,chr22,19077007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.24000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,4.76000000 +2025,chr22,19077327,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.57000000,0.00000000,,0.46464646,99.00000000,4.38053097,0.00000000,0.00000000,4.49000000 +2026,chr22,19077458,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +2027,chr22,19077493,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.64000000,0.00000000,,0.44186047,88.00000000,3.89380531,0.02272727,0.00000000,8.05000000 +2028,chr22,19077586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +2029,chr22,19077596,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,7.99000000 +2030,chr22,19077917,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,-1.04000000,0.00000000,,0.45569620,86.00000000,3.80530973,0.06976744,0.00000000,8.30000000 +2031,chr22,19078252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.87000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +2032,chr22,19080358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,68.00000000,0.00000000,-1.14000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.60000000 +2033,chr22,19080714,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.37000000,0.00000000,,0.47435897,78.00000000,3.45132743,0.00000000,0.00000000,8.56000000 +2034,chr22,19081509,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-1.60000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +2035,chr22,19081980,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.06000000,0.00000000,,0.47126437,88.00000000,3.89380531,0.01136364,0.00000000,8.62000000 +2036,chr22,19082429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.43000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.02857143,0.00000000,4.11000000 +2037,chr22,19082830,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.53000000,0.00000000,,0.48780488,87.00000000,3.84955752,0.05747126,0.00000000,7.56000000 +2038,chr22,19082920,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.42000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.44000000 +2039,chr22,19082926,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,51.00000000,0.00000000,0.11000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,4.81000000 +2040,chr22,19083219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,1.65000000,0.00000000,,0.19565217,97.00000000,4.29203540,0.04123711,0.00000000,5.93000000 +2041,chr22,19084001,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.09000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,50.00000000,0.00000000,0.28000000,0.00000000,,0.43589744,80.00000000,3.53982301,0.02500000,0.00000000,4.35000000 +2042,chr22,19084181,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.77000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.05555556,28.00000000,0.00000000,0.81000000,0.00000000,,0.44000000,51.00000000,2.25663717,0.01960784,0.00000000,3.35000000 +2043,chr22,19084404,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.33000000,6.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,39.00000000,0.00000000,-0.18000000,0.00000000,,0.31818182,46.00000000,2.03539823,0.04347826,0.00000000,3.31000000 +2044,chr22,19084694,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.38000000,16.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,12.00000000,0.00000000,-1.81000000,0.00000000,,0.42857143,33.00000000,1.46017699,0.15151515,0.00000000,3.84000000 +2045,chr22,19084969,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,48.03000000,31.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,24.00000000,0.00000000,-0.53000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.04761905,0.00000000,3.80000000 +2046,chr22,19085383,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.16000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.05000000 +2047,chr22,19085574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.88000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.44000000 +2048,chr22,19085596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.90000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,5.91000000 +2049,chr22,19086250,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.24000000,0.00000000,,0.45833333,75.00000000,3.31858407,0.04000000,0.00000000,4.44000000 +2050,chr22,19086411,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,54.00000000,0.00000000,0.93000000,0.00000000,,0.41666667,76.00000000,3.36283186,0.03947368,0.00000000,4.57000000 +2051,chr22,19086688,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-1.19000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.08000000 +2052,chr22,19087081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.57000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.59000000 +2053,chr22,19087240,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,101.00000000,0.00000000,-0.47000000,0.00000000,,0.49367089,80.00000000,3.53982301,0.01250000,0.00000000,8.79000000 +2054,chr22,19089284,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,6.75000000 +2055,chr22,19089932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.51000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +2056,chr22,19090081,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.58000000 +2057,chr22,19090111,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,70.00000000,0.00000000,-0.99000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,5.76000000 +2058,chr22,19090414,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.42105263,78.00000000,3.45132743,0.02564103,0.00000000,8.23000000 +2059,chr22,19090896,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,111.00000000,0.00000000,0.51000000,0.00000000,,0.40196078,105.00000000,4.64601770,0.01904762,0.00000000,12.99000000 +2060,chr22,19091008,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,101.00000000,0.00000000,-0.10000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.01219512,0.00000000,7.70000000 +2061,chr22,19091094,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,97.00000000,0.00000000,0.39000000,0.00000000,,0.45454545,78.00000000,3.45132743,0.01282051,0.00000000,8.36000000 +2062,chr22,19091249,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.74000000,0.00000000,,0.35365854,85.00000000,3.76106195,0.02352941,0.00000000,8.52000000 +2063,chr22,19091545,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,0.05000000,0.00000000,,0.49462366,93.00000000,4.11504425,0.00000000,0.00000000,8.41000000 +2064,chr22,19091966,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.38000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +2065,chr22,19092205,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.28571429,63.00000000,2.78761062,0.00000000,0.00000000,6.72000000 +2066,chr22,19092287,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,53.00000000,0.00000000,1.54000000,0.00000000,,0.34920635,67.00000000,2.96460177,0.05970149,0.00000000,4.67000000 +2067,chr22,19092787,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.50000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,8.56000000 +2068,chr22,19093159,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.89000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,5.87000000 +2069,chr22,19093161,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.09000000,0.00000000,,0.48571429,70.00000000,3.09734513,0.00000000,0.00000000,8.82000000 +2070,chr22,19093386,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,59.00000000,0.00000000,-0.06000000,0.00000000,,0.43835616,78.00000000,3.45132743,0.06410256,0.00000000,6.66000000 +2071,chr22,19093726,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.43055556,74.00000000,3.27433628,0.02702703,0.00000000,8.01000000 +2072,chr22,19094380,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.16494845,97.00000000,4.29203540,0.00000000,0.00000000,5.27000000 +2073,chr22,19094833,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,-0.79000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,8.23000000 +2074,chr22,19095022,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.63000000,0.00000000,,0.41975309,81.00000000,3.58407080,0.00000000,0.00000000,8.57000000 +2075,chr22,19095223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,5.92000000 +2076,chr22,19095443,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.02000000,0.00000000,,0.35294118,69.00000000,3.05309735,0.01449275,0.00000000,8.00000000 +2077,chr22,19095594,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,63.00000000,0.00000000,0.44000000,0.00000000,,0.37096774,70.00000000,3.09734513,0.11428571,0.00000000,7.66000000 +2078,chr22,19095640,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.21621622,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.30188679,73.00000000,3.23008850,0.27397260,0.00000000,5.64000000 +2079,chr22,19096039,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-1.43000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.66000000 +2080,chr22,19096044,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.71000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.93000000 +2081,chr22,19096165,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,98.00000000,0.00000000,-0.04000000,0.00000000,,0.34177215,82.00000000,3.62831858,0.03658537,0.00000000,7.86000000 +2082,chr22,19096523,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,1.47000000,0.00000000,,0.20000000,97.00000000,4.29203540,0.02061856,0.00000000,5.65000000 +2083,chr22,19097042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.56000000,0.00000000,,0.23255814,89.00000000,3.93805310,0.03370787,0.00000000,6.35000000 +2084,chr22,19097176,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.50746269,70.00000000,3.09734513,0.02857143,0.00000000,8.30000000 +2085,chr22,19097689,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.97000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.41000000 +2086,chr22,19098083,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.28000000 +2087,chr22,19098670,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-0.15000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.00000000,0.00000000,9.01000000 +2088,chr22,19099007,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,46.00000000,0.00000000,0.68000000,0.00000000,,0.43055556,75.00000000,3.31858407,0.04000000,0.00000000,4.35000000 +2089,chr22,19099391,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.31000000,0.00000000,,0.43076923,67.00000000,2.96460177,0.02985075,0.00000000,7.91000000 +2090,chr22,19099491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,2.09000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.84000000 +2091,chr22,19099554,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.70000000,0.00000000,,0.41250000,83.00000000,3.67256637,0.03614458,0.00000000,8.31000000 +2092,chr22,19099697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,5.79000000 +2093,chr22,19099744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.99000000 +2094,chr22,19100402,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,-1.53000000,0.00000000,,0.28260870,92.00000000,4.07079646,0.00000000,0.00000000,6.67000000 +2095,chr22,19101094,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,112.00000000,0.00000000,-0.77000000,0.00000000,,0.40000000,87.00000000,3.84955752,0.02298851,0.00000000,13.51000000 +2096,chr22,19101181,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.10000000,0.00000000,,0.23529412,71.00000000,3.14159292,0.01408451,0.00000000,6.43000000 +2097,chr22,19101609,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.76000000 +2098,chr22,19101674,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,73.00000000,0.00000000,1.14000000,0.00000000,,0.44444444,82.00000000,3.62831858,0.12195122,0.00000000,8.49000000 +2099,chr22,19102557,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.24000000,0.00000000,,0.44444444,66.00000000,2.92035398,0.04545455,0.00000000,8.03000000 +2100,chr22,19102736,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.40000000,73.00000000,3.23008850,0.04109589,0.00000000,8.57000000 +2101,chr22,19102754,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,77.00000000,0.00000000,0.27000000,0.00000000,,0.44444444,73.00000000,3.23008850,0.01369863,0.00000000,8.63000000 +2102,chr22,19104709,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.68000000 +2103,chr22,19105520,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,62.00000000,0.00000000,-0.12000000,0.00000000,,0.38571429,72.00000000,3.18584071,0.02777778,0.00000000,7.57000000 +2104,chr22,19105534,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.36231884,73.00000000,3.23008850,0.04109589,0.00000000,8.29000000 +2105,chr22,19105572,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.39726027,74.00000000,3.27433628,0.01351351,0.00000000,8.53000000 +2106,chr22,19105645,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.74000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.30000000 +2107,chr22,19105926,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,65.00000000,0.00000000,-1.54000000,0.00000000,,0.15000000,61.00000000,2.69911504,0.00000000,0.00000000,5.77000000 +2108,chr22,19106652,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.40000000,0.00000000,,0.49462366,94.00000000,4.15929204,0.01063830,0.00000000,6.13000000 +2109,chr22,19106814,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.43396226,56.00000000,2.47787611,0.01785714,0.00000000,8.00000000 +2110,chr22,19108151,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,2.37000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.01136364,0.00000000,8.30000000 +2111,chr22,19108175,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.35714286,85.00000000,3.76106195,0.01176471,0.00000000,8.55000000 +2112,chr22,19109018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,-0.04000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,3.09000000 +2113,chr22,19109315,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.23000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,5.98000000 +2114,chr22,19109924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.21000000 +2115,chr22,19110167,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.07000000,0.00000000,,0.48484848,69.00000000,3.05309735,0.02898551,0.00000000,8.07000000 +2116,chr22,19110187,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,0.26000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.19000000 +2117,chr22,19110326,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,47.00000000,0.00000000,0.52000000,0.00000000,,0.29230769,68.00000000,3.00884956,0.02941176,0.00000000,2.94000000 +2118,chr22,19110716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.90000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,3.12000000 +2119,chr22,19110746,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-1.23000000,0.00000000,,0.51807229,83.00000000,3.67256637,0.00000000,0.00000000,4.04000000 +2120,chr22,19111129,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.09000000,0.00000000,,0.44871795,81.00000000,3.58407080,0.02469136,0.00000000,6.08000000 +2121,chr22,19111453,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-0.59000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.21000000 +2122,chr22,19111767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,0.23000000,0.00000000,,0.28750000,83.00000000,3.67256637,0.03614458,0.00000000,5.96000000 +2123,chr22,19111906,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,84.00000000,0.00000000,-1.15000000,0.00000000,,0.21126761,81.00000000,3.58407080,0.11111111,0.00000000,5.90000000 +2124,chr22,19112039,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.45000000 +2125,chr22,19112134,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,1.59000000,0.00000000,,0.18181818,57.00000000,2.52212389,0.03508772,0.00000000,5.57000000 +2126,chr22,19112207,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,52.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,61.00000000,2.69911504,0.26229508,0.00000000,4.58000000 +2127,chr22,19113230,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,44.00000000,0.00000000,0.20000000,0.00000000,,0.39285714,60.00000000,2.65486726,0.05000000,0.00000000,4.13000000 +2128,chr22,19113442,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.11000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.53000000 +2129,chr22,19114465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.35000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +2130,chr22,19115069,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.05000000 +2131,chr22,19115834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-2.05000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.00000000,0.00000000,5.97000000 +2132,chr22,19116085,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,1.46000000,0.00000000,,0.18823529,90.00000000,3.98230088,0.04444444,0.00000000,5.77000000 +2133,chr22,19116673,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,78.00000000,0.00000000,0.63000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.75000000 +2134,chr22,19116811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.22000000 +2135,chr22,19117022,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.66000000,0.00000000,,0.30864198,85.00000000,3.76106195,0.02352941,0.00000000,8.10000000 +2136,chr22,19117437,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.83000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.36000000 +2137,chr22,19117760,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,-2.21000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +2138,chr22,19118453,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,90.00000000,0.00000000,2.52000000,0.00000000,,0.30000000,86.00000000,3.80530973,0.06976744,0.00000000,5.67000000 +2139,chr22,19118607,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.37837838,77.00000000,3.40707965,0.03896104,0.00000000,8.07000000 +2140,chr22,19119924,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,0.01000000,0.00000000,,0.42028986,71.00000000,3.14159292,0.02816901,0.00000000,7.85000000 +2141,chr22,19120083,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.93000000,0.00000000,,0.38636364,89.00000000,3.93805310,0.01123596,0.00000000,8.56000000 +2142,chr22,19120585,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.17000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +2143,chr22,19121035,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.77000000,0.00000000,,0.47826087,72.00000000,3.18584071,0.04166667,0.00000000,4.60000000 +2144,chr22,19122096,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,-0.76000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.00000000,0.00000000,8.72000000 +2145,chr22,19122299,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,44.00000000,0.00000000,-1.60000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,4.44000000 +2146,chr22,19122442,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,80.00000000,0.00000000,-0.27000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.00000000,0.00000000,6.48000000 +2147,chr22,19122896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.76000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.34000000 +2148,chr22,19124047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,2.70000000,0.00000000,,0.20192308,109.00000000,4.82300885,0.04587156,0.00000000,6.32000000 +2149,chr22,19124671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-1.24000000,0.00000000,,0.10526316,79.00000000,3.49557522,0.03797468,0.00000000,4.88000000 +2150,chr22,19124972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +2151,chr22,19125502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.90000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.84000000 +2152,chr22,19125515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.02000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.28000000 +2153,chr22,19125775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,1.27000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.18000000 +2154,chr22,19125964,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,95.00000000,0.00000000,0.61000000,0.00000000,,0.32183908,89.00000000,3.93805310,0.02247191,0.00000000,7.32000000 +2155,chr22,19126173,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.40540541,76.00000000,3.36283186,0.02631579,0.00000000,8.32000000 +2156,chr22,19126373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.98000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.01000000 +2157,chr22,19127027,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.05333333,0.00000000,5.85000000 +2158,chr22,19127313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.59000000 +2159,chr22,19127965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,2.81000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,5.96000000 +2160,chr22,19128143,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,0.08000000,0.00000000,,0.28048780,90.00000000,3.98230088,0.08888889,0.00000000,5.78000000 +2161,chr22,19128337,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.42000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,5.96000000 +2162,chr22,19128838,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,0.06000000,0.00000000,,0.49350649,79.00000000,3.49557522,0.02531646,0.00000000,4.64000000 +2163,chr22,19128988,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.97000000 +2164,chr22,19129311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.22000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.50000000 +2165,chr22,19129754,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,100.00000000,0.00000000,0.88000000,0.00000000,,0.36986301,75.00000000,3.31858407,0.02666667,0.00000000,7.32000000 +2166,chr22,19131188,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +2167,chr22,19132173,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,1.65000000,0.00000000,,0.31506849,80.00000000,3.53982301,0.08750000,0.00000000,6.64000000 +2168,chr22,19132238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.40000000,0.00000000,,0.27777778,61.00000000,2.69911504,0.11475410,0.00000000,6.17000000 +2169,chr22,19132425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,-1.79000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.67000000 +2170,chr22,19133354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-1.16000000,0.00000000,,0.24675325,82.00000000,3.62831858,0.06097561,0.00000000,5.79000000 +2171,chr22,19133446,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.70000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.52000000 +2172,chr22,19135152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.00000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.30000000 +2173,chr22,19135562,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.68000000,0.00000000,,0.44554455,103.00000000,4.55752212,0.01941748,0.00000000,8.23000000 +2174,chr22,19136439,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.53000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.96000000 +2175,chr22,19137623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,65.00000000,0.00000000,0.19000000,0.00000000,,0.25274725,93.00000000,4.11504425,0.02150538,0.00000000,5.91000000 +2176,chr22,19137870,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.90000000,0.00000000,,0.38157895,81.00000000,3.58407080,0.06172840,0.00000000,8.35000000 +2177,chr22,19139118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.27000000 +2178,chr22,19140656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.02777778,0.00000000,5.79000000 +2179,chr22,19141244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,0.16000000,0.00000000,,0.20000000,79.00000000,3.49557522,0.03797468,0.00000000,5.72000000 +2180,chr22,19142159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,89.00000000,0.00000000,-0.90000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.20000000 +2181,chr22,19143772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.03614458,0.00000000,5.97000000 +2182,chr22,19143773,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +2183,chr22,19158316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.94000000 +2184,chr22,19158809,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.12000000 +2185,chr22,19159042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,-0.16000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.00000000,0.00000000,6.48000000 +2186,chr22,19159308,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.62000000,0.00000000,,0.18072289,87.00000000,3.84955752,0.04597701,0.00000000,5.61000000 +2187,chr22,19159364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.31000000,0.00000000,,0.20967742,65.00000000,2.87610619,0.04615385,0.00000000,5.79000000 +2188,chr22,19159387,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,6.43000000 +2189,chr22,19159471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.16000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +2190,chr22,19159747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,1.46000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,5.94000000 +2191,chr22,19159786,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.86000000 +2192,chr22,19159806,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.70000000 +2193,chr22,19165386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.21000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +2194,chr22,19166204,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.17000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.00000000,0.00000000,6.40000000 +2195,chr22,19167095,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-1.35000000,0.00000000,,0.28089888,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +2196,chr22,19168149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,1.23000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +2197,chr22,19170306,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.00000000,0.00000000,5.87000000 +2198,chr22,19171209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.15315315,113.00000000,5.00000000,0.01769912,0.00000000,5.43000000 +2199,chr22,19173386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-1.13000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +2200,chr22,19174422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.46000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.49000000 +2201,chr22,19174763,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.46000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.01219512,0.00000000,5.11000000 +2202,chr22,19174813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,75.00000000,0.00000000,-1.52000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.00000000 +2203,chr22,19178750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.43000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.35000000 +2204,chr22,19179204,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,78.00000000,0.00000000,0.64000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,5.83000000 +2205,chr22,19179872,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.25242718,105.00000000,4.64601770,0.01904762,0.00000000,5.80000000 +2206,chr22,19194045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.97000000 +2207,chr22,19196733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +2208,chr22,19199864,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.15662651,86.00000000,3.80530973,0.03488372,0.00000000,5.32000000 +2209,chr22,19199916,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,4.95000000 +2210,chr22,19207358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.03000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.68000000 +2211,chr22,19208602,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,96.00000000,0.00000000,-1.37000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,5.36000000 +2212,chr22,19224142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.87000000 +2213,chr22,19233125,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,1.03000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.06000000 +2214,chr22,19233883,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.15000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.00000000,0.00000000,6.33000000 +2215,chr22,19236056,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.00000000,0.00000000,9.00000000 +2216,chr22,19246092,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.04000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.69000000 +2217,chr22,19246352,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,1.05000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.00000000,0.00000000,6.32000000 +2218,chr22,19248966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.65000000 +2219,chr22,19261064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.52000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +2220,chr22,19265751,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.42000000,0.00000000,,0.16494845,100.00000000,4.42477876,0.03000000,0.00000000,5.04000000 +2221,chr22,19268333,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,68.00000000,0.00000000,0.32000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.65000000 +2222,chr22,19273052,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,80.00000000,0.00000000,-1.72000000,0.00000000,,0.18478261,94.00000000,4.15929204,0.02127660,0.00000000,5.30000000 +2223,chr22,19276369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,5.98000000 +2224,chr22,19278276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,89.00000000,0.00000000,0.15000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.59000000 +2225,chr22,19280501,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,-0.57000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.38000000 +2226,chr22,19284308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,5.93000000 +2227,chr22,19285016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-2.41000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.01298701,0.00000000,6.35000000 +2228,chr22,19286853,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,-0.40000000,0.00000000,,0.19480519,84.00000000,3.71681416,0.05952381,0.00000000,6.11000000 +2229,chr22,19297834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,0.00000000,1.45000000,0.00000000,,0.35000000,61.00000000,2.69911504,0.01639344,0.00000000,7.94000000 +2230,chr22,19298293,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.87000000 +2231,chr22,19298533,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.24193548,63.00000000,2.78761062,0.01587302,0.00000000,6.37000000 +2232,chr22,19334898,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.40000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.72000000 +2233,chr22,19337785,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,98.00000000,0.00000000,0.84000000,0.00000000,,0.25490196,102.00000000,4.51327434,0.00000000,0.00000000,5.85000000 +2234,chr22,19338669,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.30000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +2235,chr22,19340415,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.75000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +2236,chr22,19347400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,-1.01000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.54000000 +2237,chr22,19357701,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,84.00000000,0.00000000,0.06000000,0.00000000,,0.26760563,73.00000000,3.23008850,0.02739726,0.00000000,5.80000000 +2238,chr22,19492564,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.27000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.43000000 +2239,chr22,19516397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.02816901,0.00000000,4.92000000 +2240,chr22,19531920,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.29000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.02857143,0.00000000,6.29000000 +2241,chr22,19553098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.46000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.02857143,0.00000000,6.69000000 +2242,chr22,19576469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.18461538,70.00000000,3.09734513,0.07142857,0.00000000,5.60000000 +2243,chr22,19596504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,1.16000000,0.00000000,,0.26666667,94.00000000,4.15929204,0.03191489,0.00000000,6.26000000 +2244,chr22,19608485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,82.00000000,0.00000000,-0.24000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.26000000 +2245,chr22,19609482,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.10000000,0.00000000,,0.16666667,62.00000000,2.74336283,0.03225806,0.00000000,5.16000000 +2246,chr22,19609663,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,1.73000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.03125000,0.00000000,5.42000000 +2247,chr22,19609767,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.37000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,4.65000000 +2248,chr22,19610518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.66000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.00000000,0.00000000,6.32000000 +2249,chr22,19612692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.08000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.20000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.62000000 +2250,chr22,19613051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.43000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +2251,chr22,19613715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.29000000,0.00000000,,0.25000000,109.00000000,4.82300885,0.00917431,0.00000000,5.94000000 +2252,chr22,19613906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.15000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +2253,chr22,19614708,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.65000000 +2254,chr22,19615480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,1.16000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.31000000 +2255,chr22,19615682,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.20238095,87.00000000,3.84955752,0.02298851,0.00000000,6.40000000 +2256,chr22,19615844,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.30000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,4.79000000 +2257,chr22,19615905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.24637681,74.00000000,3.27433628,0.05405405,0.00000000,6.21000000 +2258,chr22,19615928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,6.52000000 +2259,chr22,19616420,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.18000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.33000000 +2260,chr22,19642261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-1.47000000,0.00000000,,0.14117647,88.00000000,3.89380531,0.03409091,0.00000000,5.52000000 +2261,chr22,19646093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,0.83000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.55000000 +2262,chr22,19646681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,74.00000000,0.00000000,0.16000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,5.79000000 +2263,chr22,19648828,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.17000000,102.00000000,4.51327434,0.01960784,0.00000000,4.80000000 +2264,chr22,19650773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,-0.31000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,5.91000000 +2265,chr22,19651024,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.51000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,6.68000000 +2266,chr22,19652170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.70000000,0.00000000,,0.22772277,104.00000000,4.60176991,0.00961538,0.00000000,6.54000000 +2267,chr22,19653130,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.73000000 +2268,chr22,19653560,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.13725490,57.00000000,2.52212389,0.08771930,0.00000000,4.96000000 +2269,chr22,19654896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,2.05000000,0.00000000,,0.19101124,93.00000000,4.11504425,0.03225806,0.00000000,6.23000000 +2270,chr22,19655557,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.38000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.57000000 +2271,chr22,19655581,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,78.00000000,0.00000000,0.23000000,0.00000000,,0.17346939,100.00000000,4.42477876,0.02000000,0.00000000,5.23000000 +2272,chr22,19656032,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,0.10000000,0.00000000,,0.26666667,78.00000000,3.45132743,0.01282051,0.00000000,5.81000000 +2273,chr22,19656853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.02000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.42000000 +2274,chr22,19656910,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.17000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.19000000 +2275,chr22,19657139,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.02325581,0.00000000,6.61000000 +2276,chr22,19658151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,48.00000000,0.00000000,0.76000000,0.00000000,,0.30909091,57.00000000,2.52212389,0.03508772,0.00000000,2.88000000 +2277,chr22,19658236,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.24000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.37000000 +2278,chr22,19658300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.52000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +2279,chr22,19658511,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.18000000 +2280,chr22,19660653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.00000000,0.00000000,6.41000000 +2281,chr22,19660938,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.21000000,0.00000000,,0.23076923,96.00000000,4.24778761,0.05208333,0.00000000,5.59000000 +2282,chr22,19661482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.73000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +2283,chr22,19662017,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.41000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +2284,chr22,19666621,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.67000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +2285,chr22,19671231,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,59.00000000,0.00000000,-0.08000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.02272727,0.00000000,3.57000000 +2286,chr22,19683760,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-1.57000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.52000000 +2287,chr22,19688671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.18000000,0.00000000,,0.10588235,88.00000000,3.89380531,0.03409091,0.00000000,4.90000000 +2288,chr22,19688725,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.04000000,0.00000000,,0.11842105,79.00000000,3.49557522,0.03797468,0.00000000,4.91000000 +2289,chr22,19689190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.55000000 +2290,chr22,19692557,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,53.00000000,0.00000000,0.15000000,0.00000000,,0.30909091,67.00000000,2.96460177,0.16417910,0.00000000,4.13000000 +2291,chr22,19694982,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,-0.53000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.99000000 +2292,chr22,19695104,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.48000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,6.57000000 +2293,chr22,19695118,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,0.49000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,5.86000000 +2294,chr22,19695693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.81000000,0.00000000,,0.11627907,86.00000000,3.80530973,0.00000000,0.00000000,4.97000000 +2295,chr22,19695793,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-1.70000000,0.00000000,,0.15714286,76.00000000,3.36283186,0.06578947,0.00000000,5.92000000 +2296,chr22,19695859,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,-0.98000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.02941176,0.00000000,5.94000000 +2297,chr22,19696056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,5.84000000 +2298,chr22,19696483,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,0.77000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.39000000 +2299,chr22,19699252,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.92000000 +2300,chr22,19699271,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.73000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.02000000 +2301,chr22,19727161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.26000000,9.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,64.00000000,0.00000000,-0.82000000,1.76000000,,0.15384615,47.00000000,2.07964602,0.17021277,0.00000000,3.49000000 +2302,chr22,19729797,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.32000000,0.00000000,,0.43283582,67.00000000,2.96460177,0.00000000,0.00000000,8.82000000 +2303,chr22,19732528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.49000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.00000000,0.00000000,6.30000000 +2304,chr22,19733581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.63000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.02000000 +2305,chr22,19736532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.49000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.18000000 +2306,chr22,19737930,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,79.00000000,0.00000000,1.18000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,5.97000000 +2307,chr22,19739466,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-1.08000000,0.00000000,,0.49473684,98.00000000,4.33628319,0.03061224,0.00000000,7.98000000 +2308,chr22,19740140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +2309,chr22,19741838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +2310,chr22,19743069,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.48000000,0.00000000,,0.49425287,88.00000000,3.89380531,0.01136364,0.00000000,4.10000000 +2311,chr22,19762002,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.30000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.22000000 +2312,chr22,19771592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.97000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,6.56000000 +2313,chr22,19784608,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.96000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.05617978,0.00000000,5.66000000 +2314,chr22,19788842,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.48000000,0.00000000,,0.27380952,87.00000000,3.84955752,0.02298851,0.00000000,6.33000000 +2315,chr22,19794930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.13483146,92.00000000,4.07079646,0.03260870,0.00000000,4.94000000 +2316,chr22,19800975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.23809524,105.00000000,4.64601770,0.00000000,0.00000000,6.43000000 +2317,chr22,19811651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.17307692,105.00000000,4.64601770,0.00952381,0.00000000,6.35000000 +2318,chr22,19815027,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,0.82000000,0.00000000,,0.18032787,68.00000000,3.00884956,0.10294118,0.00000000,5.45000000 +2319,chr22,19821897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.62000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.50000000 +2320,chr22,19824197,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,0.83000000,0.00000000,,0.21359223,106.00000000,4.69026549,0.02830189,0.00000000,6.29000000 +2321,chr22,19835158,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.90000000 +2322,chr22,19835385,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.44000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +2323,chr22,19856711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.24000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.46000000 +2324,chr22,19882861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,69.00000000,0.00000000,-1.24000000,0.00000000,,0.11904762,85.00000000,3.76106195,0.01176471,0.00000000,4.85000000 +2325,chr22,19890121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,5.93000000 +2326,chr22,19890839,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.39000000 +2327,chr22,19890991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.16666667,92.00000000,4.07079646,0.02173913,0.00000000,5.46000000 +2328,chr22,19891229,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,83.00000000,0.00000000,-0.27000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,5.83000000 +2329,chr22,19892114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,1.50000000,0.00000000,,0.24489796,99.00000000,4.38053097,0.01010101,0.00000000,6.61000000 +2330,chr22,19892415,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,62.00000000,0.00000000,-1.22000000,0.00000000,,0.43243243,78.00000000,3.45132743,0.05128205,0.00000000,7.87000000 +2331,chr22,19892534,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.62000000 +2332,chr22,19920397,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.45000000 +2333,chr22,19920404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,1.07000000,0.00000000,,0.10465116,88.00000000,3.89380531,0.02272727,0.00000000,4.16000000 +2334,chr22,19920831,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.99000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.90000000 +2335,chr22,19920833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.87000000 +2336,chr22,19925011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.95000000,0.00000000,,0.20270270,82.00000000,3.62831858,0.09756098,0.00000000,6.25000000 +2337,chr22,19925086,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-1.16000000,0.00000000,,0.27586207,92.00000000,4.07079646,0.04347826,0.00000000,6.25000000 +2338,chr22,19930333,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.89000000 +2339,chr22,19941504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.17475728,105.00000000,4.64601770,0.01904762,0.00000000,6.09000000 +2340,chr22,19951094,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.58000000,0.00000000,,0.12500000,81.00000000,3.58407080,0.01234568,0.00000000,5.35000000 +2341,chr22,19952659,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-2.45000000,0.00000000,,0.18918919,81.00000000,3.58407080,0.08641975,0.00000000,6.33000000 +2342,chr22,19965536,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.22000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.60000000 +2343,chr22,19966359,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,74.00000000,0.00000000,-1.25000000,0.00000000,,0.23287671,85.00000000,3.76106195,0.14117647,0.00000000,5.92000000 +2344,chr22,19968169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.27586207,87.00000000,3.84955752,0.00000000,0.00000000,7.04000000 +2345,chr22,19971510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.30000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.23000000 +2346,chr22,19972617,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.63000000,0.00000000,,0.23711340,98.00000000,4.33628319,0.01020408,0.00000000,6.62000000 +2347,chr22,19973083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,2.30000000,,0.08219178,78.00000000,3.45132743,0.05128205,0.00000000,3.74000000 +2348,chr22,19973484,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,6.21000000 +2349,chr22,19980285,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.06000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +2350,chr22,19981074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.12903226,97.00000000,4.29203540,0.04123711,0.00000000,4.87000000 +2351,chr22,19983868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.54000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.00000000 +2352,chr22,19986074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.71000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,6.34000000 +2353,chr22,19986551,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,5.70000000 +2354,chr22,19990317,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.33000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.24000000 +2355,chr22,19992190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.03448276,0.00000000,6.28000000 +2356,chr22,19994143,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.24074074,57.00000000,2.52212389,0.05263158,0.00000000,5.90000000 +2357,chr22,19995780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,1.89000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.14000000 +2358,chr22,20002119,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-1.55000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.00000000,0.00000000,6.97000000 +2359,chr22,20002367,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.33000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +2360,chr22,20003266,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.12000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.75000000 +2361,chr22,20003544,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.17757009,108.00000000,4.77876106,0.00925926,0.00000000,5.68000000 +2362,chr22,20004427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,98.00000000,0.00000000,-0.24000000,0.00000000,,0.28915663,89.00000000,3.93805310,0.05617978,0.00000000,5.09000000 +2363,chr22,20005776,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.13157895,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.20588235,83.00000000,3.67256637,0.18072289,0.00000000,6.12000000 +2364,chr22,20010681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,86.00000000,0.00000000,0.88000000,0.00000000,,0.21111111,94.00000000,4.15929204,0.04255319,0.00000000,5.33000000 +2365,chr22,20012905,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,0.62000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.50000000 +2366,chr22,20015536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +2367,chr22,20020076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.06250000,0.00000000,88.00000000,0.00000000,0.77000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.03225806,0.00000000,5.11000000 +2368,chr22,20021365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.44000000 +2369,chr22,20023400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,-0.46000000,0.00000000,,0.09589041,76.00000000,3.36283186,0.02631579,0.00000000,4.84000000 +2370,chr22,20030600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.05000000,0.00000000,,0.22641509,53.00000000,2.34513274,0.00000000,0.00000000,2.90000000 +2371,chr22,20033078,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.21538462,76.00000000,3.36283186,0.14473684,0.00000000,5.92000000 +2372,chr22,20115740,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +2373,chr22,20115741,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.76000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.00000000,0.00000000,6.43000000 +2374,chr22,20201086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.35000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,6.27000000 +2375,chr22,20201554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,52.00000000,0.00000000,0.39000000,0.00000000,,0.25454545,66.00000000,2.92035398,0.16666667,0.00000000,2.83000000 +2376,chr22,20201679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.53000000 +2377,chr22,20201855,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.22000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,5.87000000 +2378,chr22,20201859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,1.96000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.96000000 +2379,chr22,20201867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,5.93000000 +2380,chr22,20202099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.16000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +2381,chr22,20202199,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +2382,chr22,20202651,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,0.08000000,0.00000000,,0.15384615,78.00000000,3.45132743,0.00000000,0.00000000,5.60000000 +2383,chr22,20203174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.11000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +2384,chr22,20203237,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.72000000,0.00000000,,0.25842697,93.00000000,4.11504425,0.04301075,0.00000000,6.59000000 +2385,chr22,20205591,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,-0.36000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,5.82000000 +2386,chr22,20208068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.62000000,0.00000000,,0.27000000,102.00000000,4.51327434,0.01960784,0.00000000,6.59000000 +2387,chr22,20230714,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,6.33000000 +2388,chr22,20231667,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.98000000 +2389,chr22,20232125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.00000000,0.00000000,6.84000000 +2390,chr22,20233241,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.03000000 +2391,chr22,20261316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.04938272,0.00000000,6.29000000 +2392,chr22,20291430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.59000000 +2393,chr22,20291605,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.16000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +2394,chr22,20291636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.17204301,96.00000000,4.24778761,0.03125000,0.00000000,5.79000000 +2395,chr22,20292010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.17204301,98.00000000,4.33628319,0.05102041,0.00000000,5.55000000 +2396,chr22,20292195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.22105263,98.00000000,4.33628319,0.03061224,0.00000000,5.66000000 +2397,chr22,20293738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.62000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +2398,chr22,20294330,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.74000000 +2399,chr22,20294720,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.60000000,2.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.66000000,0.00000000,,0.29090909,111.00000000,4.91150442,0.00000000,0.00000000,7.12000000 +2400,chr22,20295206,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,69.00000000,0.00000000,0.34000000,0.00000000,,0.14141414,101.00000000,4.46902655,0.01980198,0.00000000,5.10000000 +2401,chr22,20295363,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,2.28000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.73000000 +2402,chr22,20295705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.26506024,88.00000000,3.89380531,0.04545455,0.00000000,6.37000000 +2403,chr22,20295895,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-0.67000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.70000000 +2404,chr22,20301715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.55000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.01234568,0.00000000,5.41000000 +2405,chr22,20303348,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.25000000,0.00000000,,0.27941176,72.00000000,3.18584071,0.05555556,0.00000000,6.27000000 +2406,chr22,20303426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,2.37000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.05555556,0.00000000,6.23000000 +2407,chr22,20303507,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,56.28000000,12.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.30379747,79.00000000,3.49557522,0.00000000,0.00000000,7.33000000 +2408,chr22,20306102,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.71000000 +2409,chr22,20306312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.02000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,5.86000000 +2410,chr22,20307897,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,1.23000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.81000000 +2411,chr22,20308791,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.67000000,21.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.30000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.01282051,0.00000000,6.09000000 +2412,chr22,20308798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.80000000,21.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.11000000 +2413,chr22,20309017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.73000000,0.00000000,,0.19090909,111.00000000,4.91150442,0.00900901,0.00000000,6.32000000 +2414,chr22,20314277,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.87000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.17000000,0.00000000,,0.07317073,83.00000000,3.67256637,0.01204819,0.00000000,4.73000000 +2415,chr22,20316331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.21126761,76.00000000,3.36283186,0.05263158,0.00000000,5.83000000 +2416,chr22,20317197,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.89000000 +2417,chr22,20319193,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.04000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,4.79000000 +2418,chr22,20319470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.01282051,0.00000000,5.85000000 +2419,chr22,20319733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.84000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,5.85000000 +2420,chr22,20320756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,-0.64000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,5.35000000 +2421,chr22,20323613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,6.17000000 +2422,chr22,20323902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.91000000 +2423,chr22,20328406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.46000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.86000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.55000000 +2424,chr22,20337911,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.36000000,26.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,-0.88000000,0.00000000,,0.16363636,63.00000000,2.78761062,0.12698413,0.00000000,5.67000000 +2425,chr22,20338272,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,52.15000000,67.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,0.00000000,-2.18000000,6.50000000,,0.05625000,160.00000000,7.07964602,0.00000000,0.00000000,4.09000000 +2426,chr22,20354351,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.66000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.00000000,0.00000000,6.21000000 +2427,chr22,20357677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,42.62000000,55.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.11111111,0.00000000,38.00000000,0.00000000,-0.72000000,0.00000000,,0.31578947,41.00000000,1.81415929,0.07317073,0.00000000,2.91000000 +2428,chr22,20358202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,47.07000000,41.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.05000000,0.00000000,,0.18181818,47.00000000,2.07964602,0.06382979,0.00000000,4.69000000 +2429,chr22,20363739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.87000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.11111111,72.00000000,3.18584071,0.00000000,0.00000000,5.06000000 +2430,chr22,20364630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,48.75000000,45.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.96000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.33000000 +2431,chr22,20369542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.36000000 +2432,chr22,20370332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.26000000 +2433,chr22,20371094,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,43.99000000,27.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.16000000,0.00000000,,0.18518519,55.00000000,2.43362832,0.01818182,0.00000000,6.37000000 +2434,chr22,20377500,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +2435,chr22,20381704,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,5.94000000 +2436,chr22,20384769,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.15000000,0.00000000,,0.13953488,86.00000000,3.80530973,0.00000000,0.00000000,4.83000000 +2437,chr22,20388816,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.47000000 +2438,chr22,20391009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,1.07000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.02409639,0.00000000,5.92000000 +2439,chr22,20391326,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-0.31000000,0.00000000,,0.32000000,76.00000000,3.36283186,0.01315789,0.00000000,7.89000000 +2440,chr22,20393473,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,-0.86000000,0.00000000,,0.16037736,106.00000000,4.69026549,0.00000000,0.00000000,5.95000000 +2441,chr22,20393963,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,87.00000000,0.00000000,0.78000000,0.00000000,,0.23584906,108.00000000,4.77876106,0.00925926,0.00000000,5.86000000 +2442,chr22,20399749,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,1.61000000,0.00000000,,0.42187500,66.00000000,2.92035398,0.01515152,0.00000000,8.03000000 +2443,chr22,20433843,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,-0.65000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.01960784,0.00000000,6.25000000 +2444,chr22,20435673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,87.00000000,0.00000000,-0.77000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +2445,chr22,20443002,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,-0.05000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.04000000 +2446,chr22,20445278,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,76.00000000,0.00000000,-1.25000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.90000000 +2447,chr22,20452110,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,0.45000000,0.00000000,,0.19658120,118.00000000,5.22123894,0.00000000,0.00000000,6.39000000 +2448,chr22,20453282,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.18000000,103.00000000,4.55752212,0.02912621,0.00000000,5.56000000 +2449,chr22,20488448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,2.74000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,5.72000000 +2450,chr22,20500927,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.56000000,0.00000000,,0.09876543,82.00000000,3.62831858,0.01219512,0.00000000,5.17000000 +2451,chr22,20519516,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.21621622,80.00000000,3.53982301,0.07500000,0.00000000,6.00000000 +2452,chr22,20535758,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.33870968,69.00000000,3.05309735,0.08695652,0.00000000,8.26000000 +2453,chr22,20541640,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.21000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,5.50000000 +2454,chr22,20553016,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.38000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.73000000 +2455,chr22,20553442,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,6.44000000 +2456,chr22,20554706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.33000000 +2457,chr22,20555387,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,5.73000000 +2458,chr22,20555746,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.39000000 +2459,chr22,20555934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.84000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +2460,chr22,20556596,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.96000000,0.00000000,,0.28358209,71.00000000,3.14159292,0.04225352,0.00000000,6.35000000 +2461,chr22,20557966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +2462,chr22,20559591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.14000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.48000000 +2463,chr22,20560470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.26000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +2464,chr22,20560671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,90.00000000,0.00000000,0.32000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,5.18000000 +2465,chr22,20562780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.23000000,0.00000000,,0.27659574,96.00000000,4.24778761,0.02083333,0.00000000,5.48000000 +2466,chr22,20563017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,0.41000000,0.00000000,,0.15151515,72.00000000,3.18584071,0.08333333,0.00000000,4.62000000 +2467,chr22,20565090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,1.23000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,6.04000000 +2468,chr22,20565468,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.71000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.60000000 +2469,chr22,20565912,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.70000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.01176471,0.00000000,7.68000000 +2470,chr22,20567606,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.02000000 +2471,chr22,20570304,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.84000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.27000000 +2472,chr22,20572338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,101.00000000,0.00000000,-0.50000000,0.00000000,,0.31034483,89.00000000,3.93805310,0.02247191,0.00000000,7.00000000 +2473,chr22,20573256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.44000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,7.01000000 +2474,chr22,20573515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.60000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.72000000 +2475,chr22,20573979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.94000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,5.69000000 +2476,chr22,20574522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.46000000 +2477,chr22,20575627,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,86.00000000,0.00000000,0.33000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.08000000 +2478,chr22,20575637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,85.00000000,0.00000000,-0.01000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +2479,chr22,20576540,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-1.52000000,0.00000000,,0.21649485,98.00000000,4.33628319,0.01020408,0.00000000,6.54000000 +2480,chr22,20578426,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.22000000 +2481,chr22,20581386,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,79.00000000,0.00000000,-1.04000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,4.98000000 +2482,chr22,20581444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.83000000 +2483,chr22,20583314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.18811881,103.00000000,4.55752212,0.01941748,0.00000000,5.79000000 +2484,chr22,20584090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.66000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.35000000 +2485,chr22,20584488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.49000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,5.75000000 +2486,chr22,20584836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +2487,chr22,20585979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,4.67000000 +2488,chr22,20585985,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.13095238,88.00000000,3.89380531,0.04545455,0.00000000,4.56000000 +2489,chr22,20586507,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.12222222,90.00000000,3.98230088,0.00000000,0.00000000,5.25000000 +2490,chr22,20590546,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.63000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.00000000,0.00000000,5.18000000 +2491,chr22,20592116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.41000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +2492,chr22,20592170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.16000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.87000000 +2493,chr22,20600579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.03947368,0.00000000,5.61000000 +2494,chr22,20602750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +2495,chr22,20609086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-2.01000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.95000000 +2496,chr22,20613469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +2497,chr22,20615888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.36000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +2498,chr22,20621305,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.02500000,0.00000000,5.75000000 +2499,chr22,20621403,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.35000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.24000000 +2500,chr22,20621809,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,90.00000000,0.00000000,-1.74000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.49000000 +2501,chr22,20622071,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,5.99000000 +2502,chr22,20622985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.80000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.58000000 +2503,chr22,20623005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.24000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,6.28000000 +2504,chr22,20623052,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.04545455,0.00000000,5.88000000 +2505,chr22,20623359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.03846154,0.00000000,5.82000000 +2506,chr22,20623432,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.43000000 +2507,chr22,20623937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.38000000 +2508,chr22,20624101,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.76000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.23000000 +2509,chr22,20624385,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.87000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.98000000 +2510,chr22,20624432,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.47000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.39000000 +2511,chr22,20624690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,64.00000000,0.00000000,0.70000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,4.87000000 +2512,chr22,20624742,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.33000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,7.18000000 +2513,chr22,20624792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.23000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.43000000 +2514,chr22,20625693,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.00000000,0.00000000,5.89000000 +2515,chr22,20626021,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.36000000,0.00000000,,0.12987013,80.00000000,3.53982301,0.03750000,0.00000000,4.62000000 +2516,chr22,20626150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.47000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.81000000 +2517,chr22,20626272,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,0.28000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +2518,chr22,20626675,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.47000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.03750000,0.00000000,5.94000000 +2519,chr22,20627841,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.94000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +2520,chr22,20628289,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.20000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.47000000 +2521,chr22,20628589,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,6.78000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.50000000 +2522,chr22,20629022,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,99.00000000,0.00000000,-0.44000000,0.00000000,,0.32467532,78.00000000,3.45132743,0.01282051,0.00000000,8.25000000 +2523,chr22,20629305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.65000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.01265823,0.00000000,6.52000000 +2524,chr22,20629543,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-1.13000000,0.00000000,,0.21428571,99.00000000,4.38053097,0.01010101,0.00000000,6.22000000 +2525,chr22,20629746,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.07000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +2526,chr22,20630591,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.79000000,0.00000000,,0.29824561,58.00000000,2.56637168,0.01724138,0.00000000,4.87000000 +2527,chr22,20631723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,71.00000000,0.00000000,0.43000000,0.00000000,,0.12790698,86.00000000,3.80530973,0.00000000,0.00000000,4.63000000 +2528,chr22,20631968,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-2.45000000,0.00000000,,0.25925926,85.00000000,3.76106195,0.04705882,0.00000000,5.88000000 +2529,chr22,20639479,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-1.96000000,0.00000000,,0.11827957,94.00000000,4.15929204,0.01063830,0.00000000,5.47000000 +2530,chr22,20640801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.50000000 +2531,chr22,20648150,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.39000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,6.29000000 +2532,chr22,20648210,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +2533,chr22,20648599,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.58000000,0.00000000,,0.15116279,89.00000000,3.93805310,0.03370787,0.00000000,4.86000000 +2534,chr22,20649203,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.60000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.02898551,0.00000000,5.72000000 +2535,chr22,20649788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,5.86000000 +2536,chr22,20650189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,1.11000000,0.00000000,,0.29166667,73.00000000,3.23008850,0.01369863,0.00000000,6.44000000 +2537,chr22,20651905,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,2.57000000,0.00000000,,0.28750000,80.00000000,3.53982301,0.00000000,0.00000000,6.27000000 +2538,chr22,20653880,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.53000000 +2539,chr22,20655566,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.82000000 +2540,chr22,20655855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,63.00000000,0.00000000,0.02000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,5.23000000 +2541,chr22,20656151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.01204819,0.00000000,6.63000000 +2542,chr22,20657234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.24000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.68000000 +2543,chr22,20659977,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.35000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.58000000 +2544,chr22,20668651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,1.17000000,0.00000000,,0.24390244,86.00000000,3.80530973,0.03488372,0.00000000,5.57000000 +2545,chr22,20668721,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.49000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.01428571,0.00000000,5.58000000 +2546,chr22,20676778,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,0.32000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.01123596,0.00000000,6.42000000 +2547,chr22,20678131,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.25000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +2548,chr22,20685587,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +2549,chr22,20689249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,49.77000000,28.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,54.00000000,0.00000000,0.58000000,0.00000000,,0.25000000,52.00000000,2.30088496,0.00000000,0.00000000,2.75000000 +2550,chr22,20698396,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,55.58000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,5.70000000 +2551,chr22,20707880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,71.00000000,0.00000000,-1.97000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.65000000 +2552,chr22,20711079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,46.75000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.15000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,2.75000000 +2553,chr22,20735860,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.11000000,0.00000000,,0.16923077,66.00000000,2.92035398,0.01515152,0.00000000,5.91000000 +2554,chr22,20741869,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +2555,chr22,20756275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,65.00000000,0.00000000,-0.16000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.19000000 +2556,chr22,20769277,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,59.00000000,0.00000000,0.08000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,4.20000000 +2557,chr22,20791177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.30000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.99000000 +2558,chr22,20795724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.92000000 +2559,chr22,20806773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.16000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.00000000,5.80000000 +2560,chr22,20858772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.59000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.18000000 +2561,chr22,20875969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,53.00000000,0.00000000,0.43000000,0.00000000,,0.29545455,45.00000000,1.99115044,0.00000000,0.00000000,3.05000000 +2562,chr22,20897537,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.27000000,0.00000000,,0.17543860,66.00000000,2.92035398,0.13636364,0.00000000,4.65000000 +2563,chr22,20907129,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.13793103,91.00000000,4.02654867,0.03296703,0.00000000,5.01000000 +2564,chr22,20931842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,85.00000000,0.00000000,-1.78000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,7.02000000 +2565,chr22,20932054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.69000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.10000000 +2566,chr22,20941580,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.59000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.50000000,0.00000000,12.00000000,0.00000000,0.71000000,0.00000000,,0.41379310,57.00000000,2.52212389,0.47368421,0.00000000,3.80000000 +2567,chr22,20946598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.13000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.45000000 +2568,chr22,20968121,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,78.00000000,0.00000000,1.85000000,0.00000000,,0.17441860,91.00000000,4.02654867,0.05494505,0.00000000,4.86000000 +2569,chr22,20972121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.96000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.02439024,0.00000000,6.49000000 +2570,chr22,20977220,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.01190476,0.00000000,6.66000000 +2571,chr22,20977340,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.13414634,86.00000000,3.80530973,0.03488372,0.00000000,5.26000000 +2572,chr22,20977388,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.06382979,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.14814815,86.00000000,3.80530973,0.05813953,0.00000000,4.54000000 +2573,chr22,20977629,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,70.00000000,0.00000000,-0.43000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.17000000 +2574,chr22,20977833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.99000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +2575,chr22,20978151,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,78.00000000,0.00000000,-0.98000000,0.00000000,,0.21590909,93.00000000,4.11504425,0.04301075,0.00000000,5.90000000 +2576,chr22,20980635,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.76000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,5.66000000 +2577,chr22,20980970,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.84000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.03333333,0.00000000,5.62000000 +2578,chr22,20981452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-1.34000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,6.45000000 +2579,chr22,20982977,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.15463918,98.00000000,4.33628319,0.01020408,0.00000000,5.86000000 +2580,chr22,20987880,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.46000000,0.00000000,,0.23404255,94.00000000,4.15929204,0.00000000,0.00000000,6.18000000 +2581,chr22,20998387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,-0.22000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.97000000 +2582,chr22,21002260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-1.04000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,4.79000000 +2583,chr22,21002277,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.81000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.97000000 +2584,chr22,21003313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.22000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.03030303,0.00000000,5.42000000 +2585,chr22,21004368,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,0.11000000,0.00000000,,0.20289855,77.00000000,3.40707965,0.10389610,0.00000000,5.75000000 +2586,chr22,21006953,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.00000000 +2587,chr22,21008238,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.14516129,73.00000000,3.23008850,0.13698630,0.00000000,5.56000000 +2588,chr22,21008560,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,82.00000000,0.00000000,-0.44000000,0.00000000,,0.17391304,98.00000000,4.33628319,0.05102041,0.00000000,4.61000000 +2589,chr22,21012063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.26000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +2590,chr22,21019189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.28000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +2591,chr22,21022782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.17000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.01162791,0.00000000,6.27000000 +2592,chr22,21029140,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.15662651,87.00000000,3.84955752,0.01149425,0.00000000,5.88000000 +2593,chr22,21042761,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,-0.07000000,0.00000000,,0.26865672,73.00000000,3.23008850,0.08219178,0.00000000,6.14000000 +2594,chr22,21044989,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.02247191,0.00000000,6.14000000 +2595,chr22,21045249,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-0.87000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.01250000,0.00000000,5.68000000 +2596,chr22,21045993,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-0.54000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.83000000 +2597,chr22,21046230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.15000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.70000000 +2598,chr22,21046274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.72000000,0.00000000,,0.14942529,90.00000000,3.98230088,0.03333333,0.00000000,5.49000000 +2599,chr22,21046286,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.82000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.86000000,0.00000000,,0.14606742,91.00000000,4.02654867,0.02197802,0.00000000,5.32000000 +2600,chr22,21047281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.77000000 +2601,chr22,21047544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.57000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +2602,chr22,21048437,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,-0.52000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,5.72000000 +2603,chr22,21048937,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,2.10000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,5.74000000 +2604,chr22,21051257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,0.00000000,-0.51000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,6.17000000 +2605,chr22,21068747,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.44000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.86000000 +2606,chr22,21070300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.19000000 +2607,chr22,21072452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.40000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.05194805,0.00000000,2.83000000 +2608,chr22,21073090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.08000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.77000000 +2609,chr22,21074005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,93.00000000,0.00000000,0.08000000,0.00000000,,0.27586207,91.00000000,4.02654867,0.04395604,0.00000000,5.48000000 +2610,chr22,21077440,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-2.02000000,0.00000000,,0.20370370,58.00000000,2.56637168,0.05172414,0.00000000,6.60000000 +2611,chr22,21077455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.18000000,0.00000000,,0.20370370,56.00000000,2.47787611,0.03571429,0.00000000,2.83000000 +2612,chr22,21077480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.02000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.37000000 +2613,chr22,21077704,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,62.00000000,0.00000000,1.09000000,0.00000000,,0.22222222,69.00000000,3.05309735,0.21739130,0.00000000,5.44000000 +2614,chr22,21078133,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.26000000,0.00000000,,0.26190476,43.00000000,1.90265487,0.02325581,0.00000000,2.81000000 +2615,chr22,21079022,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.24000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +2616,chr22,21083123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.83000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.61000000 +2617,chr22,21085537,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.77000000,0.00000000,,0.33980583,104.00000000,4.60176991,0.00961538,0.00000000,8.20000000 +2618,chr22,21087711,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.52000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.49000000 +2619,chr22,21089228,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.42000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,4.87000000 +2620,chr22,21089527,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,-1.16000000,0.00000000,,0.59420290,69.00000000,3.05309735,0.00000000,0.00000000,6.44000000 +2621,chr22,21089741,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,85.00000000,0.00000000,-0.83000000,0.00000000,,0.19000000,100.00000000,4.42477876,0.00000000,0.00000000,5.98000000 +2622,chr22,21090085,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,80.00000000,0.00000000,-0.78000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,5.81000000 +2623,chr22,21090502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.09000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,4.76000000 +2624,chr22,21090505,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,2.71000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.53000000 +2625,chr22,21090748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.02941176,0.00000000,61.00000000,0.00000000,-0.54000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.00000000,0.00000000,5.73000000 +2626,chr22,21090775,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.01282051,0.00000000,5.54000000 +2627,chr22,21091107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,85.00000000,0.00000000,-0.85000000,0.00000000,,0.18947368,95.00000000,4.20353982,0.00000000,0.00000000,5.91000000 +2628,chr22,21091277,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.38000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.04761905,0.00000000,5.05000000 +2629,chr22,21091434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +2630,chr22,21092305,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-2.25000000,0.00000000,,0.23076923,94.00000000,4.15929204,0.03191489,0.00000000,6.25000000 +2631,chr22,21092790,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,1.11000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.46000000 +2632,chr22,21093005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.30588235,86.00000000,3.80530973,0.01162791,0.00000000,7.28000000 +2633,chr22,21093745,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.34000000,0.00000000,,0.10810811,77.00000000,3.40707965,0.02597403,0.00000000,5.02000000 +2634,chr22,21093852,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.70000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,4.39000000 +2635,chr22,21094649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.72000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,5.75000000 +2636,chr22,21094739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,89.00000000,0.00000000,0.14000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,5.82000000 +2637,chr22,21095122,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.30000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.02777778,0.00000000,6.00000000 +2638,chr22,21095435,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.88000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.25000000 +2639,chr22,21095731,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.39000000 +2640,chr22,21095892,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.61000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.46000000 +2641,chr22,21095975,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.01010101,0.00000000,5.86000000 +2642,chr22,21096403,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-1.13000000,0.00000000,,0.28767123,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +2643,chr22,21099634,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.29000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +2644,chr22,21103793,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.41772152,81.00000000,3.58407080,0.02469136,0.00000000,8.18000000 +2645,chr22,21104336,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.40000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +2646,chr22,21104377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.41000000,0.00000000,,0.28409091,88.00000000,3.89380531,0.00000000,0.00000000,6.96000000 +2647,chr22,21107593,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.21000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.04494382,0.00000000,6.64000000 +2648,chr22,21108318,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.11000000 +2649,chr22,21108369,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.07000000 +2650,chr22,21109256,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.79000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.10000000 +2651,chr22,21110190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +2652,chr22,21110761,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-1.65000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.90000000 +2653,chr22,21111750,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.70000000,24.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,2.59000000,0.00000000,,0.11666667,60.00000000,2.65486726,0.00000000,0.00000000,4.86000000 +2654,chr22,21125316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,36.99000000,25.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,0.00000000,0.74000000,0.03000000,,0.31818182,22.00000000,0.97345133,0.00000000,0.00000000,2.84000000 +2655,chr22,21138387,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,25.92000000,81.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.64000000,0.00000000,,0.11538462,52.00000000,2.30088496,0.00000000,0.00000000,2.76000000 +2656,chr22,21151071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.77000000,9.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.11764706,103.00000000,4.55752212,0.00970874,0.00000000,4.75000000 +2657,chr22,21160663,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.01000000,36.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,1.11000000,0.00000000,,0.08695652,138.00000000,6.10619469,0.00000000,0.00000000,4.61000000 +2658,chr22,21171035,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,41.67000000,15.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,0.00000000,-0.71000000,0.00000000,,0.36666667,30.00000000,1.32743363,0.00000000,0.00000000,3.52000000 +2659,chr22,21171060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.16000000,12.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,15.00000000,0.00000000,-0.44000000,0.00000000,,0.37142857,35.00000000,1.54867257,0.00000000,0.00000000,3.46000000 +2660,chr22,21227272,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.00000000,27.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,40.00000000,0.00000000,-2.05000000,0.00000000,,0.39062500,65.00000000,2.87610619,0.01538462,0.00000000,4.19000000 +2661,chr22,21327790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.08000000,12.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.23076923,0.00000000,21.00000000,0.00000000,0.46000000,0.00000000,,0.31707317,46.00000000,2.03539823,0.10869565,0.00000000,3.07000000 +2662,chr22,21329325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.04000000,21.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.85000000,0.00000000,,0.26562500,64.00000000,2.83185841,0.00000000,0.00000000,7.34000000 +2663,chr22,21333010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,34.32000000,105.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,0.00000000,0.31000000,0.00000000,,0.11111111,117.00000000,5.17699115,0.00000000,0.00000000,4.56000000 +2664,chr22,21333685,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,37.19000000,87.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,1.80000000,0.00000000,,0.06944444,145.00000000,6.41592920,0.00689655,0.00000000,4.32000000 +2665,chr22,21335586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,32.67000000,65.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.07500000,120.00000000,5.30973451,0.00000000,0.00000000,5.38000000 +2666,chr22,21369147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,26.29000000,43.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,13.00000000,0.00000000,-1.62000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.19000000 +2667,chr22,21450757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.74000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +2668,chr22,21556455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,1.95000000,0.00000000,,0.16494845,100.00000000,4.42477876,0.03000000,0.00000000,4.97000000 +2669,chr22,21561831,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.28000000,9.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-2.45000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.04255319,0.00000000,5.89000000 +2670,chr22,21586729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.95000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.30000000 +2671,chr22,21588995,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.93000000,0.00000000,,0.31343284,69.00000000,3.05309735,0.01449275,0.00000000,7.80000000 +2672,chr22,21648710,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.37000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.21000000 +2673,chr22,21660945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.02531646,0.00000000,6.52000000 +2674,chr22,21665468,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +2675,chr22,21671187,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.13000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +2676,chr22,21673328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.09000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +2677,chr22,21687790,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,73.00000000,0.00000000,-0.80000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,6.20000000 +2678,chr22,21688629,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +2679,chr22,21689620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,1.88000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.01136364,0.00000000,5.71000000 +2680,chr22,21689951,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.27000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.17000000 +2681,chr22,21692498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.24000000 +2682,chr22,21694481,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,5.89000000 +2683,chr22,21697420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,0.00000000,-0.78000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.01234568,0.00000000,6.53000000 +2684,chr22,21698525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.05000000,0.00000000,,0.18627451,102.00000000,4.51327434,0.00000000,0.00000000,6.67000000 +2685,chr22,21699487,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,1.17000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.33000000 +2686,chr22,21704066,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.06000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.28000000 +2687,chr22,21705004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,5.75000000 +2688,chr22,21706086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.23000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.29000000 +2689,chr22,21707469,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.72000000 +2690,chr22,21710106,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.22000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,5.42000000 +2691,chr22,21712639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.25490196,54.00000000,2.38938053,0.03703704,0.00000000,6.68000000 +2692,chr22,21716254,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.37000000,7.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.24000000 +2693,chr22,21725715,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,-1.64000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +2694,chr22,21734003,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.48000000 +2695,chr22,21735361,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,1.42000000,0.00000000,,0.18181818,72.00000000,3.18584071,0.06944444,0.00000000,5.63000000 +2696,chr22,21735898,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.55000000,0.00000000,,0.24691358,86.00000000,3.80530973,0.03488372,0.00000000,6.59000000 +2697,chr22,21741482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.50000000,0.00000000,,0.17857143,57.00000000,2.52212389,0.01754386,0.00000000,2.98000000 +2698,chr22,21742513,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.91000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +2699,chr22,21744398,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +2700,chr22,21747803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,85.00000000,0.00000000,-0.06000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,6.01000000 +2701,chr22,21751104,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +2702,chr22,21752768,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +2703,chr22,21754023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,92.00000000,0.00000000,0.31000000,0.00000000,,0.27536232,72.00000000,3.18584071,0.02777778,0.00000000,5.71000000 +2704,chr22,21755878,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +2705,chr22,21756338,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.93000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.81000000 +2706,chr22,21757696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.48000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.76000000 +2707,chr22,21759332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.42000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +2708,chr22,21759747,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,4.97000000 +2709,chr22,21765208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +2710,chr22,21765414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +2711,chr22,21771930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,70.00000000,0.00000000,1.18000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.37000000 +2712,chr22,21774646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,58.00000000,0.00000000,-1.44000000,1.81000000,,0.11864407,67.00000000,2.96460177,0.11940299,0.00000000,2.78000000 +2713,chr22,21779744,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-1.50000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +2714,chr22,21780172,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.18000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.60000000 +2715,chr22,21780882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.04000000 +2716,chr22,21785973,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-1.91000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.90000000 +2717,chr22,21790122,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +2718,chr22,21803852,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,78.00000000,0.00000000,2.09000000,0.00000000,,0.19718310,76.00000000,3.36283186,0.05263158,0.00000000,5.77000000 +2719,chr22,21815221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.97000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,5.84000000 +2720,chr22,21819905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,32.00000000,1.41592920,0.12500000,0.00000000,70.00000000,0.00000000,0.84000000,0.00000000,,0.24691358,87.00000000,3.84955752,0.06896552,0.00000000,5.69000000 +2721,chr22,21820418,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.60000000 +2722,chr22,21821696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.20000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.91000000 +2723,chr22,21824045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.10000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.02222222,0.00000000,6.59000000 +2724,chr22,21838283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.14000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.76000000 +2725,chr22,21839307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.33000000,0.00000000,,0.19791667,99.00000000,4.38053097,0.02020202,0.00000000,6.40000000 +2726,chr22,21840463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.67000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.85000000 +2727,chr22,21847872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.19696970,71.00000000,3.14159292,0.07042254,0.00000000,5.45000000 +2728,chr22,21847972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.05000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.34000000 +2729,chr22,21852473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.36000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.02000000 +2730,chr22,21857316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,0.20000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,5.69000000 +2731,chr22,21857591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,5.66000000 +2732,chr22,21874258,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.21739130,48.00000000,2.12389381,0.02083333,0.00000000,6.20000000 +2733,chr22,21874329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-2.16000000,0.00000000,,0.30434783,71.00000000,3.14159292,0.02816901,0.00000000,6.33000000 +2734,chr22,21887699,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.31081081,76.00000000,3.36283186,0.02631579,0.00000000,6.15000000 +2735,chr22,21890724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.16000000 +2736,chr22,21891223,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.52000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,3.17000000,0.00000000,,0.34090909,44.00000000,1.94690265,0.00000000,0.00000000,7.83000000 +2737,chr22,21892697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.74000000,0.00000000,,0.22352941,88.00000000,3.89380531,0.02272727,0.00000000,6.69000000 +2738,chr22,21898230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.58000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.68000000 +2739,chr22,21899704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.82000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.31000000 +2740,chr22,21904834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,68.00000000,0.00000000,-0.05000000,0.00000000,,0.24050633,86.00000000,3.80530973,0.08139535,0.00000000,5.99000000 +2741,chr22,21911870,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,96.00000000,0.00000000,0.04000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.02409639,0.00000000,5.06000000 +2742,chr22,21912096,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.89000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.71000000 +2743,chr22,21912237,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,0.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +2744,chr22,21912468,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,90.00000000,0.00000000,-0.47000000,0.00000000,,0.32500000,82.00000000,3.62831858,0.02439024,0.00000000,7.97000000 +2745,chr22,21912655,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,57.73000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-1.22000000,0.00000000,,0.31372549,57.00000000,2.52212389,0.10526316,0.00000000,8.01000000 +2746,chr22,21914399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-0.24000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.17000000 +2747,chr22,21915334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.58000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.02666667,0.00000000,6.01000000 +2748,chr22,21920372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,1.20000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.03333333,0.00000000,5.26000000 +2749,chr22,21926720,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,2.30000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.69000000 +2750,chr22,21927077,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.40000000 +2751,chr22,21960807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-1.88000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,6.86000000 +2752,chr22,21963982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +2753,chr22,21976637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.32857143,70.00000000,3.09734513,0.00000000,0.00000000,7.99000000 +2754,chr22,21981017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,91.00000000,0.00000000,-0.33000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,5.46000000 +2755,chr22,21987382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.84000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,6.44000000 +2756,chr22,21987850,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.43000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.60000000 +2757,chr22,22013837,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.48000000 +2758,chr22,22022693,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.31578947,77.00000000,3.40707965,0.01298701,0.00000000,6.88000000 +2759,chr22,22051339,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +2760,chr22,22083244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,100.00000000,0.00000000,-0.45000000,0.00000000,,0.30666667,75.00000000,3.31858407,0.00000000,0.00000000,6.62000000 +2761,chr22,22091590,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.23000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.51000000 +2762,chr22,22100170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.16000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.01265823,0.00000000,5.06000000 +2763,chr22,22100911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.93000000,0.00000000,,0.10000000,71.00000000,3.14159292,0.01408451,0.00000000,5.15000000 +2764,chr22,22101083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-0.39000000,0.00000000,,0.26732673,102.00000000,4.51327434,0.00980392,0.00000000,6.22000000 +2765,chr22,22101882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.06666667,77.00000000,3.40707965,0.01298701,0.00000000,3.67000000 +2766,chr22,22102294,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,-0.65000000,0.00000000,,0.06944444,73.00000000,3.23008850,0.01369863,0.00000000,5.14000000 +2767,chr22,22104581,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.18000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.00000000,0.00000000,6.49000000 +2768,chr22,22104988,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-0.49000000,0.00000000,,0.09589041,74.00000000,3.27433628,0.01351351,0.00000000,4.29000000 +2769,chr22,22105070,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-0.78000000,0.00000000,,0.07575758,66.00000000,2.92035398,0.00000000,0.00000000,5.17000000 +2770,chr22,22105881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.19000000,0.00000000,,0.09090909,67.00000000,2.96460177,0.01492537,0.00000000,5.13000000 +2771,chr22,22107948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.09000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,4.99000000 +2772,chr22,22134321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.84000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.13000000 +2773,chr22,22134584,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,1.48000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.93000000 +2774,chr22,22134587,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,1.71000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.83000000 +2775,chr22,22135230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,0.33000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.01333333,0.00000000,5.66000000 +2776,chr22,22136444,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,0.00000000,,0.06578947,77.00000000,3.40707965,0.01298701,0.00000000,5.31000000 +2777,chr22,22138064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.07042254,72.00000000,3.18584071,0.01388889,0.00000000,5.33000000 +2778,chr22,22140538,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-1.24000000,0.00000000,,0.10144928,69.00000000,3.05309735,0.00000000,0.00000000,5.22000000 +2779,chr22,22143100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.54000000 +2780,chr22,22143231,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,0.24000000,0.00000000,,0.07500000,81.00000000,3.58407080,0.01234568,0.00000000,4.99000000 +2781,chr22,22143549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.75000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.01369863,0.00000000,5.07000000 +2782,chr22,22143647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,67.00000000,0.00000000,1.29000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,5.06000000 +2783,chr22,22144743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,2.41000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.02197802,0.00000000,4.86000000 +2784,chr22,22144937,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.08000000,75.00000000,3.31858407,0.00000000,0.00000000,5.50000000 +2785,chr22,22146303,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.75000000 +2786,chr22,22150553,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.11627907,89.00000000,3.93805310,0.02247191,0.00000000,5.31000000 +2787,chr22,22150629,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.97000000,0.00000000,,0.10126582,81.00000000,3.58407080,0.02469136,0.00000000,4.88000000 +2788,chr22,22150737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,70.00000000,0.00000000,-0.94000000,0.00000000,,0.08750000,85.00000000,3.76106195,0.05882353,0.00000000,4.43000000 +2789,chr22,22151223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.12000000,0.00000000,,0.10000000,81.00000000,3.58407080,0.01234568,0.00000000,5.64000000 +2790,chr22,22151238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.03000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.01219512,0.00000000,5.14000000 +2791,chr22,22156718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,0.43000000,4.45000000,,0.07792208,78.00000000,3.45132743,0.01282051,0.00000000,3.94000000 +2792,chr22,22157074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,1.10000000,0.00000000,,0.09589041,75.00000000,3.31858407,0.02666667,0.00000000,4.84000000 +2793,chr22,22157103,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.08219178,73.00000000,3.23008850,0.00000000,0.00000000,5.20000000 +2794,chr22,22157175,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.03000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.10000000 +2795,chr22,22157195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.24000000,0.00000000,,0.11764706,70.00000000,3.09734513,0.02857143,0.00000000,4.91000000 +2796,chr22,22157326,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,62.00000000,0.00000000,-0.97000000,0.00000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,5.01000000 +2797,chr22,22157931,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.13000000,0.00000000,,0.07042254,73.00000000,3.23008850,0.01369863,0.00000000,4.93000000 +2798,chr22,22158186,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.06000000,102.00000000,4.51327434,0.01960784,0.00000000,5.16000000 +2799,chr22,22158406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,0.14000000,0.00000000,,0.07594937,79.00000000,3.49557522,0.00000000,0.00000000,5.01000000 +2800,chr22,22158670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,1.00000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.55000000 +2801,chr22,22159005,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.86000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,4.18000000 +2802,chr22,22159769,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.93000000,0.00000000,,0.08536585,83.00000000,3.67256637,0.01204819,0.00000000,5.17000000 +2803,chr22,22167105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.56000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,5.81000000 +2804,chr22,22167132,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +2805,chr22,22171673,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.92000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.44000000 +2806,chr22,22175614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-0.92000000,0.00000000,,0.20338983,62.00000000,2.74336283,0.03225806,0.00000000,6.39000000 +2807,chr22,22175777,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,1.61000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,6.03000000 +2808,chr22,22176637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.69000000,0.00000000,,0.31746032,63.00000000,2.78761062,0.00000000,0.00000000,7.64000000 +2809,chr22,22176674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.28000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.94000000 +2810,chr22,22177813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.03750000,0.00000000,6.09000000 +2811,chr22,22178083,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.17021277,59.00000000,2.61061947,0.16949153,0.00000000,5.62000000 +2812,chr22,22178249,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,79.00000000,0.00000000,1.11000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.48000000 +2813,chr22,22178375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.91000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +2814,chr22,22178915,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.06000000,0.00000000,,0.33333333,72.00000000,3.18584071,0.00000000,0.00000000,8.85000000 +2815,chr22,22178938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.24000000,0.00000000,,0.33823529,68.00000000,3.00884956,0.00000000,0.00000000,9.13000000 +2816,chr22,22178942,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,-0.69000000,0.00000000,,0.34328358,68.00000000,3.00884956,0.01470588,0.00000000,5.19000000 +2817,chr22,22178958,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.34000000,0.00000000,,0.30000000,71.00000000,3.14159292,0.01408451,0.00000000,6.37000000 +2818,chr22,22179648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,98.00000000,0.00000000,-0.25000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,5.15000000 +2819,chr22,22179649,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,97.00000000,0.00000000,-0.15000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,5.15000000 +2820,chr22,22179934,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.16393443,63.00000000,2.78761062,0.03174603,0.00000000,5.30000000 +2821,chr22,22179973,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.14925373,70.00000000,3.09734513,0.02857143,0.00000000,5.32000000 +2822,chr22,22180296,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.24000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.39000000 +2823,chr22,22180747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +2824,chr22,22180754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.62000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.73000000 +2825,chr22,22180978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,1.43000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,6.38000000 +2826,chr22,22229175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,-0.34000000,0.00000000,,0.07058824,87.00000000,3.84955752,0.02298851,0.00000000,4.87000000 +2827,chr22,22229620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.40000000,0.00000000,,0.14893617,47.00000000,2.07964602,0.00000000,0.00000000,5.34000000 +2828,chr22,22238541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,-1.58000000,0.00000000,,0.07352941,71.00000000,3.14159292,0.02816901,0.00000000,5.04000000 +2829,chr22,22310486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.33000000,10.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.78000000,0.00000000,,0.10526316,58.00000000,2.56637168,0.01724138,0.00000000,3.03000000 +2830,chr22,22372241,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,-2.68000000,0.00000000,,0.37500000,48.00000000,2.12389381,0.00000000,0.00000000,6.83000000 +2831,chr22,22375834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,77.00000000,0.00000000,-0.04000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.95000000 +2832,chr22,22596905,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.04000000,0.00000000,,0.29687500,68.00000000,3.00884956,0.05882353,0.00000000,6.36000000 +2833,chr22,22598706,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.17000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.92000000 +2834,chr22,22606413,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,100.00000000,0.00000000,-0.26000000,0.00000000,,0.30303030,68.00000000,3.00884956,0.02941176,0.00000000,4.98000000 +2835,chr22,22612454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,93.00000000,0.00000000,-1.37000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.14000000 +2836,chr22,22615435,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,94.00000000,0.00000000,-0.09000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.00000000,0.00000000,6.04000000 +2837,chr22,22615721,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.35294118,69.00000000,3.05309735,0.01449275,0.00000000,8.32000000 +2838,chr22,22622648,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.86000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.18367347,49.00000000,2.16814159,0.00000000,0.00000000,6.55000000 +2839,chr22,22626219,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.02000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,39.00000000,0.00000000,0.16000000,0.00000000,,0.39215686,53.00000000,2.34513274,0.03773585,0.00000000,4.12000000 +2840,chr22,22626231,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.68000000,6.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,43.00000000,0.00000000,-0.55000000,0.00000000,,0.38000000,53.00000000,2.34513274,0.03773585,0.00000000,4.30000000 +2841,chr22,22626757,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,50.00000000,0.00000000,2.49000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,4.10000000 +2842,chr22,22626885,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.32000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.19230769,55.00000000,2.43362832,0.03636364,0.00000000,6.34000000 +2843,chr22,22626894,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.19000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-2.60000000,0.00000000,,0.21153846,55.00000000,2.43362832,0.01818182,0.00000000,6.48000000 +2844,chr22,22628342,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,42.25000000,34.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.28260870,50.00000000,2.21238938,0.08000000,0.00000000,6.73000000 +2845,chr22,22629817,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.49000000,21.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.25862069,61.00000000,2.69911504,0.04918033,0.00000000,6.27000000 +2846,chr22,22632860,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,48.42000000,21.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,0.61000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,4.98000000 +2847,chr22,22635719,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.80000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,1.65000000,0.00000000,,0.18750000,64.00000000,2.83185841,0.00000000,0.00000000,5.81000000 +2848,chr22,22635726,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.24000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.30000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.34000000 +2849,chr22,22635728,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.19000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.87000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.00000000,0.00000000,5.83000000 +2850,chr22,22637467,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,40.15000000,16.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.00000000,17.00000000,0.00000000,-0.44000000,0.00000000,,0.37500000,18.00000000,0.79646018,0.05555556,0.00000000,3.93000000 +2851,chr22,22637741,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,52.06000000,17.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.22000000,0.00000000,,0.27906977,43.00000000,1.90265487,0.00000000,0.00000000,5.08000000 +2852,chr22,22639283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.82000000,15.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.60000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.01000000 +2853,chr22,22642832,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,49.39000000,34.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.80000000,0.00000000,,0.21568627,52.00000000,2.30088496,0.01923077,0.00000000,6.44000000 +2854,chr22,22646606,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.03000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.16000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.51000000 +2855,chr22,22817061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-0.48000000,0.00000000,,0.23076923,40.00000000,1.76991150,0.02500000,0.00000000,2.79000000 +2856,chr22,22826214,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.48000000,0.00000000,,0.11111111,37.00000000,1.63716814,0.02702703,0.00000000,5.41000000 +2857,chr22,22826731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.90000000,0.00000000,,0.26190476,42.00000000,1.85840708,0.00000000,0.00000000,6.44000000 +2858,chr22,22906870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,0.08000000,0.00000000,,0.25252525,100.00000000,4.42477876,0.01000000,0.00000000,6.26000000 +2859,chr22,22907184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.45000000 +2860,chr22,22907220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.02000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.80000000 +2861,chr22,22908881,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,0.64000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.02173913,0.00000000,5.39000000 +2862,chr22,22909672,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,92.00000000,0.00000000,0.93000000,0.00000000,,0.35000000,80.00000000,3.53982301,0.00000000,0.00000000,8.19000000 +2863,chr22,22911133,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,83.00000000,0.00000000,-0.01000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,5.22000000 +2864,chr22,22912171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,6.06000000 +2865,chr22,22914089,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03921569,52.00000000,2.30088496,0.01923077,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,4.58000000 +2866,chr22,22914108,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.61000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.32000000 +2867,chr22,22916061,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.24000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.28000000 +2868,chr22,22916130,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.19191919,101.00000000,4.46902655,0.01980198,0.00000000,5.99000000 +2869,chr22,22916824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.76000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.37000000 +2870,chr22,22917062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,-0.51000000,0.00000000,,0.30681818,90.00000000,3.98230088,0.01111111,0.00000000,7.29000000 +2871,chr22,22917331,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,-1.96000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.12000000 +2872,chr22,22917565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.97000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.04651163,0.00000000,6.25000000 +2873,chr22,22918108,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.23456790,87.00000000,3.84955752,0.06896552,0.00000000,6.16000000 +2874,chr22,22918914,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +2875,chr22,22918994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.01298701,0.00000000,6.00000000 +2876,chr22,22919380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.90000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.10000000 +2877,chr22,22919554,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.15789474,96.00000000,4.24778761,0.01041667,0.00000000,5.73000000 +2878,chr22,22919647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,88.00000000,0.00000000,-0.64000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,5.98000000 +2879,chr22,22919684,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,2.42000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.45000000 +2880,chr22,22921079,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.65000000 +2881,chr22,22921536,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.08000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.94000000 +2882,chr22,22923946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,98.00000000,0.00000000,2.87000000,0.00000000,,0.27184466,103.00000000,4.55752212,0.00000000,0.00000000,6.21000000 +2883,chr22,22925879,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.16000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,5.91000000 +2884,chr22,22930455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.67000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +2885,chr22,22933062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.04545455,0.00000000,5.81000000 +2886,chr22,22934354,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,-0.03000000,0.00000000,,0.28000000,102.00000000,4.51327434,0.01960784,0.00000000,5.92000000 +2887,chr22,22935122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,2.27000000,0.00000000,,0.24210526,95.00000000,4.20353982,0.00000000,0.00000000,6.18000000 +2888,chr22,22938950,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.94000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,6.79000000 +2889,chr22,22940123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.55000000,0.00000000,,0.16483516,94.00000000,4.15929204,0.03191489,0.00000000,5.03000000 +2890,chr22,22940714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.62000000,0.00000000,,0.26373626,91.00000000,4.02654867,0.00000000,0.00000000,6.44000000 +2891,chr22,22943510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.50000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +2892,chr22,22946492,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.24000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +2893,chr22,22953141,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.03000000,0.00000000,,0.36170213,94.00000000,4.15929204,0.00000000,0.00000000,8.59000000 +2894,chr22,22953443,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.48000000 +2895,chr22,22966106,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.18750000,97.00000000,4.29203540,0.01030928,0.00000000,6.67000000 +2896,chr22,22975231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.27000000 +2897,chr22,23001381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.91000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +2898,chr22,23005946,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.53000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.01149425,0.00000000,6.69000000 +2899,chr22,23019048,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.47000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.54000000 +2900,chr22,23024137,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.98000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +2901,chr22,23038999,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.56000000 +2902,chr22,23054836,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.52000000,0.00000000,,0.25842697,92.00000000,4.07079646,0.03260870,0.00000000,6.33000000 +2903,chr22,23075361,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,1.59000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,5.97000000 +2904,chr22,23078872,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,0.34000000,0.00000000,,0.48192771,83.00000000,3.67256637,0.00000000,0.00000000,4.16000000 +2905,chr22,23080704,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,2.28000000,0.00000000,,0.31250000,84.00000000,3.71681416,0.03571429,0.00000000,7.19000000 +2906,chr22,23080921,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.22000000,0.00000000,,0.31325301,83.00000000,3.67256637,0.00000000,0.00000000,7.06000000 +2907,chr22,23081061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +2908,chr22,23083341,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.37000000 +2909,chr22,23083736,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.52000000 +2910,chr22,23083744,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.16470588,87.00000000,3.84955752,0.02298851,0.00000000,5.46000000 +2911,chr22,23084746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.21000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +2912,chr22,23086623,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.63000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.38000000 +2913,chr22,23087037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.71000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +2914,chr22,23087365,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.04000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,6.27000000 +2915,chr22,23087569,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,91.00000000,0.00000000,0.19000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.02150538,0.00000000,5.83000000 +2916,chr22,23087966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.18691589,107.00000000,4.73451327,0.00000000,0.00000000,6.16000000 +2917,chr22,23088223,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,2.11000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.72000000 +2918,chr22,23088506,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,80.00000000,0.00000000,-1.21000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.42000000 +2919,chr22,23089576,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.10000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.43000000 +2920,chr22,23090047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,1.29000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,5.81000000 +2921,chr22,23090457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.76000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.00000000,0.00000000,6.42000000 +2922,chr22,23091056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.54000000,0.00000000,,0.28421053,98.00000000,4.33628319,0.03061224,0.00000000,6.17000000 +2923,chr22,23091676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.18750000,100.00000000,4.42477876,0.03000000,0.00000000,5.97000000 +2924,chr22,23091703,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.94000000,0.00000000,,0.21000000,101.00000000,4.46902655,0.00990099,0.00000000,6.64000000 +2925,chr22,23092406,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,55.00000000,2.43362832,0.00000000,0.00000000,6.65000000 +2926,chr22,23094237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.53000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.24000000 +2927,chr22,23095084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,78.00000000,0.00000000,-0.89000000,0.00000000,,0.17171717,101.00000000,4.46902655,0.00990099,0.00000000,5.59000000 +2928,chr22,23096004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.99000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +2929,chr22,23097343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.09000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +2930,chr22,23097912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.01000000,0.00000000,,0.23404255,98.00000000,4.33628319,0.01020408,0.00000000,6.54000000 +2931,chr22,23098339,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.25000000 +2932,chr22,23100729,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.60000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.01408451,0.00000000,5.38000000 +2933,chr22,23101880,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.70000000 +2934,chr22,23102149,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.73000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.45000000 +2935,chr22,23102609,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.05000000,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.27083333,98.00000000,4.33628319,0.02040816,0.00000000,5.87000000 +2936,chr22,23102896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.34000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.06896552,0.00000000,6.24000000 +2937,chr22,23104199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.85000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.60000000 +2938,chr22,23107768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.23913043,95.00000000,4.20353982,0.02105263,0.00000000,5.67000000 +2939,chr22,23112535,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.16000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.00000000,0.00000000,6.45000000 +2940,chr22,23119113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.12000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.18000000 +2941,chr22,23122623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.55000000 +2942,chr22,23127731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.11764706,88.00000000,3.89380531,0.02272727,0.00000000,5.43000000 +2943,chr22,23132569,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.03529412,0.00000000,6.37000000 +2944,chr22,23132880,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,83.00000000,0.00000000,0.36000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.02150538,0.00000000,5.90000000 +2945,chr22,23135287,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.16666667,0.00000000,85.00000000,0.00000000,-0.07000000,0.00000000,,0.24590164,69.00000000,3.05309735,0.11594203,0.00000000,5.54000000 +2946,chr22,23140296,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,0.66000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.16000000 +2947,chr22,23145346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,1.32000000,0.00000000,,0.20253165,86.00000000,3.80530973,0.08139535,0.00000000,5.75000000 +2948,chr22,23147498,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.06000000 +2949,chr22,23149457,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,0.25000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,5.53000000 +2950,chr22,23153489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.04000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.02000000 +2951,chr22,23155811,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.35000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,5.75000000 +2952,chr22,23157487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,1.64000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,5.96000000 +2953,chr22,23159492,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,1.01000000,0.00000000,,0.20909091,111.00000000,4.91150442,0.00000000,0.00000000,6.10000000 +2954,chr22,23160934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.51000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +2955,chr22,23161195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.26000000 +2956,chr22,23162218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,1.37000000,0.00000000,,0.19791667,97.00000000,4.29203540,0.01030928,0.00000000,6.60000000 +2957,chr22,23167127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.79000000 +2958,chr22,23168617,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.66000000 +2959,chr22,23169285,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,69.00000000,0.00000000,-0.59000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.21000000 +2960,chr22,23169398,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,5.90000000 +2961,chr22,23170580,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.06000000,0.00000000,,0.17073171,87.00000000,3.84955752,0.05747126,0.00000000,5.72000000 +2962,chr22,23171734,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.02702703,0.00000000,5.63000000 +2963,chr22,23172107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.85000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.59000000 +2964,chr22,23173235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.28000000,0.00000000,,0.23404255,48.00000000,2.12389381,0.02083333,0.00000000,2.91000000 +2965,chr22,23173768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.27000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.82000000 +2966,chr22,23173827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.41000000,0.00000000,,0.28358209,68.00000000,3.00884956,0.01470588,0.00000000,6.16000000 +2967,chr22,23174610,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,78.00000000,0.00000000,1.37000000,0.00000000,,0.24324324,81.00000000,3.58407080,0.08641975,0.00000000,5.63000000 +2968,chr22,23175789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.63000000 +2969,chr22,23176028,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,0.15000000,0.00000000,,0.23913043,96.00000000,4.24778761,0.03125000,0.00000000,5.81000000 +2970,chr22,23176057,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,81.00000000,0.00000000,0.96000000,0.00000000,,0.19607843,106.00000000,4.69026549,0.03773585,0.00000000,5.79000000 +2971,chr22,23176064,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.73000000,0.00000000,,0.19191919,105.00000000,4.64601770,0.04761905,0.00000000,5.59000000 +2972,chr22,23176859,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.51000000 +2973,chr22,23176997,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.75000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.01041667,0.00000000,6.57000000 +2974,chr22,23181443,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.00000000,0.00000000,6.37000000 +2975,chr22,23182895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-0.21000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.49000000 +2976,chr22,23185423,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.12000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.00000000,0.00000000,7.36000000 +2977,chr22,23185590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.48000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,2.97000000 +2978,chr22,23185719,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,-1.53000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.18750000,0.00000000,6.21000000 +2979,chr22,23185721,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.24528302,66.00000000,2.92035398,0.19696970,0.00000000,6.22000000 +2980,chr22,23185742,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.66000000,0.00000000,,0.18644068,68.00000000,3.00884956,0.13235294,0.00000000,5.72000000 +2981,chr22,23186584,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +2982,chr22,23187981,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.14000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.19000000 +2983,chr22,23188247,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.15306122,100.00000000,4.42477876,0.01000000,0.00000000,5.23000000 +2984,chr22,23189844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.48000000,5.83000000,,0.23076923,99.00000000,4.38053097,0.08080808,0.00000000,4.24000000 +2985,chr22,23192948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.60000000 +2986,chr22,23193312,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-1.18000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.00000000,0.00000000,6.60000000 +2987,chr22,23195042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.29000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.87000000 +2988,chr22,23195210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.21000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.75000000 +2989,chr22,23195703,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.97000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.67000000 +2990,chr22,23195836,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.17000000,0.00000000,,0.25000000,106.00000000,4.69026549,0.01886792,0.00000000,6.66000000 +2991,chr22,23196170,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.27000000 +2992,chr22,23196400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.56000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +2993,chr22,23196550,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.24242424,101.00000000,4.46902655,0.00990099,0.00000000,6.07000000 +2994,chr22,23196783,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.13000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.64000000 +2995,chr22,23197124,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.36000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.05000000 +2996,chr22,23197209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.25000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +2997,chr22,23197253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.39000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.24000000 +2998,chr22,23198227,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05405405,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,1.98000000,0.00000000,,0.31707317,84.00000000,3.71681416,0.02380952,0.00000000,6.47000000 +2999,chr22,23198612,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,80.00000000,0.00000000,0.36000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,5.43000000 +3000,chr22,23198726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,-1.14000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +3001,chr22,23198896,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,67.00000000,0.00000000,1.22000000,0.00000000,,0.11538462,82.00000000,3.62831858,0.04878049,0.00000000,4.71000000 +3002,chr22,23198948,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,74.00000000,0.00000000,-1.06000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.68000000 +3003,chr22,23199301,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.26000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.02000000 +3004,chr22,23199912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,0.19000000,0.00000000,,0.33898305,62.00000000,2.74336283,0.03225806,0.00000000,4.30000000 +3005,chr22,23200697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.01086957,0.00000000,5.59000000 +3006,chr22,23216567,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.91000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +3007,chr22,23254843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.28089888,93.00000000,4.11504425,0.00000000,0.00000000,6.50000000 +3008,chr22,23255788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,-1.14000000,0.00000000,,0.28712871,103.00000000,4.55752212,0.00970874,0.00000000,6.24000000 +3009,chr22,23255822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,98.00000000,0.00000000,1.55000000,0.00000000,,0.31250000,97.00000000,4.29203540,0.01030928,0.00000000,7.09000000 +3010,chr22,23256763,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,1.08000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.02666667,0.00000000,6.41000000 +3011,chr22,23260232,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.28000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.50000000 +3012,chr22,23265792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.17894737,95.00000000,4.20353982,0.00000000,0.00000000,5.80000000 +3013,chr22,23280019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,91.00000000,0.00000000,1.34000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,5.80000000 +3014,chr22,23288960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,5.41000000 +3015,chr22,23302444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,0.88000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.08000000 +3016,chr22,23303835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,104.00000000,0.00000000,1.02000000,0.00000000,,0.30769231,96.00000000,4.24778761,0.03125000,0.00000000,13.90000000 +3017,chr22,23304070,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,71.00000000,0.00000000,2.03000000,0.00000000,,0.16250000,94.00000000,4.15929204,0.09574468,0.00000000,5.62000000 +3018,chr22,23304325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.01000000 +3019,chr22,23304766,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.65000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +3020,chr22,23304852,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,67.00000000,0.00000000,0.74000000,0.00000000,,0.12500000,105.00000000,4.64601770,0.00952381,0.00000000,4.95000000 +3021,chr22,23305613,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +3022,chr22,23305822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.04000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +3023,chr22,23306438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.35000000,0.00000000,,0.22222222,94.00000000,4.15929204,0.03191489,0.00000000,6.06000000 +3024,chr22,23307055,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-1.16000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +3025,chr22,23307182,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,86.00000000,0.00000000,-1.28000000,0.00000000,,0.27027027,74.00000000,3.27433628,0.00000000,0.00000000,6.33000000 +3026,chr22,23307551,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.38000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.16000000,0.00000000,,0.11363636,45.00000000,1.99115044,0.02222222,0.00000000,4.80000000 +3027,chr22,23307681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.07000000,17.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,1.10000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.51000000 +3028,chr22,23307807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.88000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.28000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.12000000 +3029,chr22,23308968,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.94000000,18.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.43000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.01538462,0.00000000,6.01000000 +3030,chr22,23309717,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.17000000,28.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-1.09000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,4.32000000 +3031,chr22,23310014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.25274725,99.00000000,4.38053097,0.07070707,0.00000000,5.87000000 +3032,chr22,23310025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.41000000 +3033,chr22,23310316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,53.29000000,15.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-0.49000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.01470588,0.00000000,5.07000000 +3034,chr22,23311368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.54000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.85000000,0.00000000,,0.11428571,71.00000000,3.14159292,0.01408451,0.00000000,4.94000000 +3035,chr22,23312560,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,54.45000000,14.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,2.11000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,4.91000000 +3036,chr22,23312620,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.88000000,16.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.02000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,4.89000000 +3037,chr22,23312806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.85000000,0.00000000,,0.17073171,86.00000000,3.80530973,0.02325581,0.00000000,5.87000000 +3038,chr22,23312897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.38000000,19.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.03000000 +3039,chr22,23313032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.31000000,18.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,63.00000000,0.00000000,-1.42000000,0.00000000,,0.06250000,97.00000000,4.29203540,0.01030928,0.00000000,5.12000000 +3040,chr22,23313433,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.13000000,11.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,5.70000000 +3041,chr22,23313961,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.17000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,5.99000000 +3042,chr22,23315079,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,0.49000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,6.07000000 +3043,chr22,23315089,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,84.00000000,0.00000000,0.07000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.00961538,0.00000000,5.81000000 +3044,chr22,23315139,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.69000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.68000000 +3045,chr22,23315308,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.25757576,77.00000000,3.40707965,0.14285714,0.00000000,5.94000000 +3046,chr22,23315408,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,-0.35000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.01219512,0.00000000,6.63000000 +3047,chr22,23315417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +3048,chr22,23315477,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.81000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.26000000 +3049,chr22,23315548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.34000000 +3050,chr22,23315687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-1.83000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +3051,chr22,23315688,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-1.99000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.03000000 +3052,chr22,23315694,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.52000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +3053,chr22,23315752,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.90000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,5.89000000 +3054,chr22,23315779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,5.69000000 +3055,chr22,23315793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.78000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.54000000 +3056,chr22,23315820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,59.00000000,0.00000000,1.57000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,3.95000000 +3057,chr22,23315907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.73000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.53000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.36000000 +3058,chr22,23318706,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,50.57000000,11.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,25.00000000,0.00000000,-2.78000000,0.00000000,,0.41304348,46.00000000,2.03539823,0.00000000,0.00000000,3.54000000 +3059,chr22,23319047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.05000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.53000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,6.78000000 +3060,chr22,23319378,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,55.04000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.13333333,60.00000000,2.65486726,0.00000000,0.00000000,5.12000000 +3061,chr22,23319468,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,46.28000000,45.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.77000000 +3062,chr22,23319709,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.63000000,11.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.52000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,5.11000000 +3063,chr22,23321002,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,2.04000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.00000000,0.00000000,6.20000000 +3064,chr22,23321179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.13000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +3065,chr22,23326783,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,35.95000000,41.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.17000000,0.00000000,,0.40000000,30.00000000,1.32743363,0.00000000,0.00000000,8.08000000 +3066,chr22,23327034,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,38.53000000,16.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,39.00000000,0.00000000,-1.07000000,0.00000000,,0.57575758,34.00000000,1.50442478,0.02941176,0.00000000,4.13000000 +3067,chr22,23327076,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,36.92000000,19.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.40000000,0.00000000,,0.56250000,32.00000000,1.41592920,0.00000000,0.00000000,4.09000000 +3068,chr22,23327459,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,49.60000000,11.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,8.00000000,0.00000000,-1.10000000,0.00000000,,0.54347826,46.00000000,2.03539823,0.00000000,0.00000000,3.65000000 +3069,chr22,23327795,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.76000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.71000000,0.00000000,,0.39325843,90.00000000,3.98230088,0.01111111,0.00000000,8.03000000 +3070,chr22,23327819,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.71000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.37000000,0.00000000,,0.37647059,85.00000000,3.76106195,0.00000000,0.00000000,8.01000000 +3071,chr22,23327850,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.85000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.68000000,0.00000000,,0.37500000,81.00000000,3.58407080,0.01234568,0.00000000,8.62000000 +3072,chr22,23327928,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.80000000,3.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,34.00000000,0.00000000,-1.36000000,0.00000000,,0.39436620,76.00000000,3.36283186,0.06578947,0.00000000,3.43000000 +3073,chr22,23328343,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.96000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.39000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,4.27000000 +3074,chr22,23328512,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.40449438,90.00000000,3.98230088,0.01111111,0.00000000,8.35000000 +3075,chr22,23328824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.33000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,45.00000000,0.00000000,-0.05000000,0.00000000,,0.42857143,79.00000000,3.49557522,0.02531646,0.00000000,4.35000000 +3076,chr22,23328833,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.14000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,0.03000000,0.00000000,,0.42424242,69.00000000,3.05309735,0.02898551,0.00000000,3.89000000 +3077,chr22,23329707,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.85000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.67000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,4.22000000 +3078,chr22,23329720,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.01000000,25.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,0.46000000,0.00000000,,0.46969697,66.00000000,2.92035398,0.00000000,0.00000000,3.64000000 +3079,chr22,23330375,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,51.65000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.32758621,59.00000000,2.61061947,0.01694915,0.00000000,7.26000000 +3080,chr22,23330699,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.00000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-2.60000000,0.00000000,,0.43421053,78.00000000,3.45132743,0.02564103,0.00000000,8.07000000 +3081,chr22,23331106,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.45000000,5.00000000,ref,1.00000000,0.09677419,31.00000000,1.37168142,0.00000000,0.00000000,37.00000000,0.00000000,-1.97000000,0.00000000,,0.50649351,79.00000000,3.49557522,0.02531646,0.00000000,3.71000000 +3082,chr22,23331163,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,0.02000000,0.00000000,,0.45238095,84.00000000,3.71681416,0.00000000,0.00000000,14.54000000 +3083,chr22,23331297,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.46000000,0.00000000,,0.41538462,67.00000000,2.96460177,0.01492537,0.00000000,7.95000000 +3084,chr22,23331466,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.93000000,4.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.11000000,0.00000000,,0.39189189,75.00000000,3.31858407,0.01333333,0.00000000,8.84000000 +3085,chr22,23331467,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.92000000,4.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,8.52000000 +3086,chr22,23331544,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.25000000,10.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,107.00000000,0.00000000,0.41000000,0.00000000,,0.39473684,76.00000000,3.36283186,0.00000000,0.00000000,13.92000000 +3087,chr22,23331827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.34000000,13.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.52000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.00000000,0.00000000,8.03000000 +3088,chr22,23331873,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.56000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.30000000,0.00000000,,0.38596491,60.00000000,2.65486726,0.05000000,0.00000000,7.90000000 +3089,chr22,23331874,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.59000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,0.07000000,0.00000000,,0.40000000,58.00000000,2.56637168,0.05172414,0.00000000,7.43000000 +3090,chr22,23331885,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.16000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.00000000,0.00000000,,0.33962264,56.00000000,2.47787611,0.05357143,0.00000000,7.18000000 +3091,chr22,23332245,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,53.00000000,0.00000000,-0.57000000,0.00000000,,0.48333333,62.00000000,2.74336283,0.03225806,0.00000000,4.47000000 +3092,chr22,23333167,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,51.00000000,0.00000000,0.69000000,0.00000000,,0.38888889,66.00000000,2.92035398,0.16666667,0.00000000,4.59000000 +3093,chr22,23334231,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.80000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.58620690,87.00000000,3.84955752,0.00000000,0.00000000,8.12000000 +3094,chr22,23334612,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.60000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.64000000,0.00000000,,0.48571429,73.00000000,3.23008850,0.04109589,0.00000000,8.19000000 +3095,chr22,23334615,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.62000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.21000000,0.00000000,,0.47887324,74.00000000,3.27433628,0.04054054,0.00000000,8.20000000 +3096,chr22,23335415,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.85000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.05000000,0.00000000,,0.35820896,71.00000000,3.14159292,0.04225352,0.00000000,8.08000000 +3097,chr22,23335586,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.13000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.28000000,0.00000000,,0.47887324,75.00000000,3.31858407,0.05333333,0.00000000,7.57000000 +3098,chr22,23335667,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.34000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.28000000,0.00000000,,0.48648649,76.00000000,3.36283186,0.02631579,0.00000000,4.36000000 +3099,chr22,23335671,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,55.12000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.28000000,0.00000000,,0.50000000,76.00000000,3.36283186,0.02631579,0.00000000,4.30000000 +3100,chr22,23337566,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,92.00000000,0.00000000,1.64000000,0.00000000,,0.37362637,93.00000000,4.11504425,0.02150538,0.00000000,7.93000000 +3101,chr22,23338426,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.11000000,3.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,50.00000000,0.00000000,0.47000000,0.00000000,,0.46551724,58.00000000,2.56637168,0.00000000,0.00000000,4.04000000 +3102,chr22,23340206,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.64000000,7.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,90.00000000,0.00000000,0.72000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.00000000,0.00000000,5.43000000 +3103,chr22,23340343,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.29000000,3.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,-0.21000000,0.00000000,,0.45652174,93.00000000,4.11504425,0.01075269,0.00000000,3.20000000 +3104,chr22,23341609,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.38000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.50537634,94.00000000,4.15929204,0.01063830,0.00000000,8.21000000 +3105,chr22,23343273,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,52.00000000,0.00000000,1.22000000,0.00000000,,0.60317460,67.00000000,2.96460177,0.05970149,0.00000000,4.22000000 +3106,chr22,23344638,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,50.77000000,5.00000000,ref,1.00000000,0.07142857,14.00000000,0.61946903,0.00000000,0.00000000,15.00000000,0.00000000,-1.71000000,0.00000000,,0.62068966,31.00000000,1.37168142,0.06451613,0.00000000,3.80000000 +3107,chr22,23344675,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,52.35000000,2.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,12.00000000,0.00000000,-0.74000000,0.00000000,,0.52173913,25.00000000,1.10619469,0.08000000,0.00000000,3.74000000 +3108,chr22,23345107,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.66000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.46000000,0.00000000,,0.43859649,58.00000000,2.56637168,0.01724138,0.00000000,4.42000000 +3109,chr22,23345166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.61000000,17.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,-0.25000000,0.00000000,,0.45161290,62.00000000,2.74336283,0.00000000,0.00000000,4.02000000 +3110,chr22,23362626,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,5.59000000 +3111,chr22,23362793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.19000000,0.00000000,,0.21782178,103.00000000,4.55752212,0.01941748,0.00000000,6.34000000 +3112,chr22,23372317,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,79.00000000,0.00000000,-1.37000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +3113,chr22,23395928,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.13333333,76.00000000,3.36283186,0.01315789,0.00000000,5.49000000 +3114,chr22,23407480,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.43000000,0.00000000,,0.20987654,86.00000000,3.80530973,0.03488372,0.00000000,6.22000000 +3115,chr22,23414786,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-0.56000000,0.00000000,,0.13095238,84.00000000,3.71681416,0.00000000,0.00000000,5.62000000 +3116,chr22,23446026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.43000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.75000000 +3117,chr22,23457271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.82000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +3118,chr22,23472675,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.49000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,1.19000000,0.00000000,,0.36538462,54.00000000,2.38938053,0.01851852,0.00000000,4.81000000 +3119,chr22,23472940,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,7.77000000 +3120,chr22,23472944,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.54000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.01388889,0.00000000,8.09000000 +3121,chr22,23473196,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,1.10000000,0.00000000,,0.45161290,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +3122,chr22,23473327,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.27000000,0.00000000,,0.52439024,84.00000000,3.71681416,0.01190476,0.00000000,8.41000000 +3123,chr22,23473386,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,-1.34000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.01111111,0.00000000,8.43000000 +3124,chr22,23473544,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.10000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,8.09000000 +3125,chr22,23473602,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.88000000,0.00000000,,0.37704918,61.00000000,2.69911504,0.00000000,0.00000000,8.93000000 +3126,chr22,23473958,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.55000000,0.00000000,,0.38461538,91.00000000,4.02654867,0.00000000,0.00000000,8.52000000 +3127,chr22,23474241,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,0.65000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.01162791,0.00000000,8.39000000 +3128,chr22,23474382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,1.44000000,0.00000000,,0.36144578,87.00000000,3.84955752,0.03448276,0.00000000,4.58000000 +3129,chr22,23475299,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.46666667,92.00000000,4.07079646,0.02173913,0.00000000,8.33000000 +3130,chr22,23476246,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.27000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,9.15000000 +3131,chr22,23476514,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.93000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,8.57000000 +3132,chr22,23477138,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.66000000,0.00000000,,0.48148148,82.00000000,3.62831858,0.01219512,0.00000000,8.76000000 +3133,chr22,23477540,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.82000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.31000000,0.00000000,,0.42222222,94.00000000,4.15929204,0.03191489,0.00000000,8.27000000 +3134,chr22,23482139,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,1.01000000,0.00000000,,0.55555556,56.00000000,2.47787611,0.03571429,0.00000000,6.43000000 +3135,chr22,23485649,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,2.05000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.38000000 +3136,chr22,23486159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.20212766,97.00000000,4.29203540,0.03092784,0.00000000,4.00000000 +3137,chr22,23487076,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.76000000,0.00000000,,0.35443038,80.00000000,3.53982301,0.01250000,0.00000000,8.19000000 +3138,chr22,23487274,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,58.00000000,0.00000000,-0.19000000,0.00000000,,0.41666667,85.00000000,3.76106195,0.01176471,0.00000000,6.15000000 +3139,chr22,23489636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,46.00000000,0.00000000,-1.29000000,0.00000000,,0.30769231,76.00000000,3.36283186,0.14473684,0.00000000,2.83000000 +3140,chr22,23489775,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,18.00000000,0.00000000,-0.87000000,0.00000000,,0.49180328,62.00000000,2.74336283,0.01612903,0.00000000,4.15000000 +3141,chr22,23489799,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,-1.75000000,0.00000000,,0.46376812,71.00000000,3.14159292,0.02816901,0.00000000,3.74000000 +3142,chr22,23490322,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.19607843,52.00000000,2.30088496,0.01923077,0.00000000,6.69000000 +3143,chr22,23490385,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.44000000,0.00000000,,0.26000000,51.00000000,2.25663717,0.01960784,0.00000000,6.86000000 +3144,chr22,23490412,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.60000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.01587302,0.00000000,4.59000000 +3145,chr22,23490447,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.87000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.51000000 +3146,chr22,23490943,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.27000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,6.82000000 +3147,chr22,23491152,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,1.93000000,0.00000000,,0.39325843,92.00000000,4.07079646,0.03260870,0.00000000,5.18000000 +3148,chr22,23491402,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.40000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.31000000 +3149,chr22,23491414,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.78000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,6.58000000 +3150,chr22,23491483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.00000000,0.00000000,,0.23529412,70.00000000,3.09734513,0.02857143,0.00000000,6.74000000 +3151,chr22,23491525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.32000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +3152,chr22,23491691,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.32000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,5.74000000 +3153,chr22,23492186,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.94000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.22000000 +3154,chr22,23492253,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,-1.32000000,0.00000000,,0.33846154,65.00000000,2.87610619,0.00000000,0.00000000,4.62000000 +3155,chr22,23492373,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.25333333,80.00000000,3.53982301,0.05000000,0.00000000,5.82000000 +3156,chr22,23492427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23376623,81.00000000,3.58407080,0.04938272,0.00000000,5.81000000 +3157,chr22,23492496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +3158,chr22,23492626,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.27000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.61000000 +3159,chr22,23492702,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.49000000 +3160,chr22,23492852,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,52.00000000,0.00000000,-0.66000000,0.00000000,,0.38805970,67.00000000,2.96460177,0.00000000,0.00000000,4.68000000 +3161,chr22,23493327,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,61.00000000,0.00000000,-1.86000000,0.00000000,,0.13559322,70.00000000,3.09734513,0.12857143,0.00000000,4.89000000 +3162,chr22,23493707,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.00000000,0.00000000,6.54000000 +3163,chr22,23493858,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.23000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.72000000 +3164,chr22,23494632,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.74000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,8.09000000 +3165,chr22,23494633,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.56000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.00000000,0.00000000,8.27000000 +3166,chr22,23495203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.37000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.59000000 +3167,chr22,23495472,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.13333333,0.00000000,23.00000000,0.00000000,1.91000000,0.00000000,,0.40322581,65.00000000,2.87610619,0.03076923,0.00000000,4.11000000 +3168,chr22,23495711,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,1.01000000,0.00000000,,0.17647059,103.00000000,4.55752212,0.00970874,0.00000000,5.90000000 +3169,chr22,23496013,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.57000000 +3170,chr22,23496078,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.82000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.02531646,0.00000000,8.42000000 +3171,chr22,23496117,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,51.00000000,0.00000000,-0.04000000,0.00000000,,0.44594595,74.00000000,3.27433628,0.00000000,0.00000000,4.20000000 +3172,chr22,23496125,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,0.46000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,4.74000000 +3173,chr22,23496364,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-2.12000000,0.00000000,,0.48750000,82.00000000,3.62831858,0.02439024,0.00000000,8.32000000 +3174,chr22,23496558,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.97000000,0.00000000,,0.54666667,76.00000000,3.36283186,0.01315789,0.00000000,8.29000000 +3175,chr22,23496646,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,-1.12000000,0.00000000,,0.51428571,75.00000000,3.31858407,0.06666667,0.00000000,8.17000000 +3176,chr22,23496904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.52000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.02272727,0.00000000,6.26000000 +3177,chr22,23497099,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-1.29000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.02000000 +3178,chr22,23497117,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,-0.38000000,0.00000000,,0.39743590,80.00000000,3.53982301,0.02500000,0.00000000,8.46000000 +3179,chr22,23497280,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,2.55000000,0.00000000,,0.35135135,76.00000000,3.36283186,0.01315789,0.00000000,8.30000000 +3180,chr22,23497308,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,0.98000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.52000000 +3181,chr22,23497874,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,45.00000000,0.00000000,-0.53000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.02777778,0.00000000,4.75000000 +3182,chr22,23498296,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,57.00000000,0.00000000,-0.22000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.04597701,0.00000000,4.37000000 +3183,chr22,23498344,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.30000000,0.00000000,,0.44000000,76.00000000,3.36283186,0.01315789,0.00000000,4.25000000 +3184,chr22,23499169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.16438356,79.00000000,3.49557522,0.07594937,0.00000000,4.93000000 +3185,chr22,23499365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,2.83000000,0.00000000,,0.20512821,84.00000000,3.71681416,0.02380952,0.00000000,5.65000000 +3186,chr22,23500255,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.61000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.86000000 +3187,chr22,23500334,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-2.45000000,0.00000000,,0.22222222,66.00000000,2.92035398,0.03030303,0.00000000,6.17000000 +3188,chr22,23500353,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,42.00000000,0.00000000,-2.92000000,0.00000000,,0.50000000,60.00000000,2.65486726,0.03333333,0.00000000,4.33000000 +3189,chr22,23500943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,1.66000000,0.00000000,,0.39682540,66.00000000,2.92035398,0.04545455,0.00000000,7.90000000 +3190,chr22,23500997,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,0.96000000,0.00000000,,0.37704918,61.00000000,2.69911504,0.00000000,0.00000000,8.32000000 +3191,chr22,23501488,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,0.76000000,0.00000000,,0.45833333,74.00000000,3.27433628,0.02702703,0.00000000,8.16000000 +3192,chr22,23501800,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,0.30000000,0.00000000,,0.29090909,61.00000000,2.69911504,0.09836066,0.00000000,4.59000000 +3193,chr22,23502038,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,34.00000000,0.00000000,0.80000000,0.00000000,,0.40384615,56.00000000,2.47787611,0.07142857,0.00000000,3.98000000 +3194,chr22,23502039,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,34.00000000,0.00000000,0.32000000,0.00000000,,0.40000000,55.00000000,2.43362832,0.09090909,0.00000000,4.01000000 +3195,chr22,23502179,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.18750000,0.00000000,18.00000000,0.00000000,-0.38000000,0.00000000,,0.42857143,38.00000000,1.68141593,0.02631579,0.00000000,3.69000000 +3196,chr22,23503360,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-1.32000000,0.00000000,,0.50000000,66.00000000,2.92035398,0.03030303,0.00000000,8.24000000 +3197,chr22,23503933,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,1.34000000,0.00000000,,0.54794521,73.00000000,3.23008850,0.00000000,0.00000000,8.49000000 +3198,chr22,23504352,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.49122807,59.00000000,2.61061947,0.03389831,0.00000000,8.34000000 +3199,chr22,23504590,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.72000000,0.00000000,,0.47761194,68.00000000,3.00884956,0.01470588,0.00000000,8.30000000 +3200,chr22,23504924,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.52000000,0.00000000,,0.43478261,73.00000000,3.23008850,0.05479452,0.00000000,8.18000000 +3201,chr22,23504932,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.72000000,0.00000000,,0.41791045,71.00000000,3.14159292,0.05633803,0.00000000,7.98000000 +3202,chr22,23504935,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,55.00000000,0.00000000,-0.94000000,0.00000000,,0.43076923,70.00000000,3.09734513,0.05714286,0.00000000,4.36000000 +3203,chr22,23506580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.28125000,0.00000000,65.00000000,0.00000000,1.59000000,0.00000000,,0.29850746,87.00000000,3.84955752,0.21839080,0.00000000,5.98000000 +3204,chr22,23507943,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.15000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +3205,chr22,23511911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.32000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.65000000 +3206,chr22,23529638,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +3207,chr22,23532872,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.76000000 +3208,chr22,23532997,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.76000000 +3209,chr22,23548049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.02500000,40.00000000,1.76991150,0.00000000,0.00000000,63.00000000,0.00000000,-0.34000000,0.00000000,,0.15625000,96.00000000,4.24778761,0.00000000,0.00000000,5.41000000 +3210,chr22,23574084,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.94000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,0.74000000,0.00000000,,0.35365854,84.00000000,3.71681416,0.02380952,0.00000000,7.50000000 +3211,chr22,23579651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.43000000 +3212,chr22,23592051,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.75000000 +3213,chr22,23592834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.89000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,75.00000000,0.00000000,0.89000000,0.00000000,,0.21739130,48.00000000,2.12389381,0.04166667,0.00000000,5.41000000 +3214,chr22,23594295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.05000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.46000000 +3215,chr22,23594386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-1.71000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.72000000 +3216,chr22,23594977,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.62000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.40000000,1.36000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,3.88000000 +3217,chr22,23595076,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.07000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.04285714,0.00000000,5.89000000 +3218,chr22,23595082,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.16000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.20000000,74.00000000,3.27433628,0.04054054,0.00000000,5.70000000 +3219,chr22,23595087,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.23000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,2.26000000,0.58000000,,0.07936508,76.00000000,3.36283186,0.17105263,0.00000000,3.17000000 +3220,chr22,23595105,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,56.34000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.33000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +3221,chr22,23595138,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.53000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.45000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.03750000,0.00000000,6.24000000 +3222,chr22,23595194,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.24000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.05000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.04347826,0.00000000,6.17000000 +3223,chr22,23595545,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.09000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.56000000 +3224,chr22,23596017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.56000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.02247191,0.00000000,6.31000000 +3225,chr22,23596051,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,0.31000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.21000000 +3226,chr22,23596383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.23000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.66000000 +3227,chr22,23596888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.53000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.18000000 +3228,chr22,23598289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.84000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.00000000,0.00000000,6.63000000 +3229,chr22,23601575,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.00000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,2.58000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.06000000 +3230,chr22,23603182,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.28787879,66.00000000,2.92035398,0.00000000,0.00000000,6.40000000 +3231,chr22,23603689,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.09000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.47000000 +3232,chr22,23604803,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.59000000 +3233,chr22,23605165,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.81000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.07000000 +3234,chr22,23605307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.78000000 +3235,chr22,23609741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.76000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.04000000 +3236,chr22,23616668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.96000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.15000000 +3237,chr22,23618000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.75000000 +3238,chr22,23630641,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.08000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +3239,chr22,23637821,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-0.43000000,0.00000000,,0.23188406,75.00000000,3.31858407,0.06666667,0.00000000,5.93000000 +3240,chr22,23641235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.09000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.60000000 +3241,chr22,23646625,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-1.22000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.03030303,0.00000000,5.43000000 +3242,chr22,23655118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.07000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.89000000 +3243,chr22,23662747,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.94000000,0.00000000,,0.29577465,75.00000000,3.31858407,0.04000000,0.00000000,5.97000000 +3244,chr22,23663561,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,1.77000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +3245,chr22,23673144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,2.19000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +3246,chr22,23675107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.41000000,0.00000000,,0.24242424,102.00000000,4.51327434,0.02941176,0.00000000,6.30000000 +3247,chr22,23679706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.39000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,6.57000000 +3248,chr22,23682628,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.16000000,0.00000000,,0.28378378,77.00000000,3.40707965,0.03896104,0.00000000,5.69000000 +3249,chr22,23687459,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.76000000,0.00000000,,0.29629630,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +3250,chr22,23689525,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.08000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.89000000 +3251,chr22,23709668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.15000000 +3252,chr22,23750952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.41000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.02409639,0.00000000,5.37000000 +3253,chr22,23751238,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.01149425,0.00000000,6.15000000 +3254,chr22,23751971,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,2.01000000,0.00000000,,0.23214286,61.00000000,2.69911504,0.08196721,0.00000000,5.67000000 +3255,chr22,23752289,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.88000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.03703704,0.00000000,6.38000000 +3256,chr22,23752298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.55000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.25000000 +3257,chr22,23752649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.14893617,98.00000000,4.33628319,0.04081633,0.00000000,4.97000000 +3258,chr22,23752725,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.17000000,104.00000000,4.60176991,0.03846154,0.00000000,5.66000000 +3259,chr22,23753946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.80000000,0.00000000,,0.30379747,81.00000000,3.58407080,0.02469136,0.00000000,6.44000000 +3260,chr22,23754003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.11000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,7.24000000 +3261,chr22,23754040,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.35000000,0.00000000,,0.32051282,81.00000000,3.58407080,0.02469136,0.00000000,7.25000000 +3262,chr22,23754081,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,5.80000000 +3263,chr22,23754596,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.19000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.02173913,0.00000000,4.97000000 +3264,chr22,23755043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.25000000 +3265,chr22,23756250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,6.31000000 +3266,chr22,23757077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.25000000,100.00000000,4.42477876,0.00000000,0.00000000,6.58000000 +3267,chr22,23761745,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,49.00000000,0.00000000,-0.49000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.03614458,0.00000000,2.75000000 +3268,chr22,23761941,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.04000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.02409639,0.00000000,6.89000000 +3269,chr22,23762449,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +3270,chr22,23762634,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.02000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,5.97000000 +3271,chr22,23762715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.42000000 +3272,chr22,23767239,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +3273,chr22,23767788,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.79000000,0.00000000,,0.26829268,89.00000000,3.93805310,0.06741573,0.00000000,6.18000000 +3274,chr22,23787947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,1.55000000,0.00000000,,0.12765957,95.00000000,4.20353982,0.01052632,0.00000000,4.85000000 +3275,chr22,23792602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-1.33000000,0.00000000,,0.26136364,92.00000000,4.07079646,0.03260870,0.00000000,5.98000000 +3276,chr22,23794784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.28000000 +3277,chr22,23807886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.42000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.18750000,0.00000000,25.00000000,0.00000000,-0.62000000,0.00000000,,0.34482759,34.00000000,1.50442478,0.14705882,0.00000000,3.64000000 +3278,chr22,23816712,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,97.00000000,0.00000000,0.67000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +3279,chr22,23822213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.31000000 +3280,chr22,23824602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-1.13000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,6.23000000 +3281,chr22,23826811,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.10714286,87.00000000,3.84955752,0.02298851,0.00000000,5.07000000 +3282,chr22,23837312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.04000000,0.00000000,6.31000000 +3283,chr22,23840953,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.39000000 +3284,chr22,23842413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.02000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.33000000 +3285,chr22,23842499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.74000000 +3286,chr22,23842509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,0.33000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.93000000 +3287,chr22,23842663,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.77000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +3288,chr22,23842721,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.39000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3289,chr22,23842728,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.53000000 +3290,chr22,23842976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.09000000,0.00000000,,0.24390244,89.00000000,3.93805310,0.06741573,0.00000000,6.49000000 +3291,chr22,23843024,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.22352941,92.00000000,4.07079646,0.07608696,0.00000000,6.02000000 +3292,chr22,23843189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.79000000,0.00000000,,0.25352113,77.00000000,3.40707965,0.07792208,0.00000000,5.61000000 +3293,chr22,23843197,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.20000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.00000000,6.17000000 +3294,chr22,23843412,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.17910448,76.00000000,3.36283186,0.11842105,0.00000000,5.22000000 +3295,chr22,23843670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,6.17000000 +3296,chr22,23843792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +3297,chr22,23843829,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,84.00000000,0.00000000,0.39000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.01250000,0.00000000,6.63000000 +3298,chr22,23843897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,95.00000000,0.00000000,-0.60000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.02000000 +3299,chr22,23843996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,73.00000000,0.00000000,-0.93000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.00000000,0.00000000,6.79000000 +3300,chr22,23844033,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.49000000 +3301,chr22,23844105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,-0.60000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.32000000 +3302,chr22,23844107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,74.00000000,0.00000000,-0.41000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +3303,chr22,23844244,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-1.00000000,0.00000000,,0.21649485,100.00000000,4.42477876,0.02000000,0.00000000,6.25000000 +3304,chr22,23844436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.44000000 +3305,chr22,23844450,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-0.47000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.02409639,0.00000000,5.57000000 +3306,chr22,23844622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,0.01000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,5.24000000 +3307,chr22,23844636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-0.09000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,5.22000000 +3308,chr22,23845382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,0.34000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,5.93000000 +3309,chr22,23845759,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.00000000,0.00000000,6.48000000 +3310,chr22,23846006,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.87000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.41000000 +3311,chr22,23846756,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.03409091,0.00000000,5.79000000 +3312,chr22,23846881,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,-1.18000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +3313,chr22,23847090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +3314,chr22,23848839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.48000000 +3315,chr22,23848919,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.12000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.29000000 +3316,chr22,23849800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.00000000,0.00000000,6.03000000 +3317,chr22,23850692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +3318,chr22,23850916,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.60000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.02409639,0.00000000,5.09000000 +3319,chr22,23882081,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,54.94000000,8.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,68.00000000,0.00000000,-1.17000000,0.00000000,,0.17857143,64.00000000,2.83185841,0.12500000,0.00000000,5.72000000 +3320,chr22,23892058,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-2.16000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.97000000 +3321,chr22,23892620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.44000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,5.69000000 +3322,chr22,23892672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.25000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.31000000 +3323,chr22,23892747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.25000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.54000000 +3324,chr22,23892748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,6.35000000 +3325,chr22,23893011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.16279070,88.00000000,3.89380531,0.02272727,0.00000000,5.64000000 +3326,chr22,23893116,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.84000000 +3327,chr22,23893119,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.01041667,0.00000000,6.87000000 +3328,chr22,23893173,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.27000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.39000000 +3329,chr22,23893193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.01010101,0.00000000,6.74000000 +3330,chr22,23893279,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.15000000 +3331,chr22,23894205,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,92.00000000,4.07079646,0.03260870,0.00000000,6.25000000 +3332,chr22,23894632,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,49.00000000,0.00000000,-0.13000000,0.00000000,,0.31147541,73.00000000,3.23008850,0.15068493,0.00000000,4.32000000 +3333,chr22,23895034,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +3334,chr22,23895675,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.51000000,0.00000000,,0.23809524,90.00000000,3.98230088,0.05555556,0.00000000,6.57000000 +3335,chr22,23895892,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,6.67000000 +3336,chr22,23896487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,1.16000000,0.00000000,,0.28000000,79.00000000,3.49557522,0.05063291,0.00000000,5.69000000 +3337,chr22,23896590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,60.00000000,0.00000000,1.30000000,0.00000000,,0.14285714,88.00000000,3.89380531,0.04545455,0.00000000,4.50000000 +3338,chr22,23896636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,67.00000000,0.00000000,-0.37000000,0.00000000,,0.13483146,91.00000000,4.02654867,0.02197802,0.00000000,5.34000000 +3339,chr22,23896643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.14942529,88.00000000,3.89380531,0.01136364,0.00000000,5.58000000 +3340,chr22,23897056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,0.23000000,0.00000000,,0.24691358,85.00000000,3.76106195,0.02352941,0.00000000,5.84000000 +3341,chr22,23915592,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.12000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +3342,chr22,23920289,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-2.30000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.03571429,0.00000000,6.28000000 +3343,chr22,23927525,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,95.00000000,0.00000000,1.02000000,0.00000000,,0.27659574,97.00000000,4.29203540,0.03092784,0.00000000,6.16000000 +3344,chr22,23972069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.34000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,6.17000000 +3345,chr22,24010332,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.99000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,6.44000000 +3346,chr22,24010888,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.50000000 +3347,chr22,24011169,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.21052632,89.00000000,3.93805310,0.14606742,0.00000000,5.91000000 +3348,chr22,24013080,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.64000000,2.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,80.00000000,0.00000000,0.62000000,0.00000000,,0.18018018,120.00000000,5.30973451,0.07500000,0.00000000,5.05000000 +3349,chr22,24018030,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-1.67000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.63000000 +3350,chr22,24021171,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.16000000,0.00000000,,0.27419355,62.00000000,2.74336283,0.00000000,0.00000000,6.41000000 +3351,chr22,24022978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,-0.67000000,0.00000000,,0.22448980,99.00000000,4.38053097,0.01010101,0.00000000,6.54000000 +3352,chr22,24023680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,88.00000000,0.00000000,1.48000000,0.00000000,,0.25742574,105.00000000,4.64601770,0.03809524,0.00000000,5.85000000 +3353,chr22,24023822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.77000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3354,chr22,24027342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-0.80000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.35000000 +3355,chr22,24031377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-0.05000000,0.00000000,,0.16666667,88.00000000,3.89380531,0.04545455,0.00000000,5.33000000 +3356,chr22,24036692,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.38000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.00000000,0.00000000,6.25000000 +3357,chr22,24039395,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.52000000 +3358,chr22,24047235,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.77000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.27000000 +3359,chr22,24050156,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.88000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.66000000 +3360,chr22,24051936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.46000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.77000000 +3361,chr22,24057239,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.42000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.03000000 +3362,chr22,24057368,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.63000000,0.00000000,,0.32051282,80.00000000,3.53982301,0.02500000,0.00000000,7.60000000 +3363,chr22,24059896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +3364,chr22,24065057,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.24000000,26.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,33.00000000,0.00000000,0.40000000,0.00000000,,0.32558140,44.00000000,1.94690265,0.02272727,0.00000000,3.55000000 +3365,chr22,24065391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.43000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-1.28000000,0.00000000,,0.14285714,68.00000000,3.00884956,0.05882353,0.00000000,5.74000000 +3366,chr22,24067430,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.27000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.39000000 +3367,chr22,24067613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.49000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +3368,chr22,24067797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.03000000 +3369,chr22,24068426,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,50.00000000,0.00000000,0.76000000,0.00000000,,0.30158730,65.00000000,2.87610619,0.03076923,0.00000000,2.79000000 +3370,chr22,24072436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.23611111,77.00000000,3.40707965,0.06493506,0.00000000,6.29000000 +3371,chr22,24073165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,-0.51000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.92000000 +3372,chr22,24074176,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.77000000,0.00000000,,0.34146341,86.00000000,3.80530973,0.04651163,0.00000000,8.43000000 +3373,chr22,24077471,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.92000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.03225806,0.00000000,6.25000000 +3374,chr22,24079509,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.84000000 +3375,chr22,24082730,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.76000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +3376,chr22,24082742,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +3377,chr22,24094702,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.06000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.02898551,0.00000000,6.56000000 +3378,chr22,24094802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.29629630,0.00000000,54.00000000,0.00000000,1.31000000,0.00000000,,0.23076923,83.00000000,3.67256637,0.37349398,0.00000000,2.82000000 +3379,chr22,24101661,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.02469136,0.00000000,5.82000000 +3380,chr22,24103241,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.40000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.62000000 +3381,chr22,24105158,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.71000000 +3382,chr22,24107814,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,103.00000000,0.00000000,1.18000000,0.00000000,,0.32926829,84.00000000,3.71681416,0.02380952,0.00000000,13.13000000 +3383,chr22,24115652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.21000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +3384,chr22,24117553,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,61.00000000,0.00000000,0.38000000,0.00000000,,0.10937500,72.00000000,3.18584071,0.11111111,0.00000000,4.55000000 +3385,chr22,24117979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,0.19000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,5.89000000 +3386,chr22,24118633,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,5.96000000 +3387,chr22,24122161,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.83000000 +3388,chr22,24122761,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-1.39000000,0.00000000,,0.14285714,103.00000000,4.55752212,0.03883495,0.00000000,5.52000000 +3389,chr22,24129269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,5.95000000 +3390,chr22,24135025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,1.50000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.52000000 +3391,chr22,24136175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.55000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,6.63000000 +3392,chr22,24142073,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.53000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.55000000 +3393,chr22,24144314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,85.00000000,0.00000000,0.52000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,5.76000000 +3394,chr22,24149093,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +3395,chr22,24151104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.47000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +3396,chr22,24154622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.20000000,0.00000000,,0.19178082,75.00000000,3.31858407,0.02666667,0.00000000,6.53000000 +3397,chr22,24163771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,-1.37000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.01149425,0.00000000,6.03000000 +3398,chr22,24165396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.01123596,0.00000000,6.57000000 +3399,chr22,24168814,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.09523810,0.00000000,84.00000000,0.00000000,0.99000000,0.00000000,,0.20388350,108.00000000,4.77876106,0.04629630,0.00000000,5.55000000 +3400,chr22,24170926,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +3401,chr22,24176885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.46000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.03260870,0.00000000,6.29000000 +3402,chr22,24183977,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,98.00000000,0.00000000,-0.53000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.57000000 +3403,chr22,24186771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,0.58000000,0.00000000,,0.10000000,91.00000000,4.02654867,0.00000000,0.00000000,4.64000000 +3404,chr22,24192897,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.57000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,3.08000000 +3405,chr22,24197160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.23728814,59.00000000,2.61061947,0.00000000,0.00000000,6.79000000 +3406,chr22,24206383,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-1.02000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,5.74000000 +3407,chr22,24209053,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.02000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +3408,chr22,24210825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,0.43000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,5.65000000 +3409,chr22,24211936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,61.00000000,0.00000000,1.69000000,0.00000000,,0.09615385,63.00000000,2.78761062,0.17460317,0.00000000,4.42000000 +3410,chr22,24212360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.03000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +3411,chr22,24212956,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.74000000,0.00000000,,0.22988506,92.00000000,4.07079646,0.05434783,0.00000000,6.31000000 +3412,chr22,24214139,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-1.61000000,0.00000000,,0.11538462,80.00000000,3.53982301,0.01250000,0.00000000,5.83000000 +3413,chr22,24214190,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.63000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.02173913,0.00000000,6.14000000 +3414,chr22,24214759,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.87000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.83000000 +3415,chr22,24214812,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.29000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.32000000 +3416,chr22,24215362,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,1.04000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,5.78000000 +3417,chr22,24215376,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,1.90000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.63000000 +3418,chr22,24215388,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.02127660,0.00000000,5.86000000 +3419,chr22,24216147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.42000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,5.95000000 +3420,chr22,24217019,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.03658537,0.00000000,6.29000000 +3421,chr22,24221347,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.09000000 +3422,chr22,24222888,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.79000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.01190476,0.00000000,6.70000000 +3423,chr22,24235431,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.00000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.81000000 +3424,chr22,24240536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.29577465,76.00000000,3.36283186,0.06578947,0.00000000,6.26000000 +3425,chr22,24249986,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,49.53000000,22.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.80000000,0.00000000,,0.16949153,59.00000000,2.61061947,0.00000000,0.00000000,6.16000000 +3426,chr22,24250323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.32000000,8.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,-1.30000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.32000000 +3427,chr22,24250328,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,57.34000000,8.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,0.00000000,-1.44000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.70000000 +3428,chr22,24250901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.32000000,12.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.25000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.00000000,4.83000000 +3429,chr22,24259918,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.02000000,36.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.82000000,0.00000000,,0.08474576,60.00000000,2.65486726,0.01666667,0.00000000,4.24000000 +3430,chr22,24280640,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.20253165,90.00000000,3.98230088,0.12222222,0.00000000,4.43000000 +3431,chr22,24290127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.00000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.04000000 +3432,chr22,24349361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.34000000 +3433,chr22,24356930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.18000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,5.92000000 +3434,chr22,24388080,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +3435,chr22,24416304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.33000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.07000000 +3436,chr22,24437310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.01000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +3437,chr22,24454830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,54.00000000,0.00000000,0.86000000,0.00000000,,0.26785714,58.00000000,2.56637168,0.03448276,0.00000000,2.76000000 +3438,chr22,24482040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,83.00000000,0.00000000,0.19000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,5.58000000 +3439,chr22,24495387,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,83.00000000,0.00000000,1.05000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.00000000,0.00000000,6.49000000 +3440,chr22,24499755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,99.00000000,0.00000000,-1.32000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,5.39000000 +3441,chr22,24506180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.93000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.07000000 +3442,chr22,24513098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,-0.09000000,0.00000000,,0.24271845,103.00000000,4.55752212,0.00000000,0.00000000,6.38000000 +3443,chr22,24516264,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.80000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.47000000 +3444,chr22,24516280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,2.16000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +3445,chr22,24517455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.42000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.37000000 +3446,chr22,24530862,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.55000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,5.96000000 +3447,chr22,24544679,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.64000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +3448,chr22,24569470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.34000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +3449,chr22,24585369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.11000000,0.00000000,,0.12658228,81.00000000,3.58407080,0.01234568,0.00000000,5.43000000 +3450,chr22,24585970,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,1.47000000,0.00000000,,0.25531915,97.00000000,4.29203540,0.03092784,0.00000000,5.67000000 +3451,chr22,24586554,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,-0.06000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,7.98000000 +3452,chr22,24594381,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.45000000,0.00000000,,0.42105263,80.00000000,3.53982301,0.02500000,0.00000000,4.41000000 +3453,chr22,24600663,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.14000000,0.00000000,,0.52830189,107.00000000,4.73451327,0.00934579,0.00000000,8.43000000 +3454,chr22,24621069,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.96000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,3.15000000 +3455,chr22,24652801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.18000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.73000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,5.59000000 +3456,chr22,24670639,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.44000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.42391304,95.00000000,4.20353982,0.03157895,0.00000000,8.23000000 +3457,chr22,24670921,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,57.24000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.34482759,60.00000000,2.65486726,0.01666667,0.00000000,7.45000000 +3458,chr22,24670946,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.86000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.06000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.61000000 +3459,chr22,24670950,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.90000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.84000000,0.00000000,,0.27118644,63.00000000,2.78761062,0.06349206,0.00000000,6.29000000 +3460,chr22,24670951,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.90000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.03000000,0.00000000,,0.29310345,63.00000000,2.78761062,0.06349206,0.00000000,6.43000000 +3461,chr22,24671322,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,37.52000000,38.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,11.00000000,0.00000000,0.02000000,0.00000000,,0.48484848,34.00000000,1.50442478,0.02941176,0.00000000,3.73000000 +3462,chr22,24671426,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,38.28000000,51.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,22.00000000,0.00000000,-0.73000000,0.09000000,,0.47058824,35.00000000,1.54867257,0.00000000,0.00000000,3.01000000 +3463,chr22,24671428,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,38.12000000,52.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,23.00000000,0.00000000,-0.22000000,0.24000000,,0.45714286,35.00000000,1.54867257,0.00000000,0.00000000,2.99000000 +3464,chr22,24671853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,33.21000000,42.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,7.00000000,0.00000000,-0.80000000,0.00000000,,0.37037037,27.00000000,1.19469027,0.00000000,0.00000000,3.45000000 +3465,chr22,24672109,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.72000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,43.00000000,0.00000000,-2.44000000,0.00000000,,0.45588235,71.00000000,3.14159292,0.04225352,0.00000000,4.26000000 +3466,chr22,24672267,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,52.06000000,25.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.54000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,4.38000000 +3467,chr22,24672331,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,47.18000000,34.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,20.00000000,0.00000000,0.07000000,0.00000000,,0.44000000,50.00000000,2.21238938,0.00000000,0.00000000,3.77000000 +3468,chr22,24672362,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.44000000,28.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,-0.16000000,0.00000000,,0.44897959,49.00000000,2.16814159,0.00000000,0.00000000,3.64000000 +3469,chr22,24672592,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.03000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.48717949,83.00000000,3.67256637,0.06024096,0.00000000,8.16000000 +3470,chr22,24673982,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,53.95000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,36.00000000,0.00000000,-2.63000000,0.00000000,,0.61224490,49.00000000,2.16814159,0.00000000,0.00000000,3.68000000 +3471,chr22,24678811,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-0.66000000,0.00000000,,0.45762712,59.00000000,2.61061947,0.00000000,0.00000000,4.39000000 +3472,chr22,24683381,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,107.00000000,0.00000000,-0.22000000,0.00000000,,0.35869565,92.00000000,4.07079646,0.00000000,0.00000000,14.60000000 +3473,chr22,24684989,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,110.00000000,0.00000000,-0.25000000,0.00000000,,0.37662338,81.00000000,3.58407080,0.03703704,0.00000000,13.40000000 +3474,chr22,24685137,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,1.30000000,0.00000000,,0.43434343,99.00000000,4.38053097,0.00000000,0.00000000,8.37000000 +3475,chr22,24687947,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.39000000,0.00000000,,0.45555556,93.00000000,4.11504425,0.02150538,0.00000000,8.48000000 +3476,chr22,24688104,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.23000000,0.00000000,,0.41111111,90.00000000,3.98230088,0.00000000,0.00000000,8.50000000 +3477,chr22,24690767,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.45238095,85.00000000,3.76106195,0.01176471,0.00000000,8.51000000 +3478,chr22,24691197,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.79000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.01351351,0.00000000,7.79000000 +3479,chr22,24694743,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-2.21000000,0.00000000,,0.45238095,86.00000000,3.80530973,0.02325581,0.00000000,8.32000000 +3480,chr22,24696806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,81.00000000,0.00000000,1.20000000,0.00000000,,0.20430108,97.00000000,4.29203540,0.04123711,0.00000000,5.57000000 +3481,chr22,24697104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,-1.06000000,0.00000000,,0.26262626,101.00000000,4.46902655,0.00990099,0.00000000,6.57000000 +3482,chr22,24697357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,1.06000000,0.00000000,,0.28723404,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +3483,chr22,24698426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,-0.95000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +3484,chr22,24698512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.33000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,6.72000000 +3485,chr22,24698525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.88000000,0.00000000,,0.29166667,74.00000000,3.27433628,0.02702703,0.00000000,6.43000000 +3486,chr22,24699485,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.57000000 +3487,chr22,24700204,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.70000000 +3488,chr22,24700737,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.03000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.96000000 +3489,chr22,24700846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.71000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,5.89000000 +3490,chr22,24701011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,0.70000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.43000000 +3491,chr22,24701281,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.76000000 +3492,chr22,24702404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.20512821,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.24137931,69.00000000,3.05309735,0.15942029,0.00000000,6.11000000 +3493,chr22,24703931,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,54.00000000,0.00000000,0.35000000,0.00000000,,0.32653061,51.00000000,2.25663717,0.03921569,0.00000000,4.53000000 +3494,chr22,24704477,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,35.00000000,0.00000000,-2.39000000,0.00000000,,0.44871795,80.00000000,3.53982301,0.02500000,0.00000000,3.92000000 +3495,chr22,24704669,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.10000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +3496,chr22,24705603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.31000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +3497,chr22,24706127,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,51.00000000,0.00000000,-0.24000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,4.19000000 +3498,chr22,24706748,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.53000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.82000000 +3499,chr22,24707255,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,80.00000000,0.00000000,-1.57000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.22000000 +3500,chr22,24708388,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.40000000,72.00000000,3.18584071,0.01388889,0.00000000,8.37000000 +3501,chr22,24708803,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.29000000,0.00000000,,0.12280702,57.00000000,2.52212389,0.00000000,0.00000000,4.97000000 +3502,chr22,24709535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.71000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +3503,chr22,24710141,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.99000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,4.51000000 +3504,chr22,24710360,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,2.69000000,0.00000000,,0.35955056,90.00000000,3.98230088,0.01111111,0.00000000,8.22000000 +3505,chr22,24712800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.46000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,4.36000000 +3506,chr22,24713102,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +3507,chr22,24713953,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.26388889,82.00000000,3.62831858,0.12195122,0.00000000,6.00000000 +3508,chr22,24714428,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +3509,chr22,24714689,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.33000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,7.93000000 +3510,chr22,24715251,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.26000000,103.00000000,4.55752212,0.01941748,0.00000000,5.93000000 +3511,chr22,24715270,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.23469388,99.00000000,4.38053097,0.01010101,0.00000000,6.54000000 +3512,chr22,24715500,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,1.32000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.42000000 +3513,chr22,24716358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,-0.84000000,0.00000000,,0.29268293,85.00000000,3.76106195,0.02352941,0.00000000,5.99000000 +3514,chr22,24717595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.52000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,7.09000000 +3515,chr22,24717772,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3516,chr22,24718429,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.12195122,83.00000000,3.67256637,0.01204819,0.00000000,5.03000000 +3517,chr22,24721953,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.12000000,0.00000000,,0.39285714,84.00000000,3.71681416,0.00000000,0.00000000,8.74000000 +3518,chr22,24721996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.84000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +3519,chr22,24722084,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.57000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +3520,chr22,24722722,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +3521,chr22,24723317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.74000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,6.13000000 +3522,chr22,24723333,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.78000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,5.65000000 +3523,chr22,24724536,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.32307692,66.00000000,2.92035398,0.01515152,0.00000000,8.42000000 +3524,chr22,24727064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.48000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.20000000 +3525,chr22,24728176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.30769231,92.00000000,4.07079646,0.00000000,0.00000000,7.65000000 +3526,chr22,24733859,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.63000000,0.00000000,,0.16867470,87.00000000,3.84955752,0.03448276,0.00000000,6.01000000 +3527,chr22,24734848,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,40.00000000,0.00000000,0.26000000,0.00000000,,0.40983607,67.00000000,2.96460177,0.08955224,0.00000000,3.86000000 +3528,chr22,24735058,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.72000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.33000000 +3529,chr22,24735255,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.10000000 +3530,chr22,24735458,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.60000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.51000000 +3531,chr22,24736018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.38000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +3532,chr22,24741013,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,1.72000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +3533,chr22,24744207,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,0.20000000,0.00000000,,0.20967742,73.00000000,3.23008850,0.15068493,0.00000000,5.36000000 +3534,chr22,24746063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,-0.39000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.07000000 +3535,chr22,24746290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.34000000,0.00000000,,0.14285714,85.00000000,3.76106195,0.00000000,0.00000000,6.20000000 +3536,chr22,24747007,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,87.00000000,0.00000000,0.47000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,5.89000000 +3537,chr22,24748087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.33000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.18000000 +3538,chr22,24748454,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.62000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,6.76000000 +3539,chr22,24748945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.95000000,0.00000000,,0.20618557,99.00000000,4.38053097,0.02020202,0.00000000,6.32000000 +3540,chr22,24749232,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.92000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.62000000 +3541,chr22,24749504,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,93.00000000,0.00000000,-0.51000000,0.00000000,,0.43209877,85.00000000,3.76106195,0.04705882,0.00000000,8.05000000 +3542,chr22,24750567,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,34.00000000,0.00000000,-1.19000000,0.00000000,,0.31111111,49.00000000,2.16814159,0.08163265,0.00000000,3.19000000 +3543,chr22,24751357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,-0.07000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.61000000 +3544,chr22,24753239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.81000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.93000000 +3545,chr22,24754727,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.18000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.58000000 +3546,chr22,24755549,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.03614458,0.00000000,5.96000000 +3547,chr22,24756854,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.71000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +3548,chr22,24757496,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +3549,chr22,24768447,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.24657534,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +3550,chr22,24770612,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.04000000,0.00000000,,0.23214286,66.00000000,2.92035398,0.15151515,0.00000000,6.10000000 +3551,chr22,24778414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,69.00000000,0.00000000,-0.55000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,5.95000000 +3552,chr22,24779691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,67.00000000,0.00000000,-1.11000000,0.00000000,,0.16666667,65.00000000,2.87610619,0.16923077,0.00000000,5.54000000 +3553,chr22,24813410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.62000000 +3554,chr22,24813514,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.22000000,0.00000000,,0.12345679,86.00000000,3.80530973,0.05813953,0.00000000,4.87000000 +3555,chr22,24813786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.41000000 +3556,chr22,24814339,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,0.31000000,0.00000000,,0.23711340,98.00000000,4.33628319,0.01020408,0.00000000,5.98000000 +3557,chr22,24815513,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-2.06000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.57000000 +3558,chr22,24815514,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-1.01000000,0.00000000,,0.42528736,88.00000000,3.89380531,0.01136364,0.00000000,6.13000000 +3559,chr22,24815826,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.18000000,0.00000000,,0.44736842,79.00000000,3.49557522,0.03797468,0.00000000,8.16000000 +3560,chr22,24816735,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,1.53000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,4.95000000 +3561,chr22,24816938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.32000000 +3562,chr22,24816946,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.31000000,0.00000000,,0.09756098,83.00000000,3.67256637,0.01204819,0.00000000,5.12000000 +3563,chr22,24817006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,-1.19000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.18000000 +3564,chr22,24817056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.22000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,5.84000000 +3565,chr22,24817509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.21000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.82000000 +3566,chr22,24817513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.16000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.73000000 +3567,chr22,24817708,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.74000000 +3568,chr22,24817800,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.80000000 +3569,chr22,24818242,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,-1.26000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.06250000,0.00000000,6.24000000 +3570,chr22,24818430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.16000000,0.00000000,,0.17500000,44.00000000,1.94690265,0.09090909,0.00000000,4.70000000 +3571,chr22,24818461,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-1.15000000,0.00000000,,0.42424242,35.00000000,1.54867257,0.05714286,0.00000000,3.90000000 +3572,chr22,24818766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.71000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.48000000 +3573,chr22,24818910,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,18.00000000,0.00000000,-1.81000000,0.00000000,,0.52500000,42.00000000,1.85840708,0.04761905,0.00000000,4.11000000 +3574,chr22,24819338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.25000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.82000000 +3575,chr22,24819469,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.15000000,0.00000000,,0.38666667,76.00000000,3.36283186,0.01315789,0.00000000,8.33000000 +3576,chr22,24819517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.82000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,6.12000000 +3577,chr22,24819522,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.61000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.01086957,0.00000000,6.07000000 +3578,chr22,24820322,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.29000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.95000000 +3579,chr22,24820752,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +3580,chr22,24820859,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,101.00000000,0.00000000,-0.35000000,0.00000000,,0.34666667,75.00000000,3.31858407,0.00000000,0.00000000,9.25000000 +3581,chr22,24821275,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.69000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +3582,chr22,24821773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-2.55000000,0.00000000,,0.11842105,78.00000000,3.45132743,0.00000000,0.00000000,5.53000000 +3583,chr22,24821923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,5.95000000 +3584,chr22,24822015,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-0.79000000,0.00000000,,0.12658228,85.00000000,3.76106195,0.04705882,0.00000000,4.94000000 +3585,chr22,24822255,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.57000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.79000000,0.00000000,,0.43243243,76.00000000,3.36283186,0.01315789,0.00000000,7.80000000 +3586,chr22,24823465,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,1.65000000,0.00000000,,0.44155844,78.00000000,3.45132743,0.01282051,0.00000000,4.25000000 +3587,chr22,24823519,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,90.00000000,0.00000000,0.00000000,0.00000000,,0.38095238,84.00000000,3.71681416,0.00000000,0.00000000,7.91000000 +3588,chr22,24823730,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,40.00000000,0.00000000,-1.21000000,0.00000000,,0.52941176,69.00000000,3.05309735,0.01449275,0.00000000,4.44000000 +3589,chr22,24823963,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.35000000,0.00000000,,0.37804878,82.00000000,3.62831858,0.00000000,0.00000000,9.16000000 +3590,chr22,24824633,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.21176471,93.00000000,4.11504425,0.07526882,0.00000000,5.63000000 +3591,chr22,24824639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-0.16000000,0.00000000,,0.20930233,92.00000000,4.07079646,0.05434783,0.00000000,6.29000000 +3592,chr22,24824718,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,0.00000000,1.33000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.01162791,0.00000000,5.87000000 +3593,chr22,24824786,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,-0.21000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.45000000 +3594,chr22,24825948,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.62000000 +3595,chr22,24831982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,6.62000000 +3596,chr22,24842325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.04651163,0.00000000,5.98000000 +3597,chr22,24843590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +3598,chr22,24845414,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.30000000,0.00000000,,0.32432432,74.00000000,3.27433628,0.00000000,0.00000000,9.15000000 +3599,chr22,24846625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,0.43000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,5.80000000 +3600,chr22,24846741,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.76000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +3601,chr22,24847009,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.19000000 +3602,chr22,24848093,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,1.64000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.62000000 +3603,chr22,24848661,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,1.89000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.55000000 +3604,chr22,24848912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,6.17000000 +3605,chr22,24849151,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,90.00000000,3.98230088,0.08888889,0.00000000,6.29000000 +3606,chr22,24850145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.23000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +3607,chr22,24850767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.82000000 +3608,chr22,24850970,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.17187500,67.00000000,2.96460177,0.02985075,0.00000000,5.73000000 +3609,chr22,24851663,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,83.00000000,0.00000000,1.20000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.17000000 +3610,chr22,24852782,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.15000000,0.00000000,,0.25301205,86.00000000,3.80530973,0.03488372,0.00000000,5.96000000 +3611,chr22,24852798,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.03750000,0.00000000,5.99000000 +3612,chr22,24853154,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.56000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,4.59000000 +3613,chr22,24853667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.77000000 +3614,chr22,24857898,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.56000000 +3615,chr22,24858590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,63.00000000,0.00000000,1.49000000,0.00000000,,0.13725490,65.00000000,2.87610619,0.21538462,0.00000000,4.79000000 +3616,chr22,24858741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.21538462,70.00000000,3.09734513,0.05714286,0.00000000,5.85000000 +3617,chr22,24859308,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.28571429,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +3618,chr22,24859992,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.44000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +3619,chr22,24860567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.19354839,62.00000000,2.74336283,0.00000000,0.00000000,5.90000000 +3620,chr22,24860757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.73000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,6.96000000 +3621,chr22,24862859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,81.00000000,3.58407080,0.03703704,0.00000000,5.47000000 +3622,chr22,24862860,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,81.00000000,3.58407080,0.03703704,0.00000000,5.47000000 +3623,chr22,24862935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,0.27000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,5.85000000 +3624,chr22,24862961,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,5.85000000 +3625,chr22,24865017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,70.00000000,0.00000000,-0.12000000,0.00000000,,0.13761468,111.00000000,4.91150442,0.01801802,0.00000000,4.88000000 +3626,chr22,24865076,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,0.55000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,5.78000000 +3627,chr22,24865892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.85000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +3628,chr22,24865919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +3629,chr22,24866402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.78000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,4.96000000 +3630,chr22,24866510,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.08000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.25000000 +3631,chr22,24866580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.60000000 +3632,chr22,24866595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.96000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +3633,chr22,24866617,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.01538462,0.00000000,6.30000000 +3634,chr22,24866882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,53.00000000,0.00000000,1.89000000,0.00000000,,0.40000000,67.00000000,2.96460177,0.02985075,0.00000000,4.78000000 +3635,chr22,24867273,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,5.91000000 +3636,chr22,24867306,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,6.35000000 +3637,chr22,24869667,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +3638,chr22,24869844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,1.16000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.75000000 +3639,chr22,24869915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.19000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.01063830,0.00000000,5.25000000 +3640,chr22,24871394,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +3641,chr22,24873337,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.14084507,76.00000000,3.36283186,0.06578947,0.00000000,5.15000000 +3642,chr22,24873551,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.15873016,64.00000000,2.83185841,0.01562500,0.00000000,5.42000000 +3643,chr22,24873648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.94000000,0.00000000,,0.17647059,55.00000000,2.43362832,0.07272727,0.00000000,2.81000000 +3644,chr22,24873775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,70.00000000,0.00000000,-0.95000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,4.75000000 +3645,chr22,24873803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.25000000 +3646,chr22,24874488,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,1.06000000,0.00000000,,0.10144928,71.00000000,3.14159292,0.02816901,0.00000000,5.12000000 +3647,chr22,24875956,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,84.00000000,0.00000000,-0.31000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,5.54000000 +3648,chr22,24876486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.55000000 +3649,chr22,24879426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-1.50000000,0.00000000,,0.21176471,92.00000000,4.07079646,0.07608696,0.00000000,5.87000000 +3650,chr22,24881600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +3651,chr22,24882076,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,82.00000000,0.00000000,-0.82000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.01351351,0.00000000,5.31000000 +3652,chr22,24882355,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.30000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,5.91000000 +3653,chr22,24882929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,-0.92000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.07500000,0.00000000,5.73000000 +3654,chr22,24889794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.25490196,51.00000000,2.25663717,0.00000000,0.00000000,6.41000000 +3655,chr22,24889979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,2.66000000,0.00000000,,0.16949153,66.00000000,2.92035398,0.10606061,0.00000000,6.13000000 +3656,chr22,24894676,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-1.40000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.00000000,0.00000000,6.35000000 +3657,chr22,24912832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.22115385,105.00000000,4.64601770,0.00952381,0.00000000,6.22000000 +3658,chr22,24918968,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.62000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.01612903,0.00000000,4.79000000 +3659,chr22,24919675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.03000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.50000000 +3660,chr22,24919693,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.62000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.42000000 +3661,chr22,24919786,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-0.64000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.19000000 +3662,chr22,24920383,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.61000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +3663,chr22,24921272,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,1.28000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.00000000,0.00000000,5.06000000 +3664,chr22,24921769,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,75.00000000,0.00000000,-0.78000000,0.00000000,,0.22727273,73.00000000,3.23008850,0.06849315,0.00000000,6.19000000 +3665,chr22,24922075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.60000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,6.03000000 +3666,chr22,24922267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,0.86000000,0.00000000,,0.28813559,66.00000000,2.92035398,0.10606061,0.00000000,2.86000000 +3667,chr22,24922271,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.27868852,68.00000000,3.00884956,0.10294118,0.00000000,6.62000000 +3668,chr22,24922382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.28000000,0.00000000,,0.22807018,59.00000000,2.61061947,0.03389831,0.00000000,6.28000000 +3669,chr22,24922723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.08000000,0.00000000,,0.26666667,62.00000000,2.74336283,0.03225806,0.00000000,5.62000000 +3670,chr22,24923036,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.58000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,6.57000000 +3671,chr22,24923201,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,-0.87000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.76000000 +3672,chr22,24923277,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +3673,chr22,24923489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.07000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.76000000 +3674,chr22,24923570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.64000000,0.00000000,,0.29069767,89.00000000,3.93805310,0.03370787,0.00000000,6.38000000 +3675,chr22,24923708,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,1.13000000,0.00000000,,0.11392405,81.00000000,3.58407080,0.02469136,0.00000000,4.74000000 +3676,chr22,24923918,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,64.00000000,0.00000000,0.24000000,0.00000000,,0.15476190,89.00000000,3.93805310,0.05617978,0.00000000,5.05000000 +3677,chr22,24924404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.37000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.29000000 +3678,chr22,24924771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,5.48000000 +3679,chr22,24924847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-2.07000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.00000000,0.00000000,5.89000000 +3680,chr22,24925820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.31081081,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +3681,chr22,24926873,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,80.00000000,0.00000000,0.45000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.76000000 +3682,chr22,24928660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.78000000 +3683,chr22,24932832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.28000000,0.00000000,,0.24050633,82.00000000,3.62831858,0.02439024,0.00000000,6.49000000 +3684,chr22,24933445,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,6.64000000 +3685,chr22,24933646,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.34000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.84000000 +3686,chr22,24935972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,0.00000000,0.41000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.06666667,0.00000000,5.66000000 +3687,chr22,24936132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.71000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.67000000 +3688,chr22,24938902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.34000000 +3689,chr22,24939010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +3690,chr22,24939126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,75.00000000,0.00000000,-0.14000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,4.97000000 +3691,chr22,24939827,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.01666667,0.00000000,5.83000000 +3692,chr22,24942531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +3693,chr22,24945236,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,55.00000000,0.00000000,0.29000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,2.83000000 +3694,chr22,24947463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.71000000,0.00000000,,0.24285714,75.00000000,3.31858407,0.06666667,0.00000000,6.33000000 +3695,chr22,24949570,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,-0.97000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,5.86000000 +3696,chr22,24954120,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.13000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.83000000 +3697,chr22,24955412,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.24000000 +3698,chr22,24955800,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.11000000,0.00000000,,0.33333333,74.00000000,3.27433628,0.02702703,0.00000000,8.72000000 +3699,chr22,24956402,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.57000000 +3700,chr22,24962878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.13000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +3701,chr22,24964703,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.93000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.49000000 +3702,chr22,24966100,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.63000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.47000000 +3703,chr22,24966796,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.53000000,0.00000000,,0.29230769,67.00000000,2.96460177,0.02985075,0.00000000,2.77000000 +3704,chr22,24967303,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.58000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.86000000 +3705,chr22,24967444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.67000000 +3706,chr22,24968740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.16000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,5.41000000 +3707,chr22,24969747,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.32000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +3708,chr22,24970444,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.26000000,0.00000000,,0.15384615,91.00000000,4.02654867,0.00000000,0.00000000,5.38000000 +3709,chr22,24971396,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,1.76000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.12000000 +3710,chr22,24971411,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.15000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,5.78000000 +3711,chr22,24972434,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.32000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.00000000,0.00000000,6.13000000 +3712,chr22,24973352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.97000000,0.00000000,,0.31325301,93.00000000,4.11504425,0.10752688,0.00000000,6.89000000 +3713,chr22,24973539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,6.54000000 +3714,chr22,24973542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,6.54000000 +3715,chr22,24974818,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.26865672,71.00000000,3.14159292,0.05633803,0.00000000,6.66000000 +3716,chr22,24977424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.14000000 +3717,chr22,24978018,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,0.00000000,-1.35000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.02564103,0.00000000,6.09000000 +3718,chr22,24978395,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,53.00000000,0.00000000,-1.16000000,0.00000000,,0.40259740,79.00000000,3.49557522,0.02531646,0.00000000,4.75000000 +3719,chr22,24978467,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,56.00000000,0.00000000,-0.01000000,0.00000000,,0.45161290,64.00000000,2.83185841,0.03125000,0.00000000,4.70000000 +3720,chr22,24997509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.12345679,83.00000000,3.67256637,0.02409639,0.00000000,4.69000000 +3721,chr22,24998415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.21000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.01694915,0.00000000,5.52000000 +3722,chr22,24998588,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,1.62000000,0.00000000,,0.22413793,61.00000000,2.69911504,0.04918033,0.00000000,5.84000000 +3723,chr22,25004778,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.24000000,0.00000000,,0.22222222,46.00000000,2.03539823,0.00000000,0.00000000,2.83000000 +3724,chr22,25005470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,6.26000000 +3725,chr22,25007798,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.83000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,4.81000000 +3726,chr22,25010223,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.97000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.24000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,5.76000000 +3727,chr22,25016266,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.30158730,63.00000000,2.78761062,0.00000000,0.00000000,7.08000000 +3728,chr22,25016859,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.14606742,89.00000000,3.93805310,0.00000000,0.00000000,5.36000000 +3729,chr22,25018044,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.25000000,52.00000000,2.30088496,0.00000000,0.00000000,6.34000000 +3730,chr22,25019231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.64000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +3731,chr22,25020056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.25000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,6.30000000 +3732,chr22,25030259,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +3733,chr22,25031151,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.23529412,72.00000000,3.18584071,0.05555556,0.00000000,6.48000000 +3734,chr22,25036911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.71000000,0.00000000,,0.23157895,98.00000000,4.33628319,0.02040816,0.00000000,6.38000000 +3735,chr22,25046181,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.69000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.59000000 +3736,chr22,25046930,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.42000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,5.90000000 +3737,chr22,25051619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,69.00000000,0.00000000,0.34000000,0.00000000,,0.28888889,92.00000000,4.07079646,0.02173913,0.00000000,5.74000000 +3738,chr22,25052231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.14000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.30000000 +3739,chr22,25053246,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +3740,chr22,25054125,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.57000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.02739726,0.00000000,6.40000000 +3741,chr22,25055346,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.09000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.39000000 +3742,chr22,25060339,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.62000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.24000000 +3743,chr22,25060386,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.02000000 +3744,chr22,25060972,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,71.00000000,0.00000000,-0.31000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.61000000 +3745,chr22,25062424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.02150538,0.00000000,6.04000000 +3746,chr22,25063075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.01369863,0.00000000,5.90000000 +3747,chr22,25064237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.26000000,0.00000000,,0.15492958,76.00000000,3.36283186,0.05263158,0.00000000,5.58000000 +3748,chr22,25064805,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.19000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +3749,chr22,25066667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,2.32000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +3750,chr22,25068582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.36000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +3751,chr22,25068598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.09000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.21000000 +3752,chr22,25068899,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.62000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,5.97000000 +3753,chr22,25069289,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,-1.66000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.89000000 +3754,chr22,25070010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.01923077,0.00000000,6.29000000 +3755,chr22,25071665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.98000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.65000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.51000000 +3756,chr22,25072046,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.08000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +3757,chr22,25073858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.01000000 +3758,chr22,25077166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,7.09000000 +3759,chr22,25078363,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.08000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +3760,chr22,25082809,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.80000000,0.00000000,,0.21951220,85.00000000,3.76106195,0.03529412,0.00000000,5.69000000 +3761,chr22,25084904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.04000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.09000000 +3762,chr22,25093094,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.25000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.32000000 +3763,chr22,25100212,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.91000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.05000000 +3764,chr22,25116435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,74.00000000,3.27433628,0.05405405,0.00000000,5.55000000 +3765,chr22,25158969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,5.91000000 +3766,chr22,25160610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,5.91000000 +3767,chr22,25165248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.70000000 +3768,chr22,25167925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,2.46000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.39000000 +3769,chr22,25169059,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +3770,chr22,25169261,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.34000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +3771,chr22,25173713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,2.29000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.21000000 +3772,chr22,25195876,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,1.18000000,0.00000000,,0.36111111,75.00000000,3.31858407,0.04000000,0.00000000,6.86000000 +3773,chr22,25208221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.30000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.00000000,0.00000000,6.66000000 +3774,chr22,25208361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.42000000,0.00000000,,0.13043478,93.00000000,4.11504425,0.01075269,0.00000000,5.45000000 +3775,chr22,25208736,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.08000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.66000000 +3776,chr22,25209100,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,5.90000000 +3777,chr22,25209206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,5.64000000 +3778,chr22,25209621,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.85000000 +3779,chr22,25210698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +3780,chr22,25216012,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,106.00000000,0.00000000,-0.94000000,0.00000000,,0.30927835,98.00000000,4.33628319,0.01020408,0.00000000,11.57000000 +3781,chr22,25216234,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.10000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.04477612,0.00000000,6.26000000 +3782,chr22,25218354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.91000000,0.00000000,,0.22807018,59.00000000,2.61061947,0.03389831,0.00000000,2.80000000 +3783,chr22,25218618,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,40.00000000,0.00000000,0.59000000,0.00000000,,0.27272727,45.00000000,1.99115044,0.02222222,0.00000000,2.80000000 +3784,chr22,25219092,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.28000000,0.00000000,,0.14035088,57.00000000,2.52212389,0.00000000,0.00000000,5.62000000 +3785,chr22,25220246,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.79000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.74000000 +3786,chr22,25221587,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.13000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.19000000 +3787,chr22,25225624,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.81000000,0.00000000,,0.46835443,79.00000000,3.49557522,0.00000000,0.00000000,8.05000000 +3788,chr22,25226918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,1.07000000,0.00000000,,0.29523810,106.00000000,4.69026549,0.00943396,0.00000000,6.55000000 +3789,chr22,25227356,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.33000000,0.00000000,,0.44776119,68.00000000,3.00884956,0.01470588,0.00000000,8.35000000 +3790,chr22,25227377,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.59000000,0.00000000,,0.40277778,75.00000000,3.31858407,0.01333333,0.00000000,8.39000000 +3791,chr22,25227400,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.63000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.30000000 +3792,chr22,25227493,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.48000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.87000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.01449275,0.00000000,6.81000000 +3793,chr22,25228406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.45000000,29.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.00000000 +3794,chr22,25230976,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.69000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-1.43000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,5.96000000 +3795,chr22,25231167,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,45.00000000,0.00000000,-1.27000000,0.00000000,,0.36904762,85.00000000,3.76106195,0.01176471,0.00000000,4.14000000 +3796,chr22,25231637,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,16.00000000,0.00000000,-0.23000000,0.00000000,,0.37037037,54.00000000,2.38938053,0.00000000,0.00000000,3.37000000 +3797,chr22,25231933,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.35000000,41.00000000,1.81415929,0.00000000,0.00000000,8.65000000 +3798,chr22,25232032,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,26.00000000,0.00000000,0.01000000,0.00000000,,0.54098361,61.00000000,2.69911504,0.00000000,0.00000000,3.32000000 +3799,chr22,25232130,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,32.00000000,1.41592920,0.00000000,0.00000000,54.00000000,0.00000000,1.46000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,4.11000000 +3800,chr22,25232647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +3801,chr22,25232875,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,21.00000000,0.00000000,-0.33000000,0.00000000,,0.46511628,94.00000000,4.15929204,0.08510638,0.00000000,3.50000000 +3802,chr22,25237879,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.06000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.14000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.09000000 +3803,chr22,25240713,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,5.93000000 +3804,chr22,25243891,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,7.01000000 +3805,chr22,25245787,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.12000000,0.00000000,,0.18584071,118.00000000,5.22123894,0.04237288,0.00000000,6.18000000 +3806,chr22,25245854,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.86000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,0.42000000,0.00000000,,0.15533981,109.00000000,4.82300885,0.05504587,0.00000000,4.93000000 +3807,chr22,25245988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.64000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +3808,chr22,25245992,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.25714286,70.00000000,3.09734513,0.00000000,0.00000000,6.46000000 +3809,chr22,25246077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,7.44000000 +3810,chr22,25246160,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.86000000 +3811,chr22,25246239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,61.00000000,0.00000000,1.11000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,4.90000000 +3812,chr22,25246579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.37000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.21000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,6.97000000 +3813,chr22,25246581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.35000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.13000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,7.07000000 +3814,chr22,25247025,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.91000000,0.00000000,,0.21590909,91.00000000,4.02654867,0.03296703,0.00000000,6.21000000 +3815,chr22,25247715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.67000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.48000000 +3816,chr22,25247726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.13846154,66.00000000,2.92035398,0.01515152,0.00000000,5.24000000 +3817,chr22,25247853,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.97000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.64000000 +3818,chr22,25247899,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.11000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.41000000 +3819,chr22,25247901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.21000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.39000000 +3820,chr22,25248860,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.50000000 +3821,chr22,25252713,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +3822,chr22,25253784,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,7.03000000 +3823,chr22,25254439,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,0.86000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +3824,chr22,25254493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,81.00000000,0.00000000,0.14000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,5.38000000 +3825,chr22,25254919,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,1.16000000,0.00000000,,0.19607843,102.00000000,4.51327434,0.00000000,0.00000000,6.44000000 +3826,chr22,25255099,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,0.00000000,-1.03000000,0.00000000,,0.14285714,87.00000000,3.84955752,0.02298851,0.00000000,4.78000000 +3827,chr22,25256347,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.99000000,0.00000000,,0.18987342,83.00000000,3.67256637,0.03614458,0.00000000,6.24000000 +3828,chr22,25261952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +3829,chr22,25264596,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.96000000,0.00000000,,0.12500000,88.00000000,3.89380531,0.00000000,0.00000000,5.52000000 +3830,chr22,25264737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.89000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.00000000,0.00000000,5.56000000 +3831,chr22,25294664,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.85000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.73000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,7.78000000 +3832,chr22,25294716,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.48000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.02597403,0.00000000,8.03000000 +3833,chr22,25294730,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.70000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.38888889,75.00000000,3.31858407,0.04000000,0.00000000,7.97000000 +3834,chr22,25294833,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.77000000,0.00000000,,0.36250000,83.00000000,3.67256637,0.02409639,0.00000000,8.59000000 +3835,chr22,25295463,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.59000000,0.00000000,,0.39285714,87.00000000,3.84955752,0.02298851,0.00000000,8.10000000 +3836,chr22,25295627,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,-1.91000000,0.00000000,,0.32786885,63.00000000,2.78761062,0.03174603,0.00000000,8.04000000 +3837,chr22,25296018,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,102.00000000,0.00000000,-0.18000000,0.00000000,,0.33333333,74.00000000,3.27433628,0.02702703,0.00000000,11.65000000 +3838,chr22,25298419,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,117.00000000,0.00000000,0.52000000,0.00000000,,0.37500000,97.00000000,4.29203540,0.01030928,0.00000000,12.20000000 +3839,chr22,25299305,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.92000000,0.00000000,,0.45977011,92.00000000,4.07079646,0.04347826,0.00000000,4.67000000 +3840,chr22,25299587,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.47252747,93.00000000,4.11504425,0.02150538,0.00000000,8.34000000 +3841,chr22,25299751,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,112.00000000,0.00000000,0.62000000,0.00000000,,0.38202247,93.00000000,4.11504425,0.03225806,0.00000000,13.72000000 +3842,chr22,25300592,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,-1.62000000,0.00000000,,0.48888889,92.00000000,4.07079646,0.02173913,0.00000000,8.45000000 +3843,chr22,25300967,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.89000000,0.00000000,,0.55056180,89.00000000,3.93805310,0.00000000,0.00000000,8.11000000 +3844,chr22,25301030,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.05000000,0.00000000,,0.53012048,84.00000000,3.71681416,0.01190476,0.00000000,8.66000000 +3845,chr22,25301985,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.33000000,14.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.20000000,56.00000000,2.47787611,0.01785714,0.00000000,5.88000000 +3846,chr22,25302376,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,47.58000000,31.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.29000000,0.00000000,,0.20000000,50.00000000,2.21238938,0.00000000,0.00000000,7.04000000 +3847,chr22,25302889,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.56000000,13.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,0.48000000,0.00000000,,0.40000000,62.00000000,2.74336283,0.03225806,0.00000000,4.51000000 +3848,chr22,25303393,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.75000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.39534884,88.00000000,3.89380531,0.02272727,0.00000000,8.16000000 +3849,chr22,25303421,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.35526316,84.00000000,3.71681416,0.09523810,0.00000000,7.89000000 +3850,chr22,25303422,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.35526316,84.00000000,3.71681416,0.09523810,0.00000000,7.89000000 +3851,chr22,25303424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.36363636,84.00000000,3.71681416,0.08333333,0.00000000,7.94000000 +3852,chr22,25303579,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.60000000,0.00000000,,0.46428571,85.00000000,3.76106195,0.01176471,0.01162791,8.80000000 +3853,chr22,25303640,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-0.68000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.00000000,0.00000000,4.23000000 +3854,chr22,25303760,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.90000000,9.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,109.00000000,0.00000000,-0.14000000,0.00000000,,0.40259740,82.00000000,3.62831858,0.02439024,0.00000000,12.60000000 +3855,chr22,25305138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.83000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.04000000 +3856,chr22,25308478,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.77000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.73000000,0.00000000,,0.39560440,92.00000000,4.07079646,0.01086957,0.00000000,7.92000000 +3857,chr22,25311999,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,52.30000000,27.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.87000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,7.56000000 +3858,chr22,25312010,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.09000000,31.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.17000000,0.00000000,,0.31578947,59.00000000,2.61061947,0.03389831,0.00000000,6.84000000 +3859,chr22,25312020,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,49.74000000,35.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.20000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.01818182,0.00000000,7.74000000 +3860,chr22,25312803,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,55.00000000,0.00000000,-1.01000000,0.00000000,,0.53763441,95.00000000,4.20353982,0.02105263,0.00000000,4.33000000 +3861,chr22,25313378,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,105.00000000,0.00000000,-3.13000000,0.00000000,,0.35714286,86.00000000,3.80530973,0.02325581,0.00000000,14.25000000 +3862,chr22,25314830,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,1.00000000,0.00000000,,0.39024390,41.00000000,1.81415929,0.00000000,0.00000000,4.40000000 +3863,chr22,25314949,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,-0.90000000,0.00000000,,0.45714286,76.00000000,3.36283186,0.07894737,0.00000000,3.93000000 +3864,chr22,25315745,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.31034483,60.00000000,2.65486726,0.00000000,0.00000000,8.89000000 +3865,chr22,25316206,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-0.54000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,4.54000000 +3866,chr22,25316543,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,2.19000000,0.00000000,,0.40740741,60.00000000,2.65486726,0.10000000,0.00000000,3.83000000 +3867,chr22,25318558,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.35000000,0.00000000,,0.42253521,73.00000000,3.23008850,0.01369863,0.00000000,8.34000000 +3868,chr22,25319268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.46000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.14000000,0.00000000,,0.47142857,70.00000000,3.09734513,0.00000000,0.00000000,4.31000000 +3869,chr22,25319505,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.04000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,0.00000000,0.39000000,0.00000000,,0.37096774,67.00000000,2.96460177,0.07462687,0.00000000,7.57000000 +3870,chr22,25319956,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.29000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.37500000,57.00000000,2.52212389,0.01754386,0.00000000,8.06000000 +3871,chr22,25319964,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.01818182,0.00000000,7.90000000 +3872,chr22,25320202,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.48000000,0.00000000,,0.50704225,73.00000000,3.23008850,0.01369863,0.00000000,7.77000000 +3873,chr22,25320441,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,53.00000000,0.00000000,-2.01000000,0.00000000,,0.34848485,68.00000000,3.00884956,0.02941176,0.00000000,4.55000000 +3874,chr22,25320559,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.70000000,0.00000000,,0.41428571,72.00000000,3.18584071,0.02777778,0.00000000,8.05000000 +3875,chr22,25320658,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.50000000,69.00000000,3.05309735,0.01449275,0.00000000,7.72000000 +3876,chr22,25321224,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.36363636,77.00000000,3.40707965,0.00000000,0.00000000,8.95000000 +3877,chr22,25321929,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,41.00000000,0.00000000,-0.74000000,0.00000000,,0.54687500,66.00000000,2.92035398,0.01515152,0.00000000,3.94000000 +3878,chr22,25322224,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.85000000,14.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.92000000,0.00000000,,0.46478873,74.00000000,3.27433628,0.04054054,0.00000000,7.39000000 +3879,chr22,25322369,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.47826087,94.00000000,4.15929204,0.02127660,0.00000000,8.44000000 +3880,chr22,25322453,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.97000000,0.00000000,,0.42682927,87.00000000,3.84955752,0.05747126,0.00000000,8.10000000 +3881,chr22,25322461,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.50000000,0.00000000,,0.45121951,87.00000000,3.84955752,0.05747126,0.00000000,8.10000000 +3882,chr22,25322466,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,-1.73000000,0.00000000,,0.45454545,82.00000000,3.62831858,0.06097561,0.00000000,6.32000000 +3883,chr22,25322524,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.25000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,4.17000000 +3884,chr22,25322656,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,-0.31000000,0.00000000,,0.35937500,71.00000000,3.14159292,0.09859155,0.00000000,4.89000000 +3885,chr22,25322665,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,53.00000000,0.00000000,-0.73000000,0.00000000,,0.32835821,78.00000000,3.45132743,0.14102564,0.00000000,4.46000000 +3886,chr22,25322932,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.38961039,77.00000000,3.40707965,0.00000000,0.00000000,8.16000000 +3887,chr22,25322988,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.37333333,76.00000000,3.36283186,0.01315789,0.00000000,8.58000000 +3888,chr22,25323946,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.38317757,110.00000000,4.86725664,0.01818182,0.00000000,8.15000000 +3889,chr22,25326791,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.38461538,69.00000000,3.05309735,0.05797101,0.00000000,8.12000000 +3890,chr22,25326931,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,-0.31000000,0.00000000,,0.55952381,84.00000000,3.71681416,0.00000000,0.00000000,4.53000000 +3891,chr22,25327075,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05555556,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,2.26000000,0.00000000,,0.40000000,73.00000000,3.23008850,0.02739726,0.00000000,8.07000000 +3892,chr22,25327333,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.09000000,0.00000000,,0.47368421,78.00000000,3.45132743,0.02564103,0.00000000,4.35000000 +3893,chr22,25328800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,58.00000000,0.00000000,-0.11000000,0.00000000,,0.39024390,82.00000000,3.62831858,0.00000000,0.00000000,5.99000000 +3894,chr22,25328904,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.89000000 +3895,chr22,25329600,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.86000000,0.00000000,,0.50000000,94.00000000,4.15929204,0.02127660,0.00000000,8.20000000 +3896,chr22,25331025,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.96000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,8.93000000 +3897,chr22,25332090,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.55000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.89000000 +3898,chr22,25332471,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,0.92000000,0.00000000,,0.36250000,82.00000000,3.62831858,0.02439024,0.00000000,7.90000000 +3899,chr22,25333289,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.50000000,81.00000000,3.58407080,0.00000000,0.00000000,8.28000000 +3900,chr22,25336087,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.18000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.00000000,0.00000000,4.36000000 +3901,chr22,25340570,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,51.87000000,23.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,44.00000000,0.00000000,-0.69000000,0.00000000,,0.35555556,47.00000000,2.07964602,0.04255319,0.00000000,4.19000000 +3902,chr22,25340846,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.82000000,20.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,44.00000000,0.00000000,-0.94000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,3.65000000 +3903,chr22,25341826,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.70000000,0.00000000,,0.46666667,60.00000000,2.65486726,0.00000000,0.00000000,4.34000000 +3904,chr22,25342153,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.23000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-1.52000000,0.00000000,,0.46808511,47.00000000,2.07964602,0.00000000,0.00000000,3.77000000 +3905,chr22,25342307,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,49.82000000,32.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.24390244,41.00000000,1.81415929,0.00000000,0.00000000,6.73000000 +3906,chr22,25342308,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.59000000,32.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.31000000,0.00000000,,0.26829268,41.00000000,1.81415929,0.00000000,0.00000000,6.72000000 +3907,chr22,25347448,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,31.00000000,0.00000000,0.58000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,3.16000000 +3908,chr22,25352719,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,0.16000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,6.14000000 +3909,chr22,25353826,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.34523810,84.00000000,3.71681416,0.00000000,0.00000000,8.32000000 +3910,chr22,25354107,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.00000000,0.00000000,8.28000000 +3911,chr22,25355494,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.33000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,8.77000000 +3912,chr22,25357354,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.45833333,75.00000000,3.31858407,0.02666667,0.00000000,8.19000000 +3913,chr22,25357810,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.05000000,0.00000000,,0.47297297,77.00000000,3.40707965,0.01298701,0.00000000,8.60000000 +3914,chr22,25358003,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,93.00000000,0.00000000,-0.34000000,0.00000000,,0.34444444,93.00000000,4.11504425,0.03225806,0.00000000,8.16000000 +3915,chr22,25358292,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,0.71000000,0.00000000,,0.46575342,75.00000000,3.31858407,0.02666667,0.00000000,4.17000000 +3916,chr22,25358445,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.89000000,0.00000000,,0.53333333,90.00000000,3.98230088,0.00000000,0.00000000,8.29000000 +3917,chr22,25358538,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.57000000,0.00000000,,0.51250000,82.00000000,3.62831858,0.01219512,0.00000000,7.67000000 +3918,chr22,25359348,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.39705882,83.00000000,3.67256637,0.14457831,0.00000000,8.45000000 +3919,chr22,25359632,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,55.00000000,0.00000000,0.70000000,0.00000000,,0.38888889,74.00000000,3.27433628,0.02702703,0.00000000,4.91000000 +3920,chr22,25360817,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.41666667,105.00000000,4.64601770,0.08571429,0.00000000,7.99000000 +3921,chr22,25364794,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,109.00000000,0.00000000,-0.16000000,0.00000000,,0.44705882,87.00000000,3.84955752,0.02298851,0.00000000,12.50000000 +3922,chr22,25365291,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.01000000,0.00000000,,0.52000000,75.00000000,3.31858407,0.00000000,0.00000000,8.91000000 +3923,chr22,25367848,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.67000000 +3924,chr22,25370074,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,35.00000000,0.00000000,-0.14000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.00000000,0.00000000,3.57000000 +3925,chr22,25372851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-1.09000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.32000000 +3926,chr22,25373258,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.25000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,4.23000000 +3927,chr22,25374065,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,1.26000000,0.00000000,,0.36842105,77.00000000,3.40707965,0.01298701,0.00000000,8.03000000 +3928,chr22,25379184,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.43000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.66000000 +3929,chr22,25379296,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.17000000,0.00000000,,0.45070423,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +3930,chr22,25379568,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.84000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,4.37000000 +3931,chr22,25380843,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,-2.25000000,0.00000000,,0.46052632,79.00000000,3.49557522,0.03797468,0.00000000,8.28000000 +3932,chr22,25382046,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,-0.03000000,0.00000000,,0.46428571,85.00000000,3.76106195,0.01176471,0.00000000,8.29000000 +3933,chr22,25382054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,98.00000000,0.00000000,0.07000000,0.00000000,,0.44705882,86.00000000,3.80530973,0.01162791,0.00000000,8.12000000 +3934,chr22,25382563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.59000000 +3935,chr22,25382841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,5.91000000 +3936,chr22,25383235,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,5.90000000 +3937,chr22,25383524,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.56000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +3938,chr22,25383787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.33000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.72000000 +3939,chr22,25384150,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,0.25000000,0.00000000,,0.28571429,93.00000000,4.11504425,0.02150538,0.00000000,5.76000000 +3940,chr22,25388166,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,5.88000000 +3941,chr22,25388217,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,89.00000000,0.00000000,-1.32000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.37000000 +3942,chr22,25388438,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-1.15000000,0.00000000,,0.08602151,94.00000000,4.15929204,0.01063830,0.00000000,5.11000000 +3943,chr22,25388886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.10843373,83.00000000,3.67256637,0.00000000,0.00000000,5.14000000 +3944,chr22,25389745,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.75000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.01075269,0.00000000,6.27000000 +3945,chr22,25390194,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,-1.75000000,0.00000000,,0.40789474,77.00000000,3.40707965,0.00000000,0.00000000,8.88000000 +3946,chr22,25390455,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-1.72000000,0.00000000,,0.36363636,80.00000000,3.53982301,0.02500000,0.00000000,8.19000000 +3947,chr22,25391430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.28000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.33000000 +3948,chr22,25392575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,0.52000000,0.00000000,,0.52857143,73.00000000,3.23008850,0.02739726,0.00000000,8.07000000 +3949,chr22,25392624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-1.31000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.51000000 +3950,chr22,25392682,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,2.58000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.01315789,0.00000000,8.16000000 +3951,chr22,25392840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.00000000,0.00000000,6.70000000 +3952,chr22,25392887,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,0.15000000,0.00000000,,0.26881720,96.00000000,4.24778761,0.01041667,0.00000000,5.80000000 +3953,chr22,25393070,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.87000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,5.91000000 +3954,chr22,25393357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,1.83000000,0.00000000,,0.26666667,108.00000000,4.77876106,0.02777778,0.00000000,5.89000000 +3955,chr22,25394273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.36000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.00000000,0.00000000,6.60000000 +3956,chr22,25394713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.21666667,65.00000000,2.87610619,0.04615385,0.00000000,6.00000000 +3957,chr22,25394832,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,0.63000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.02857143,0.00000000,5.92000000 +3958,chr22,25395389,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.43000000,0.00000000,,0.51282051,80.00000000,3.53982301,0.02500000,0.00000000,3.88000000 +3959,chr22,25395496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.78000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.76000000 +3960,chr22,25396300,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.52000000 +3961,chr22,25396732,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.83000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,8.70000000 +3962,chr22,25396768,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,1.00000000,0.00000000,,0.40259740,78.00000000,3.45132743,0.01282051,0.00000000,8.42000000 +3963,chr22,25397017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-1.36000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.07000000 +3964,chr22,25398533,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.56000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.59000000 +3965,chr22,25398590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.65000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.97000000 +3966,chr22,25403146,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.17000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +3967,chr22,25405518,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.00000000 +3968,chr22,25407965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.71000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.02631579,0.00000000,6.27000000 +3969,chr22,25409015,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.56000000 +3970,chr22,25409257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.95000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.02325581,0.00000000,7.01000000 +3971,chr22,25410483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,76.00000000,0.00000000,0.48000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.76000000 +3972,chr22,25411235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.79000000 +3973,chr22,25415192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.42000000 +3974,chr22,25417630,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.32000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +3975,chr22,25418467,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.02352941,0.00000000,5.47000000 +3976,chr22,25420448,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.31000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.00000000,0.00000000,7.07000000 +3977,chr22,25420506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,3.09000000,0.00000000,,0.23750000,84.00000000,3.71681416,0.04761905,0.00000000,5.75000000 +3978,chr22,25421046,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.24000000 +3979,chr22,25421417,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-0.81000000,0.00000000,,0.24489796,104.00000000,4.60176991,0.05769231,0.00000000,5.99000000 +3980,chr22,25426468,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,6.21000000 +3981,chr22,25426884,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,1.72000000,0.00000000,,0.37313433,69.00000000,3.05309735,0.01449275,0.00000000,8.24000000 +3982,chr22,25427418,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.79000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.42307692,0.00000000,23.00000000,0.00000000,-0.68000000,0.00000000,,0.51162791,57.00000000,2.52212389,0.24561404,0.00000000,3.30000000 +3983,chr22,25428386,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.83000000,0.00000000,,0.44827586,87.00000000,3.84955752,0.00000000,0.00000000,9.11000000 +3984,chr22,25428520,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.44000000,4.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-0.38000000,0.00000000,,0.51724138,59.00000000,2.61061947,0.01694915,0.00000000,3.93000000 +3985,chr22,25429125,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,0.09000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,4.40000000 +3986,chr22,25429888,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,16.00000000,0.00000000,-1.62000000,0.00000000,,0.47222222,72.00000000,3.18584071,0.00000000,0.00000000,3.12000000 +3987,chr22,25430099,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,46.00000000,0.00000000,-2.22000000,0.00000000,,0.42857143,78.00000000,3.45132743,0.01282051,0.00000000,4.07000000 +3988,chr22,25431062,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,49.00000000,0.00000000,1.49000000,0.00000000,,0.43181818,93.00000000,4.11504425,0.05376344,0.00000000,4.22000000 +3989,chr22,25431560,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.50666667,76.00000000,3.36283186,0.01315789,0.00000000,8.52000000 +3990,chr22,25431760,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.33000000,5.00000000,ref,1.00000000,0.04761905,24.00000000,1.06194690,0.12500000,0.00000000,4.00000000,0.00000000,-0.56000000,0.00000000,,0.38775510,62.00000000,2.74336283,0.19354839,0.00000000,3.37000000 +3991,chr22,25432061,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,52.93000000,15.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,1.16000000,0.00000000,,0.43478261,47.00000000,2.07964602,0.02127660,0.00000000,3.43000000 +3992,chr22,25432191,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,46.25000000,31.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.32000000,0.00000000,,0.22000000,52.00000000,2.30088496,0.03846154,0.00000000,2.81000000 +3993,chr22,25433989,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.28000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.01388889,0.00000000,8.41000000 +3994,chr22,25434022,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,0.04000000,0.00000000,,0.47500000,81.00000000,3.58407080,0.01234568,0.00000000,12.70000000 +3995,chr22,25434034,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,104.00000000,0.00000000,0.20000000,0.00000000,,0.50649351,78.00000000,3.45132743,0.01282051,0.00000000,12.66000000 +3996,chr22,25435333,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-1.23000000,0.00000000,,0.42253521,71.00000000,3.14159292,0.00000000,0.00000000,6.11000000 +3997,chr22,25435494,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,1.53000000,0.00000000,,0.41791045,69.00000000,3.05309735,0.02898551,0.00000000,8.06000000 +3998,chr22,25435858,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,33.00000000,0.00000000,0.23000000,0.00000000,,0.45454545,88.00000000,3.89380531,0.00000000,0.00000000,3.16000000 +3999,chr22,25436275,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.16000000,0.00000000,,0.38000000,100.00000000,4.42477876,0.00000000,0.00000000,9.16000000 +4000,chr22,25436452,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.39560440,95.00000000,4.20353982,0.04210526,0.00000000,8.24000000 +4001,chr22,25436728,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.19000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.05000000,0.00000000,,0.34375000,70.00000000,3.09734513,0.07142857,0.00000000,8.04000000 +4002,chr22,25437240,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,0.63000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,7.89000000 +4003,chr22,25437629,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-0.49000000,0.00000000,,0.31707317,83.00000000,3.67256637,0.01204819,0.00000000,7.22000000 +4004,chr22,25437851,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.44000000 +4005,chr22,25438375,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,0.88000000,0.00000000,,0.37349398,85.00000000,3.76106195,0.02352941,0.00000000,4.86000000 +4006,chr22,25438634,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,-0.11000000,0.00000000,,0.26923077,82.00000000,3.62831858,0.03658537,0.00000000,5.97000000 +4007,chr22,25439302,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.62000000,0.00000000,,0.37500000,67.00000000,2.96460177,0.02985075,0.00000000,7.58000000 +4008,chr22,25439547,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.31000000,0.00000000,,0.41052632,97.00000000,4.29203540,0.02061856,0.00000000,8.38000000 +4009,chr22,25439833,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,9.00000000,0.00000000,0.49000000,0.00000000,,0.40579710,72.00000000,3.18584071,0.04166667,0.00000000,3.37000000 +4010,chr22,25442219,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,94.00000000,0.00000000,0.08000000,0.00000000,,0.38202247,102.00000000,4.51327434,0.12745098,0.00000000,7.82000000 +4011,chr22,25442528,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.35820896,69.00000000,3.05309735,0.02898551,0.00000000,8.59000000 +4012,chr22,25442814,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.00000000,0.00000000,8.96000000 +4013,chr22,25443113,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,42.00000000,0.00000000,-2.03000000,0.00000000,,0.52054795,84.00000000,3.71681416,0.13095238,0.00000000,4.46000000 +4014,chr22,25443115,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,43.00000000,0.00000000,-1.68000000,0.00000000,,0.53521127,82.00000000,3.62831858,0.13414634,0.00000000,4.48000000 +4015,chr22,25443214,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-2.17000000,0.00000000,,0.58163265,99.00000000,4.38053097,0.01010101,0.00000000,8.63000000 +4016,chr22,25444834,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.46250000,81.00000000,3.58407080,0.01234568,0.00000000,8.40000000 +4017,chr22,25445178,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,71.00000000,0.00000000,-1.62000000,0.00000000,,0.45454545,90.00000000,3.98230088,0.02222222,0.00000000,7.96000000 +4018,chr22,25445484,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.11000000,0.00000000,,0.43589744,79.00000000,3.49557522,0.01265823,0.00000000,8.60000000 +4019,chr22,25445795,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.63000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.01086957,0.00000000,8.48000000 +4020,chr22,25446119,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,64.00000000,0.00000000,0.78000000,0.00000000,,0.41791045,69.00000000,3.05309735,0.02898551,0.00000000,7.72000000 +4021,chr22,25447917,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,-1.00000000,0.00000000,,0.39473684,76.00000000,3.36283186,0.00000000,0.00000000,4.62000000 +4022,chr22,25448054,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,41.00000000,0.00000000,-0.70000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.01234568,0.00000000,4.01000000 +4023,chr22,25448092,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.93000000,0.00000000,,0.16417910,71.00000000,3.14159292,0.04225352,0.00000000,6.09000000 +4024,chr22,25449768,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,31.00000000,0.00000000,1.38000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.01538462,0.00000000,3.18000000 +4025,chr22,25452074,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,94.00000000,0.00000000,-1.82000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.60000000 +4026,chr22,25457529,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.03000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.04000000,0.00000000,,0.11475410,63.00000000,2.78761062,0.03174603,0.00000000,4.89000000 +4027,chr22,25466857,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.06000000,0.00000000,,0.60000000,62.00000000,2.74336283,0.03225806,0.00000000,8.12000000 +4028,chr22,25473239,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,1.02000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.00000000,0.00000000,8.30000000 +4029,chr22,25474327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,1.63000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.42000000 +4030,chr22,25480395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.76000000,0.00000000,,0.15217391,50.00000000,2.21238938,0.08000000,0.00000000,5.08000000 +4031,chr22,25486459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.90000000,0.00000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,5.04000000 +4032,chr22,25489117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,91.00000000,0.00000000,-1.33000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +4033,chr22,25490694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +4034,chr22,25491925,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,5.90000000 +4035,chr22,25494544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,-0.64000000,0.00000000,,0.12280702,59.00000000,2.61061947,0.03389831,0.00000000,2.84000000 +4036,chr22,25500780,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-1.71000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.71000000 +4037,chr22,25501012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.47000000 +4038,chr22,25501363,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-1.92000000,0.00000000,,0.20289855,74.00000000,3.27433628,0.06756757,0.00000000,6.71000000 +4039,chr22,25502127,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.36000000 +4040,chr22,25502195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.85000000 +4041,chr22,25502792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,5.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.43000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.72000000 +4042,chr22,25503231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.45000000 +4043,chr22,25503600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,5.91000000 +4044,chr22,25504856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.30000000 +4045,chr22,25505783,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.62000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.09000000 +4046,chr22,25505917,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.52000000,9.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.80000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.12000000 +4047,chr22,25506705,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,54.97000000,14.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-1.35000000,0.00000000,,0.12698413,64.00000000,2.83185841,0.01562500,0.00000000,5.05000000 +4048,chr22,25506749,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.59000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-1.50000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,6.41000000 +4049,chr22,25506794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.43000000 +4050,chr22,25506970,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,61.00000000,0.00000000,0.26000000,0.00000000,,0.09090909,73.00000000,3.23008850,0.08219178,0.00000000,4.57000000 +4051,chr22,25507219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.78000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-2.18000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +4052,chr22,25508428,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.23595506,93.00000000,4.11504425,0.04301075,0.00000000,6.30000000 +4053,chr22,25508779,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.30000000,0.00000000,,0.31250000,72.00000000,3.18584071,0.11111111,0.00000000,6.41000000 +4054,chr22,25509454,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.13000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.36000000 +4055,chr22,25509701,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.13000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +4056,chr22,25509912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.15000000,101.00000000,4.46902655,0.00990099,0.00000000,5.59000000 +4057,chr22,25509955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,0.47000000,0.00000000,,0.13043478,93.00000000,4.11504425,0.00000000,0.00000000,5.08000000 +4058,chr22,25510350,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.51000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.00000000,0.00000000,6.41000000 +4059,chr22,25510836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.10000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.51000000 +4060,chr22,25510893,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,1.96000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.00000000,0.00000000,5.93000000 +4061,chr22,25510931,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.96000000 +4062,chr22,25510963,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.81000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,7.17000000 +4063,chr22,25511361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.43000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.60000000 +4064,chr22,25512429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,71.00000000,0.00000000,0.91000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.04000000 +4065,chr22,25512474,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,66.00000000,0.00000000,-0.63000000,0.00000000,,0.14864865,83.00000000,3.67256637,0.07228916,0.00000000,5.64000000 +4066,chr22,25512649,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.23000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +4067,chr22,25512812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +4068,chr22,25513136,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.53000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +4069,chr22,25513152,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.26595745,94.00000000,4.15929204,0.00000000,0.00000000,6.59000000 +4070,chr22,25513237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.98000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +4071,chr22,25513710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.12000000,0.00000000,,0.18947368,98.00000000,4.33628319,0.02040816,0.00000000,6.46000000 +4072,chr22,25513769,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,86.00000000,0.00000000,0.96000000,0.00000000,,0.18584071,115.00000000,5.08849558,0.01739130,0.00000000,5.71000000 +4073,chr22,25513772,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,78.00000000,0.00000000,1.52000000,0.00000000,,0.16521739,119.00000000,5.26548673,0.01680672,0.00000000,5.63000000 +4074,chr22,25514224,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,-0.94000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.25000000 +4075,chr22,25514229,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.16666667,87.00000000,3.84955752,0.03448276,0.00000000,5.45000000 +4076,chr22,25514423,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.35000000,0.00000000,,0.19318182,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +4077,chr22,25514588,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.96000000 +4078,chr22,25514638,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.34000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.31000000 +4079,chr22,25514877,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,81.00000000,0.00000000,1.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,5.94000000 +4080,chr22,25514912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.34000000 +4081,chr22,25515104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,-2.00000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +4082,chr22,25515333,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-1.02000000,0.00000000,,0.21649485,100.00000000,4.42477876,0.03000000,0.00000000,6.47000000 +4083,chr22,25515775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.16129032,95.00000000,4.20353982,0.02105263,0.00000000,4.62000000 +4084,chr22,25515806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.17894737,95.00000000,4.20353982,0.00000000,0.00000000,5.91000000 +4085,chr22,25516096,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.00000000,0.00000000,6.21000000 +4086,chr22,25516287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.22000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,4.83000000 +4087,chr22,25516351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,4.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.68000000,0.00000000,,0.13157895,79.00000000,3.49557522,0.03797468,0.00000000,5.49000000 +4088,chr22,25516356,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-0.19000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.02564103,0.00000000,5.54000000 +4089,chr22,25516416,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,1.01000000,0.00000000,,0.12790698,89.00000000,3.93805310,0.03370787,0.00000000,5.08000000 +4090,chr22,25517060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.34000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.96000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.02083333,0.00000000,5.90000000 +4091,chr22,25517174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.74000000 +4092,chr22,25518760,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,56.48000000,9.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.49000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.46000000 +4093,chr22,25519689,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.16000000,0.00000000,,0.29411765,85.00000000,3.76106195,0.00000000,0.00000000,6.33000000 +4094,chr22,25519883,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-1.06000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.38000000 +4095,chr22,25520117,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.94000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,5.72000000 +4096,chr22,25520152,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,0.06000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.19000000 +4097,chr22,25520168,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,1.18000000,0.00000000,,0.13432836,68.00000000,3.00884956,0.01470588,0.00000000,5.26000000 +4098,chr22,25520530,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.01369863,0.00000000,6.51000000 +4099,chr22,25521227,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.35000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +4100,chr22,25521664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,1.92000000,0.00000000,,0.06493506,78.00000000,3.45132743,0.01282051,0.00000000,5.41000000 +4101,chr22,25521741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.84000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.18000000 +4102,chr22,25521836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.13043478,92.00000000,4.07079646,0.00000000,0.00000000,5.04000000 +4103,chr22,25521888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,0.00000000,-1.04000000,0.00000000,,0.13095238,90.00000000,3.98230088,0.06666667,0.00000000,4.50000000 +4104,chr22,25521893,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,77.00000000,0.00000000,-1.22000000,0.00000000,,0.16279070,92.00000000,4.07079646,0.05434783,0.00000000,5.18000000 +4105,chr22,25522232,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.73000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +4106,chr22,25522707,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.56000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.30000000 +4107,chr22,25522727,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.72000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,6.35000000 +4108,chr22,25522742,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.04000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +4109,chr22,25523520,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,62.00000000,0.00000000,-0.47000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.53000000 +4110,chr22,25523615,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.75000000,19.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.17000000 +4111,chr22,25524762,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.95000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.30000000,0.00000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +4112,chr22,25524771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.11428571,70.00000000,3.09734513,0.00000000,0.00000000,5.31000000 +4113,chr22,25524806,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.22000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.36000000 +4114,chr22,25524939,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.01250000,5.95000000 +4115,chr22,25525152,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.16000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.00000000,0.00000000,5.42000000 +4116,chr22,25525715,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.25531915,95.00000000,4.20353982,0.00000000,0.00000000,7.22000000 +4117,chr22,25525716,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.20000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.25263158,96.00000000,4.24778761,0.00000000,0.00000000,7.16000000 +4118,chr22,25526308,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.32000000,13.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,77.00000000,0.00000000,-0.19000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.04000000 +4119,chr22,25527044,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.18000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.29000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +4120,chr22,25527202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,5.97000000 +4121,chr22,25527535,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.52000000,0.00000000,,0.19696970,77.00000000,3.40707965,0.14285714,0.00000000,4.80000000 +4122,chr22,25527700,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.05000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.20000000 +4123,chr22,25528477,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.02000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.32000000 +4124,chr22,25529220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.18000000 +4125,chr22,25529242,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.17000000 +4126,chr22,25529300,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,2.30000000,0.00000000,,0.11475410,61.00000000,2.69911504,0.00000000,0.00000000,4.74000000 +4127,chr22,25529469,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +4128,chr22,25529674,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,44.00000000,1.94690265,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.13793103,88.00000000,3.89380531,0.00000000,0.00000000,5.34000000 +4129,chr22,25529793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.44000000,0.00000000,,0.26562500,67.00000000,2.96460177,0.04477612,0.00000000,6.13000000 +4130,chr22,25529801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.93000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.37000000 +4131,chr22,25530545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.91000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.83000000 +4132,chr22,25531393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,4.98000000 +4133,chr22,25532301,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.14000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4134,chr22,25535405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.66000000 +4135,chr22,25535639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.37000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.70000000 +4136,chr22,25548511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.68000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,6.32000000 +4137,chr22,25549209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,7.06000000 +4138,chr22,25552251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.30000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,6.37000000 +4139,chr22,25559670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.01052632,0.00000000,6.02000000 +4140,chr22,25589103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.98000000 +4141,chr22,25593432,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.32000000 +4142,chr22,25617383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,1.54000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.40000000 +4143,chr22,25673245,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.73000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.24000000 +4144,chr22,25675591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +4145,chr22,25677159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.34000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.08000000 +4146,chr22,25679221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.80000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.35000000 +4147,chr22,25685906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-0.89000000,0.00000000,,0.27027027,81.00000000,3.58407080,0.08641975,0.00000000,2.76000000 +4148,chr22,25685991,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.91000000,0.00000000,,0.31343284,67.00000000,2.96460177,0.00000000,0.00000000,3.75000000 +4149,chr22,25688052,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.57000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.58000000 +4150,chr22,25705615,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.15625000,67.00000000,2.96460177,0.04477612,0.00000000,5.36000000 +4151,chr22,25738352,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.11290323,64.00000000,2.83185841,0.03125000,0.00000000,4.83000000 +4152,chr22,25756771,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.95000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.83000000 +4153,chr22,25760587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +4154,chr22,25764403,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.53000000 +4155,chr22,25766808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.18000000 +4156,chr22,25766935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.33000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.53000000 +4157,chr22,25767036,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.04878049,0.00000000,6.33000000 +4158,chr22,25768029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.01408451,0.00000000,6.53000000 +4159,chr22,25772591,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.22000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.59000000 +4160,chr22,25773540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.00000000,0.00000000,,0.11250000,82.00000000,3.62831858,0.01219512,0.00000000,5.32000000 +4161,chr22,25774595,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.37000000 +4162,chr22,25774660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,1.38000000,0.00000000,,0.21052632,99.00000000,4.38053097,0.04040404,0.00000000,6.17000000 +4163,chr22,25775315,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.13580247,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +4164,chr22,25776568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.48000000 +4165,chr22,25776994,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.98000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +4166,chr22,25777217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.01333333,0.00000000,6.06000000 +4167,chr22,25777517,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.07000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.99000000 +4168,chr22,25777921,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-1.32000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,6.12000000 +4169,chr22,25779316,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.49000000,0.00000000,,0.19587629,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +4170,chr22,25780882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +4171,chr22,25781534,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.10526316,0.00000000,75.00000000,0.00000000,-1.43000000,0.00000000,,0.27777778,80.00000000,3.53982301,0.10000000,0.00000000,6.05000000 +4172,chr22,25781535,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.10526316,0.00000000,86.00000000,0.00000000,-1.31000000,0.00000000,,0.26388889,80.00000000,3.53982301,0.10000000,0.00000000,6.03000000 +4173,chr22,25781541,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,87.00000000,0.00000000,-1.47000000,0.00000000,,0.28985507,83.00000000,3.67256637,0.16867470,0.00000000,6.05000000 +4174,chr22,25789450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.99000000,0.00000000,,0.29032258,63.00000000,2.78761062,0.01587302,0.00000000,6.65000000 +4175,chr22,25793956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,65.00000000,0.00000000,1.07000000,0.00000000,,0.21212121,71.00000000,3.14159292,0.07042254,0.00000000,5.87000000 +4176,chr22,25796883,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.06000000 +4177,chr22,25796955,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,5.90000000 +4178,chr22,25798224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,6.27000000 +4179,chr22,25798491,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.71000000 +4180,chr22,25798974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.78000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +4181,chr22,25799514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +4182,chr22,25799990,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.50000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,3.55000000,0.00000000,,0.28947368,82.00000000,3.62831858,0.03658537,0.00000000,7.33000000 +4183,chr22,25800382,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,67.00000000,0.00000000,1.49000000,0.00000000,,0.17171717,99.00000000,4.38053097,0.00000000,0.00000000,5.49000000 +4184,chr22,25801437,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.20000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.92000000 +4185,chr22,25803882,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.26315789,99.00000000,4.38053097,0.03030303,0.00000000,6.23000000 +4186,chr22,25805205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.71000000 +4187,chr22,25806631,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.74000000 +4188,chr22,25807154,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,85.00000000,0.00000000,0.27000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.03157895,0.00000000,5.98000000 +4189,chr22,25807792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.80000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,6.26000000 +4190,chr22,25807885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.60000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.98000000 +4191,chr22,25808217,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.04166667,0.00000000,6.29000000 +4192,chr22,25808617,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,5.68000000 +4193,chr22,25808952,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.47000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.00000000,0.00000000,5.22000000 +4194,chr22,25809978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,71.00000000,0.00000000,1.06000000,0.00000000,,0.18181818,86.00000000,3.80530973,0.10465116,0.00000000,5.70000000 +4195,chr22,25810920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.59000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.62000000 +4196,chr22,25811274,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,6.45000000 +4197,chr22,25811892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4198,chr22,25812241,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.21000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +4199,chr22,25812417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.41000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.13000000 +4200,chr22,25813509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.34000000,0.00000000,,0.25925926,54.00000000,2.38938053,0.00000000,0.00000000,6.45000000 +4201,chr22,25813881,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.34000000 +4202,chr22,25815890,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.53000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.39000000 +4203,chr22,25819296,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.04000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +4204,chr22,25820393,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.00000000,0.00000000,6.34000000 +4205,chr22,25821026,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.02439024,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,5.58000000 +4206,chr22,25821632,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.32692308,54.00000000,2.38938053,0.03703704,0.00000000,7.50000000 +4207,chr22,25821669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,2.29000000,0.00000000,,0.22448980,52.00000000,2.30088496,0.03846154,0.00000000,6.41000000 +4208,chr22,25822197,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.12307692,65.00000000,2.87610619,0.00000000,0.00000000,5.18000000 +4209,chr22,25822636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.31000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.01176471,0.00000000,5.99000000 +4210,chr22,25822709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.08000000,0.00000000,,0.20833333,97.00000000,4.29203540,0.01030928,0.00000000,6.64000000 +4211,chr22,25822920,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,93.00000000,0.00000000,0.75000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,5.71000000 +4212,chr22,25824298,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,-0.54000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.47000000 +4213,chr22,25826054,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.62000000 +4214,chr22,25826280,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.43000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.35000000 +4215,chr22,25827016,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,1.51000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.46000000 +4216,chr22,25828665,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.84000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,6.25000000 +4217,chr22,25830413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,0.51000000,0.00000000,,0.31914894,94.00000000,4.15929204,0.00000000,0.00000000,7.51000000 +4218,chr22,25830873,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,82.00000000,0.00000000,1.78000000,0.00000000,,0.20481928,88.00000000,3.89380531,0.04545455,0.00000000,5.81000000 +4219,chr22,25831221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.40000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.43000000 +4220,chr22,25831800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.63000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.02000000 +4221,chr22,25837143,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.24000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.83000000 +4222,chr22,25855705,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.01000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.05617978,0.00000000,5.79000000 +4223,chr22,25856898,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.91000000 +4224,chr22,25858281,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.98000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.49000000 +4225,chr22,25858289,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.98000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.27000000 +4226,chr22,25859008,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,79.00000000,0.00000000,-2.22000000,0.00000000,,0.19736842,81.00000000,3.58407080,0.04938272,0.00000000,6.11000000 +4227,chr22,25884975,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,47.00000000,0.00000000,0.00000000,0.00000000,,0.47368421,77.00000000,3.40707965,0.01298701,0.00000000,4.19000000 +4228,chr22,25885442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +4229,chr22,25897191,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.02352941,0.00000000,4.86000000 +4230,chr22,25902095,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,-1.31000000,0.00000000,,0.48101266,79.00000000,3.49557522,0.00000000,0.00000000,8.82000000 +4231,chr22,25908090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,47.00000000,0.00000000,-0.05000000,0.00000000,,0.49462366,104.00000000,4.60176991,0.08653846,0.00000000,4.28000000 +4232,chr22,25909021,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.55000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.00000000,0.00000000,4.33000000 +4233,chr22,25909270,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.52000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,4.15000000 +4234,chr22,25909314,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,2.07000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.01369863,0.00000000,4.54000000 +4235,chr22,25909715,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.68000000,0.00000000,,0.36065574,63.00000000,2.78761062,0.03174603,0.00000000,8.13000000 +4236,chr22,25910783,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,62.00000000,0.00000000,-1.34000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,8.00000000 +4237,chr22,25911680,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.95000000,0.00000000,,0.50617284,82.00000000,3.62831858,0.01219512,0.00000000,8.72000000 +4238,chr22,25912753,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.84000000,0.00000000,,0.54054054,76.00000000,3.36283186,0.01315789,0.00000000,8.58000000 +4239,chr22,25913202,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.50000000,70.00000000,3.09734513,0.00000000,0.00000000,7.94000000 +4240,chr22,25915114,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.10000000,0.00000000,,0.36666667,93.00000000,4.11504425,0.01075269,0.00000000,8.35000000 +4241,chr22,25916178,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.22000000,0.00000000,,0.47777778,90.00000000,3.98230088,0.00000000,0.00000000,8.52000000 +4242,chr22,25916221,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.52000000,0.00000000,,0.47945205,73.00000000,3.23008850,0.00000000,0.00000000,4.27000000 +4243,chr22,25916293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.36000000 +4244,chr22,25918095,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.51648352,92.00000000,4.07079646,0.01086957,0.00000000,8.62000000 +4245,chr22,25918567,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.32000000,0.00000000,,0.47500000,80.00000000,3.53982301,0.00000000,0.00000000,8.37000000 +4246,chr22,25923145,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.04000000,0.00000000,,0.43478261,94.00000000,4.15929204,0.02127660,0.00000000,8.29000000 +4247,chr22,25927233,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.43000000,12.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.46666667,61.00000000,2.69911504,0.01639344,0.00000000,7.84000000 +4248,chr22,25930699,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.96000000,0.00000000,,0.40000000,62.00000000,2.74336283,0.03225806,0.00000000,4.38000000 +4249,chr22,25931276,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.08000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,4.20000000 +4250,chr22,25931761,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,58.00000000,0.00000000,-0.43000000,0.00000000,,0.36764706,80.00000000,3.53982301,0.15000000,0.00000000,6.44000000 +4251,chr22,25932637,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.35000000,0.00000000,,0.45833333,72.00000000,3.18584071,0.00000000,0.00000000,4.52000000 +4252,chr22,25958565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.56000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.57000000 +4253,chr22,25972773,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,9.14000000 +4254,chr22,25972850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.27142857,75.00000000,3.31858407,0.06666667,0.00000000,5.80000000 +4255,chr22,25973392,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.56060606,67.00000000,2.96460177,0.01492537,0.00000000,7.97000000 +4256,chr22,25973968,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,-1.66000000,0.00000000,,0.48913043,94.00000000,4.15929204,0.02127660,0.00000000,8.06000000 +4257,chr22,25975054,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,27.00000000,0.00000000,-0.35000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.00000000,0.00000000,3.96000000 +4258,chr22,25980111,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.43076923,66.00000000,2.92035398,0.01515152,0.00000000,8.01000000 +4259,chr22,25982107,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.47000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.01351351,0.00000000,4.48000000 +4260,chr22,25986038,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.71000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,8.91000000 +4261,chr22,25986798,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,1.33000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,4.33000000 +4262,chr22,25993173,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.32000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.92000000 +4263,chr22,25993689,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,60.00000000,0.00000000,-1.05000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.01388889,0.00000000,7.49000000 +4264,chr22,25995033,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,1.19000000,0.00000000,,0.42500000,84.00000000,3.71681416,0.03571429,0.00000000,7.89000000 +4265,chr22,25996908,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,54.00000000,0.00000000,1.57000000,0.00000000,,0.38554217,84.00000000,3.71681416,0.01190476,0.00000000,4.96000000 +4266,chr22,25999100,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,114.00000000,0.00000000,-0.22000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.00000000,0.00000000,14.26000000 +4267,chr22,26002819,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.20000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.95000000 +4268,chr22,26004219,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-1.49000000,0.00000000,,0.47126437,88.00000000,3.89380531,0.01136364,0.00000000,8.44000000 +4269,chr22,26004353,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,102.00000000,0.00000000,1.70000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,13.15000000 +4270,chr22,26004369,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,0.26000000,0.00000000,,0.37804878,83.00000000,3.67256637,0.00000000,0.00000000,13.96000000 +4271,chr22,26008135,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,110.00000000,0.00000000,0.38000000,0.00000000,,0.40566038,106.00000000,4.69026549,0.00000000,0.00000000,13.76000000 +4272,chr22,26012268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,110.00000000,0.00000000,0.06000000,0.00000000,,0.38356164,73.00000000,3.23008850,0.00000000,0.00000000,15.63000000 +4273,chr22,26015530,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.40540541,74.00000000,3.27433628,0.00000000,0.00000000,8.60000000 +4274,chr22,26015578,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.54000000,0.00000000,,0.37037037,83.00000000,3.67256637,0.02409639,0.00000000,8.08000000 +4275,chr22,26024448,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.49000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.00000000,0.00000000,4.21000000 +4276,chr22,26025503,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.19000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +4277,chr22,26029724,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +4278,chr22,26050232,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,0.00000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,2.87000000 +4279,chr22,26050645,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.38000000 +4280,chr22,26050758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.11000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +4281,chr22,26057064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.38000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +4282,chr22,26059250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +4283,chr22,26059593,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.40000000,0.00000000,,0.30434783,94.00000000,4.15929204,0.02127660,0.00000000,6.25000000 +4284,chr22,26061818,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.20000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +4285,chr22,26064553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.52000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.72000000 +4286,chr22,26067501,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.34000000 +4287,chr22,26069300,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.19000000,0.00000000,,0.15714286,73.00000000,3.23008850,0.04109589,0.00000000,5.26000000 +4288,chr22,26077426,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,84.00000000,0.00000000,-0.38000000,0.00000000,,0.44117647,70.00000000,3.09734513,0.02857143,0.00000000,7.69000000 +4289,chr22,26078524,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.02898551,0.00000000,4.96000000 +4290,chr22,26159626,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.48000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.30000000 +4291,chr22,26182255,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,112.00000000,0.00000000,0.79000000,0.00000000,,0.37634409,93.00000000,4.11504425,0.00000000,0.00000000,15.44000000 +4292,chr22,26193786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,56.00000000,0.00000000,-0.92000000,0.00000000,,0.47191011,91.00000000,4.02654867,0.02197802,0.00000000,4.50000000 +4293,chr22,26216148,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,1.09000000,0.00000000,,0.45977011,91.00000000,4.02654867,0.03296703,0.00000000,7.67000000 +4294,chr22,26216450,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,-1.97000000,0.00000000,,0.50704225,71.00000000,3.14159292,0.00000000,0.00000000,3.79000000 +4295,chr22,26217192,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.37634409,94.00000000,4.15929204,0.01063830,0.00000000,8.62000000 +4296,chr22,26221083,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.25000000 +4297,chr22,26221294,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,7.68000000 +4298,chr22,26224278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.48000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.03000000 +4299,chr22,26224525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.12500000,97.00000000,4.29203540,0.01030928,0.00000000,5.08000000 +4300,chr22,26226618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,5.87000000 +4301,chr22,26228750,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.58000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.92000000 +4302,chr22,26229699,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.59000000 +4303,chr22,26231176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.07000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.35000000 +4304,chr22,26232023,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.25000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.64000000 +4305,chr22,26232139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-1.01000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.01587302,0.00000000,6.40000000 +4306,chr22,26232603,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.42000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.45000000 +4307,chr22,26233712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.14606742,94.00000000,4.15929204,0.05319149,0.00000000,5.41000000 +4308,chr22,26234053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.97000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,6.28000000 +4309,chr22,26234345,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,0.48000000,0.00000000,,0.25000000,103.00000000,4.55752212,0.00970874,0.00000000,6.51000000 +4310,chr22,26234489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,1.45000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.03157895,0.00000000,5.78000000 +4311,chr22,26234722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.46000000,0.00000000,,0.31707317,85.00000000,3.76106195,0.03529412,0.00000000,6.89000000 +4312,chr22,26237109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.22000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +4313,chr22,26237212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,1.75000000,0.00000000,,0.15384615,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +4314,chr22,26239582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,-1.12000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.00000000,5.91000000 +4315,chr22,26239873,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,1.51000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,4.94000000 +4316,chr22,26240359,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.18965517,60.00000000,2.65486726,0.03333333,0.00000000,6.64000000 +4317,chr22,26241290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.97000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.76000000 +4318,chr22,26242940,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.56000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +4319,chr22,26243002,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.20879121,94.00000000,4.15929204,0.03191489,0.00000000,6.33000000 +4320,chr22,26243151,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,1.41000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.90000000 +4321,chr22,26243639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.99000000,0.00000000,,0.16853933,91.00000000,4.02654867,0.01098901,0.00000000,5.83000000 +4322,chr22,26243841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.09000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.01470588,0.00000000,6.35000000 +4323,chr22,26244934,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.85000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.02500000,0.00000000,6.01000000 +4324,chr22,26245269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.06000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,7.01000000 +4325,chr22,26247560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.67000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.59000000 +4326,chr22,26247813,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,1.54000000,0.00000000,,0.14473684,80.00000000,3.53982301,0.03750000,0.00000000,5.39000000 +4327,chr22,26248662,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.01162791,0.00000000,6.09000000 +4328,chr22,26249827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,0.60000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,5.86000000 +4329,chr22,26249962,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.17000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.38000000 +4330,chr22,26250355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.54000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4331,chr22,26250584,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +4332,chr22,26250651,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.01000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +4333,chr22,26250799,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.37000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.35000000 +4334,chr22,26251357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.97000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.78000000 +4335,chr22,26251439,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,1.16000000,0.00000000,,0.15909091,91.00000000,4.02654867,0.03296703,0.00000000,4.89000000 +4336,chr22,26251762,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.76000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.36000000 +4337,chr22,26253480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,2.39000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.44000000 +4338,chr22,26253882,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.40000000,0.00000000,,0.29000000,100.00000000,4.42477876,0.00000000,0.00000000,6.76000000 +4339,chr22,26254403,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.74000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.03278689,0.00000000,4.53000000 +4340,chr22,26254639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.01282051,0.00000000,6.16000000 +4341,chr22,26254696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.90000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.47000000 +4342,chr22,26255583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,5.98000000 +4343,chr22,26255776,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.87000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,5.93000000 +4344,chr22,26255800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.12000000 +4345,chr22,26255863,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.67000000 +4346,chr22,26256157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.33000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,5.37000000 +4347,chr22,26256242,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.66000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.01176471,0.00000000,6.87000000 +4348,chr22,26256740,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,90.00000000,0.00000000,0.36000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.02325581,0.00000000,5.82000000 +4349,chr22,26256964,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.03000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +4350,chr22,26257648,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,1.53000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,5.91000000 +4351,chr22,26261813,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-2.16000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,2.86000000 +4352,chr22,26262333,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.42000000 +4353,chr22,26263635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-1.71000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.05000000 +4354,chr22,26264330,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,6.15000000 +4355,chr22,26264343,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.84000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.53000000 +4356,chr22,26265797,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,2.52000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.02531646,0.00000000,6.66000000 +4357,chr22,26266076,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.16000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.24000000 +4358,chr22,26278221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +4359,chr22,26284739,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.41000000,0.00000000,,0.44827586,89.00000000,3.93805310,0.02247191,0.00000000,7.53000000 +4360,chr22,26291186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,1.44000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,5.67000000 +4361,chr22,26291555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,2.62000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.28000000 +4362,chr22,26292326,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.06000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.85000000 +4363,chr22,26292865,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.05000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,5.99000000 +4364,chr22,26294035,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.39000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,7.29000000 +4365,chr22,26295999,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.28125000,68.00000000,3.00884956,0.05882353,0.00000000,6.09000000 +4366,chr22,26302786,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +4367,chr22,26305742,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.07000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,5.91000000 +4368,chr22,26305941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.62000000,0.00000000,,0.19767442,91.00000000,4.02654867,0.02197802,0.00000000,5.49000000 +4369,chr22,26323043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.83000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,5.87000000 +4370,chr22,26323045,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.83000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,5.87000000 +4371,chr22,26323525,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.11594203,74.00000000,3.27433628,0.05405405,0.00000000,5.00000000 +4372,chr22,26323710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,-0.39000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.35000000 +4373,chr22,26324233,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.85000000,0.00000000,,0.20618557,97.00000000,4.29203540,0.00000000,0.00000000,6.68000000 +4374,chr22,26326239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.67000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,6.11000000 +4375,chr22,26328595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.23863636,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +4376,chr22,26329023,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.44000000,0.00000000,,0.28125000,69.00000000,3.05309735,0.07246377,0.00000000,6.39000000 +4377,chr22,26329155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,5.89000000 +4378,chr22,26329160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.02702703,0.00000000,6.09000000 +4379,chr22,26329350,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +4380,chr22,26330079,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.14285714,98.00000000,4.33628319,0.00000000,0.00000000,5.89000000 +4381,chr22,26331163,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.14000000 +4382,chr22,26331419,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.09000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +4383,chr22,26331485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +4384,chr22,26332153,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,53.00000000,0.00000000,-1.34000000,0.00000000,,0.27659574,56.00000000,2.47787611,0.16071429,0.00000000,2.77000000 +4385,chr22,26333407,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.05000000,0.00000000,,0.50617284,82.00000000,3.62831858,0.01219512,0.00000000,8.62000000 +4386,chr22,26333613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.82000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.57000000 +4387,chr22,26335690,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,-1.11000000,0.00000000,,0.11111111,81.00000000,3.58407080,0.00000000,0.00000000,5.51000000 +4388,chr22,26336178,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,-0.19000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.69000000 +4389,chr22,26338591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.88000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.98000000 +4390,chr22,26339326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.67000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.94000000 +4391,chr22,26339666,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,5.91000000 +4392,chr22,26339847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.50000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +4393,chr22,26340846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +4394,chr22,26354395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.53000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +4395,chr22,26358282,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,0.50000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.37000000 +4396,chr22,26358439,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,5.87000000 +4397,chr22,26370807,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.41000000 +4398,chr22,26371174,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.49000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.83000000 +4399,chr22,26371301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +4400,chr22,26371877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-0.77000000,0.00000000,,0.15555556,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +4401,chr22,26372280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.70000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +4402,chr22,26372630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.41000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,6.71000000 +4403,chr22,26372810,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-0.06000000,0.00000000,,0.25806452,95.00000000,4.20353982,0.01052632,0.00000000,6.16000000 +4404,chr22,26373342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.30000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,5.36000000 +4405,chr22,26374910,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.38000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +4406,chr22,26378896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.53000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4407,chr22,26379391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.11000000,0.00000000,,0.20618557,97.00000000,4.29203540,0.00000000,0.00000000,6.46000000 +4408,chr22,26379398,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,6.76000000 +4409,chr22,26379543,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.54000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +4410,chr22,26379688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.39000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +4411,chr22,26380154,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.04545455,0.00000000,6.24000000 +4412,chr22,26381128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.88000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +4413,chr22,26381985,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.49000000 +4414,chr22,26382319,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,1.30000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.49000000 +4415,chr22,26382543,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +4416,chr22,26382781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.29591837,100.00000000,4.42477876,0.02000000,0.00000000,6.56000000 +4417,chr22,26383241,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.06000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.00000000,0.00000000,4.79000000 +4418,chr22,26383287,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.58000000,0.00000000,,0.23214286,57.00000000,2.52212389,0.01754386,0.00000000,7.11000000 +4419,chr22,26383679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,-0.12000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.04938272,0.00000000,5.99000000 +4420,chr22,26383841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.03000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.59000000 +4421,chr22,26384222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.64000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.65000000 +4422,chr22,26384275,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.80000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.00000000,0.00000000,6.69000000 +4423,chr22,26384367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,0.93000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.73000000 +4424,chr22,26384378,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.87000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +4425,chr22,26384427,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,-1.38000000,0.00000000,,0.17000000,100.00000000,4.42477876,0.00000000,0.00000000,6.50000000 +4426,chr22,26384790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,-0.56000000,0.00000000,,0.12941176,87.00000000,3.84955752,0.02298851,0.00000000,5.53000000 +4427,chr22,26384853,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,0.08000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.19000000 +4428,chr22,26384939,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,88.00000000,0.00000000,-0.70000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,5.71000000 +4429,chr22,26384953,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,77.00000000,0.00000000,0.08000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.02150538,0.00000000,6.02000000 +4430,chr22,26385332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,63.00000000,0.00000000,-0.10000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.06578947,0.00000000,5.40000000 +4431,chr22,26385358,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-0.41000000,0.00000000,,0.21333333,82.00000000,3.62831858,0.08536585,0.00000000,5.89000000 +4432,chr22,26385360,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,-1.00000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.06172840,0.00000000,5.92000000 +4433,chr22,26385362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.51000000,0.00000000,,0.21052632,83.00000000,3.67256637,0.07228916,0.00000000,5.98000000 +4434,chr22,26385579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +4435,chr22,26385697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.11000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.00000000,0.00000000,6.32000000 +4436,chr22,26385816,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.00000000,0.00000000,6.33000000 +4437,chr22,26386181,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.10000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.28000000 +4438,chr22,26386197,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,1.21000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +4439,chr22,26386457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.93000000,0.00000000,,0.13253012,83.00000000,3.67256637,0.00000000,0.00000000,5.22000000 +4440,chr22,26386695,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.60000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.02469136,0.00000000,4.73000000 +4441,chr22,26387013,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.22000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.11000000 +4442,chr22,26387164,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,6.11000000 +4443,chr22,26387572,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.56000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +4444,chr22,26387758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.11111111,67.00000000,2.96460177,0.05970149,0.00000000,4.94000000 +4445,chr22,26388209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,94.00000000,0.00000000,-0.09000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.08000000 +4446,chr22,26388318,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +4447,chr22,26388353,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,71.00000000,0.00000000,0.92000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.00000000,0.00000000,5.24000000 +4448,chr22,26388841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.38000000 +4449,chr22,26389355,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.34000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,2.96000000 +4450,chr22,26389375,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.12000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,7.02000000 +4451,chr22,26389523,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.98000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.02352941,0.00000000,6.59000000 +4452,chr22,26389616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.01428571,0.00000000,7.27000000 +4453,chr22,26389792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-2.31000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.73000000 +4454,chr22,26389900,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,1.12000000,0.00000000,,0.14516129,65.00000000,2.87610619,0.03076923,0.00000000,4.16000000 +4455,chr22,26390028,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,-1.99000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.07000000 +4456,chr22,26390556,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.67000000,0.00000000,,0.47058824,86.00000000,3.80530973,0.01162791,0.00000000,8.58000000 +4457,chr22,26390571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.47000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +4458,chr22,26391097,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.94000000 +4459,chr22,26391234,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.30000000 +4460,chr22,26391343,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.02000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.61000000 +4461,chr22,26392344,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.68000000,0.00000000,,0.19298246,59.00000000,2.61061947,0.01694915,0.00000000,5.51000000 +4462,chr22,26396677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.21818182,58.00000000,2.56637168,0.03448276,0.00000000,6.19000000 +4463,chr22,26409261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,0.94000000,0.00000000,,0.12121212,71.00000000,3.14159292,0.07042254,0.00000000,2.78000000 +4464,chr22,26429231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.14705882,0.00000000,64.00000000,0.00000000,-0.44000000,0.00000000,,0.14117647,96.00000000,4.24778761,0.11458333,0.00000000,4.97000000 +4465,chr22,26429808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,-2.52000000,0.00000000,,0.19318182,94.00000000,4.15929204,0.06382979,0.00000000,6.07000000 +4466,chr22,26429810,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-2.54000000,0.00000000,,0.18823529,93.00000000,4.11504425,0.08602151,0.00000000,6.07000000 +4467,chr22,26436252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.24000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.39000000 +4468,chr22,26444511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.09000000 +4469,chr22,26445313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,0.76000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.33000000 +4470,chr22,26445553,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.10000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.23000000 +4471,chr22,26450338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.29166667,73.00000000,3.23008850,0.01369863,0.00000000,6.14000000 +4472,chr22,26465755,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.71000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,7.31000000 +4473,chr22,26466075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.78000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +4474,chr22,26481497,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +4475,chr22,26500449,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,72.00000000,0.00000000,0.64000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.40000000 +4476,chr22,26523805,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +4477,chr22,26526728,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.84000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +4478,chr22,26527189,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.11000000,0.00000000,,0.29113924,82.00000000,3.62831858,0.03658537,0.00000000,6.31000000 +4479,chr22,26527376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,0.98000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.00000000 +4480,chr22,26529987,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.03529412,0.00000000,6.01000000 +4481,chr22,26532169,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.82000000,0.00000000,,0.25287356,90.00000000,3.98230088,0.03333333,0.00000000,6.29000000 +4482,chr22,26533271,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.69000000 +4483,chr22,26571534,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.54000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.49000000 +4484,chr22,26576212,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,13.00000000,0.00000000,-0.47000000,0.00000000,,0.48214286,56.00000000,2.47787611,0.00000000,0.00000000,3.87000000 +4485,chr22,26577296,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.48000000,0.00000000,,0.22916667,56.00000000,2.47787611,0.12500000,0.00000000,5.91000000 +4486,chr22,26577808,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.15000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.95000000 +4487,chr22,26579103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.14000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.02380952,0.00000000,6.18000000 +4488,chr22,26579132,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.47619048,87.00000000,3.84955752,0.03448276,0.00000000,8.29000000 +4489,chr22,26580404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.89000000,0.00000000,,0.17977528,93.00000000,4.11504425,0.04301075,0.00000000,6.12000000 +4490,chr22,26580580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.17204301,96.00000000,4.24778761,0.02083333,0.00000000,6.03000000 +4491,chr22,26580806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,5.84000000 +4492,chr22,26581287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.39000000 +4493,chr22,26581871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-2.88000000,0.00000000,,0.20588235,104.00000000,4.60176991,0.01923077,0.00000000,6.68000000 +4494,chr22,26582376,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.69000000 +4495,chr22,26582412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.51000000 +4496,chr22,26582423,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.73000000 +4497,chr22,26582883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.07000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.29000000 +4498,chr22,26583205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,1.42000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,5.92000000 +4499,chr22,26583784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.05555556,0.00000000,5.79000000 +4500,chr22,26584579,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-2.27000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.70000000 +4501,chr22,26585075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.31000000 +4502,chr22,26585276,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.10000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +4503,chr22,26585698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.55000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,6.48000000 +4504,chr22,26585838,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.04545455,0.00000000,6.62000000 +4505,chr22,26585977,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.03030303,0.00000000,5.08000000 +4506,chr22,26586102,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.86000000 +4507,chr22,26586395,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.56000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,5.67000000 +4508,chr22,26586823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.29000000,0.00000000,,0.18181818,93.00000000,4.11504425,0.04301075,0.00000000,6.38000000 +4509,chr22,26587323,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.65000000,0.00000000,,0.26229508,62.00000000,2.74336283,0.01612903,0.00000000,6.35000000 +4510,chr22,26588672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,1.04000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.21000000 +4511,chr22,26590862,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-2.03000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.14000000 +4512,chr22,26596256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.11000000 +4513,chr22,26600003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.22972973,77.00000000,3.40707965,0.03896104,0.00000000,5.65000000 +4514,chr22,26601164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.26000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.15000000 +4515,chr22,26601305,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.75000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.00000000 +4516,chr22,26605751,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,2.65000000,0.00000000,,0.20512821,87.00000000,3.84955752,0.10344828,0.00000000,5.69000000 +4517,chr22,26606259,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.34000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.55000000 +4518,chr22,26607532,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,0.30000000,0.00000000,,0.26153846,72.00000000,3.18584071,0.09722222,0.00000000,5.65000000 +4519,chr22,26610225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.72000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,2.87000000 +4520,chr22,26610344,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +4521,chr22,26613669,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-1.44000000,0.00000000,,0.16666667,98.00000000,4.33628319,0.02040816,0.00000000,5.57000000 +4522,chr22,26614273,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.33000000,0.00000000,,0.11250000,80.00000000,3.53982301,0.00000000,0.00000000,5.10000000 +4523,chr22,26615496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,5.54000000 +4524,chr22,26618503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.18000000 +4525,chr22,26621336,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.12000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.32000000 +4526,chr22,26621471,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-0.17000000,0.00000000,,0.22115385,106.00000000,4.69026549,0.01886792,0.00000000,5.98000000 +4527,chr22,26623164,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.19000000,101.00000000,4.46902655,0.00990099,0.00000000,5.94000000 +4528,chr22,26624047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.95000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +4529,chr22,26624871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.65000000 +4530,chr22,26631950,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.74000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4531,chr22,26632485,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.52000000 +4532,chr22,26633581,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.81000000,0.00000000,,0.46969697,67.00000000,2.96460177,0.01492537,0.00000000,8.33000000 +4533,chr22,26634987,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +4534,chr22,26635034,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.50000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +4535,chr22,26637357,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.31000000 +4536,chr22,26637450,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.79000000,0.00000000,,0.52112676,72.00000000,3.18584071,0.01388889,0.00000000,4.48000000 +4537,chr22,26638374,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.54000000,0.00000000,,0.12903226,68.00000000,3.00884956,0.08823529,0.00000000,4.55000000 +4538,chr22,26638410,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.92000000,0.00000000,,0.30769231,67.00000000,2.96460177,0.02985075,0.00000000,6.05000000 +4539,chr22,26639301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,58.00000000,0.00000000,-1.02000000,0.00000000,,0.17647059,93.00000000,4.11504425,0.06451613,0.00000000,3.97000000 +4540,chr22,26641724,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.51000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.99000000 +4541,chr22,26641955,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,-0.15000000,0.00000000,,0.34615385,63.00000000,2.78761062,0.12698413,0.00000000,4.94000000 +4542,chr22,26642335,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,1.32000000,0.00000000,,0.16393443,67.00000000,2.96460177,0.08955224,0.00000000,4.74000000 +4543,chr22,26647847,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.30645161,68.00000000,3.00884956,0.08823529,0.00000000,6.29000000 +4544,chr22,26649934,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.88000000,0.00000000,,0.16831683,102.00000000,4.51327434,0.00980392,0.00000000,6.53000000 +4545,chr22,26650721,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.00000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.02298851,0.00000000,5.99000000 +4546,chr22,26652043,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,48.00000000,0.00000000,0.04000000,0.00000000,,0.38666667,75.00000000,3.31858407,0.00000000,0.00000000,4.36000000 +4547,chr22,26653047,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.18000000,0.00000000,,0.52380952,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +4548,chr22,26654015,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,102.00000000,0.00000000,0.45000000,0.00000000,,0.37288136,59.00000000,2.61061947,0.00000000,0.00000000,13.76000000 +4549,chr22,26656370,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-2.19000000,0.00000000,,0.42028986,74.00000000,3.27433628,0.06756757,0.00000000,4.37000000 +4550,chr22,26657156,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-2.18000000,0.00000000,,0.38554217,83.00000000,3.67256637,0.00000000,0.00000000,8.95000000 +4551,chr22,26657315,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +4552,chr22,26659025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,1.48000000,0.00000000,,0.18446602,105.00000000,4.64601770,0.00952381,0.00000000,6.61000000 +4553,chr22,26660554,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,1.42000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,5.75000000 +4554,chr22,26661475,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.77000000,0.00000000,,0.23214286,57.00000000,2.52212389,0.00000000,0.00000000,7.04000000 +4555,chr22,26666965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,59.00000000,0.00000000,0.24000000,0.00000000,,0.15254237,62.00000000,2.74336283,0.03225806,0.00000000,3.92000000 +4556,chr22,26669405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.83000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.68000000 +4557,chr22,26670771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.21000000,0.00000000,,0.11688312,79.00000000,3.49557522,0.02531646,0.00000000,4.93000000 +4558,chr22,26672739,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,6.16000000 +4559,chr22,26673035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.26000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +4560,chr22,26673594,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.82000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.95000000 +4561,chr22,26674341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +4562,chr22,26678340,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-2.06000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.58000000 +4563,chr22,26679318,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +4564,chr22,26680070,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.60000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.48000000 +4565,chr22,26681111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.96000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,6.08000000 +4566,chr22,26694216,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.61000000 +4567,chr22,26695787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.94000000 +4568,chr22,26697239,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.56000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +4569,chr22,26697545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.64000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +4570,chr22,26698825,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,7.12000000 +4571,chr22,26699747,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-1.21000000,0.00000000,,0.16666667,99.00000000,4.38053097,0.03030303,0.00000000,5.57000000 +4572,chr22,26699809,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.77000000 +4573,chr22,26700035,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.54000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +4574,chr22,26700930,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.55000000,0.00000000,,0.24000000,105.00000000,4.64601770,0.04761905,0.00000000,5.76000000 +4575,chr22,26701879,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-2.23000000,0.00000000,,0.31250000,98.00000000,4.33628319,0.01020408,0.00000000,8.42000000 +4576,chr22,26704599,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.02000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.28000000 +4577,chr22,26704949,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,79.00000000,0.00000000,-1.55000000,0.00000000,,0.17171717,100.00000000,4.42477876,0.01000000,0.00000000,5.25000000 +4578,chr22,26708477,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.27000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +4579,chr22,26711581,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.25000000 +4580,chr22,26713512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.34000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.12000000 +4581,chr22,26714296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.54000000 +4582,chr22,26714423,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.29000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +4583,chr22,26715358,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,82.00000000,0.00000000,0.21000000,0.00000000,,0.18556701,98.00000000,4.33628319,0.00000000,0.00000000,6.07000000 +4584,chr22,26716005,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.83000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +4585,chr22,26717133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.37000000 +4586,chr22,26724197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.72000000 +4587,chr22,26757283,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,-0.14000000,0.00000000,,0.16853933,91.00000000,4.02654867,0.02197802,0.00000000,6.23000000 +4588,chr22,26765958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.62000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,7.15000000 +4589,chr22,26766944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.29000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.40000000 +4590,chr22,26767327,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,1.51000000,0.00000000,,0.35526316,76.00000000,3.36283186,0.00000000,0.00000000,8.30000000 +4591,chr22,26767719,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,92.00000000,0.00000000,-1.05000000,0.00000000,,0.30952381,86.00000000,3.80530973,0.02325581,0.00000000,6.17000000 +4592,chr22,26767843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.73000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.56000000 +4593,chr22,26771385,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.72000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,5.87000000 +4594,chr22,26771485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.22000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.89000000 +4595,chr22,26774843,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.79000000,0.00000000,,0.21276596,94.00000000,4.15929204,0.00000000,0.00000000,6.97000000 +4596,chr22,26775738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +4597,chr22,26777571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +4598,chr22,26778036,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,4.89000000 +4599,chr22,26779075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +4600,chr22,26781782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,5.89000000 +4601,chr22,26783530,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.68000000,0.00000000,,0.23404255,95.00000000,4.20353982,0.01052632,0.00000000,6.52000000 +4602,chr22,26786576,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.00000000,0.00000000,8.82000000 +4603,chr22,26787528,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.22000000,0.00000000,,0.40206186,100.00000000,4.42477876,0.02000000,0.00000000,8.25000000 +4604,chr22,26788206,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.67000000,0.00000000,,0.42682927,82.00000000,3.62831858,0.00000000,0.00000000,8.24000000 +4605,chr22,26789992,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.44285714,70.00000000,3.09734513,0.00000000,0.00000000,8.56000000 +4606,chr22,26790148,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.52000000,0.00000000,,0.47142857,71.00000000,3.14159292,0.01408451,0.00000000,8.42000000 +4607,chr22,26790250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,1.49000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.09000000 +4608,chr22,26790358,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,0.21000000,0.00000000,,0.37647059,86.00000000,3.80530973,0.01162791,0.00000000,8.43000000 +4609,chr22,26790392,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,0.67000000,0.00000000,,0.40404040,100.00000000,4.42477876,0.01000000,0.00000000,8.45000000 +4610,chr22,26790752,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.44444444,63.00000000,2.78761062,0.00000000,0.00000000,8.61000000 +4611,chr22,26791742,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,8.52000000 +4612,chr22,26794771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.07000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.70000000 +4613,chr22,26796438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.20000000,0.00000000,,0.12195122,86.00000000,3.80530973,0.02325581,0.00000000,5.11000000 +4614,chr22,26796497,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,-0.13000000,0.00000000,,0.10769231,67.00000000,2.96460177,0.02985075,0.00000000,4.98000000 +4615,chr22,26796900,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.12000000,0.00000000,,0.32857143,72.00000000,3.18584071,0.01388889,0.00000000,4.44000000 +4616,chr22,26797867,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.52000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.30000000 +4617,chr22,26798124,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.67000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.67000000 +4618,chr22,26798794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,2.16000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.02127660,0.00000000,5.61000000 +4619,chr22,26814489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.32000000,0.00000000,,0.18750000,96.00000000,4.24778761,0.00000000,0.00000000,6.30000000 +4620,chr22,26815300,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.96000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.00000000,0.00000000,6.46000000 +4621,chr22,26815539,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.93000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +4622,chr22,26830444,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.13000000,0.00000000,,0.47272727,56.00000000,2.47787611,0.01785714,0.00000000,4.22000000 +4623,chr22,26830595,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,8.35000000 +4624,chr22,26831491,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,58.00000000,0.00000000,-0.01000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,6.30000000 +4625,chr22,26832947,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,0.85000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,8.22000000 +4626,chr22,26833014,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,0.23000000,0.00000000,,0.44736842,81.00000000,3.58407080,0.04938272,0.00000000,7.99000000 +4627,chr22,26833383,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.48717949,79.00000000,3.49557522,0.01265823,0.00000000,8.41000000 +4628,chr22,26834014,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,1.47000000,0.00000000,,0.41860465,92.00000000,4.07079646,0.06521739,0.00000000,8.09000000 +4629,chr22,26834417,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.01136364,0.00000000,8.94000000 +4630,chr22,26834423,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.85000000,0.00000000,,0.38823529,86.00000000,3.80530973,0.01162791,0.00000000,8.93000000 +4631,chr22,26835167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.49000000 +4632,chr22,26835440,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.01111111,0.00000000,7.81000000 +4633,chr22,26835670,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.37000000,0.00000000,,0.47126437,94.00000000,4.15929204,0.04255319,0.00000000,8.26000000 +4634,chr22,26838208,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.78000000,0.00000000,,0.41558442,79.00000000,3.49557522,0.01265823,0.00000000,8.57000000 +4635,chr22,26838459,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,38.00000000,0.00000000,-0.07000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,3.70000000 +4636,chr22,26847702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.17000000 +4637,chr22,26847956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.55000000 +4638,chr22,26848722,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.67000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.25000000 +4639,chr22,26848913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.40000000 +4640,chr22,26849174,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.06000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.62000000 +4641,chr22,26849379,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.30508475,61.00000000,2.69911504,0.03278689,0.00000000,6.65000000 +4642,chr22,26850107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,6.58000000 +4643,chr22,26850574,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.23170732,93.00000000,4.11504425,0.11827957,0.00000000,6.03000000 +4644,chr22,26852062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.70000000 +4645,chr22,26853921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.37000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.51000000 +4646,chr22,26855018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,104.00000000,4.60176991,0.00000000,0.00000000,6.43000000 +4647,chr22,26855404,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.20000000 +4648,chr22,26855565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.72000000 +4649,chr22,26856880,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.62000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.16000000 +4650,chr22,26857057,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.16000000,78.00000000,3.45132743,0.03846154,0.00000000,5.54000000 +4651,chr22,26857380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.91000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,5.98000000 +4652,chr22,26857597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +4653,chr22,26859185,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,1.23000000,0.00000000,,0.12345679,83.00000000,3.67256637,0.02409639,0.00000000,4.84000000 +4654,chr22,26859450,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.21000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +4655,chr22,26859727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +4656,chr22,26859972,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.24000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,3.02000000 +4657,chr22,26860117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.55000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.86000000 +4658,chr22,26860332,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.20000000,0.00000000,,0.21276596,98.00000000,4.33628319,0.03061224,0.00000000,6.20000000 +4659,chr22,26860579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,60.00000000,0.00000000,-0.35000000,0.00000000,,0.12222222,91.00000000,4.02654867,0.01098901,0.00000000,4.73000000 +4660,chr22,26860625,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.94000000 +4661,chr22,26860965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.26000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.97000000 +4662,chr22,26860979,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.19000000,0.00000000,,0.14084507,74.00000000,3.27433628,0.04054054,0.00000000,3.59000000 +4663,chr22,26861257,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.61000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.90000000 +4664,chr22,26861448,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-2.45000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.59000000 +4665,chr22,26862690,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.19000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.03571429,0.00000000,5.80000000 +4666,chr22,26863116,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +4667,chr22,26863621,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.72000000,0.00000000,,0.23809524,67.00000000,2.96460177,0.05970149,0.00000000,6.12000000 +4668,chr22,26864676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.50000000 +4669,chr22,26864720,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,0.15000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.03000000 +4670,chr22,26865086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,-1.12000000,0.00000000,,0.26213592,103.00000000,4.55752212,0.00000000,0.00000000,7.07000000 +4671,chr22,26868923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.36000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.01562500,0.00000000,5.56000000 +4672,chr22,26871648,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,0.28000000,0.00000000,,0.25274725,93.00000000,4.11504425,0.02150538,0.00000000,6.25000000 +4673,chr22,26873286,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,82.00000000,0.00000000,-1.49000000,0.00000000,,0.18556701,97.00000000,4.29203540,0.00000000,0.00000000,5.99000000 +4674,chr22,26873287,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,82.00000000,0.00000000,-1.13000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,5.74000000 +4675,chr22,26876432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,67.00000000,0.00000000,-1.69000000,0.00000000,,0.29292929,114.00000000,5.04424779,0.11403509,0.00000000,5.74000000 +4676,chr22,26877101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.52000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,5.04000000 +4677,chr22,26877133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-1.16000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.12000000 +4678,chr22,26878482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.35000000 +4679,chr22,26878612,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.31000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,6.83000000 +4680,chr22,26878935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.08000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.89000000 +4681,chr22,26879813,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.85000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.67000000 +4682,chr22,26880271,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.03750000,0.00000000,6.30000000 +4683,chr22,26880332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.82000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.36000000 +4684,chr22,26880489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.40000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.37000000 +4685,chr22,26882651,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +4686,chr22,26883739,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-1.13000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.00000000,0.00000000,7.03000000 +4687,chr22,26885517,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.46000000,0.00000000,,0.15662651,85.00000000,3.76106195,0.02352941,0.00000000,5.96000000 +4688,chr22,26897332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.31000000 +4689,chr22,26904121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.95000000,0.00000000,,0.12000000,80.00000000,3.53982301,0.06250000,0.00000000,5.07000000 +4690,chr22,26905174,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,2.57000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,5.62000000 +4691,chr22,26905515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,1.42000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,4.31000000 +4692,chr22,26905968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.01315789,0.00000000,5.23000000 +4693,chr22,26906163,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.31000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +4694,chr22,26906668,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.90000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.75000000 +4695,chr22,26907182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,2.39000000,0.00000000,,0.25000000,103.00000000,4.55752212,0.02912621,0.00000000,6.08000000 +4696,chr22,26907598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.15000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,5.81000000 +4697,chr22,26907792,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.36000000,0.00000000,,0.29885057,93.00000000,4.11504425,0.06451613,0.00000000,6.23000000 +4698,chr22,26908016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.29000000,0.00000000,,0.34375000,72.00000000,3.18584071,0.11111111,0.00000000,7.83000000 +4699,chr22,26908431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.70000000,0.00000000,,0.28985507,70.00000000,3.09734513,0.01428571,0.00000000,5.94000000 +4700,chr22,26908532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.30000000 +4701,chr22,26908709,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.41000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +4702,chr22,26908772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.27000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,6.48000000 +4703,chr22,26908970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.45000000 +4704,chr22,26909217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,-0.87000000,0.00000000,,0.26530612,99.00000000,4.38053097,0.01010101,0.00000000,6.22000000 +4705,chr22,26909599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.71000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +4706,chr22,26909818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,2.01000000,0.00000000,,0.24509804,102.00000000,4.51327434,0.00000000,0.00000000,5.89000000 +4707,chr22,26911759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.92000000 +4708,chr22,26913527,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.44000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.61000000 +4709,chr22,26932168,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.48000000,0.00000000,,0.22916667,99.00000000,4.38053097,0.02020202,0.00000000,6.30000000 +4710,chr22,26938615,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.91000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.02325581,0.00000000,5.89000000 +4711,chr22,26940784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,91.00000000,0.00000000,0.30000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,5.44000000 +4712,chr22,26941085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.62000000,0.00000000,,0.23636364,57.00000000,2.52212389,0.03508772,0.00000000,6.60000000 +4713,chr22,26942478,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.08000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.22000000 +4714,chr22,26942856,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.73000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +4715,chr22,26943251,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,1.18000000,0.00000000,,0.20689655,62.00000000,2.74336283,0.06451613,0.00000000,5.58000000 +4716,chr22,26952718,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.37000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +4717,chr22,26954203,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,78.00000000,0.00000000,0.02000000,0.00000000,,0.24096386,92.00000000,4.07079646,0.09782609,0.00000000,5.73000000 +4718,chr22,26954401,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.01000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +4719,chr22,26959196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-1.13000000,0.00000000,,0.10309278,97.00000000,4.29203540,0.00000000,0.00000000,5.53000000 +4720,chr22,26959385,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.02000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.71000000 +4721,chr22,26964199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.95000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,6.62000000 +4722,chr22,26965001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,94.00000000,0.00000000,0.13000000,0.00000000,,0.29787234,94.00000000,4.15929204,0.00000000,0.00000000,5.57000000 +4723,chr22,26966185,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.27000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,5.85000000 +4724,chr22,26966271,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +4725,chr22,26966804,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.25000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.34000000 +4726,chr22,26967669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,1.43000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,5.94000000 +4727,chr22,26977373,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.36000000 +4728,chr22,26977599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,72.00000000,0.00000000,1.21000000,0.00000000,,0.13861386,103.00000000,4.55752212,0.00970874,0.00000000,5.16000000 +4729,chr22,26979566,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,0.60000000,0.00000000,,0.37704918,64.00000000,2.83185841,0.04687500,0.00000000,6.92000000 +4730,chr22,26980080,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,0.92000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.93000000 +4731,chr22,26980627,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +4732,chr22,26980947,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.82000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4733,chr22,26980998,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.69000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4734,chr22,26981506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.01000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.66000000 +4735,chr22,26981606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.73000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +4736,chr22,26982368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.54000000 +4737,chr22,26982921,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.91000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.02816901,0.00000000,6.20000000 +4738,chr22,26984498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-0.16000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +4739,chr22,26984767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.49000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.20000000 +4740,chr22,26985426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.13000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.64000000 +4741,chr22,26985874,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,2.01000000,0.00000000,,0.09722222,73.00000000,3.23008850,0.01369863,0.00000000,4.81000000 +4742,chr22,26986169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.76000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +4743,chr22,26987652,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,0.34000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +4744,chr22,26987923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,-0.72000000,0.00000000,,0.21000000,103.00000000,4.55752212,0.02912621,0.00000000,6.10000000 +4745,chr22,26988602,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.00000000,0.00000000,,0.18478261,97.00000000,4.29203540,0.03092784,0.00000000,6.04000000 +4746,chr22,26991097,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,6.25000000 +4747,chr22,26993867,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.58000000,0.00000000,,0.23170732,91.00000000,4.02654867,0.09890110,0.00000000,6.06000000 +4748,chr22,26994868,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.86000000,0.00000000,,0.24038462,107.00000000,4.73451327,0.02803738,0.00000000,6.24000000 +4749,chr22,26995517,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.37000000 +4750,chr22,26996111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,1.46000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,5.74000000 +4751,chr22,26996302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.02469136,0.00000000,4.88000000 +4752,chr22,26996309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.89000000,0.00000000,,0.11250000,82.00000000,3.62831858,0.02439024,0.00000000,4.76000000 +4753,chr22,26997418,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.42000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.86000000 +4754,chr22,26997886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.38000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.46000000 +4755,chr22,26997987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.29000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.93000000 +4756,chr22,26998880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.05000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +4757,chr22,26999133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.01639344,0.00000000,5.38000000 +4758,chr22,26999263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,5.13000000 +4759,chr22,26999307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.96000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.08000000 +4760,chr22,26999646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.15000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.92000000 +4761,chr22,27000323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.34000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.96000000 +4762,chr22,27007749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.68000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +4763,chr22,27008728,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.22727273,70.00000000,3.09734513,0.04285714,0.00000000,6.21000000 +4764,chr22,27009395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.89000000 +4765,chr22,27010742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.49000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,5.99000000 +4766,chr22,27010949,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-1.51000000,0.00000000,,0.30666667,77.00000000,3.40707965,0.02597403,0.00000000,6.34000000 +4767,chr22,27013726,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,56.00000000,0.00000000,0.52000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.07692308,0.00000000,2.94000000 +4768,chr22,27019050,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,5.72000000 +4769,chr22,27019377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,-1.65000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.76000000 +4770,chr22,27020680,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +4771,chr22,27025880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,0.86000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.18000000 +4772,chr22,27029827,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.77000000,0.00000000,,0.48648649,74.00000000,3.27433628,0.00000000,0.00000000,8.95000000 +4773,chr22,27082695,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.35000000,0.00000000,,0.26373626,92.00000000,4.07079646,0.01086957,0.00000000,5.98000000 +4774,chr22,27096373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.70000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +4775,chr22,27102885,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.31000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.87000000 +4776,chr22,27139269,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,1.43000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,2.77000000 +4777,chr22,27139476,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.31000000,0.00000000,,0.26666667,61.00000000,2.69911504,0.01639344,0.00000000,6.00000000 +4778,chr22,27139610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.91000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.01000000 +4779,chr22,27141541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.66000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +4780,chr22,27158668,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.10000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.03896104,0.00000000,6.08000000 +4781,chr22,27161967,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.68000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,8.93000000 +4782,chr22,27163450,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,50.00000000,0.00000000,-0.42000000,0.00000000,,0.48571429,75.00000000,3.31858407,0.04000000,0.00000000,4.34000000 +4783,chr22,27166948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.31666667,62.00000000,2.74336283,0.03225806,0.00000000,7.33000000 +4784,chr22,27175324,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.17000000 +4785,chr22,27197006,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.21000000,0.00000000,,0.12280702,57.00000000,2.52212389,0.00000000,0.00000000,4.99000000 +4786,chr22,27226684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,-1.36000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +4787,chr22,27226922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.91000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.01075269,0.00000000,6.97000000 +4788,chr22,27226946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.47000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.93000000 +4789,chr22,27227528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.96000000 +4790,chr22,27230944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.10000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.69000000 +4791,chr22,27231455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.17000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +4792,chr22,27232767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +4793,chr22,27234797,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.32000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.01388889,0.00000000,6.49000000 +4794,chr22,27235738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.00000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.56000000 +4795,chr22,27236635,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.15000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.62000000 +4796,chr22,27238338,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.17000000 +4797,chr22,27238838,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.15000000 +4798,chr22,27239302,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.02000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,7.05000000 +4799,chr22,27240177,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,5.53000000 +4800,chr22,27240185,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.65000000,0.00000000,,0.14754098,63.00000000,2.78761062,0.03174603,0.00000000,5.48000000 +4801,chr22,27245365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.02000000 +4802,chr22,27246957,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.15000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.39000000 +4803,chr22,27249931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.30000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.89000000 +4804,chr22,27251104,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.41000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +4805,chr22,27251328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,5.95000000 +4806,chr22,27252311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4807,chr22,27258877,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.47000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.70000000 +4808,chr22,27259519,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.25000000,0.00000000,,0.29213483,91.00000000,4.02654867,0.02197802,0.00000000,6.72000000 +4809,chr22,27259984,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.93000000 +4810,chr22,27262363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,1.29000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.17000000 +4811,chr22,27263782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.15000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.06000000 +4812,chr22,27266376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-2.07000000,0.00000000,,0.14705882,68.00000000,3.00884956,0.00000000,0.00000000,5.21000000 +4813,chr22,27266674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.98000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.01449275,0.00000000,6.55000000 +4814,chr22,27266876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +4815,chr22,27266973,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.22000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.26000000 +4816,chr22,27267205,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.35000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.31000000 +4817,chr22,27268378,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,58.00000000,0.00000000,-1.40000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,4.72000000 +4818,chr22,27269341,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.25000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.22000000 +4819,chr22,27270737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-0.46000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,5.95000000 +4820,chr22,27270779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19230769,53.00000000,2.34513274,0.01886792,0.00000000,5.73000000 +4821,chr22,27272548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,92.00000000,0.00000000,-0.72000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,5.08000000 +4822,chr22,27273098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,1.48000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,6.41000000 +4823,chr22,27273198,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +4824,chr22,27275121,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +4825,chr22,27275277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,1.38000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,5.69000000 +4826,chr22,27275557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.02531646,0.00000000,6.10000000 +4827,chr22,27275575,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.79000000 +4828,chr22,27275576,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.79000000 +4829,chr22,27275731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.18000000,0.00000000,,0.19101124,94.00000000,4.15929204,0.04255319,0.00000000,6.27000000 +4830,chr22,27276639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,-0.13000000,0.00000000,,0.35365854,84.00000000,3.71681416,0.01190476,0.00000000,6.38000000 +4831,chr22,27276836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,92.00000000,0.00000000,-0.92000000,0.00000000,,0.22916667,96.00000000,4.24778761,0.00000000,0.00000000,5.54000000 +4832,chr22,27276849,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,95.00000000,0.00000000,-1.37000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,5.79000000 +4833,chr22,27277219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.58000000 +4834,chr22,27277882,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.19000000 +4835,chr22,27277904,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,0.32000000,0.00000000,,0.19047619,88.00000000,3.89380531,0.03409091,0.00000000,5.71000000 +4836,chr22,27278332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.37000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.95000000 +4837,chr22,27289708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,1.71000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,3.06000000 +4838,chr22,27319973,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.76000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.97000000 +4839,chr22,27322814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.63000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +4840,chr22,27323234,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +4841,chr22,27327098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,84.00000000,0.00000000,0.12000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.03488372,0.00000000,5.83000000 +4842,chr22,27329801,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.07000000 +4843,chr22,27330953,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.41000000 +4844,chr22,27330986,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.22000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,5.86000000 +4845,chr22,27331145,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.75000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.30000000 +4846,chr22,27332444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,62.00000000,0.00000000,0.64000000,0.00000000,,0.08571429,75.00000000,3.31858407,0.06666667,0.00000000,4.54000000 +4847,chr22,27333116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +4848,chr22,27333219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,7.01000000 +4849,chr22,27333473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-1.32000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.01162791,0.00000000,6.68000000 +4850,chr22,27334243,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,0.33000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,5.98000000 +4851,chr22,27334393,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.68000000 +4852,chr22,27334895,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.21000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +4853,chr22,27336703,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.92000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,7.44000000 +4854,chr22,27337028,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +4855,chr22,27338389,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.72000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +4856,chr22,27338444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.66000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +4857,chr22,27338855,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.56000000 +4858,chr22,27338996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.01000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4859,chr22,27339307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.91000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.31000000 +4860,chr22,27339614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,73.00000000,0.00000000,-0.58000000,0.00000000,,0.16470588,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +4861,chr22,27340664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.26000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.89000000 +4862,chr22,27340807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,-0.81000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.03750000,0.00000000,5.66000000 +4863,chr22,27341063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.09000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.87000000 +4864,chr22,27341196,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.95000000 +4865,chr22,27341293,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.86000000 +4866,chr22,27341613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.25742574,101.00000000,4.46902655,0.00000000,0.00000000,6.41000000 +4867,chr22,27344585,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.14141414,103.00000000,4.55752212,0.03883495,0.00000000,4.92000000 +4868,chr22,27344638,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.66000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +4869,chr22,27344882,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.07000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.57000000 +4870,chr22,27345486,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.13000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +4871,chr22,27345493,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.31000000 +4872,chr22,27345811,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.04000000,0.00000000,,0.23404255,95.00000000,4.20353982,0.01052632,0.00000000,6.49000000 +4873,chr22,27348038,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-1.67000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +4874,chr22,27348647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.82000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +4875,chr22,27348998,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.04000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +4876,chr22,27349647,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.15000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.84000000 +4877,chr22,27350678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.88000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,6.17000000 +4878,chr22,27350945,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,2.62000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,6.25000000 +4879,chr22,27351163,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.40000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +4880,chr22,27351290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.18390805,94.00000000,4.15929204,0.06382979,0.00000000,5.82000000 +4881,chr22,27351309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,5.95000000 +4882,chr22,27351342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,5.93000000 +4883,chr22,27351546,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.03947368,0.00000000,6.21000000 +4884,chr22,27351619,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,0.00000000,1.58000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.39000000 +4885,chr22,27352781,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.53000000,0.00000000,,0.24000000,79.00000000,3.49557522,0.01265823,0.00000000,6.54000000 +4886,chr22,27352792,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.35000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +4887,chr22,27352813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.53000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,3.85000000 +4888,chr22,27353417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.70000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.00000000,0.00000000,6.43000000 +4889,chr22,27353531,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.66000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +4890,chr22,27353559,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.92000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.01282051,0.00000000,6.48000000 +4891,chr22,27353654,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,83.00000000,0.00000000,0.92000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,5.85000000 +4892,chr22,27354447,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.25000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,5.67000000 +4893,chr22,27354464,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,1.49000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,5.79000000 +4894,chr22,27354896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.13000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.80000000 +4895,chr22,27355022,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.11000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +4896,chr22,27355194,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.95000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,3.22000000 +4897,chr22,27355266,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +4898,chr22,27355316,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,48.00000000,0.00000000,0.50000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,2.76000000 +4899,chr22,27355474,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.14000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,6.66000000 +4900,chr22,27355493,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-0.17000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.24000000 +4901,chr22,27355559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.83000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.75000000 +4902,chr22,27355615,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,74.00000000,0.00000000,-0.20000000,0.00000000,,0.16842105,99.00000000,4.38053097,0.04040404,0.00000000,5.59000000 +4903,chr22,27355618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.15306122,102.00000000,4.51327434,0.03921569,0.00000000,5.25000000 +4904,chr22,27356123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.43000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.17000000 +4905,chr22,27356822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.84000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,6.28000000 +4906,chr22,27358177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +4907,chr22,27358813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.78000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.29000000 +4908,chr22,27359945,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,91.00000000,0.00000000,-1.13000000,0.00000000,,0.38043478,93.00000000,4.11504425,0.01075269,0.00000000,8.36000000 +4909,chr22,27360118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-0.58000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.02150538,0.00000000,6.25000000 +4910,chr22,27360174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,0.56000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,5.85000000 +4911,chr22,27360339,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,0.99000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.52000000 +4912,chr22,27360478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,-0.14000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.01010101,0.00000000,5.93000000 +4913,chr22,27360552,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,88.00000000,0.00000000,-0.52000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.18000000 +4914,chr22,27361153,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.23000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.62000000 +4915,chr22,27362137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.66000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.66000000 +4916,chr22,27362239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.38000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.23000000 +4917,chr22,27362352,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-0.01000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.56000000 +4918,chr22,27362529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,77.00000000,0.00000000,-1.21000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00961538,0.00000000,4.99000000 +4919,chr22,27362745,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-1.04000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +4920,chr22,27362880,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,2.07000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.00000000,0.00000000,6.45000000 +4921,chr22,27362930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.39000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,6.24000000 +4922,chr22,27362933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.39000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,5.71000000 +4923,chr22,27362977,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.59000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.39000000 +4924,chr22,27363217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,-0.26000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.16000000 +4925,chr22,27363238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.69000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.75000000 +4926,chr22,27363338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.06000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.16000000 +4927,chr22,27363443,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.31000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,7.01000000 +4928,chr22,27363972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.45000000 +4929,chr22,27364042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.73000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +4930,chr22,27364058,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.89000000 +4931,chr22,27364075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +4932,chr22,27364100,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.41000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +4933,chr22,27364125,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.00000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,8.95000000 +4934,chr22,27364206,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.30000000 +4935,chr22,27364421,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.61000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.23000000 +4936,chr22,27364536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.00000000,0.00000000,6.30000000 +4937,chr22,27364789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.78000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.04000000 +4938,chr22,27364835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.87000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +4939,chr22,27364893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-2.59000000,0.00000000,,0.28282828,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +4940,chr22,27365167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.23000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +4941,chr22,27365186,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.96000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,7.36000000 +4942,chr22,27365285,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.50000000,0.00000000,,0.31578947,98.00000000,4.33628319,0.03061224,0.00000000,6.98000000 +4943,chr22,27365547,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.72000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.75000000 +4944,chr22,27365653,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.27000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +4945,chr22,27365736,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.02000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.64000000 +4946,chr22,27366194,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.62000000,0.00000000,,0.45454545,88.00000000,3.89380531,0.00000000,0.00000000,8.76000000 +4947,chr22,27366253,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,84.00000000,0.00000000,-0.79000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.00000000,0.00000000,6.29000000 +4948,chr22,27366346,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,0.10000000,0.00000000,,0.20212766,98.00000000,4.33628319,0.04081633,0.00000000,5.64000000 +4949,chr22,27366738,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.18085106,94.00000000,4.15929204,0.00000000,0.00000000,6.56000000 +4950,chr22,27367145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.04651163,0.00000000,5.32000000 +4951,chr22,27367206,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.40579710,71.00000000,3.14159292,0.02816901,0.00000000,8.00000000 +4952,chr22,27367816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.63000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.63000000 +4953,chr22,27370797,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.22000000,0.00000000,,0.31250000,66.00000000,2.92035398,0.03030303,0.00000000,6.75000000 +4954,chr22,27373230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.28000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.50000000 +4955,chr22,27373428,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.69000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.90000000 +4956,chr22,27374261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.04347826,0.00000000,6.32000000 +4957,chr22,27375118,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.58000000,0.00000000,,0.43939394,68.00000000,3.00884956,0.02941176,0.00000000,7.92000000 +4958,chr22,27375949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.86000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.48000000 +4959,chr22,27377362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.68000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.07000000 +4960,chr22,27377876,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,-1.18000000,0.00000000,,0.23913043,94.00000000,4.15929204,0.02127660,0.00000000,5.97000000 +4961,chr22,27378823,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.28000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.86000000 +4962,chr22,27380382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.93000000,0.00000000,,0.28089888,91.00000000,4.02654867,0.02197802,0.00000000,6.66000000 +4963,chr22,27380463,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,0.03000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,6.25000000 +4964,chr22,27381983,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.47500000,82.00000000,3.62831858,0.01219512,0.00000000,7.57000000 +4965,chr22,27383311,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.95000000,0.00000000,,0.31818182,88.00000000,3.89380531,0.00000000,0.00000000,6.84000000 +4966,chr22,27396509,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,61.00000000,0.00000000,1.17000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,5.51000000 +4967,chr22,27397328,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.86000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,5.98000000 +4968,chr22,27418121,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,45.00000000,0.00000000,-0.36000000,0.00000000,,0.49275362,70.00000000,3.09734513,0.01428571,0.00000000,4.19000000 +4969,chr22,27419774,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.50000000,67.00000000,2.96460177,0.01492537,0.00000000,8.22000000 +4970,chr22,27421156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.77000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +4971,chr22,27421339,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.00000000,0.00000000,5.95000000 +4972,chr22,27423421,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.11764706,0.00000000,20.00000000,0.00000000,-0.79000000,0.00000000,,0.48000000,60.00000000,2.65486726,0.16666667,0.00000000,3.76000000 +4973,chr22,27424790,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,0.00000000,1.75000000,0.00000000,,0.37931034,90.00000000,3.98230088,0.03333333,0.00000000,12.96000000 +4974,chr22,27426082,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,88.00000000,0.00000000,1.33000000,0.00000000,,0.57647059,89.00000000,3.93805310,0.04494382,0.00000000,7.87000000 +4975,chr22,27427372,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.16000000,0.00000000,,0.46153846,80.00000000,3.53982301,0.02500000,0.00000000,4.37000000 +4976,chr22,27427862,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.66000000,0.00000000,,0.42500000,80.00000000,3.53982301,0.00000000,0.00000000,7.94000000 +4977,chr22,27428102,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,97.00000000,0.00000000,0.62000000,0.00000000,,0.35294118,87.00000000,3.84955752,0.02298851,0.00000000,7.99000000 +4978,chr22,27432673,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,109.00000000,0.00000000,1.54000000,0.00000000,,0.41414141,102.00000000,4.51327434,0.02941176,0.00000000,13.52000000 +4979,chr22,27433142,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.56338028,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +4980,chr22,27433575,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,0.65000000,0.00000000,,0.59090909,67.00000000,2.96460177,0.01492537,0.00000000,6.00000000 +4981,chr22,27434813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.27000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.40000000 +4982,chr22,27434995,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.87000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.65000000 +4983,chr22,27435972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.80000000,0.00000000,,0.11111111,63.00000000,2.78761062,0.00000000,0.00000000,5.32000000 +4984,chr22,27437024,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,5.93000000 +4985,chr22,27438539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.01000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.34000000 +4986,chr22,27438578,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.02247191,0.00000000,5.82000000 +4987,chr22,27440141,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.57000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.95000000 +4988,chr22,27448709,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.45000000 +4989,chr22,27451357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.07000000,0.00000000,,0.22413793,59.00000000,2.61061947,0.00000000,0.00000000,6.56000000 +4990,chr22,27459105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.37000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.37000000 +4991,chr22,27462840,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.33000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +4992,chr22,27465961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.09000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.97000000 +4993,chr22,27466001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.63000000,0.00000000,,0.32954545,88.00000000,3.89380531,0.00000000,0.00000000,8.91000000 +4994,chr22,27466847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.03000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.39000000 +4995,chr22,27467014,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.48000000 +4996,chr22,27469101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.12500000,75.00000000,3.31858407,0.02666667,0.00000000,5.31000000 +4997,chr22,27473231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.28000000 +4998,chr22,27486617,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.01562500,0.00000000,6.40000000 +4999,chr22,27487575,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,70.00000000,0.00000000,0.00000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.54000000 +5000,chr22,27504943,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.40000000,0.00000000,,0.27536232,71.00000000,3.14159292,0.02816901,0.00000000,6.06000000 +5001,chr22,27505544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.15000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +5002,chr22,27507011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,62.00000000,0.00000000,-0.99000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.05128205,0.00000000,5.16000000 +5003,chr22,27507146,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.92000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.80000000 +5004,chr22,27514798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.29487179,82.00000000,3.62831858,0.03658537,0.00000000,5.77000000 +5005,chr22,27516019,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.69000000 +5006,chr22,27517685,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,85.00000000,0.00000000,-0.41000000,0.00000000,,0.23000000,103.00000000,4.55752212,0.02912621,0.00000000,5.86000000 +5007,chr22,27517929,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.30000000 +5008,chr22,27518615,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.14000000 +5009,chr22,27519817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.80000000 +5010,chr22,27524805,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.55000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,5.54000000 +5011,chr22,27527438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.91000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.41000000 +5012,chr22,27538329,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.00000000,0.00000000,6.67000000 +5013,chr22,27539408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.32000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.65000000 +5014,chr22,27539863,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,38.00000000,0.00000000,0.05000000,0.00000000,,0.37500000,66.00000000,2.92035398,0.01515152,0.00000000,4.08000000 +5015,chr22,27541720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.02898551,0.00000000,5.35000000 +5016,chr22,27551899,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.56000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.01298701,0.00000000,6.56000000 +5017,chr22,27552006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,0.36000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +5018,chr22,27552033,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,1.04000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,5.94000000 +5019,chr22,27553168,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.46000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.20000000 +5020,chr22,27553345,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.08000000 +5021,chr22,27554054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.72000000 +5022,chr22,27554592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,5.94000000 +5023,chr22,27555200,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.02531646,0.00000000,6.73000000 +5024,chr22,27556647,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.37000000,0.00000000,,0.13157895,77.00000000,3.40707965,0.01298701,0.00000000,5.39000000 +5025,chr22,27559449,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.18000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.85000000 +5026,chr22,27562165,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,54.00000000,0.00000000,0.62000000,0.00000000,,0.30909091,55.00000000,2.43362832,0.00000000,0.00000000,2.90000000 +5027,chr22,27563133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.67000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,7.36000000 +5028,chr22,27564348,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,7.09000000 +5029,chr22,27564619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.71000000 +5030,chr22,27564712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.67000000,0.00000000,,0.18644068,60.00000000,2.65486726,0.00000000,0.00000000,4.66000000 +5031,chr22,27564829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.20000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +5032,chr22,27565238,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,2.28000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,6.49000000 +5033,chr22,27565389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,70.00000000,0.00000000,0.22000000,0.00000000,,0.24657534,83.00000000,3.67256637,0.12048193,0.00000000,5.65000000 +5034,chr22,27565917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.19000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.00000000,0.00000000,6.35000000 +5035,chr22,27566270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.34000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.82000000 +5036,chr22,27566556,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.68000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.06000000 +5037,chr22,27567455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.07000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.47000000 +5038,chr22,27567481,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.00000000,0.00000000,6.40000000 +5039,chr22,27567547,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.30000000,0.00000000,,0.25714286,73.00000000,3.23008850,0.04109589,0.00000000,6.35000000 +5040,chr22,27568420,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.56000000 +5041,chr22,27568465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.74000000 +5042,chr22,27569133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.76000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +5043,chr22,27569409,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,1.04000000,0.00000000,,0.41428571,70.00000000,3.09734513,0.00000000,0.00000000,5.86000000 +5044,chr22,27569514,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.78000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +5045,chr22,27570694,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.35000000 +5046,chr22,27571314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.71000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,5.96000000 +5047,chr22,27572098,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.15000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.04000000,0.00000000,6.03000000 +5048,chr22,27572247,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,6.14000000 +5049,chr22,27576518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,3.10000000 +5050,chr22,27583189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +5051,chr22,27583507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.70000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.04000000 +5052,chr22,27583832,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.00000000,0.00000000,7.09000000 +5053,chr22,27584479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.39000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.71000000 +5054,chr22,27588073,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-1.37000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,5.26000000 +5055,chr22,27589528,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,0.97000000,0.00000000,,0.16000000,101.00000000,4.46902655,0.00990099,0.00000000,5.72000000 +5056,chr22,27590049,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.00000000,0.00000000,6.34000000 +5057,chr22,27590751,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,1.88000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,5.95000000 +5058,chr22,27592273,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,0.67000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.94000000 +5059,chr22,27592437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.03000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,6.32000000 +5060,chr22,27593990,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.01000000 +5061,chr22,27596452,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.11000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.00000000,0.00000000,5.91000000 +5062,chr22,27597937,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.81000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +5063,chr22,27603179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.14000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +5064,chr22,27604677,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,44.00000000,0.00000000,1.68000000,0.00000000,,0.36170213,48.00000000,2.12389381,0.00000000,0.00000000,4.20000000 +5065,chr22,27604895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.48000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.00000000,0.00000000,6.68000000 +5066,chr22,27609768,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.11000000 +5067,chr22,27611217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-2.85000000,0.00000000,,0.06849315,75.00000000,3.31858407,0.01333333,0.00000000,4.32000000 +5068,chr22,27611309,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.86000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-1.21000000,0.00000000,,0.15730337,97.00000000,4.29203540,0.07216495,0.00000000,5.34000000 +5069,chr22,27611780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.74000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.41000000 +5070,chr22,27612144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,0.95000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.00000000,0.00000000,5.92000000 +5071,chr22,27612897,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.22000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +5072,chr22,27613043,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +5073,chr22,27615523,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.10000000,0.00000000,,0.26785714,60.00000000,2.65486726,0.06666667,0.00000000,2.79000000 +5074,chr22,27616299,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,5.71000000 +5075,chr22,27617922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.20512821,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.17333333,88.00000000,3.89380531,0.14772727,0.00000000,5.22000000 +5076,chr22,27619167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,75.00000000,0.00000000,-1.06000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.42000000 +5077,chr22,27619184,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-1.24000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.88000000 +5078,chr22,27619529,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.44000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,5.89000000 +5079,chr22,27619885,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,6.36000000 +5080,chr22,27619890,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.36000000 +5081,chr22,27619953,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.29629630,55.00000000,2.43362832,0.01818182,0.00000000,6.58000000 +5082,chr22,27619962,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.31481481,55.00000000,2.43362832,0.01818182,0.00000000,7.57000000 +5083,chr22,27620010,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.38000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.92000000 +5084,chr22,27620025,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.17000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.59000000 +5085,chr22,27620110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.21276596,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +5086,chr22,27620192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.36000000 +5087,chr22,27620725,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.73000000 +5088,chr22,27620781,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-1.10000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.35000000 +5089,chr22,27626062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.49000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,5.83000000 +5090,chr22,27631167,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.46000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,7.08000000 +5091,chr22,27632218,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.13000000,0.00000000,,0.21666667,64.00000000,2.83185841,0.06250000,0.00000000,6.29000000 +5092,chr22,27632234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.26000000,0.00000000,,0.20634921,68.00000000,3.00884956,0.07352941,0.00000000,6.00000000 +5093,chr22,27632981,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.29000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,5.95000000 +5094,chr22,27633395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.39000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,7.18000000 +5095,chr22,27633718,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.24000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.09000000 +5096,chr22,27634124,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,0.00000000,1.33000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.02272727,0.00000000,5.56000000 +5097,chr22,27634658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.58000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.25000000 +5098,chr22,27634671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,6.33000000 +5099,chr22,27634683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.67000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.41000000 +5100,chr22,27637859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.14000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +5101,chr22,27637994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +5102,chr22,27638335,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.19000000 +5103,chr22,27638385,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-0.11000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +5104,chr22,27639281,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,0.58000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,5.47000000 +5105,chr22,27639429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.43000000 +5106,chr22,27639448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,1.67000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,5.93000000 +5107,chr22,27639579,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,0.00000000,-1.49000000,0.00000000,,0.51351351,75.00000000,3.31858407,0.01333333,0.00000000,4.15000000 +5108,chr22,27640044,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.12000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +5109,chr22,27640186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.08000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +5110,chr22,27640243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.04166667,0.00000000,6.33000000 +5111,chr22,27641723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.63000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.53000000 +5112,chr22,27643236,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.31000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.00000000,0.00000000,6.19000000 +5113,chr22,27643518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,81.00000000,0.00000000,1.00000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.85000000 +5114,chr22,27645814,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.78000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +5115,chr22,27646848,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.69000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.14000000 +5116,chr22,27648090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,1.15000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.36000000 +5117,chr22,27650309,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.57000000,0.00000000,,0.17647059,51.00000000,2.25663717,0.00000000,0.00000000,6.03000000 +5118,chr22,27650476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,-1.44000000,0.00000000,,0.28571429,82.00000000,3.62831858,0.06097561,0.00000000,6.30000000 +5119,chr22,27652985,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,0.74000000,0.00000000,,0.18072289,86.00000000,3.80530973,0.02325581,0.00000000,5.78000000 +5120,chr22,27658325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.20000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +5121,chr22,27660137,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.08000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,5.95000000 +5122,chr22,27661503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.82000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.46000000 +5123,chr22,27662772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.89000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,5.74000000 +5124,chr22,27663889,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.93000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.08000000 +5125,chr22,27667264,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.66000000 +5126,chr22,27667383,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.43000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.46000000 +5127,chr22,27670623,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-1.43000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.02777778,0.00000000,5.30000000 +5128,chr22,27671258,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,1.17000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.62000000 +5129,chr22,27671685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,0.00000000,-0.50000000,0.00000000,,0.36956522,47.00000000,2.07964602,0.00000000,0.00000000,4.06000000 +5130,chr22,27672633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.48000000,0.00000000,,0.22807018,60.00000000,2.65486726,0.05000000,0.00000000,6.67000000 +5131,chr22,27672886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.90000000 +5132,chr22,27673662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,73.00000000,0.00000000,0.49000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,4.79000000 +5133,chr22,27673805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.04000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.88000000 +5134,chr22,27674138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.41000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5135,chr22,27675292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.04000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.86000000 +5136,chr22,27675539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.08000000,0.00000000,,0.15873016,65.00000000,2.87610619,0.03076923,0.00000000,5.38000000 +5137,chr22,27675849,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +5138,chr22,27677268,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-1.44000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +5139,chr22,27677273,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.12000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +5140,chr22,27682169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.31000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.04761905,0.00000000,5.35000000 +5141,chr22,27682746,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.17000000,0.00000000,,0.11538462,53.00000000,2.34513274,0.01886792,0.00000000,4.70000000 +5142,chr22,27686718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.15652174,117.00000000,5.17699115,0.01709402,0.00000000,5.34000000 +5143,chr22,27687523,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-2.61000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.48000000 +5144,chr22,27696990,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.44927536,72.00000000,3.18584071,0.02777778,0.00000000,8.50000000 +5145,chr22,27697394,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.52000000,0.00000000,,0.53246753,77.00000000,3.40707965,0.00000000,0.00000000,8.24000000 +5146,chr22,27697714,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.52000000,78.00000000,3.45132743,0.02564103,0.00000000,4.70000000 +5147,chr22,27702146,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.35365854,83.00000000,3.67256637,0.01204819,0.00000000,8.54000000 +5148,chr22,27702680,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.73000000,0.00000000,,0.41666667,88.00000000,3.89380531,0.03409091,0.00000000,8.19000000 +5149,chr22,27702743,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,14.00000000,0.00000000,-0.27000000,0.00000000,,0.42666667,75.00000000,3.31858407,0.00000000,0.00000000,3.14000000 +5150,chr22,27705368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.47000000,0.00000000,,0.24590164,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +5151,chr22,27709853,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,107.00000000,0.00000000,-1.35000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,14.21000000 +5152,chr22,27710210,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.69000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +5153,chr22,27711078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.37000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.37000000 +5154,chr22,27712382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.34000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.28000000 +5155,chr22,27713284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.84000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.92000000 +5156,chr22,27713340,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.68000000 +5157,chr22,27715817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.41000000 +5158,chr22,27718170,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +5159,chr22,27718504,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.00000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.75000000 +5160,chr22,27719063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +5161,chr22,27719358,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.83000000,0.00000000,,0.46575342,78.00000000,3.45132743,0.03846154,0.00000000,8.35000000 +5162,chr22,27719594,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.69000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.46000000 +5163,chr22,27719606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.44000000 +5164,chr22,27719681,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.75000000,0.00000000,,0.16923077,67.00000000,2.96460177,0.02985075,0.00000000,6.09000000 +5165,chr22,27720781,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +5166,chr22,27721025,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.01000000,0.00000000,,0.32500000,81.00000000,3.58407080,0.01234568,0.00000000,8.69000000 +5167,chr22,27721309,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,120.00000000,0.00000000,-0.80000000,0.00000000,,0.39130435,74.00000000,3.27433628,0.06756757,0.00000000,10.47000000 +5168,chr22,27721795,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,-0.47000000,0.00000000,,0.31578947,77.00000000,3.40707965,0.00000000,0.00000000,8.95000000 +5169,chr22,27721981,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.16000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +5170,chr22,27722319,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.59000000 +5171,chr22,27722817,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.82000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +5172,chr22,27723571,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +5173,chr22,27727282,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,84.00000000,0.00000000,-0.12000000,0.00000000,,0.27027027,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +5174,chr22,27727698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.32000000,78.00000000,3.45132743,0.03846154,0.00000000,8.25000000 +5175,chr22,27728750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.31000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.09000000 +5176,chr22,27729508,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.59000000,0.00000000,,0.26760563,73.00000000,3.23008850,0.02739726,0.00000000,6.89000000 +5177,chr22,27729747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.66000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +5178,chr22,27730164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +5179,chr22,27730610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +5180,chr22,27731272,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.02000000,0.00000000,,0.27450980,52.00000000,2.30088496,0.01923077,0.00000000,4.78000000 +5181,chr22,27737442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.18000000,0.00000000,,0.27777778,93.00000000,4.11504425,0.02150538,0.00000000,6.22000000 +5182,chr22,27739238,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.15000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.39000000 +5183,chr22,27747056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.74000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.84000000 +5184,chr22,27750747,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,62.00000000,0.00000000,1.97000000,0.00000000,,0.10937500,74.00000000,3.27433628,0.13513514,0.00000000,4.23000000 +5185,chr22,27753172,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.63000000 +5186,chr22,27755132,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.34000000 +5187,chr22,27756613,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.13000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.60000000 +5188,chr22,27759464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.05000000 +5189,chr22,27760800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.00000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.02666667,0.00000000,6.27000000 +5190,chr22,27764419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,90.00000000,0.00000000,0.42000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,5.53000000 +5191,chr22,27764996,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.61000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.03703704,0.00000000,6.29000000 +5192,chr22,27770414,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,2.22000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +5193,chr22,27772359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.15789474,83.00000000,3.67256637,0.08433735,0.00000000,5.52000000 +5194,chr22,27774229,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.23684211,81.00000000,3.58407080,0.06172840,0.00000000,5.94000000 +5195,chr22,27776589,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-2.08000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.75000000 +5196,chr22,27777042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +5197,chr22,27777910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,0.35000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.76000000 +5198,chr22,27779174,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.54000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,6.54000000 +5199,chr22,27779753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.77000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,5.78000000 +5200,chr22,27790075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,6.35000000 +5201,chr22,27868702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.16000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,6.43000000 +5202,chr22,27896145,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.22000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,5.95000000 +5203,chr22,27903247,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.55000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,6.30000000 +5204,chr22,27945907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-1.35000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.00000000,0.00000000,6.56000000 +5205,chr22,27950866,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.65000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.83000000 +5206,chr22,27978658,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,6.25000000 +5207,chr22,27985819,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.40000000 +5208,chr22,28017413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,6.59000000 +5209,chr22,28040491,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.10000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +5210,chr22,28101559,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.22000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +5211,chr22,28102156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,1.95000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.58000000 +5212,chr22,28112907,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.50000000 +5213,chr22,28156407,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +5214,chr22,28157192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.85000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.78000000 +5215,chr22,28175040,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.17283951,84.00000000,3.71681416,0.02380952,0.00000000,6.10000000 +5216,chr22,28187750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,89.00000000,0.00000000,-0.45000000,0.00000000,,0.19658120,118.00000000,5.22123894,0.00847458,0.00000000,5.64000000 +5217,chr22,28188929,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.27027027,76.00000000,3.36283186,0.02631579,0.00000000,6.44000000 +5218,chr22,28190686,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.73000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.22000000 +5219,chr22,28224919,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.23000000 +5220,chr22,28272636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.05000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.35000000 +5221,chr22,28319989,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.02000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.56000000 +5222,chr22,28326547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.34000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.08000000 +5223,chr22,28333779,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,0.55000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,5.79000000 +5224,chr22,28344595,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,-0.21000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.56000000 +5225,chr22,28351610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,6.96000000 +5226,chr22,28357845,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.00000000 +5227,chr22,28378722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,59.00000000,0.00000000,-0.46000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,4.02000000 +5228,chr22,28380003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.17000000,13.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.01538462,0.00000000,6.96000000 +5229,chr22,28385770,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.09000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,7.01000000 +5230,chr22,28390052,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.43000000,20.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,1.13000000,0.00000000,,0.35714286,14.00000000,0.61946903,0.00000000,0.00000000,3.53000000 +5231,chr22,28392197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.88000000,15.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.84000000 +5232,chr22,28399275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.21739130,0.00000000,51.00000000,0.00000000,0.03000000,0.00000000,,0.22784810,88.00000000,3.89380531,0.06818182,0.00000000,2.78000000 +5233,chr22,28401330,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.00000000,0.00000000,6.56000000 +5234,chr22,28402691,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.75000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +5235,chr22,28403092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.52000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.75000000 +5236,chr22,28405571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.05000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.29000000 +5237,chr22,28405875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.31000000 +5238,chr22,28406490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.46000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +5239,chr22,28407403,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.03529412,0.00000000,5.43000000 +5240,chr22,28411637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,90.00000000,0.00000000,-0.43000000,0.00000000,,0.28828829,111.00000000,4.91150442,0.00000000,0.00000000,6.44000000 +5241,chr22,28514533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.01010101,0.00000000,5.79000000 +5242,chr22,28515888,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,0.01000000,0.00000000,,0.26213592,103.00000000,4.55752212,0.00000000,0.00000000,6.23000000 +5243,chr22,28520936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +5244,chr22,28524319,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.03225806,0.00000000,5.67000000 +5245,chr22,28524663,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.22000000 +5246,chr22,28531117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.29000000,0.00000000,,0.28333333,60.00000000,2.65486726,0.00000000,0.00000000,6.82000000 +5247,chr22,28531123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.13000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.04000000 +5248,chr22,28531159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.18000000 +5249,chr22,28546296,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.00000000,0.00000000,6.71000000 +5250,chr22,28559903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.26000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +5251,chr22,28570060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.18000000,0.00000000,,0.17721519,82.00000000,3.62831858,0.03658537,0.00000000,5.61000000 +5252,chr22,28573365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.07000000,0.00000000,,0.24657534,76.00000000,3.36283186,0.03947368,0.00000000,6.30000000 +5253,chr22,28573598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,0.84000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.90000000 +5254,chr22,28584021,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.60000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.32000000 +5255,chr22,28587607,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,36.00000000,0.00000000,-0.56000000,0.00000000,,0.15384615,40.00000000,1.76991150,0.02500000,0.00000000,2.79000000 +5256,chr22,28588459,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.15000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.56000000 +5257,chr22,28656990,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +5258,chr22,28700373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.06000000,0.00000000,,0.13846154,66.00000000,2.92035398,0.01515152,0.00000000,5.37000000 +5259,chr22,28702588,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,0.13000000,0.00000000,,0.18518519,66.00000000,2.92035398,0.18181818,0.00000000,2.98000000 +5260,chr22,28714771,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,5.80000000 +5261,chr22,28719078,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,-0.72000000,4.13000000,,0.17187500,67.00000000,2.96460177,0.04477612,0.00000000,3.99000000 +5262,chr22,28731424,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.48000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.40000000 +5263,chr22,28734312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,4.31000000 +5264,chr22,28744571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,2.23000000,0.00000000,,0.18750000,67.00000000,2.96460177,0.02985075,0.00000000,6.13000000 +5265,chr22,28768328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,73.00000000,0.00000000,0.74000000,0.00000000,,0.21568627,60.00000000,2.65486726,0.15000000,0.00000000,5.89000000 +5266,chr22,28771101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.17000000,6.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.06666667,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,4.13000000 +5267,chr22,28818039,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.36000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.66000000 +5268,chr22,28856463,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.89000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.02105263,0.00000000,6.33000000 +5269,chr22,28867009,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.48000000,0.00000000,,0.26785714,58.00000000,2.56637168,0.03448276,0.00000000,6.96000000 +5270,chr22,28921571,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.05000000,0.00000000,,0.42045455,89.00000000,3.93805310,0.01123596,0.00000000,8.43000000 +5271,chr22,28922736,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.80000000,0.00000000,,0.54651163,89.00000000,3.93805310,0.03370787,0.00000000,7.70000000 +5272,chr22,28928704,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.34000000,0.00000000,,0.47540984,62.00000000,2.74336283,0.01612903,0.00000000,8.22000000 +5273,chr22,28955191,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,0.58000000,0.00000000,,0.44230769,52.00000000,2.30088496,0.00000000,0.00000000,4.26000000 +5274,chr22,28962814,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,0.64000000,0.00000000,,0.38202247,91.00000000,4.02654867,0.02197802,0.00000000,13.02000000 +5275,chr22,29004527,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,96.00000000,0.00000000,0.44000000,0.00000000,,0.40000000,88.00000000,3.89380531,0.01136364,0.00000000,8.04000000 +5276,chr22,29021921,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.40540541,74.00000000,3.27433628,0.00000000,0.00000000,8.41000000 +5277,chr22,29072886,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.02597403,0.00000000,6.32000000 +5278,chr22,29088940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.30000000,0.00000000,,0.29347826,92.00000000,4.07079646,0.00000000,0.00000000,3.04000000 +5279,chr22,29102606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-2.12000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.41000000 +5280,chr22,29135724,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +5281,chr22,29145459,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.02000000,0.00000000,,0.41891892,79.00000000,3.49557522,0.06329114,0.00000000,4.64000000 +5282,chr22,29233024,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +5283,chr22,29239413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,1.97000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.00000000,0.00000000,5.27000000 +5284,chr22,29239714,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.02857143,0.00000000,5.66000000 +5285,chr22,29245106,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.39000000,0.00000000,,0.32967033,93.00000000,4.11504425,0.01075269,0.00000000,8.93000000 +5286,chr22,29257622,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.55384615,67.00000000,2.96460177,0.01492537,0.00000000,6.29000000 +5287,chr22,29260400,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.94000000,0.00000000,,0.48888889,91.00000000,4.02654867,0.01098901,0.00000000,8.70000000 +5288,chr22,29268917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.27000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.87000000 +5289,chr22,29273991,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.76000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.00000000,0.00000000,6.30000000 +5290,chr22,29285227,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.12000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-1.59000000,0.00000000,,0.26666667,68.00000000,3.00884956,0.11764706,0.00000000,6.01000000 +5291,chr22,29299939,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.17000000,0.00000000,,0.20370370,56.00000000,2.47787611,0.01785714,0.00000000,6.21000000 +5292,chr22,29304546,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.08000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.82000000 +5293,chr22,29324419,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,85.00000000,0.00000000,-0.57000000,0.00000000,,0.26829268,87.00000000,3.84955752,0.05747126,0.00000000,5.95000000 +5294,chr22,29335595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,0.89000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,5.91000000 +5295,chr22,29342557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,76.00000000,0.00000000,-0.50000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.31000000 +5296,chr22,29346852,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.11000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.71000000 +5297,chr22,29352870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.16470588,90.00000000,3.98230088,0.05555556,0.00000000,5.56000000 +5298,chr22,29356632,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.15000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,7.01000000 +5299,chr22,29359899,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.79000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.02531646,0.00000000,6.22000000 +5300,chr22,29362225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.01315789,0.00000000,6.46000000 +5301,chr22,29363537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.84000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,5.97000000 +5302,chr22,29368847,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,-1.67000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,5.82000000 +5303,chr22,29369393,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,92.00000000,0.00000000,-0.21000000,0.00000000,,0.23584906,109.00000000,4.82300885,0.01834862,0.00000000,5.15000000 +5304,chr22,29370175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +5305,chr22,29370345,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.17000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.00000000,0.00000000,2.85000000 +5306,chr22,29370906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,1.56000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.52000000 +5307,chr22,29373317,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.40000000,0.00000000,,0.17525773,97.00000000,4.29203540,0.00000000,0.00000000,6.33000000 +5308,chr22,29376402,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.95000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.01470588,0.00000000,6.82000000 +5309,chr22,29377880,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.88000000,0.00000000,,0.26315789,62.00000000,2.74336283,0.06451613,0.00000000,5.71000000 +5310,chr22,29381515,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,2.14000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.15000000 +5311,chr22,29384823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.27000000,0.00000000,,0.19767442,94.00000000,4.15929204,0.07446809,0.00000000,5.77000000 +5312,chr22,29384895,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.41000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +5313,chr22,29386444,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.69000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.19000000 +5314,chr22,29398500,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-1.04000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +5315,chr22,29398924,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.49000000 +5316,chr22,29400786,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.14000000,0.00000000,,0.22680412,99.00000000,4.38053097,0.02020202,0.00000000,5.96000000 +5317,chr22,29402662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.47000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,-1.49000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,6.00000000 +5318,chr22,29402822,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,56.74000000,6.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,-0.17000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.68000000 +5319,chr22,29404292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.19000000,36.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.95000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.80000000 +5320,chr22,29404348,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,48.87000000,35.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.44000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,5.56000000 +5321,chr22,29406001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.26000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.86000000,0.00000000,,0.09523810,63.00000000,2.78761062,0.00000000,0.00000000,4.77000000 +5322,chr22,29406812,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.75000000,30.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.71000000 +5323,chr22,29407172,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.25000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.52000000 +5324,chr22,29407504,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.90000000,11.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,2.06000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.03488372,0.00000000,5.17000000 +5325,chr22,29408950,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.54000000,5.00000000,ref,1.00000000,0.02631579,41.00000000,1.81415929,0.07317073,0.00000000,85.00000000,0.00000000,1.61000000,0.00000000,,0.26041667,96.00000000,4.24778761,0.00000000,0.00000000,5.71000000 +5326,chr22,29409418,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-0.05000000,0.00000000,,0.22340426,96.00000000,4.24778761,0.01041667,0.00000000,6.09000000 +5327,chr22,29410797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.29000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,7.08000000 +5328,chr22,29413462,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.08000000,8.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,73.00000000,0.00000000,-0.13000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,6.06000000 +5329,chr22,29414933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-1.85000000,0.00000000,,0.19047619,88.00000000,3.89380531,0.04545455,0.00000000,5.94000000 +5330,chr22,29415802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.15116279,86.00000000,3.80530973,0.00000000,0.00000000,5.02000000 +5331,chr22,29416475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,0.80000000,0.00000000,,0.18666667,79.00000000,3.49557522,0.05063291,0.00000000,5.72000000 +5332,chr22,29417128,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.70000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,5.75000000 +5333,chr22,29417264,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.69000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.92000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.98000000 +5334,chr22,29417526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.14000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.09000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,5.97000000 +5335,chr22,29418392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.54000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.75000000 +5336,chr22,29418735,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,5.59000000 +5337,chr22,29420892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.35000000,0.00000000,,0.10294118,68.00000000,3.00884956,0.00000000,0.00000000,5.32000000 +5338,chr22,29422827,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.14666667,81.00000000,3.58407080,0.06172840,0.00000000,5.17000000 +5339,chr22,29422829,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.17333333,80.00000000,3.53982301,0.05000000,0.00000000,5.70000000 +5340,chr22,29422865,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.44000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,5.71000000 +5341,chr22,29423092,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.49000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.70000000 +5342,chr22,29464822,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.54000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.67000000 +5343,chr22,29469437,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,7.40000000 +5344,chr22,29477386,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.73000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,5.88000000 +5345,chr22,29484060,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,-2.01000000,0.00000000,,0.15686275,52.00000000,2.30088496,0.01923077,0.00000000,5.70000000 +5346,chr22,29492496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.26000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.03614458,0.00000000,5.58000000 +5347,chr22,29502056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.25000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.42000000 +5348,chr22,29511412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.61000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.55000000 +5349,chr22,29514801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.20000000,0.00000000,,0.15151515,69.00000000,3.05309735,0.04347826,0.00000000,2.81000000 +5350,chr22,29524309,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,1.42000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.01000000 +5351,chr22,29526290,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.89000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +5352,chr22,29532488,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,85.00000000,0.00000000,-0.53000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,5.30000000 +5353,chr22,29534088,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.54000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,7.06000000 +5354,chr22,29544960,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,2.20000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,5.76000000 +5355,chr22,29548563,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.29000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.02666667,0.00000000,8.15000000 +5356,chr22,29552402,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.42000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,0.20000000,0.00000000,,0.31666667,65.00000000,2.87610619,0.06153846,0.00000000,4.58000000 +5357,chr22,29553097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.23000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.02000000 +5358,chr22,29553101,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,5.76000000 +5359,chr22,29556237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.60000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,5.95000000 +5360,chr22,29556609,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.59000000 +5361,chr22,29556610,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.59000000 +5362,chr22,29559444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,72.00000000,0.00000000,-1.26000000,0.00000000,,0.19696970,71.00000000,3.14159292,0.07042254,0.00000000,6.14000000 +5363,chr22,29559821,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.32000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.60000000 +5364,chr22,29560146,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-1.78000000,0.00000000,,0.17073171,87.00000000,3.84955752,0.05747126,0.00000000,5.72000000 +5365,chr22,29560148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,-1.67000000,0.00000000,,0.16867470,88.00000000,3.89380531,0.05681818,0.00000000,5.65000000 +5366,chr22,29561332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,0.52000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,5.86000000 +5367,chr22,29561955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,1.05000000,0.00000000,,0.21428571,59.00000000,2.61061947,0.03389831,0.00000000,5.83000000 +5368,chr22,29566454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.88000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,6.50000000 +5369,chr22,29578890,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.49000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +5370,chr22,29579948,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-2.11000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.29000000 +5371,chr22,29581354,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.97000000,0.00000000,,0.18571429,73.00000000,3.23008850,0.04109589,0.00000000,6.11000000 +5372,chr22,29592790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.77000000 +5373,chr22,29595937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.23913043,47.00000000,2.07964602,0.00000000,0.00000000,6.76000000 +5374,chr22,29596103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.54000000,0.73000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,4.62000000 +5375,chr22,29596962,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-1.14000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,5.79000000 +5376,chr22,29600077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,66.00000000,0.00000000,-0.95000000,0.00000000,,0.18461538,74.00000000,3.27433628,0.12162162,0.00000000,5.68000000 +5377,chr22,29601150,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-1.50000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.29000000 +5378,chr22,29603795,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.52000000 +5379,chr22,29606088,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.13186813,92.00000000,4.07079646,0.01086957,0.00000000,5.45000000 +5380,chr22,29610758,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.21000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.03448276,0.00000000,6.53000000 +5381,chr22,29619690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.88000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.48000000 +5382,chr22,29621104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +5383,chr22,29639005,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-0.88000000,0.00000000,,0.12500000,90.00000000,3.98230088,0.02222222,0.00000000,4.83000000 +5384,chr22,29641326,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.43000000 +5385,chr22,29649738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.22727273,71.00000000,3.14159292,0.07042254,0.00000000,5.51000000 +5386,chr22,29673218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-0.95000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +5387,chr22,29689558,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.49000000,0.00000000,,0.26666667,60.00000000,2.65486726,0.00000000,0.00000000,6.69000000 +5388,chr22,29693962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.13000000,0.00000000,,0.27397260,73.00000000,3.23008850,0.00000000,0.00000000,6.32000000 +5389,chr22,29703969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.30000000,0.00000000,,0.25000000,60.00000000,2.65486726,0.00000000,0.00000000,6.61000000 +5390,chr22,29786186,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,60.00000000,0.00000000,0.23000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.26000000 +5391,chr22,29797609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.41000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +5392,chr22,29812554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.16000000 +5393,chr22,29817125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.56000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.59000000 +5394,chr22,29828804,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.97000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.19000000 +5395,chr22,29863619,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.36000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.41000000 +5396,chr22,29863982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.26000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.92000000 +5397,chr22,29865230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.35000000 +5398,chr22,29874710,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.96000000,0.00000000,,0.17708333,96.00000000,4.24778761,0.00000000,0.00000000,6.56000000 +5399,chr22,29877405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,1.50000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.23000000 +5400,chr22,29877736,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-1.06000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +5401,chr22,29878438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.20312500,71.00000000,3.14159292,0.09859155,0.00000000,5.93000000 +5402,chr22,29879102,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.46000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +5403,chr22,29889781,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.43000000 +5404,chr22,29892409,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,0.90000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.28000000 +5405,chr22,29892636,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,92.00000000,0.00000000,-0.93000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +5406,chr22,29895456,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.68000000,0.00000000,,0.24742268,97.00000000,4.29203540,0.00000000,0.00000000,6.72000000 +5407,chr22,29897514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.03000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.53000000 +5408,chr22,29897613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.33000000 +5409,chr22,29904123,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.54000000,0.00000000,,0.13793103,88.00000000,3.89380531,0.01136364,0.00000000,5.86000000 +5410,chr22,29904590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,1.11000000,0.00000000,,0.16279070,90.00000000,3.98230088,0.04444444,0.00000000,5.30000000 +5411,chr22,29912791,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.43000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.33000000 +5412,chr22,29918103,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.21000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.94000000 +5413,chr22,30012721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.23000000 +5414,chr22,30016476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.71000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.21000000 +5415,chr22,30017682,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-1.14000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.01470588,0.00000000,6.36000000 +5416,chr22,30033126,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.39000000 +5417,chr22,30036148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.14000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.86000000 +5418,chr22,30045688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.01000000 +5419,chr22,30051817,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,85.00000000,0.00000000,-0.88000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.07692308,0.00000000,5.99000000 +5420,chr22,30052410,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.98000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.77000000 +5421,chr22,30065270,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.26136364,89.00000000,3.93805310,0.01123596,0.00000000,6.91000000 +5422,chr22,30065753,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.55000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.14000000 +5423,chr22,30071777,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,6.17000000 +5424,chr22,30078227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.40000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.05263158,0.00000000,5.71000000 +5425,chr22,30087975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,2.93000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.56000000 +5426,chr22,30092218,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.35000000 +5427,chr22,30097929,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,0.00000000,-0.50000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.67000000 +5428,chr22,30104969,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,5.92000000 +5429,chr22,30108218,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.95000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +5430,chr22,30116139,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.76000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,7.20000000 +5431,chr22,30116425,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.57000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +5432,chr22,30122839,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.13888889,75.00000000,3.31858407,0.04000000,0.00000000,5.35000000 +5433,chr22,30125458,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.02000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.57000000 +5434,chr22,30125781,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.55000000 +5435,chr22,30126470,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.06000000,0.00000000,,0.25925926,85.00000000,3.76106195,0.04705882,0.00000000,5.98000000 +5436,chr22,30150256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +5437,chr22,30154941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.84000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +5438,chr22,30159227,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.75000000 +5439,chr22,30161292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.34000000 +5440,chr22,30166250,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,87.00000000,0.00000000,-0.46000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.14000000 +5441,chr22,30166998,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,92.00000000,0.00000000,-1.80000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.78000000 +5442,chr22,30174454,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,6.84000000 +5443,chr22,30179823,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.33000000 +5444,chr22,30184263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.54000000,0.00000000,,0.27368421,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +5445,chr22,30185871,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.62000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +5446,chr22,30194233,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,-0.41000000,0.00000000,,0.30120482,85.00000000,3.76106195,0.02352941,0.00000000,5.89000000 +5447,chr22,30201821,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.18965517,61.00000000,2.69911504,0.01639344,0.00000000,5.81000000 +5448,chr22,30201891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.11000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +5449,chr22,30202563,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.23000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.02272727,0.00000000,6.27000000 +5450,chr22,30203581,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.11000000,0.00000000,,0.13333333,65.00000000,2.87610619,0.06153846,0.00000000,4.77000000 +5451,chr22,30203607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.80000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.25000000 +5452,chr22,30208809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,6.37000000 +5453,chr22,30263536,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.23584906,107.00000000,4.73451327,0.00934579,0.00000000,6.77000000 +5454,chr22,30282127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-1.48000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +5455,chr22,30292996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,5.19000000 +5456,chr22,30294009,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.76000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +5457,chr22,30294410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,90.00000000,0.00000000,-0.25000000,0.00000000,,0.32530120,85.00000000,3.76106195,0.02352941,0.00000000,7.97000000 +5458,chr22,30300755,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,6.78000000 +5459,chr22,30318902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.25000000 +5460,chr22,30330365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.18867925,55.00000000,2.43362832,0.03636364,0.00000000,6.56000000 +5461,chr22,30333518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.29000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.44000000 +5462,chr22,30337925,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.46000000 +5463,chr22,30340846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.80000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.25000000 +5464,chr22,30343514,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.24000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.04000000 +5465,chr22,30344159,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.86000000,0.00000000,,0.26923077,105.00000000,4.64601770,0.00000000,0.00000000,6.25000000 +5466,chr22,30345899,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-0.52000000,0.00000000,,0.06410256,80.00000000,3.53982301,0.02500000,0.00000000,5.13000000 +5467,chr22,30355197,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.00000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.12000000 +5468,chr22,30362247,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.05000000,0.00000000,,0.18181818,100.00000000,4.42477876,0.00000000,0.00000000,6.72000000 +5469,chr22,30386742,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,-1.67000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +5470,chr22,30388122,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.75000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.14000000 +5471,chr22,30391201,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.37000000 +5472,chr22,30393086,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.14000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +5473,chr22,30393298,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.36000000,0.00000000,,0.12500000,82.00000000,3.62831858,0.02439024,0.00000000,5.43000000 +5474,chr22,30394797,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.30000000,0.00000000,,0.29333333,79.00000000,3.49557522,0.02531646,0.00000000,6.22000000 +5475,chr22,30398730,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,-1.44000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.01219512,0.00000000,5.61000000 +5476,chr22,30398961,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.04000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +5477,chr22,30399900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-1.21000000,0.00000000,,0.15189873,82.00000000,3.62831858,0.03658537,0.00000000,5.36000000 +5478,chr22,30400433,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +5479,chr22,30403871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.91000000,0.00000000,,0.29411765,68.00000000,3.00884956,0.00000000,0.00000000,7.00000000 +5480,chr22,30404992,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.49000000,0.00000000,,0.21739130,72.00000000,3.18584071,0.02777778,0.00000000,6.09000000 +5481,chr22,30405190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.49000000,0.00000000,,0.34146341,86.00000000,3.80530973,0.03488372,0.00000000,8.30000000 +5482,chr22,30408873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,0.63000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.68000000 +5483,chr22,30412572,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.14141414,100.00000000,4.42477876,0.01000000,0.00000000,6.03000000 +5484,chr22,30414398,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.49000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.00000000,0.00000000,5.06000000 +5485,chr22,30415123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.85000000,0.00000000,,0.25316456,83.00000000,3.67256637,0.04819277,0.00000000,6.39000000 +5486,chr22,30418738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.19000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.31000000 +5487,chr22,30420159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,82.00000000,0.00000000,0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.95000000 +5488,chr22,30424719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-1.41000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.71000000 +5489,chr22,30427126,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.23000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.80000000 +5490,chr22,30429709,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.26000000,0.00000000,,0.20987654,85.00000000,3.76106195,0.03529412,0.00000000,6.58000000 +5491,chr22,30432071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.89000000 +5492,chr22,30432246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.21000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +5493,chr22,30434325,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.47000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.05000000,0.00000000,5.99000000 +5494,chr22,30435865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.73000000 +5495,chr22,30438263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.15000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.78000000 +5496,chr22,30446527,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.35000000,0.00000000,,0.12000000,77.00000000,3.40707965,0.01298701,0.00000000,5.22000000 +5497,chr22,30447822,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-2.29000000,0.00000000,,0.29333333,78.00000000,3.45132743,0.03846154,0.00000000,6.33000000 +5498,chr22,30450657,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.59000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.07000000 +5499,chr22,30453702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.36000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.54000000 +5500,chr22,30456079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.40000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.76000000 +5501,chr22,30457095,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,70.00000000,0.00000000,-0.19000000,0.00000000,,0.14634146,84.00000000,3.71681416,0.01190476,0.00000000,5.65000000 +5502,chr22,30458560,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,62.00000000,0.00000000,0.54000000,0.00000000,,0.13265306,103.00000000,4.55752212,0.04854369,0.00000000,4.66000000 +5503,chr22,30458876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.18571429,76.00000000,3.36283186,0.06578947,0.00000000,5.72000000 +5504,chr22,30465944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.10000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,6.36000000 +5505,chr22,30468805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,-1.28000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,6.08000000 +5506,chr22,30471011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,0.00000000,1.15000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.00000000,0.00000000,5.89000000 +5507,chr22,30472115,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.05000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +5508,chr22,30472431,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +5509,chr22,30493659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.32000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.36000000 +5510,chr22,30540056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.19000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +5511,chr22,30560432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.42000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +5512,chr22,30560610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.19000000,0.00000000,,0.29870130,79.00000000,3.49557522,0.02531646,0.00000000,5.90000000 +5513,chr22,30565658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.52000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.02666667,0.00000000,6.40000000 +5514,chr22,30581366,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.01086957,0.00000000,6.00000000 +5515,chr22,30587881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,6.01000000 +5516,chr22,30594154,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-0.33000000,0.00000000,,0.16091954,87.00000000,3.84955752,0.00000000,0.00000000,5.92000000 +5517,chr22,30595137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.32000000,0.00000000,,0.23809524,105.00000000,4.64601770,0.00000000,0.00000000,6.43000000 +5518,chr22,30596974,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.88000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.53000000 +5519,chr22,30597231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.67000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,7.29000000 +5520,chr22,30597804,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.29487179,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +5521,chr22,30604644,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.03448276,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,0.42000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.08433735,0.00000000,5.56000000 +5522,chr22,30606221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.76000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.93000000 +5523,chr22,30608522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,-0.35000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.96000000 +5524,chr22,30609031,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.12871287,105.00000000,4.64601770,0.03809524,0.00000000,5.06000000 +5525,chr22,30611305,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.30000000 +5526,chr22,30612253,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,6.06000000 +5527,chr22,30613131,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.00000000,0.00000000,7.12000000 +5528,chr22,30617432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.31000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +5529,chr22,30617802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,1.10000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +5530,chr22,30620552,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.54000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.75000000 +5531,chr22,30622321,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.09000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,6.31000000 +5532,chr22,30622336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.44000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +5533,chr22,30622897,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.01162791,0.00000000,5.95000000 +5534,chr22,30622988,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.56000000,0.00000000,,0.21333333,79.00000000,3.49557522,0.05063291,0.00000000,6.27000000 +5535,chr22,30623715,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.55000000,9.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-2.53000000,0.00000000,,0.09433962,54.00000000,2.38938053,0.01851852,0.00000000,5.15000000 +5536,chr22,30624354,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.64000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.57000000 +5537,chr22,30624453,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.09000000,0.00000000,,0.21917808,77.00000000,3.40707965,0.05194805,0.00000000,6.64000000 +5538,chr22,30624988,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.00000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.04000000,0.00000000,6.56000000 +5539,chr22,30625413,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-1.28000000,0.00000000,,0.16000000,79.00000000,3.49557522,0.03797468,0.00000000,6.32000000 +5540,chr22,30625830,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,67.00000000,2.96460177,0.02985075,0.00000000,5.12000000 +5541,chr22,30626314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,0.68000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.58000000 +5542,chr22,30626603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.84000000 +5543,chr22,30626965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +5544,chr22,30627598,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,0.93000000,0.00000000,,0.19512195,97.00000000,4.29203540,0.14432990,0.00000000,5.65000000 +5545,chr22,30627906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +5546,chr22,30628107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.06000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.25000000 +5547,chr22,30628388,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.17721519,84.00000000,3.71681416,0.05952381,0.00000000,5.56000000 +5548,chr22,30628566,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,5.93000000 +5549,chr22,30628947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,5.74000000 +5550,chr22,30629811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,-0.36000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,2.80000000 +5551,chr22,30629831,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.25675676,77.00000000,3.40707965,0.03896104,0.00000000,5.88000000 +5552,chr22,30631149,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,51.53000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.18000000,50.00000000,2.21238938,0.00000000,0.00000000,6.33000000 +5553,chr22,30631460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,50.15000000,22.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.19000000,0.00000000,,0.16000000,25.00000000,1.10619469,0.00000000,0.00000000,5.69000000 +5554,chr22,30631499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.65000000,23.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.85000000,0.00000000,,0.13333333,30.00000000,1.32743363,0.00000000,0.00000000,5.02000000 +5555,chr22,30631746,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.29000000,14.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,17.00000000,0.00000000,1.30000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.07407407,0.00000000,3.97000000 +5556,chr22,30633212,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.57000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,56.00000000,0.00000000,-1.36000000,0.00000000,,0.15789474,40.00000000,1.76991150,0.05000000,0.00000000,2.86000000 +5557,chr22,30633671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,6.00000000 +5558,chr22,30634117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.57000000 +5559,chr22,30635146,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.01333333,0.00000000,6.93000000 +5560,chr22,30636342,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.29000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +5561,chr22,30638097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.07000000,0.00000000,,0.11764706,71.00000000,3.14159292,0.04225352,0.00000000,4.19000000 +5562,chr22,30638359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.69000000,0.00000000,,0.17105263,79.00000000,3.49557522,0.03797468,0.00000000,6.33000000 +5563,chr22,30639889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.75000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.02702703,0.00000000,6.14000000 +5564,chr22,30640227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.42000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.30000000 +5565,chr22,30640228,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.70000000,0.00000000,,0.22471910,92.00000000,4.07079646,0.03260870,0.00000000,6.31000000 +5566,chr22,30641035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.04000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,6.24000000 +5567,chr22,30642905,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.26190476,87.00000000,3.84955752,0.03448276,0.00000000,5.79000000 +5568,chr22,30643532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.49000000 +5569,chr22,30646503,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.33000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.00000000,0.00000000,6.45000000 +5570,chr22,30647497,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.24000000 +5571,chr22,30647962,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,-0.14000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,5.32000000 +5572,chr22,30648299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,1.01000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.21000000 +5573,chr22,30649658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.07000000,0.00000000,,0.34848485,66.00000000,2.92035398,0.00000000,0.00000000,8.45000000 +5574,chr22,30664042,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.58000000 +5575,chr22,30665296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.43000000 +5576,chr22,30667113,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.26000000,0.00000000,,0.17391304,94.00000000,4.15929204,0.01063830,0.00000000,6.80000000 +5577,chr22,30672827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.43000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.03409091,0.00000000,6.30000000 +5578,chr22,30676766,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,-0.72000000,0.00000000,,0.28888889,90.00000000,3.98230088,0.00000000,0.00000000,6.75000000 +5579,chr22,30678061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.17582418,92.00000000,4.07079646,0.00000000,0.00000000,6.71000000 +5580,chr22,30680399,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +5581,chr22,30680503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.15730337,92.00000000,4.07079646,0.03260870,0.00000000,5.30000000 +5582,chr22,30682354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,2.56000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.41000000 +5583,chr22,30684806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.34000000,0.00000000,,0.24000000,53.00000000,2.34513274,0.05660377,0.00000000,6.00000000 +5584,chr22,30685911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.61000000,0.00000000,,0.14705882,72.00000000,3.18584071,0.05555556,0.00000000,5.56000000 +5585,chr22,30690485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.34000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.60000000 +5586,chr22,30694463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18421053,81.00000000,3.58407080,0.06172840,0.00000000,6.18000000 +5587,chr22,30702430,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.01315789,0.00000000,6.88000000 +5588,chr22,30703454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.55000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,4.62000000 +5589,chr22,30704095,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-1.68000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.37000000 +5590,chr22,30705659,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.59000000 +5591,chr22,30707471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.62000000,0.00000000,,0.11320755,54.00000000,2.38938053,0.01851852,0.00000000,4.61000000 +5592,chr22,30709282,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,0.23000000,0.00000000,,0.28378378,76.00000000,3.36283186,0.02631579,0.00000000,5.95000000 +5593,chr22,30710170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.51000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +5594,chr22,30711713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,65.00000000,0.00000000,-1.62000000,0.00000000,,0.23728814,76.00000000,3.36283186,0.22368421,0.00000000,5.66000000 +5595,chr22,30712237,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,7.02000000 +5596,chr22,30712630,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.43000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.30000000 +5597,chr22,30713139,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,57.00000000,0.00000000,0.97000000,0.00000000,,0.24390244,49.00000000,2.16814159,0.14285714,0.00000000,3.15000000 +5598,chr22,30713931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.77000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.17000000 +5599,chr22,30717017,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.15000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.68000000 +5600,chr22,30717446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.07000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,4.79000000 +5601,chr22,30717677,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.54000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.23000000 +5602,chr22,30719735,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,63.00000000,0.00000000,-1.35000000,0.00000000,,0.12500000,77.00000000,3.40707965,0.15584416,0.00000000,4.87000000 +5603,chr22,30720407,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.18000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.43000000 +5604,chr22,30720706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.12000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +5605,chr22,30720766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.17000000,0.00000000,,0.29411765,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +5606,chr22,30721028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.60000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,6.35000000 +5607,chr22,30721242,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.24000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.97000000 +5608,chr22,30722408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.35000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.01000000 +5609,chr22,30723227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.62000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,7.01000000 +5610,chr22,30723450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,0.73000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.55000000 +5611,chr22,30723831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,6.25000000 +5612,chr22,30724047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.28000000 +5613,chr22,30724405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.61000000,0.00000000,,0.12162162,74.00000000,3.27433628,0.00000000,0.00000000,4.01000000 +5614,chr22,30724727,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,1.05000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.71000000 +5615,chr22,30725659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.01000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.03296703,0.00000000,6.31000000 +5616,chr22,30726561,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.14102564,80.00000000,3.53982301,0.02500000,0.00000000,5.30000000 +5617,chr22,30727119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.20000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +5618,chr22,30729227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.86000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.76000000 +5619,chr22,30731017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.68000000,0.00000000,,0.17647059,51.00000000,2.25663717,0.00000000,0.00000000,6.37000000 +5620,chr22,30732066,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.51000000 +5621,chr22,30732067,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.58000000 +5622,chr22,30732776,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +5623,chr22,30737311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,-0.66000000,0.00000000,,0.14754098,66.00000000,2.92035398,0.07575758,0.00000000,3.04000000 +5624,chr22,30737856,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,7.09000000 +5625,chr22,30741525,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.44000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +5626,chr22,30743331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.28000000 +5627,chr22,30748720,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.81000000 +5628,chr22,30748872,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,86.00000000,0.00000000,-1.41000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.06000000 +5629,chr22,30754693,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.53000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,6.47000000 +5630,chr22,30760309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.54000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.00000000,0.00000000,6.24000000 +5631,chr22,30763055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.01351351,0.00000000,6.81000000 +5632,chr22,30764552,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.79000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,2.91000000 +5633,chr22,30768323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +5634,chr22,30769006,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.00000000,0.00000000,,0.11392405,82.00000000,3.62831858,0.03658537,0.00000000,4.87000000 +5635,chr22,30772328,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,5.91000000 +5636,chr22,30773321,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +5637,chr22,30775287,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.06000000 +5638,chr22,30776479,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.21000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.34000000 +5639,chr22,30777077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +5640,chr22,30778396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.26000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,4.69000000 +5641,chr22,30779206,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.65000000,0.00000000,,0.14000000,54.00000000,2.38938053,0.05555556,0.00000000,3.04000000 +5642,chr22,30780463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,5.85000000 +5643,chr22,30781370,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.94000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,5.97000000 +5644,chr22,30787467,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-1.30000000,0.00000000,,0.19047619,64.00000000,2.83185841,0.00000000,0.00000000,6.75000000 +5645,chr22,30790310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +5646,chr22,30791961,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +5647,chr22,30792334,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,1.63000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,5.67000000 +5648,chr22,30797113,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.57000000 +5649,chr22,30798319,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.25000000,102.00000000,4.51327434,0.01960784,0.00000000,5.73000000 +5650,chr22,30801973,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.62000000,0.00000000,,0.20833333,79.00000000,3.49557522,0.08860759,0.00000000,6.11000000 +5651,chr22,30802050,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,5.90000000 +5652,chr22,30802861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,-0.39000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.02222222,0.00000000,5.98000000 +5653,chr22,30804212,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.85000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.39000000 +5654,chr22,30805819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,89.00000000,0.00000000,-0.04000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,5.21000000 +5655,chr22,30811706,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.18000000,0.00000000,,0.10526316,59.00000000,2.61061947,0.03389831,0.00000000,4.82000000 +5656,chr22,30811775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.71000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.14000000 +5657,chr22,30813968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.19607843,53.00000000,2.34513274,0.03773585,0.00000000,6.07000000 +5658,chr22,30814771,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.95000000 +5659,chr22,30815053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.29000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.23000000 +5660,chr22,30842701,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.35000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +5661,chr22,30858049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.97000000 +5662,chr22,30869864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.18644068,59.00000000,2.61061947,0.00000000,0.00000000,6.39000000 +5663,chr22,30876943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,90.00000000,0.00000000,-0.07000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.33000000 +5664,chr22,30880928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.75000000,0.00000000,,0.10714286,88.00000000,3.89380531,0.04545455,0.00000000,4.87000000 +5665,chr22,30883902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.64000000,0.00000000,,0.13414634,85.00000000,3.76106195,0.03529412,0.00000000,5.36000000 +5666,chr22,30885316,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.74000000,0.00000000,,0.20952381,107.00000000,4.73451327,0.00934579,0.00000000,6.56000000 +5667,chr22,30891914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.32000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +5668,chr22,30897945,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.63000000,0.00000000,,0.21428571,67.00000000,2.96460177,0.16417910,0.00000000,6.66000000 +5669,chr22,30900938,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,89.00000000,0.00000000,0.02000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,5.78000000 +5670,chr22,30901171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.55000000 +5671,chr22,30902186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,72.00000000,0.00000000,-0.45000000,0.00000000,,0.35849057,65.00000000,2.87610619,0.18461538,0.00000000,8.52000000 +5672,chr22,30909855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.17000000 +5673,chr22,30912022,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.10000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.89000000 +5674,chr22,30915188,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-0.05000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +5675,chr22,30915557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,0.76000000,0.00000000,,0.11881188,104.00000000,4.60176991,0.02884615,0.00000000,5.06000000 +5676,chr22,30916797,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.95000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.55000000 +5677,chr22,30922354,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.45000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,7.01000000 +5678,chr22,30924521,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.01000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,6.16000000 +5679,chr22,30933654,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,4.88000000 +5680,chr22,30951105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,0.58000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.58000000 +5681,chr22,30960006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.54000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.59000000 +5682,chr22,30961943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.97000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +5683,chr22,30967827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,89.00000000,0.00000000,0.19000000,0.00000000,,0.23255814,89.00000000,3.93805310,0.02247191,0.00000000,5.85000000 +5684,chr22,30969007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,4.87000000 +5685,chr22,30979736,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,-1.51000000,0.00000000,,0.26000000,100.00000000,4.42477876,0.00000000,0.00000000,6.69000000 +5686,chr22,30981642,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +5687,chr22,30983158,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.41000000,0.00000000,,0.37500000,64.00000000,2.83185841,0.00000000,0.00000000,8.78000000 +5688,chr22,30983208,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.54000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.01492537,0.00000000,4.18000000 +5689,chr22,30983689,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,29.00000000,0.00000000,-0.04000000,0.00000000,,0.41772152,80.00000000,3.53982301,0.01250000,0.00000000,3.15000000 +5690,chr22,30984258,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.43617021,95.00000000,4.20353982,0.01052632,0.00000000,8.61000000 +5691,chr22,30986780,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,112.00000000,0.00000000,1.27000000,0.00000000,,0.41304348,92.00000000,4.07079646,0.00000000,0.00000000,15.30000000 +5692,chr22,30988289,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,35.00000000,0.00000000,-0.06000000,0.00000000,,0.47761194,70.00000000,3.09734513,0.04285714,0.00000000,4.00000000 +5693,chr22,30994242,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.53000000,0.00000000,,0.25490196,104.00000000,4.60176991,0.01923077,0.00000000,6.34000000 +5694,chr22,30995860,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,64.00000000,0.00000000,-1.44000000,0.00000000,,0.42528736,89.00000000,3.93805310,0.01123596,0.00000000,7.81000000 +5695,chr22,30999839,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,42.00000000,0.00000000,1.37000000,0.00000000,,0.36842105,78.00000000,3.45132743,0.02564103,0.00000000,3.66000000 +5696,chr22,31000239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.49000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.84000000 +5697,chr22,31000453,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.31000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,8.39000000 +5698,chr22,31004032,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,1.47000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,8.07000000 +5699,chr22,31005010,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.93000000,8.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.67000000 +5700,chr22,31007044,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.34000000,0.00000000,,0.46774194,62.00000000,2.74336283,0.00000000,0.00000000,4.35000000 +5701,chr22,31008409,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,0.23000000,0.00000000,,0.57317073,87.00000000,3.84955752,0.05747126,0.00000000,6.01000000 +5702,chr22,31008914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.58000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.34000000 +5703,chr22,31009205,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.04000000,0.00000000,,0.45000000,64.00000000,2.83185841,0.06250000,0.00000000,4.34000000 +5704,chr22,31009853,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,21.00000000,0.00000000,0.98000000,0.00000000,,0.45161290,68.00000000,3.00884956,0.08823529,0.01449275,3.01000000 +5705,chr22,31010299,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,0.59000000,0.00000000,,0.55405405,74.00000000,3.27433628,0.00000000,0.00000000,4.24000000 +5706,chr22,31010841,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.59000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.72000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.00000000,0.00000000,6.54000000 +5707,chr22,31012930,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-1.77000000,0.00000000,,0.44927536,71.00000000,3.14159292,0.02816901,0.00000000,8.60000000 +5708,chr22,31013973,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,52.00000000,0.00000000,-0.81000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,4.34000000 +5709,chr22,31015418,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-2.35000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.00000000,0.00000000,8.09000000 +5710,chr22,31017494,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,59.00000000,0.00000000,1.07000000,0.00000000,,0.56000000,77.00000000,3.40707965,0.02597403,0.00000000,6.29000000 +5711,chr22,31017980,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.83000000,0.00000000,,0.52000000,77.00000000,3.40707965,0.02597403,0.00000000,8.38000000 +5712,chr22,31018103,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.45312500,64.00000000,2.83185841,0.00000000,0.00000000,8.95000000 +5713,chr22,31018663,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,0.18000000,0.00000000,,0.42857143,87.00000000,3.84955752,0.02298851,0.00000000,8.09000000 +5714,chr22,31018680,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.44871795,80.00000000,3.53982301,0.02500000,0.00000000,8.05000000 +5715,chr22,31019600,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +5716,chr22,31019945,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,-0.57000000,0.00000000,,0.44186047,86.00000000,3.80530973,0.00000000,0.00000000,8.89000000 +5717,chr22,31020136,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,66.00000000,0.00000000,-2.08000000,0.00000000,,0.47126437,89.00000000,3.93805310,0.01123596,0.00000000,8.18000000 +5718,chr22,31020208,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,79.00000000,0.00000000,0.51000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.25000000 +5719,chr22,31021615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,53.00000000,0.00000000,0.10000000,0.00000000,,0.41666667,91.00000000,4.02654867,0.07692308,0.00000000,4.37000000 +5720,chr22,31021624,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.14942529,91.00000000,4.02654867,0.03296703,0.00000000,5.38000000 +5721,chr22,31023047,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.02000000,0.00000000,,0.43137255,104.00000000,4.60176991,0.00961538,0.00000000,8.62000000 +5722,chr22,31024033,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-0.82000000,0.00000000,,0.53246753,78.00000000,3.45132743,0.01282051,0.00000000,4.09000000 +5723,chr22,31028553,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +5724,chr22,31029344,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.02531646,0.00000000,6.03000000 +5725,chr22,31031505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.23000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +5726,chr22,31032867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.29000000 +5727,chr22,31034918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.27272727,0.00000000,18.00000000,0.00000000,1.45000000,0.00000000,,0.31481481,54.00000000,2.38938053,0.00000000,0.00000000,3.17000000 +5728,chr22,31038907,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.43000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.00000000,0.00000000,6.68000000 +5729,chr22,31039501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.04494382,0.00000000,5.40000000 +5730,chr22,31039664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.21000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +5731,chr22,31040508,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.30927835,100.00000000,4.42477876,0.03000000,0.00000000,5.68000000 +5732,chr22,31040622,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.23076923,82.00000000,3.62831858,0.03658537,0.00000000,6.52000000 +5733,chr22,31042595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.68000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +5734,chr22,31043007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.05000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,5.84000000 +5735,chr22,31050429,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.10000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.02531646,0.00000000,5.74000000 +5736,chr22,31053516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,1.68000000,0.00000000,,0.28723404,95.00000000,4.20353982,0.01052632,0.00000000,5.94000000 +5737,chr22,31054456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.70000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +5738,chr22,31054513,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.09000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +5739,chr22,31055471,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.23684211,81.00000000,3.58407080,0.04938272,0.00000000,5.73000000 +5740,chr22,31057219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.51000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.34000000 +5741,chr22,31063208,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +5742,chr22,31072270,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.68000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.83000000 +5743,chr22,31075630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.24137931,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.32203390,69.00000000,3.05309735,0.13043478,0.00000000,6.28000000 +5744,chr22,31076184,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.04000000,0.00000000,6.13000000 +5745,chr22,31076313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.45000000,0.00000000,,0.20792079,101.00000000,4.46902655,0.00000000,0.00000000,6.46000000 +5746,chr22,31077129,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,6.07000000 +5747,chr22,31077309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.38000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.34000000 +5748,chr22,31077729,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.46000000,4.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,86.00000000,0.00000000,0.25000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,5.60000000 +5749,chr22,31077889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.13000000 +5750,chr22,31077905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.68000000 +5751,chr22,31078033,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,71.00000000,0.00000000,-0.69000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.77000000 +5752,chr22,31078103,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,57.39000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,0.75000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,5.45000000 +5753,chr22,31078283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.89000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.65000000 +5754,chr22,31078612,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.70000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.82000000 +5755,chr22,31081577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.87000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,6.00000000 +5756,chr22,31084209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,94.00000000,0.00000000,-0.42000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.68000000 +5757,chr22,31087175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.88000000,0.00000000,,0.29032258,64.00000000,2.83185841,0.03125000,0.00000000,6.27000000 +5758,chr22,31097139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,77.00000000,0.00000000,0.04000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.26000000 +5759,chr22,31097178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.13095238,85.00000000,3.76106195,0.01176471,0.00000000,4.97000000 +5760,chr22,31097636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.28735632,92.00000000,4.07079646,0.04347826,0.00000000,5.82000000 +5761,chr22,31103769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.73000000 +5762,chr22,31112422,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,1.37000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.70000000 +5763,chr22,31116814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.22000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.89000000 +5764,chr22,31118571,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.34000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,5.83000000 +5765,chr22,31120527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,94.00000000,0.00000000,-1.15000000,0.00000000,,0.23157895,100.00000000,4.42477876,0.05000000,0.00000000,4.98000000 +5766,chr22,31130224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.85000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +5767,chr22,31131494,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.17000000,0.00000000,,0.23170732,88.00000000,3.89380531,0.05681818,0.00000000,6.62000000 +5768,chr22,31131999,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +5769,chr22,31140009,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,1.28000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,5.64000000 +5770,chr22,31140694,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.14000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +5771,chr22,31142016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +5772,chr22,31145226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,88.00000000,0.00000000,1.79000000,0.00000000,,0.22093023,90.00000000,3.98230088,0.03333333,0.01098901,5.41000000 +5773,chr22,31145274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.61000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +5774,chr22,31145921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.95000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,7.13000000 +5775,chr22,31147274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,4.86000000 +5776,chr22,31149405,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.74000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.39000000 +5777,chr22,31149549,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,0.37000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,5.96000000 +5778,chr22,31149785,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.02040816,0.00000000,6.17000000 +5779,chr22,31150965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.84000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +5780,chr22,31151131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,0.48000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.50000000 +5781,chr22,31151198,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.30000000 +5782,chr22,31152210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.13000000 +5783,chr22,31154213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,6.62000000 +5784,chr22,31156716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.19000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.51000000 +5785,chr22,31157368,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,87.00000000,0.00000000,0.34000000,0.00000000,,0.20202020,99.00000000,4.38053097,0.00000000,0.00000000,6.05000000 +5786,chr22,31160117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,60.00000000,0.00000000,0.12000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.60000000 +5787,chr22,31160773,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.30000000,0.00000000,,0.30681818,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +5788,chr22,31163958,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,1.31000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.13000000 +5789,chr22,31165146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.21000000,0.00000000,,0.19277108,87.00000000,3.84955752,0.04597701,0.00000000,6.03000000 +5790,chr22,31167569,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-1.93000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.36000000 +5791,chr22,31169108,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.27000000 +5792,chr22,31170392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-0.38000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.42000000 +5793,chr22,31181718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.13000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.23880597,67.00000000,2.96460177,0.00000000,0.00000000,6.02000000 +5794,chr22,31181864,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,-1.43000000,0.00000000,,0.43396226,55.00000000,2.43362832,0.03636364,0.00000000,4.03000000 +5795,chr22,31182575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,1.43000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.38000000 +5796,chr22,31184260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.84000000,0.00000000,,0.12903226,68.00000000,3.00884956,0.07352941,0.00000000,5.43000000 +5797,chr22,31184360,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.60000000 +5798,chr22,31185787,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.10000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.01408451,0.00000000,6.44000000 +5799,chr22,31186676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,5.67000000 +5800,chr22,31189234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.85000000,0.00000000,,0.22857143,76.00000000,3.36283186,0.06578947,0.00000000,6.53000000 +5801,chr22,31191169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.33000000 +5802,chr22,31191172,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +5803,chr22,31191205,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.75000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +5804,chr22,31195242,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,1.79000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,5.84000000 +5805,chr22,31203985,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.88000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.29032258,0.00000000,61.00000000,0.00000000,0.96000000,0.00000000,,0.17241379,73.00000000,3.23008850,0.20547945,0.00000000,5.10000000 +5806,chr22,31206786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.56000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,91.00000000,0.00000000,0.15000000,0.00000000,,0.34210526,77.00000000,3.40707965,0.01298701,0.00000000,7.79000000 +5807,chr22,31207479,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-0.34000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +5808,chr22,31214520,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.43000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +5809,chr22,31220183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,80.00000000,0.00000000,-1.57000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.68000000 +5810,chr22,31227456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.27000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.35000000 +5811,chr22,31232003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.35000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.01204819,0.00000000,7.44000000 +5812,chr22,31237036,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.52000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.17000000 +5813,chr22,31241677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.69000000,0.00000000,,0.33333333,81.00000000,3.58407080,0.00000000,0.00000000,8.88000000 +5814,chr22,31243523,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,1.50000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.15000000 +5815,chr22,31248978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-1.18000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +5816,chr22,31252308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.20000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.86000000 +5817,chr22,31258837,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.30000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.00000000,0.00000000,6.98000000 +5818,chr22,31261196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.89000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +5819,chr22,31263115,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.27000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +5820,chr22,31264506,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.39000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.34000000 +5821,chr22,31268046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.46000000 +5822,chr22,31269058,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,1.04000000,0.00000000,,0.12500000,67.00000000,2.96460177,0.04477612,0.00000000,4.80000000 +5823,chr22,31269644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.41000000 +5824,chr22,31272168,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,92.00000000,0.00000000,0.10000000,0.00000000,,0.23469388,101.00000000,4.46902655,0.01980198,0.00000000,5.26000000 +5825,chr22,31272264,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.41666667,0.00000000,59.00000000,0.00000000,-0.62000000,0.00000000,,0.28333333,75.00000000,3.31858407,0.18666667,0.00000000,4.55000000 +5826,chr22,31273382,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.25000000 +5827,chr22,31274230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.61000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.79000000 +5828,chr22,31281006,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.22000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.59000000 +5829,chr22,31283463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.66000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,6.00000000 +5830,chr22,31283560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,1.05000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,5.88000000 +5831,chr22,31283683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,1.98000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.03488372,0.00000000,5.40000000 +5832,chr22,31287578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.93000000,0.00000000,,0.22950820,62.00000000,2.74336283,0.01612903,0.00000000,4.78000000 +5833,chr22,31290116,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.68000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.02597403,0.00000000,5.47000000 +5834,chr22,31294935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.58000000,0.00000000,,0.25316456,82.00000000,3.62831858,0.03658537,0.00000000,6.66000000 +5835,chr22,31297599,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.67000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.89000000 +5836,chr22,31299803,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,1.50000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.01234568,0.00000000,5.92000000 +5837,chr22,31300292,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.52000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.21000000 +5838,chr22,31303716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,5.10000000 +5839,chr22,31315205,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +5840,chr22,31320205,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,85.00000000,0.00000000,-0.15000000,0.00000000,,0.20879121,97.00000000,4.29203540,0.05154639,0.00000000,5.63000000 +5841,chr22,31329430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.02247191,0.00000000,6.38000000 +5842,chr22,31331484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.18000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.63000000 +5843,chr22,31341450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.98000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.01098901,0.00000000,5.94000000 +5844,chr22,31348013,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +5845,chr22,31351800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.01369863,6.36000000 +5846,chr22,31371072,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.00000000,0.00000000,7.23000000 +5847,chr22,31377587,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.28985507,72.00000000,3.18584071,0.02777778,0.00000000,6.65000000 +5848,chr22,31380260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,1.04000000,0.00000000,,0.27272727,56.00000000,2.47787611,0.01785714,0.00000000,2.78000000 +5849,chr22,31387920,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.82000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,6.64000000 +5850,chr22,31389983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.52000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.18000000 +5851,chr22,31390790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-2.10000000,0.00000000,,0.22972973,78.00000000,3.45132743,0.03846154,0.00000000,6.65000000 +5852,chr22,31393498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.07407407,0.00000000,6.43000000 +5853,chr22,31393683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,-1.07000000,0.00000000,,0.27184466,107.00000000,4.73451327,0.01869159,0.00000000,5.92000000 +5854,chr22,31394431,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,74.00000000,0.00000000,-0.12000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,5.43000000 +5855,chr22,31396306,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +5856,chr22,31398768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.70000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.53000000 +5857,chr22,31407501,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,-0.02000000,0.00000000,,0.08695652,70.00000000,3.09734513,0.01428571,0.00000000,4.85000000 +5858,chr22,31410688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.13000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.02222222,0.00000000,6.55000000 +5859,chr22,31412538,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,27.00000000,0.00000000,-1.17000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,3.02000000 +5860,chr22,31417093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.28000000,0.00000000,,0.26027397,76.00000000,3.36283186,0.03947368,0.00000000,6.73000000 +5861,chr22,31418620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.28000000,78.00000000,3.45132743,0.02564103,0.00000000,5.90000000 +5862,chr22,31420751,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.41000000,0.00000000,,0.17582418,94.00000000,4.15929204,0.03191489,0.00000000,6.28000000 +5863,chr22,31420756,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,6.24000000 +5864,chr22,31423133,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.21000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +5865,chr22,31423156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.58000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.50000000 +5866,chr22,31423942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.93000000,0.00000000,,0.19402985,82.00000000,3.62831858,0.18292683,0.00000000,5.88000000 +5867,chr22,31425733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.52000000,0.00000000,,0.23076923,95.00000000,4.20353982,0.03157895,0.00000000,5.77000000 +5868,chr22,31430164,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.05000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +5869,chr22,31430406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.71000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.03703704,0.00000000,6.33000000 +5870,chr22,31441656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,63.00000000,0.00000000,-0.28000000,0.00000000,,0.26732673,109.00000000,4.82300885,0.06422018,0.00000000,5.69000000 +5871,chr22,31442099,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.77000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.28000000 +5872,chr22,31443165,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,1.13000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +5873,chr22,31443258,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.56000000 +5874,chr22,31443964,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,85.00000000,0.00000000,0.03000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,5.86000000 +5875,chr22,31444393,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,0.19000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.62000000 +5876,chr22,31446104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.61000000,0.00000000,,0.22580645,64.00000000,2.83185841,0.03125000,0.00000000,6.60000000 +5877,chr22,31448387,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.83000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.52000000 +5878,chr22,31449167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +5879,chr22,31451926,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.45000000,0.00000000,,0.29577465,72.00000000,3.18584071,0.01388889,0.00000000,6.53000000 +5880,chr22,31454621,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.83000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,6.28000000 +5881,chr22,31455608,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,-1.94000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,6.87000000 +5882,chr22,31456372,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-1.31000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +5883,chr22,31457498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,6.38000000 +5884,chr22,31457546,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.50000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.52000000 +5885,chr22,31458384,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,100.00000000,0.00000000,-0.71000000,0.00000000,,0.28318584,114.00000000,5.04424779,0.00877193,0.00000000,5.84000000 +5886,chr22,31459262,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.32000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,5.98000000 +5887,chr22,31462043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +5888,chr22,31463525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.36000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.87000000 +5889,chr22,31467568,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.10000000 +5890,chr22,31473481,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-1.39000000,0.00000000,,0.18478261,94.00000000,4.15929204,0.02127660,0.00000000,6.24000000 +5891,chr22,31478778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.18000000,0.00000000,,0.14285714,43.00000000,1.90265487,0.02325581,0.00000000,5.38000000 +5892,chr22,31478820,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.57000000,0.00000000,,0.16666667,37.00000000,1.63716814,0.02702703,0.00000000,2.89000000 +5893,chr22,31479668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,84.00000000,0.00000000,-1.82000000,0.00000000,,0.20253165,87.00000000,3.84955752,0.08045977,0.00000000,4.90000000 +5894,chr22,31485183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +5895,chr22,31485747,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.14000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.82000000 +5896,chr22,31485843,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.75000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.24000000 +5897,chr22,31488419,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.14018692,108.00000000,4.77876106,0.00925926,0.00000000,5.04000000 +5898,chr22,31493858,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.61000000,0.00000000,,0.16666667,50.00000000,2.21238938,0.04000000,0.00000000,5.63000000 +5899,chr22,31496135,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.01000000 +5900,chr22,31497004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.92000000,0.00000000,,0.16304348,96.00000000,4.24778761,0.04166667,0.00000000,4.99000000 +5901,chr22,31499288,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.04000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +5902,chr22,31500186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,34.00000000,0.00000000,-0.76000000,0.00000000,,0.27906977,52.00000000,2.30088496,0.17307692,0.00000000,2.76000000 +5903,chr22,31501092,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.01000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.31000000 +5904,chr22,31504238,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.52000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,5.82000000 +5905,chr22,31505407,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.18072289,89.00000000,3.93805310,0.06741573,0.00000000,6.01000000 +5906,chr22,31509578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +5907,chr22,31509842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.83000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,6.64000000 +5908,chr22,31511441,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,-0.32000000,0.00000000,,0.19230769,85.00000000,3.76106195,0.08235294,0.00000000,5.39000000 +5909,chr22,31517285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.08000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.70000000 +5910,chr22,31522274,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,5.92000000 +5911,chr22,31522836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +5912,chr22,31529742,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,8.16000000 +5913,chr22,31535411,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.84000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.01562500,0.00000000,7.03000000 +5914,chr22,31542735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.22000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,6.50000000 +5915,chr22,31544106,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.78000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.44000000 +5916,chr22,31545254,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +5917,chr22,31549341,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,27.00000000,1.19469027,0.14814815,0.00000000,57.00000000,0.00000000,2.10000000,0.00000000,,0.22000000,65.00000000,2.87610619,0.15384615,0.00000000,3.31000000 +5918,chr22,31551406,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.30000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5919,chr22,31551407,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.30000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5920,chr22,31555822,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.28000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.68000000 +5921,chr22,31559922,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,0.39000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.81000000 +5922,chr22,31560995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.66000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.32000000 +5923,chr22,31561031,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.11000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +5924,chr22,31561181,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.58000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.45000000 +5925,chr22,31561697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.70000000,0.00000000,,0.27659574,95.00000000,4.20353982,0.01052632,0.00000000,6.66000000 +5926,chr22,31562232,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,0.00000000,-1.02000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,5.76000000 +5927,chr22,31563210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.17000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.00000000,0.00000000,5.92000000 +5928,chr22,31563285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.82000000 +5929,chr22,31565122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.73000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +5930,chr22,31567571,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,70.00000000,0.00000000,0.74000000,0.00000000,,0.25352113,84.00000000,3.71681416,0.15476190,0.00000000,5.74000000 +5931,chr22,31568989,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,5.89000000 +5932,chr22,31569068,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.69000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +5933,chr22,31569210,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.85000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.70000000 +5934,chr22,31569345,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,1.51000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,5.85000000 +5935,chr22,31569415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.24000000,0.00000000,,0.10526316,76.00000000,3.36283186,0.00000000,0.00000000,5.09000000 +5936,chr22,31571569,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.01000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,6.31000000 +5937,chr22,31571719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,1.56000000,0.00000000,,0.18000000,101.00000000,4.46902655,0.00000000,0.00000000,6.30000000 +5938,chr22,31576315,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.38000000 +5939,chr22,31577138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.61000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +5940,chr22,31577520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,0.09000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.17000000 +5941,chr22,31579077,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,-0.26000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +5942,chr22,31579361,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.23404255,98.00000000,4.33628319,0.04081633,0.00000000,5.67000000 +5943,chr22,31580313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.82000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,6.25000000 +5944,chr22,31581769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.69000000,0.00000000,,0.25352113,75.00000000,3.31858407,0.02666667,0.00000000,6.40000000 +5945,chr22,31582345,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.46000000,0.00000000,,0.20000000,63.00000000,2.78761062,0.04761905,0.00000000,6.14000000 +5946,chr22,31586255,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.52000000,0.00000000,,0.23214286,56.00000000,2.47787611,0.00000000,0.00000000,6.53000000 +5947,chr22,31586270,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.02000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.53000000 +5948,chr22,31586629,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.66000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.01162791,6.79000000 +5949,chr22,31587085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,97.00000000,0.00000000,-0.19000000,0.00000000,,0.31683168,104.00000000,4.60176991,0.01923077,0.00000000,7.38000000 +5950,chr22,31587774,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +5951,chr22,31587917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.63000000,0.00000000,,0.26136364,89.00000000,3.93805310,0.00000000,0.00000000,6.69000000 +5952,chr22,31588490,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.40000000 +5953,chr22,31590314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.74000000,23.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.79000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,6.42000000 +5954,chr22,31591361,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.92000000,24.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.06000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.08000000 +5955,chr22,31594593,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.00000000,0.00000000,45.00000000,0.00000000,-0.51000000,0.00000000,,0.36000000,51.00000000,2.25663717,0.01960784,0.00000000,4.35000000 +5956,chr22,31594646,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.03000000,0.00000000,,0.18000000,51.00000000,2.25663717,0.01960784,0.00000000,6.11000000 +5957,chr22,31594716,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,36.00000000,0.00000000,0.88000000,0.00000000,,0.31707317,42.00000000,1.85840708,0.02380952,0.00000000,3.39000000 +5958,chr22,31595104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.71000000 +5959,chr22,31595157,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.06000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,5.79000000 +5960,chr22,31595377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,61.00000000,0.00000000,-1.30000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.02247191,0.00000000,5.32000000 +5961,chr22,31596263,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,0.00000000,0.78000000,0.00000000,,0.15662651,85.00000000,3.76106195,0.02352941,0.00000000,5.30000000 +5962,chr22,31596278,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,0.65000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.02439024,0.00000000,5.13000000 +5963,chr22,31596390,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.88000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.29000000 +5964,chr22,31596588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,2.46000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.87000000 +5965,chr22,31597666,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.65000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.00000000,0.00000000,5.48000000 +5966,chr22,31598088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,-1.77000000,0.00000000,,0.10526316,66.00000000,2.92035398,0.13636364,0.00000000,4.96000000 +5967,chr22,31599038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,32.00000000,0.00000000,-1.01000000,0.00000000,,0.31578947,57.00000000,2.52212389,0.00000000,0.00000000,3.06000000 +5968,chr22,31599209,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.17187500,66.00000000,2.92035398,0.03030303,0.00000000,5.61000000 +5969,chr22,31600377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.78000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.00000000 +5970,chr22,31602626,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.85000000 +5971,chr22,31603141,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,94.00000000,0.00000000,1.91000000,0.00000000,,0.37179487,80.00000000,3.53982301,0.01250000,0.00000000,8.26000000 +5972,chr22,31603209,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,5.66000000 +5973,chr22,31605051,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.96000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.50000000 +5974,chr22,31607432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.99000000,0.00000000,,0.21428571,57.00000000,2.52212389,0.01754386,0.00000000,6.90000000 +5975,chr22,31607665,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.61000000 +5976,chr22,31607721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.14000000 +5977,chr22,31607812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.22000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.03750000,0.00000000,6.33000000 +5978,chr22,31609608,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.02000000,0.00000000,,0.49425287,89.00000000,3.93805310,0.02247191,0.00000000,8.41000000 +5979,chr22,31611167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,-0.65000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,5.84000000 +5980,chr22,31613998,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.03030303,84.00000000,0.00000000,0.23000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.01162791,6.37000000 +5981,chr22,31614056,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.94000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +5982,chr22,31615871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,1.49000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +5983,chr22,31616155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.68000000,0.00000000,,0.24731183,96.00000000,4.24778761,0.03125000,0.00000000,5.91000000 +5984,chr22,31617379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.69000000,0.00000000,,0.30136986,75.00000000,3.31858407,0.01333333,0.00000000,7.02000000 +5985,chr22,31617395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,1.47000000,0.00000000,,0.29069767,87.00000000,3.84955752,0.01149425,0.00000000,6.51000000 +5986,chr22,31617456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +5987,chr22,31617473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-0.04000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.24000000 +5988,chr22,31617519,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.14736842,95.00000000,4.20353982,0.00000000,0.00000000,5.44000000 +5989,chr22,31617830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.17708333,100.00000000,4.42477876,0.03000000,0.00000000,6.22000000 +5990,chr22,31619328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.15000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +5991,chr22,31620106,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.30000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.01075269,0.00000000,6.57000000 +5992,chr22,31620173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.15000000 +5993,chr22,31621310,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.99000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +5994,chr22,31624062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,5.38000000 +5995,chr22,31624328,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.06000000 +5996,chr22,31624427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +5997,chr22,31624759,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,62.00000000,0.00000000,0.60000000,0.00000000,,0.16438356,85.00000000,3.76106195,0.10588235,0.00000000,5.37000000 +5998,chr22,31624881,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.36000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.03750000,0.00000000,6.32000000 +5999,chr22,31625364,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-2.05000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +6000,chr22,31625610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.43000000 +6001,chr22,31626723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.02325581,43.00000000,1.90265487,0.00000000,0.00000000,95.00000000,0.00000000,-1.82000000,0.00000000,,0.29545455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +6002,chr22,31626862,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.40000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,6.09000000 +6003,chr22,31627023,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.18627451,105.00000000,4.64601770,0.01904762,0.00000000,6.28000000 +6004,chr22,31627103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.19101124,95.00000000,4.20353982,0.05263158,0.00000000,5.96000000 +6005,chr22,31628994,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.36363636,67.00000000,2.96460177,0.01492537,0.00000000,7.71000000 +6006,chr22,31629069,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.83000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.84000000 +6007,chr22,31629114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.01000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.28000000 +6008,chr22,31630960,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.84000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.04395604,0.00000000,6.13000000 +6009,chr22,31630975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17391304,97.00000000,4.29203540,0.03092784,0.00000000,6.25000000 +6010,chr22,31631906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.15000000,0.00000000,,0.20000000,94.00000000,4.15929204,0.04255319,0.00000000,6.24000000 +6011,chr22,31632004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +6012,chr22,31632042,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,5.42000000 +6013,chr22,31632915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.53000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.64000000 +6014,chr22,31633140,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.05000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +6015,chr22,31633672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.21052632,59.00000000,2.61061947,0.01694915,0.00000000,6.76000000 +6016,chr22,31633821,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,2.04000000,0.00000000,,0.22222222,94.00000000,4.15929204,0.04255319,0.00000000,6.27000000 +6017,chr22,31634601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.40000000 +6018,chr22,31634707,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.20000000 +6019,chr22,31634762,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,63.00000000,0.00000000,-0.51000000,0.00000000,,0.16216216,88.00000000,3.89380531,0.15909091,0.00000000,4.86000000 +6020,chr22,31634909,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.93000000,0.00000000,,0.15625000,69.00000000,3.05309735,0.07246377,0.00000000,5.84000000 +6021,chr22,31636054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,0.13000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.05000000 +6022,chr22,31636076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,64.00000000,0.00000000,0.91000000,0.00000000,,0.14444444,93.00000000,4.11504425,0.03225806,0.00000000,4.95000000 +6023,chr22,31636292,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.66000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +6024,chr22,31636456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.01000000 +6025,chr22,31636562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,66.00000000,0.00000000,0.02000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,4.98000000 +6026,chr22,31636989,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.77000000,0.00000000,,0.25000000,53.00000000,2.34513274,0.01886792,0.00000000,6.73000000 +6027,chr22,31639532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.23000000,0.00000000,,0.27368421,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6028,chr22,31641544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.91000000 +6029,chr22,31642840,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-1.61000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.00000000,0.00000000,6.91000000 +6030,chr22,31643325,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,6.33000000 +6031,chr22,31643865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +6032,chr22,31645069,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,2.92000000 +6033,chr22,31646359,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.17777778,93.00000000,4.11504425,0.02150538,0.00000000,5.67000000 +6034,chr22,31646528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,80.00000000,0.00000000,-0.38000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,4.84000000 +6035,chr22,31646746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-1.32000000,0.00000000,,0.11392405,80.00000000,3.53982301,0.01250000,0.00000000,5.77000000 +6036,chr22,31647625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.34000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.52000000 +6037,chr22,31647849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,87.00000000,0.00000000,-0.13000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,5.65000000 +6038,chr22,31648493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +6039,chr22,31649463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.20987654,85.00000000,3.76106195,0.04705882,0.00000000,6.37000000 +6040,chr22,31650036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.58000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.03260870,0.00000000,6.23000000 +6041,chr22,31650217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.07000000 +6042,chr22,31650967,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +6043,chr22,31651124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.19000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.66000000 +6044,chr22,31651412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.94000000,0.00000000,,0.35714286,84.00000000,3.71681416,0.00000000,0.00000000,8.92000000 +6045,chr22,31651955,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-2.37000000,0.00000000,,0.26966292,93.00000000,4.11504425,0.03225806,0.00000000,6.46000000 +6046,chr22,31653313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.99000000,0.00000000,,0.24468085,97.00000000,4.29203540,0.03092784,0.00000000,6.65000000 +6047,chr22,31656613,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-2.05000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +6048,chr22,31656720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,1.16000000,0.00000000,,0.15116279,86.00000000,3.80530973,0.00000000,0.00000000,5.23000000 +6049,chr22,31656752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.88000000,0.00000000,,0.17346939,98.00000000,4.33628319,0.00000000,0.00000000,5.46000000 +6050,chr22,31656864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.29000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.70000000 +6051,chr22,31657213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,6.17000000 +6052,chr22,31658040,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.55000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +6053,chr22,31658429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,87.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.03225806,0.00000000,5.31000000 +6054,chr22,31662283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,1.24000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.03448276,0.00000000,5.32000000 +6055,chr22,31664852,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.38000000,0.00000000,,0.25454545,57.00000000,2.52212389,0.03508772,0.00000000,6.60000000 +6056,chr22,31664877,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.60000000 +6057,chr22,31666622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.88000000 +6058,chr22,31667710,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,54.00000000,0.00000000,-0.15000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,2.78000000 +6059,chr22,31668336,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.94000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +6060,chr22,31669094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.94000000 +6061,chr22,31670425,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.01000000,0.00000000,,0.28571429,52.00000000,2.30088496,0.01923077,0.00000000,7.54000000 +6062,chr22,31672931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,-0.66000000,0.00000000,,0.24742268,99.00000000,4.38053097,0.01010101,0.00000000,5.89000000 +6063,chr22,31673428,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.77000000 +6064,chr22,31673447,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.61000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +6065,chr22,31674172,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,-0.07000000,0.00000000,,0.29787234,97.00000000,4.29203540,0.03092784,0.00000000,6.44000000 +6066,chr22,31675133,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.92000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,6.26000000 +6067,chr22,31675209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.76000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.34000000 +6068,chr22,31678406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-2.00000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,4.92000000 +6069,chr22,31678911,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.65000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +6070,chr22,31679553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.44000000 +6071,chr22,31679645,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.23000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.70000000 +6072,chr22,31679913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.13978495,94.00000000,4.15929204,0.01063830,0.00000000,5.59000000 +6073,chr22,31680933,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.67000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.19000000 +6074,chr22,31680969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,34.00000000,1.50442478,0.05882353,0.00000000,62.00000000,0.00000000,0.51000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,5.55000000 +6075,chr22,31683461,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.64000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +6076,chr22,31685695,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,1.31000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +6077,chr22,31685943,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.23000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.33000000 +6078,chr22,31686168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,68.00000000,0.00000000,0.92000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.54000000 +6079,chr22,31686359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,0.04000000,0.00000000,,0.18518519,88.00000000,3.89380531,0.07954545,0.00000000,5.28000000 +6080,chr22,31686441,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.13333333,91.00000000,4.02654867,0.01098901,0.00000000,5.15000000 +6081,chr22,31687770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.32000000,0.00000000,,0.27083333,49.00000000,2.16814159,0.02040816,0.00000000,6.38000000 +6082,chr22,31688348,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.40000000 +6083,chr22,31688566,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,0.80000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,5.80000000 +6084,chr22,31689479,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.00000000,0.00000000,6.25000000 +6085,chr22,31690383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.11000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.73000000 +6086,chr22,31691057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.83000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,6.89000000 +6087,chr22,31691712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,5.91000000 +6088,chr22,31696995,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.10000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,6.86000000 +6089,chr22,31697195,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-1.02000000,0.00000000,,0.18181818,82.00000000,3.62831858,0.06097561,0.00000000,6.38000000 +6090,chr22,31699161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.09000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.84000000 +6091,chr22,31699513,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.60000000,0.00000000,,0.13402062,98.00000000,4.33628319,0.01020408,0.00000000,5.55000000 +6092,chr22,31701789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,2.73000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.36000000 +6093,chr22,31703230,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.24210526,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +6094,chr22,31704564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.55000000,0.00000000,,0.25974026,80.00000000,3.53982301,0.03750000,0.00000000,6.27000000 +6095,chr22,31704871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,90.00000000,0.00000000,0.54000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.01149425,0.00000000,5.81000000 +6096,chr22,31708182,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.00000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,5.50000000 +6097,chr22,31708325,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.99000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.20000000 +6098,chr22,31708681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.44000000,0.00000000,,0.16666667,75.00000000,3.31858407,0.01333333,0.00000000,6.41000000 +6099,chr22,31709855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-1.06000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.03614458,0.00000000,5.67000000 +6100,chr22,31710018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.07000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.63000000 +6101,chr22,31710716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,1.35000000,0.00000000,,0.36486486,77.00000000,3.40707965,0.01298701,0.00000000,8.15000000 +6102,chr22,31712489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.58000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +6103,chr22,31712838,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.02000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.06000000 +6104,chr22,31714957,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.85000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.49000000 +6105,chr22,31717968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.28571429,56.00000000,2.47787611,0.12500000,0.00000000,5.66000000 +6106,chr22,31718857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.14000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-1.37000000,0.00000000,,0.16279070,43.00000000,1.90265487,0.00000000,0.00000000,6.23000000 +6107,chr22,31719583,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +6108,chr22,31719664,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.94000000 +6109,chr22,31719983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.21000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.47000000 +6110,chr22,31720397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.17894737,96.00000000,4.24778761,0.01041667,0.00000000,6.45000000 +6111,chr22,31721546,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,58.00000000,0.00000000,-0.81000000,0.00000000,,0.18518519,74.00000000,3.27433628,0.24324324,0.00000000,4.03000000 +6112,chr22,31724042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.32000000 +6113,chr22,31724387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.69000000 +6114,chr22,31727710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.85000000,0.00000000,,0.22807018,58.00000000,2.56637168,0.00000000,0.00000000,3.83000000 +6115,chr22,31728484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,1.13000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.89000000 +6116,chr22,31728792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,87.00000000,0.00000000,1.11000000,0.00000000,,0.24761905,115.00000000,5.08849558,0.07826087,0.00000000,5.80000000 +6117,chr22,31730377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,2.33000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.54000000 +6118,chr22,31732285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.70000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.27000000 +6119,chr22,31733470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.99000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +6120,chr22,31733564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.48000000 +6121,chr22,31734263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.54000000,0.00000000,,0.27956989,93.00000000,4.11504425,0.00000000,0.00000000,6.44000000 +6122,chr22,31734291,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.67000000 +6123,chr22,31735036,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.14678899,111.00000000,4.91150442,0.01801802,0.00000000,5.43000000 +6124,chr22,31735947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.48000000,0.00000000,,0.20370370,58.00000000,2.56637168,0.06896552,0.00000000,2.84000000 +6125,chr22,31736198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,52.00000000,0.00000000,-0.94000000,0.00000000,,0.29824561,64.00000000,2.83185841,0.10937500,0.00000000,3.02000000 +6126,chr22,31737857,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.92000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,4.12000000 +6127,chr22,31738228,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.11827957,97.00000000,4.29203540,0.04123711,0.00000000,4.94000000 +6128,chr22,31739596,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.24038462,106.00000000,4.69026549,0.01886792,0.00000000,5.88000000 +6129,chr22,31739826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.12000000 +6130,chr22,31740394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.40000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.39000000 +6131,chr22,31742152,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.01492537,0.00000000,6.34000000 +6132,chr22,31744393,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.64000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.68000000 +6133,chr22,31744948,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.21000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +6134,chr22,31745202,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.45000000 +6135,chr22,31747257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.29000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.17000000 +6136,chr22,31748893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,6.53000000 +6137,chr22,31755718,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.21666667,123.00000000,5.44247788,0.02439024,0.00000000,5.86000000 +6138,chr22,31757856,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-0.01000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.95000000 +6139,chr22,31758936,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.19512195,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.14084507,80.00000000,3.53982301,0.10000000,0.00000000,4.47000000 +6140,chr22,31759355,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.70000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.39000000 +6141,chr22,31760166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,52.00000000,0.00000000,-1.40000000,0.00000000,,0.30508475,65.00000000,2.87610619,0.09230769,0.00000000,2.84000000 +6142,chr22,31762435,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.01000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.63000000 +6143,chr22,31764641,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.48000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.65000000 +6144,chr22,31765581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.82000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.01333333,0.00000000,6.64000000 +6145,chr22,31769522,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.64000000,0.00000000,,0.32222222,90.00000000,3.98230088,0.00000000,0.00000000,7.69000000 +6146,chr22,31770360,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.03278689,0.00000000,5.98000000 +6147,chr22,31771285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.59000000 +6148,chr22,31771927,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.66000000,0.00000000,,0.25742574,103.00000000,4.55752212,0.01941748,0.00000000,5.84000000 +6149,chr22,31774912,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.68000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.71000000 +6150,chr22,31780333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.76000000 +6151,chr22,31781835,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.26785714,56.00000000,2.47787611,0.00000000,0.00000000,6.62000000 +6152,chr22,31785273,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.43000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +6153,chr22,31786573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.68000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.57000000 +6154,chr22,31786722,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,5.83000000 +6155,chr22,31789443,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,76.00000000,0.00000000,0.68000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.03260870,0.00000000,5.59000000 +6156,chr22,31790711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.57000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,6.08000000 +6157,chr22,31793928,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.17000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +6158,chr22,31797243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.30000000 +6159,chr22,31802876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.56000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.01298701,0.00000000,6.66000000 +6160,chr22,31802982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.31000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +6161,chr22,31803414,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.42000000,0.00000000,,0.32432432,74.00000000,3.27433628,0.00000000,0.00000000,7.97000000 +6162,chr22,31804417,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.94000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.81000000 +6163,chr22,31806893,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.58000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +6164,chr22,31807909,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.62000000 +6165,chr22,31809248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,2.61000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.76000000 +6166,chr22,31809646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.11000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,4.30000000 +6167,chr22,31809848,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.27397260,75.00000000,3.31858407,0.02666667,0.00000000,5.72000000 +6168,chr22,31811217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,1.55000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.98000000 +6169,chr22,31812279,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.74000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.23000000 +6170,chr22,31815464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.15517241,79.00000000,3.49557522,0.26582278,0.00000000,5.19000000 +6171,chr22,31824643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.45000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.73000000 +6172,chr22,31831944,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +6173,chr22,31832165,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.71000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.41000000 +6174,chr22,31833991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +6175,chr22,31834362,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,2.54000000,0.00000000,,0.32051282,78.00000000,3.45132743,0.00000000,0.00000000,7.58000000 +6176,chr22,31834661,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.37000000,0.00000000,,0.29508197,63.00000000,2.78761062,0.01587302,0.00000000,5.50000000 +6177,chr22,31836302,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-1.78000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +6178,chr22,31844141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.22972973,77.00000000,3.40707965,0.02597403,0.00000000,6.67000000 +6179,chr22,31844240,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.44000000 +6180,chr22,31854739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.12000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.77000000 +6181,chr22,31855463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.12857143,80.00000000,3.53982301,0.10000000,0.00000000,4.82000000 +6182,chr22,31862181,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.23000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,6.36000000 +6183,chr22,31867145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,-1.18000000,0.00000000,,0.09411765,86.00000000,3.80530973,0.01162791,0.00000000,5.66000000 +6184,chr22,31877490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.16071429,65.00000000,2.87610619,0.12307692,0.00000000,5.49000000 +6185,chr22,31881877,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.73000000,0.00000000,,0.17187500,66.00000000,2.92035398,0.03030303,0.00000000,5.42000000 +6186,chr22,31886061,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,1.06000000,0.00000000,,0.20000000,79.00000000,3.49557522,0.05063291,0.00000000,6.28000000 +6187,chr22,31908301,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,2.24000000,0.00000000,,0.17500000,85.00000000,3.76106195,0.04705882,0.00000000,5.82000000 +6188,chr22,31961956,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,7.00000000 +6189,chr22,31984081,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.81000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,6.13000000 +6190,chr22,32026142,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,0.65000000,0.00000000,,0.29508197,61.00000000,2.69911504,0.00000000,0.00000000,2.89000000 +6191,chr22,32036659,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.71000000 +6192,chr22,32043287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-1.05000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.39000000 +6193,chr22,32050818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.46000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.95000000 +6194,chr22,32056941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.11000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.85000000 +6195,chr22,32071664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.78000000 +6196,chr22,32075141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.14814815,61.00000000,2.69911504,0.09836066,0.00000000,4.97000000 +6197,chr22,32120903,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.22000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,5.22000000 +6198,chr22,32142440,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.46000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.87000000 +6199,chr22,32152465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.47000000,15.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,85.00000000,0.00000000,-1.59000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.36000000 +6200,chr22,32165850,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,2.66000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.58000000 +6201,chr22,32181533,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.54000000 +6202,chr22,32182165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.42000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,5.81000000 +6203,chr22,32183026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.90000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +6204,chr22,32183198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.40000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.03947368,0.00000000,5.97000000 +6205,chr22,32184143,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-0.90000000,0.00000000,,0.14102564,82.00000000,3.62831858,0.04878049,0.00000000,5.42000000 +6206,chr22,32186377,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,-0.61000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.87000000 +6207,chr22,32189655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05882353,18.00000000,0.79646018,0.00000000,0.00000000,5.00000000,0.00000000,-0.85000000,0.00000000,,0.31168831,79.00000000,3.49557522,0.00000000,0.00000000,3.33000000 +6208,chr22,32193431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,70.00000000,0.00000000,-1.41000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.06000000 +6209,chr22,32197396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,4.98000000 +6210,chr22,32197419,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.16279070,92.00000000,4.07079646,0.06521739,0.00000000,5.46000000 +6211,chr22,32199903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,90.00000000,0.00000000,0.48000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,5.59000000 +6212,chr22,32199969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.81000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.28000000 +6213,chr22,32203915,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.15789474,0.00000000,36.00000000,0.00000000,-2.80000000,0.00000000,,0.36538462,64.00000000,2.83185841,0.18750000,0.00000000,4.11000000 +6214,chr22,32206601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,-1.30000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,6.39000000 +6215,chr22,32208899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-1.42000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.02469136,0.00000000,5.93000000 +6216,chr22,32210803,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.83000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.40000000 +6217,chr22,32210816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.69000000 +6218,chr22,32210901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,7.01000000 +6219,chr22,32211070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.50000000 +6220,chr22,32211087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +6221,chr22,32211129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.19753086,87.00000000,3.84955752,0.06896552,0.00000000,5.72000000 +6222,chr22,32211187,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +6223,chr22,32211188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +6224,chr22,32211678,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-1.47000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,7.18000000 +6225,chr22,32212040,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-1.77000000,0.00000000,,0.18750000,69.00000000,3.05309735,0.05797101,0.00000000,6.28000000 +6226,chr22,32212117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,1.19000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.86000000 +6227,chr22,32212615,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.00000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +6228,chr22,32213236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,1.34000000,0.00000000,,0.11764706,72.00000000,3.18584071,0.05555556,0.00000000,4.63000000 +6229,chr22,32213368,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,5.85000000 +6230,chr22,32213381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.20000000,62.00000000,2.74336283,0.03225806,0.00000000,5.75000000 +6231,chr22,32213528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.09000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.10769231,69.00000000,3.05309735,0.04347826,0.00000000,3.84000000 +6232,chr22,32214034,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,6.82000000,,0.13829787,95.00000000,4.20353982,0.01052632,0.00000000,4.67000000 +6233,chr22,32215041,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.85000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.67000000 +6234,chr22,32215545,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,0.94000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.32000000 +6235,chr22,32216077,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,87.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,5.93000000 +6236,chr22,32216243,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.74000000 +6237,chr22,32217805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +6238,chr22,32220883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,0.68000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +6239,chr22,32221847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.00000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +6240,chr22,32223104,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.50000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +6241,chr22,32223228,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +6242,chr22,32224070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.40000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.00000000,0.00000000,6.76000000 +6243,chr22,32228402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.38000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,6.51000000 +6244,chr22,32229223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-2.07000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.88000000 +6245,chr22,32238890,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,0.29000000,0.00000000,,0.36065574,62.00000000,2.74336283,0.01612903,0.00000000,8.10000000 +6246,chr22,32239801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.22000000,0.00000000,,0.14705882,35.00000000,1.54867257,0.02857143,0.00000000,2.89000000 +6247,chr22,32239804,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.22000000,0.00000000,,0.14705882,35.00000000,1.54867257,0.02857143,0.00000000,2.90000000 +6248,chr22,32240893,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.13978495,94.00000000,4.15929204,0.01063830,0.00000000,5.56000000 +6249,chr22,32242340,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.15384615,65.00000000,2.87610619,0.00000000,0.00000000,5.57000000 +6250,chr22,32243251,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,1.78000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,5.66000000 +6251,chr22,32244718,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.70000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.00000000,0.00000000,6.64000000 +6252,chr22,32251345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.48000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.83000000 +6253,chr22,32252402,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,0.43000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +6254,chr22,32253444,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.89000000 +6255,chr22,32254587,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,44.00000000,0.00000000,-0.41000000,0.00000000,,0.36842105,57.00000000,2.52212389,0.00000000,0.00000000,3.97000000 +6256,chr22,32256042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.01136364,0.00000000,6.48000000 +6257,chr22,32258180,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.57000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.57000000 +6258,chr22,32258794,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +6259,chr22,32260035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.14000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +6260,chr22,32260190,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.62000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.14000000 +6261,chr22,32261117,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,62.00000000,0.00000000,-0.97000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.06172840,0.00000000,5.44000000 +6262,chr22,32261780,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.72000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.01030928,0.00000000,6.87000000 +6263,chr22,32263644,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,80.00000000,0.00000000,-0.43000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,6.36000000 +6264,chr22,32263897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.39000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.67000000 +6265,chr22,32264425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,1.11000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.22000000 +6266,chr22,32265844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,56.00000000,0.00000000,-0.26000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,4.86000000 +6267,chr22,32266397,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.89000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +6268,chr22,32267166,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.27000000,0.00000000,,0.17073171,86.00000000,3.80530973,0.03488372,0.00000000,6.11000000 +6269,chr22,32267949,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.57000000,0.00000000,,0.21875000,68.00000000,3.00884956,0.05882353,0.00000000,6.70000000 +6270,chr22,32269802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-2.22000000,0.00000000,,0.15789474,97.00000000,4.29203540,0.02061856,0.00000000,5.52000000 +6271,chr22,32270020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.86000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,4.72000000 +6272,chr22,32271520,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,89.00000000,0.00000000,1.16000000,0.00000000,,0.38028169,72.00000000,3.18584071,0.01388889,0.00000000,8.16000000 +6273,chr22,32272384,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,8.17000000 +6274,chr22,32273832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.21212121,102.00000000,4.51327434,0.01960784,0.00000000,6.70000000 +6275,chr22,32273846,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.39000000,0.00000000,,0.21875000,98.00000000,4.33628319,0.02040816,0.00000000,6.26000000 +6276,chr22,32277060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-1.26000000,0.00000000,,0.15217391,92.00000000,4.07079646,0.00000000,0.00000000,5.86000000 +6277,chr22,32277472,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.37000000 +6278,chr22,32277542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.13000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.36000000 +6279,chr22,32280456,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.63000000,0.00000000,,0.14516129,64.00000000,2.83185841,0.03125000,0.00000000,6.07000000 +6280,chr22,32285162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.49000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +6281,chr22,32286032,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.54000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,5.58000000 +6282,chr22,32286034,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.54000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,5.72000000 +6283,chr22,32286192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.32000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.62000000 +6284,chr22,32286221,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.18000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +6285,chr22,32286253,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.07000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.73000000 +6286,chr22,32286328,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.07000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +6287,chr22,32287016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.37000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.01282051,0.00000000,6.90000000 +6288,chr22,32287178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.38000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.08000000 +6289,chr22,32287387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.48000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.09000000 +6290,chr22,32287509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,1.13000000,0.00000000,,0.09090909,89.00000000,3.93805310,0.01123596,0.00000000,4.84000000 +6291,chr22,32288668,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,58.00000000,0.00000000,1.32000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.01123596,0.00000000,4.13000000 +6292,chr22,32288872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-1.60000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.15000000 +6293,chr22,32289236,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,0.18000000,0.00000000,,0.17045455,94.00000000,4.15929204,0.03191489,0.00000000,5.62000000 +6294,chr22,32290112,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.23000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.85000000,0.00000000,,0.24444444,92.00000000,4.07079646,0.01086957,0.00000000,6.22000000 +6295,chr22,32290148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.86000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.02000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.05000000 +6296,chr22,32290207,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,1.72000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.00000000,0.00000000,6.28000000 +6297,chr22,32290223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.46000000 +6298,chr22,32290586,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.78000000,0.00000000,,0.18556701,97.00000000,4.29203540,0.00000000,0.00000000,6.26000000 +6299,chr22,32290609,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.32000000 +6300,chr22,32290667,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.15584416,77.00000000,3.40707965,0.00000000,0.00000000,5.93000000 +6301,chr22,32290697,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.95000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.00000000,0.00000000,6.63000000 +6302,chr22,32290875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.34000000 +6303,chr22,32291049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +6304,chr22,32291420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.64000000 +6305,chr22,32291596,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.36000000 +6306,chr22,32291640,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.69000000 +6307,chr22,32291681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.97000000 +6308,chr22,32291693,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +6309,chr22,32291771,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,74.00000000,0.00000000,0.59000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.55000000 +6310,chr22,32291793,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,0.00000000,0.83000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.06000000 +6311,chr22,32291830,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,1.30000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,4.67000000 +6312,chr22,32291982,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.37000000,0.00000000,,0.23333333,63.00000000,2.78761062,0.04761905,0.00000000,6.31000000 +6313,chr22,32292030,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.04000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.01562500,0.00000000,6.27000000 +6314,chr22,32292045,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.72000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.37000000 +6315,chr22,32292245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.73000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-2.91000000,0.00000000,,0.11666667,61.00000000,2.69911504,0.01639344,0.00000000,4.34000000 +6316,chr22,32292271,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.68000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-2.86000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.09589041,0.00000000,5.41000000 +6317,chr22,32292475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.00000000 +6318,chr22,32292505,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,79.00000000,0.00000000,1.38000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.01111111,6.08000000 +6319,chr22,32292532,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.57000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,6.06000000 +6320,chr22,32292570,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.59000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.15625000,97.00000000,4.29203540,0.01030928,0.00000000,5.56000000 +6321,chr22,32292934,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.23300971,104.00000000,4.60176991,0.00961538,0.00000000,5.92000000 +6322,chr22,32293194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,-1.82000000,0.00000000,,0.26595745,95.00000000,4.20353982,0.01052632,0.00000000,6.61000000 +6323,chr22,32293196,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,93.00000000,0.00000000,-1.53000000,0.00000000,,0.27472527,94.00000000,4.15929204,0.02127660,0.00000000,6.68000000 +6324,chr22,32293224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,1.76000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.45000000 +6325,chr22,32293631,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.06000000 +6326,chr22,32293653,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,-1.22000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,5.78000000 +6327,chr22,32293675,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.66000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +6328,chr22,32293683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.77000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.47000000 +6329,chr22,32293736,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,1.03000000,0.00000000,,0.13414634,84.00000000,3.71681416,0.01190476,0.00000000,5.59000000 +6330,chr22,32293900,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,85.00000000,0.00000000,-0.19000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,5.98000000 +6331,chr22,32293976,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,0.04000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,5.64000000 +6332,chr22,32294145,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.57000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,5.96000000 +6333,chr22,32294253,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-1.27000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.07000000 +6334,chr22,32294539,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.94000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.08571429,70.00000000,3.09734513,0.00000000,0.00000000,4.99000000 +6335,chr22,32294609,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.90000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.29000000 +6336,chr22,32300235,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.54000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,2.64000000,,0.07936508,63.00000000,2.78761062,0.00000000,0.00000000,4.42000000 +6337,chr22,32300360,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,60.00000000,0.00000000,0.18000000,2.32000000,,0.09677419,62.00000000,2.74336283,0.00000000,0.00000000,3.49000000 +6338,chr22,32300434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,2.01000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,4.21000000 +6339,chr22,32300522,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.33000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.23000000,1.59000000,,0.20000000,60.00000000,2.65486726,0.00000000,0.00000000,4.88000000 +6340,chr22,32300525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.24000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.70000000,2.31000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,5.02000000 +6341,chr22,32300614,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.87000000,0.00000000,,0.14925373,72.00000000,3.18584071,0.04166667,0.00000000,5.72000000 +6342,chr22,32300627,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.03000000 +6343,chr22,32300632,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.32000000 +6344,chr22,32300723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,66.00000000,0.00000000,-0.70000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.86000000 +6345,chr22,32300749,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.53000000,0.00000000,,0.24000000,103.00000000,4.55752212,0.01941748,0.00000000,6.60000000 +6346,chr22,32300750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-0.86000000,0.00000000,,0.25252525,102.00000000,4.51327434,0.01960784,0.00000000,6.05000000 +6347,chr22,32300871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,1.14000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.02352941,0.00000000,6.57000000 +6348,chr22,32300985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.31000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.27000000 +6349,chr22,32301031,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,0.05000000,0.00000000,,0.15789474,95.00000000,4.20353982,0.00000000,0.00000000,5.05000000 +6350,chr22,32301178,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.00000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.60000000 +6351,chr22,32301191,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +6352,chr22,32301402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,-0.73000000,0.00000000,,0.20000000,106.00000000,4.69026549,0.00000000,0.00000000,6.43000000 +6353,chr22,32301590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.41000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,7.02000000 +6354,chr22,32301612,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.23000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.88000000 +6355,chr22,32301767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-1.46000000,0.00000000,,0.21590909,95.00000000,4.20353982,0.04210526,0.00000000,6.03000000 +6356,chr22,32301804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,-1.13000000,0.00000000,,0.24096386,93.00000000,4.11504425,0.10752688,0.00000000,2.81000000 +6357,chr22,32302031,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.40000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.24000000 +6358,chr22,32302374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.28000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.06250000,0.00000000,5.70000000 +6359,chr22,32302493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.38000000,0.00000000,,0.23863636,90.00000000,3.98230088,0.02222222,0.00000000,6.33000000 +6360,chr22,32302528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.28000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.30000000 +6361,chr22,32302628,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,1.80000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.49000000 +6362,chr22,32302660,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.85000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6363,chr22,32302733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-2.36000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.65000000 +6364,chr22,32303002,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.18000000,0.00000000,,0.16666667,104.00000000,4.60176991,0.01923077,0.00000000,5.65000000 +6365,chr22,32303468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,-1.75000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.01234568,0.00000000,2.76000000 +6366,chr22,32303686,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,5.83000000 +6367,chr22,32303785,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.40000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.71000000 +6368,chr22,32303935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.13114754,62.00000000,2.74336283,0.00000000,0.00000000,5.48000000 +6369,chr22,32304183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +6370,chr22,32304311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.10000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.68000000 +6371,chr22,32304526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,1.33000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +6372,chr22,32304756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.14000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.37000000 +6373,chr22,32305148,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-2.01000000,0.00000000,,0.20652174,95.00000000,4.20353982,0.03157895,0.00000000,6.08000000 +6374,chr22,32305165,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,65.00000000,0.00000000,-1.21000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.02150538,0.00000000,6.00000000 +6375,chr22,32305290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.11000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.82000000 +6376,chr22,32305666,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.68000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,5.19000000 +6377,chr22,32305783,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.78000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6378,chr22,32305953,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +6379,chr22,32305966,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.19000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.63000000 +6380,chr22,32305981,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.39000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +6381,chr22,32306036,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.00000000,0.00000000,,0.29787234,97.00000000,4.29203540,0.01030928,0.00000000,7.22000000 +6382,chr22,32306091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.23762376,105.00000000,4.64601770,0.02857143,0.00000000,5.77000000 +6383,chr22,32306391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,51.00000000,0.00000000,0.53000000,0.00000000,,0.27868852,69.00000000,3.05309735,0.11594203,0.00000000,2.87000000 +6384,chr22,32306829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.10000000,72.00000000,3.18584071,0.02777778,0.00000000,5.19000000 +6385,chr22,32306845,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-1.91000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.82000000 +6386,chr22,32306934,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.20000000,89.00000000,3.93805310,0.03370787,0.00000000,5.89000000 +6387,chr22,32306935,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.09000000,0.00000000,,0.20238095,87.00000000,3.84955752,0.03448276,0.00000000,6.19000000 +6388,chr22,32307045,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.20967742,66.00000000,2.92035398,0.06060606,0.00000000,5.69000000 +6389,chr22,32307085,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-1.43000000,0.00000000,,0.16949153,60.00000000,2.65486726,0.01666667,0.00000000,5.70000000 +6390,chr22,32307108,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,-2.07000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.51000000 +6391,chr22,32307828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.61000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.69000000 +6392,chr22,32308244,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +6393,chr22,32308390,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.12000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +6394,chr22,32308459,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,-0.51000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.40000000 +6395,chr22,32308498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-1.14000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.75000000 +6396,chr22,32309033,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.61000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.05000000 +6397,chr22,32309111,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.41000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +6398,chr22,32309476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.21000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.38000000 +6399,chr22,32309484,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.02000000 +6400,chr22,32310234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,5.60000000 +6401,chr22,32311184,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.20000000 +6402,chr22,32311421,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.47000000 +6403,chr22,32311425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-0.13000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.46000000 +6404,chr22,32311480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,-1.67000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,5.94000000 +6405,chr22,32313236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +6406,chr22,32313866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.35000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.61000000 +6407,chr22,32318666,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.31000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,6.28000000 +6408,chr22,32319953,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.87000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.18000000 +6409,chr22,32320143,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.33000000,0.00000000,,0.28735632,88.00000000,3.89380531,0.01136364,0.00000000,6.66000000 +6410,chr22,32320272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +6411,chr22,32320359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.72000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.28000000 +6412,chr22,32320805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,0.78000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +6413,chr22,32320940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,1.54000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.00000000,0.00000000,6.30000000 +6414,chr22,32321186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.17000000,0.00000000,,0.32222222,90.00000000,3.98230088,0.00000000,0.00000000,8.35000000 +6415,chr22,32321205,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,86.00000000,0.00000000,-1.17000000,0.00000000,,0.28735632,88.00000000,3.89380531,0.01136364,0.00000000,6.43000000 +6416,chr22,32321217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,86.00000000,0.00000000,-0.89000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.38000000 +6417,chr22,32321716,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.49000000,0.00000000,,0.21739130,72.00000000,3.18584071,0.02777778,0.00000000,6.34000000 +6418,chr22,32321751,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.32000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.66000000 +6419,chr22,32324667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.67000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +6420,chr22,32324798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,85.00000000,0.00000000,1.51000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.63000000 +6421,chr22,32325104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.86000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6422,chr22,32325637,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.88000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.61000000 +6423,chr22,32326669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.56000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.23000000 +6424,chr22,32326976,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.96000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,5.32000000 +6425,chr22,32327051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,1.59000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.77000000 +6426,chr22,32328001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.27777778,92.00000000,4.07079646,0.02173913,0.00000000,6.36000000 +6427,chr22,32328016,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.31325301,87.00000000,3.84955752,0.03448276,0.00000000,7.44000000 +6428,chr22,32328101,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.22000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.60000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,5.67000000 +6429,chr22,32328545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.53000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.03000000 +6430,chr22,32328710,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.09000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +6431,chr22,32331557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.25423729,59.00000000,2.61061947,0.00000000,0.00000000,6.71000000 +6432,chr22,32331558,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.76000000 +6433,chr22,32332548,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.72000000,0.00000000,,0.38372093,87.00000000,3.84955752,0.01149425,0.00000000,8.54000000 +6434,chr22,32332882,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,-0.62000000,0.00000000,,0.43181818,90.00000000,3.98230088,0.02222222,0.00000000,7.62000000 +6435,chr22,32332979,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,58.00000000,0.00000000,0.08000000,0.00000000,,0.43023256,88.00000000,3.89380531,0.01136364,0.00000000,5.95000000 +6436,chr22,32333543,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-2.23000000,0.00000000,,0.43939394,68.00000000,3.00884956,0.01470588,0.00000000,4.72000000 +6437,chr22,32333552,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.17000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.31000000 +6438,chr22,32333786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-0.68000000,0.00000000,,0.47692308,68.00000000,3.00884956,0.04411765,0.00000000,4.41000000 +6439,chr22,32333995,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.61000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,3.14000000 +6440,chr22,32335494,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,5.90000000 +6441,chr22,32335505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,5.97000000 +6442,chr22,32335641,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.19000000 +6443,chr22,32335831,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,1.62000000,0.00000000,,0.20547945,77.00000000,3.40707965,0.05194805,0.00000000,5.35000000 +6444,chr22,32335853,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,64.00000000,0.00000000,1.54000000,0.00000000,,0.40789474,82.00000000,3.62831858,0.04878049,0.00000000,7.80000000 +6445,chr22,32335859,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.14705882,0.00000000,73.00000000,0.00000000,1.79000000,0.00000000,,0.39743590,83.00000000,3.67256637,0.06024096,0.00000000,8.11000000 +6446,chr22,32335882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,76.00000000,0.00000000,1.17000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.02439024,0.00000000,5.68000000 +6447,chr22,32335930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.14000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,6.35000000 +6448,chr22,32336182,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.71000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.01265823,0.00000000,6.32000000 +6449,chr22,32336240,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.44000000,0.00000000,,0.26086957,73.00000000,3.23008850,0.04109589,0.00000000,5.55000000 +6450,chr22,32336370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.29000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.60000000 +6451,chr22,32336465,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.15294118,86.00000000,3.80530973,0.00000000,0.00000000,5.46000000 +6452,chr22,32336618,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.54000000,0.00000000,,0.19642857,59.00000000,2.61061947,0.05084746,0.00000000,6.19000000 +6453,chr22,32336657,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,-0.29000000,0.00000000,,0.41509434,56.00000000,2.47787611,0.03571429,0.00000000,4.51000000 +6454,chr22,32336687,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.45000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,4.31000000 +6455,chr22,32337045,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.04000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,7.29000000 +6456,chr22,32337267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.32000000 +6457,chr22,32337289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.33000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.33000000 +6458,chr22,32337917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,93.00000000,0.00000000,0.06000000,0.00000000,,0.28712871,102.00000000,4.51327434,0.00980392,0.00000000,5.71000000 +6459,chr22,32338622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.00000000,0.00000000,6.18000000 +6460,chr22,32338723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.55000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.70000000 +6461,chr22,32338805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.60000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.71000000 +6462,chr22,32339256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.11594203,73.00000000,3.23008850,0.02739726,0.00000000,5.32000000 +6463,chr22,32339963,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.91000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.02564103,0.00000000,4.61000000 +6464,chr22,32340389,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.17000000,0.00000000,,0.47435897,81.00000000,3.58407080,0.03703704,0.00000000,8.35000000 +6465,chr22,32340411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.89000000 +6466,chr22,32340680,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.60000000,0.00000000,,0.30555556,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +6467,chr22,32340868,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,16.00000000,0.00000000,-1.35000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.00000000,0.00000000,3.31000000 +6468,chr22,32341244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.27586207,62.00000000,2.74336283,0.06451613,0.00000000,4.92000000 +6469,chr22,32341247,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,-0.63000000,0.00000000,,0.13793103,63.00000000,2.78761062,0.07936508,0.00000000,4.28000000 +6470,chr22,32341746,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.75000000 +6471,chr22,32342178,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.77000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.01176471,0.00000000,6.65000000 +6472,chr22,32342195,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.75000000 +6473,chr22,32342364,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,94.00000000,0.00000000,-0.03000000,0.00000000,,0.27142857,72.00000000,3.18584071,0.02777778,0.00000000,5.55000000 +6474,chr22,32342482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,0.27000000,0.00000000,,0.29213483,90.00000000,3.98230088,0.01111111,0.00000000,6.56000000 +6475,chr22,32342851,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.36000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.31000000 +6476,chr22,32344049,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.13000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,8.36000000 +6477,chr22,32344057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.08000000,0.00000000,,0.22826087,95.00000000,4.20353982,0.03157895,0.00000000,6.58000000 +6478,chr22,32344258,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.09782609,99.00000000,4.38053097,0.05050505,0.00000000,4.84000000 +6479,chr22,32344324,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.75000000,0.00000000,,0.14444444,91.00000000,4.02654867,0.01098901,0.00000000,5.87000000 +6480,chr22,32344454,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.20000000,0.00000000,,0.42000000,102.00000000,4.51327434,0.00980392,0.00000000,8.60000000 +6481,chr22,32344848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,5.84000000 +6482,chr22,32345136,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,0.24000000,0.00000000,,0.18811881,103.00000000,4.55752212,0.00000000,0.00000000,5.92000000 +6483,chr22,32345958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,95.00000000,0.00000000,-0.21000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.07000000 +6484,chr22,32346391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.31000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,1.13000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.01492537,0.00000000,5.65000000 +6485,chr22,32346545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.77000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.80000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,2.97000000 +6486,chr22,32346557,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.72000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,47.00000000,0.00000000,1.14000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,4.24000000 +6487,chr22,32346613,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.02000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.12000000,0.00000000,,0.32258065,62.00000000,2.74336283,0.00000000,0.00000000,7.88000000 +6488,chr22,32347599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.73000000,7.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,21.00000000,0.00000000,2.20000000,0.00000000,,0.36956522,46.00000000,2.03539823,0.00000000,0.00000000,3.67000000 +6489,chr22,32347936,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.16000000,0.00000000,,0.23076923,94.00000000,4.15929204,0.03191489,0.00000000,6.45000000 +6490,chr22,32347982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.28000000,0.00000000,,0.26213592,106.00000000,4.69026549,0.02830189,0.00000000,6.28000000 +6491,chr22,32348058,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,1.08000000,0.00000000,,0.37777778,93.00000000,4.11504425,0.03225806,0.00000000,7.60000000 +6492,chr22,32348124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-1.60000000,0.00000000,,0.12345679,81.00000000,3.58407080,0.00000000,0.00000000,5.48000000 +6493,chr22,32348424,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.70000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.01219512,0.00000000,5.49000000 +6494,chr22,32348557,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.24000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.02500000,0.00000000,6.24000000 +6495,chr22,32348609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +6496,chr22,32349175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.88000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,7.05000000 +6497,chr22,32349253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.74000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.27000000 +6498,chr22,32349431,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.23863636,91.00000000,4.02654867,0.03296703,0.00000000,5.72000000 +6499,chr22,32349929,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.01000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.73000000 +6500,chr22,32349966,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.17000000,0.00000000,,0.31944444,73.00000000,3.23008850,0.01369863,0.00000000,7.40000000 +6501,chr22,32350289,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.67000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.96000000 +6502,chr22,32350312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.72000000 +6503,chr22,32351075,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.48387097,62.00000000,2.74336283,0.00000000,0.00000000,8.52000000 +6504,chr22,32351266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-2.23000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.68000000 +6505,chr22,32351934,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,17.00000000,0.00000000,0.67000000,0.00000000,,0.34146341,42.00000000,1.85840708,0.02380952,0.00000000,2.97000000 +6506,chr22,32352108,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,-0.14000000,0.00000000,,0.54545455,56.00000000,2.47787611,0.01785714,0.00000000,3.90000000 +6507,chr22,32352470,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,25.00000000,0.00000000,-0.39000000,0.00000000,,0.51724138,91.00000000,4.02654867,0.03296703,0.00000000,3.25000000 +6508,chr22,32352603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.09000000 +6509,chr22,32352886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,95.00000000,0.00000000,-1.24000000,0.00000000,,0.24761905,105.00000000,4.64601770,0.00000000,0.00000000,6.38000000 +6510,chr22,32353807,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.24096386,88.00000000,3.89380531,0.04545455,0.00000000,5.99000000 +6511,chr22,32354055,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.25925926,0.00000000,57.00000000,0.00000000,-1.20000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.10256410,0.00000000,2.78000000 +6512,chr22,32354338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,59.00000000,0.00000000,0.43000000,0.00000000,,0.21621622,48.00000000,2.12389381,0.20833333,0.00000000,4.32000000 +6513,chr22,32354688,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.81000000,0.00000000,,0.22222222,59.00000000,2.61061947,0.08474576,0.00000000,4.89000000 +6514,chr22,32355074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,-0.94000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +6515,chr22,32355086,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.28000000,78.00000000,3.45132743,0.03846154,0.00000000,6.19000000 +6516,chr22,32355468,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.79000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.29000000 +6517,chr22,32355928,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,87.00000000,0.00000000,0.99000000,0.00000000,,0.37500000,74.00000000,3.27433628,0.02702703,0.00000000,8.04000000 +6518,chr22,32356506,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,6.06000000 +6519,chr22,32356720,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,1.24000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,2.92000000 +6520,chr22,32357917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,6.09000000 +6521,chr22,32360473,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.33000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +6522,chr22,32360757,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.50000000,0.00000000,,0.52112676,73.00000000,3.23008850,0.02739726,0.00000000,4.64000000 +6523,chr22,32361496,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.36000000 +6524,chr22,32361805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.69000000 +6525,chr22,32362084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.01052632,0.00000000,6.09000000 +6526,chr22,32363038,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.09000000,0.00000000,,0.26136364,93.00000000,4.11504425,0.04301075,0.00000000,6.33000000 +6527,chr22,32364575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.15000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,8.13000000 +6528,chr22,32364831,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,60.00000000,0.00000000,1.97000000,0.00000000,,0.41304348,57.00000000,2.52212389,0.19298246,0.00000000,7.03000000 +6529,chr22,32365132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,0.67000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +6530,chr22,32365818,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.71000000 +6531,chr22,32365914,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.69000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +6532,chr22,32366164,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.38000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,5.96000000 +6533,chr22,32366271,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,-0.24000000,0.00000000,,0.31168831,77.00000000,3.40707965,0.00000000,0.00000000,6.91000000 +6534,chr22,32366314,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +6535,chr22,32366374,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-1.55000000,0.00000000,,0.45977011,87.00000000,3.84955752,0.00000000,0.00000000,9.10000000 +6536,chr22,32366419,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,77.00000000,0.00000000,0.11000000,0.00000000,,0.17777778,93.00000000,4.11504425,0.03225806,0.00000000,5.37000000 +6537,chr22,32366585,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.80000000 +6538,chr22,32366750,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.31000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,8.03000000 +6539,chr22,32366756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.65000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.25000000 +6540,chr22,32366915,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.45000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +6541,chr22,32366950,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,78.00000000,0.00000000,-0.32000000,0.00000000,,0.17647059,103.00000000,4.55752212,0.00970874,0.00000000,5.82000000 +6542,chr22,32367005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.35000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.28000000 +6543,chr22,32367125,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.30000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.70000000 +6544,chr22,32367182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +6545,chr22,32367267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.30000000 +6546,chr22,32367608,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-1.30000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +6547,chr22,32367800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.20000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.00000000 +6548,chr22,32367842,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.63000000 +6549,chr22,32368401,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,0.74000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.00000000 +6550,chr22,32368733,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.90000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +6551,chr22,32368882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.08000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.01369863,0.00000000,6.35000000 +6552,chr22,32368894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.15492958,74.00000000,3.27433628,0.02702703,0.00000000,5.35000000 +6553,chr22,32369584,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.25000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.68000000 +6554,chr22,32369962,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +6555,chr22,32370777,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.46000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +6556,chr22,32370998,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.70000000,0.00000000,,0.17241379,62.00000000,2.74336283,0.04838710,0.00000000,6.45000000 +6557,chr22,32371439,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.17948718,86.00000000,3.80530973,0.08139535,0.00000000,6.10000000 +6558,chr22,32371473,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.08000000,0.00000000,,0.22857143,76.00000000,3.36283186,0.06578947,0.00000000,3.17000000 +6559,chr22,32371507,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.29000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.03947368,0.00000000,6.07000000 +6560,chr22,32371682,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,2.05000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.77000000 +6561,chr22,32372061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.33000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,6.27000000 +6562,chr22,32372564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-1.16000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,5.96000000 +6563,chr22,32373001,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.85000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,7.00000000 +6564,chr22,32373018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.55000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.78000000 +6565,chr22,32373111,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-2.23000000,0.00000000,,0.48421053,95.00000000,4.20353982,0.00000000,0.00000000,8.91000000 +6566,chr22,32373171,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.49000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +6567,chr22,32373187,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.02000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.04761905,0.00000000,6.28000000 +6568,chr22,32373364,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.79000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.27000000 +6569,chr22,32373429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.66000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.56000000 +6570,chr22,32373637,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,2.00000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.29000000 +6571,chr22,32373866,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.27272727,0.00000000,67.00000000,0.00000000,-1.17000000,0.00000000,,0.22413793,74.00000000,3.27433628,0.21621622,0.00000000,6.15000000 +6572,chr22,32374007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.04000000,0.00000000,6.33000000 +6573,chr22,32374169,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.00000000,0.00000000,6.36000000 +6574,chr22,32374213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.78000000,0.00000000,,0.24137931,87.00000000,3.84955752,0.00000000,0.00000000,6.70000000 +6575,chr22,32374394,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,1.07000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,5.88000000 +6576,chr22,32374431,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.53000000 +6577,chr22,32374517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.59000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.57000000 +6578,chr22,32374654,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.37000000,0.00000000,,0.30136986,76.00000000,3.36283186,0.03947368,0.00000000,6.37000000 +6579,chr22,32375030,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.50000000,0.00000000,,0.46666667,91.00000000,4.02654867,0.01098901,0.00000000,7.77000000 +6580,chr22,32376125,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,57.00000000,0.00000000,-1.19000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.04761905,0.00000000,4.87000000 +6581,chr22,32376503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.59000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +6582,chr22,32376694,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.00000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +6583,chr22,32376725,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,34.00000000,1.50442478,0.08823529,0.00000000,61.00000000,0.00000000,-0.16000000,0.00000000,,0.38961039,78.00000000,3.45132743,0.01282051,0.00000000,7.59000000 +6584,chr22,32376924,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,-2.40000000,0.00000000,,0.40789474,78.00000000,3.45132743,0.02564103,0.00000000,4.42000000 +6585,chr22,32377182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,5.90000000 +6586,chr22,32377194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.49000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,5.91000000 +6587,chr22,32377279,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.39000000,0.00000000,,0.28571429,74.00000000,3.27433628,0.01351351,0.00000000,7.96000000 +6588,chr22,32377373,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.38000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.25000000 +6589,chr22,32377431,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,65.00000000,0.00000000,1.13000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.01234568,0.00000000,5.77000000 +6590,chr22,32378142,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.51000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,8.35000000 +6591,chr22,32378957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.24137931,90.00000000,3.98230088,0.02222222,0.00000000,6.42000000 +6592,chr22,32379026,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.09000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.62000000 +6593,chr22,32379149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,0.15000000,0.00000000,,0.42168675,86.00000000,3.80530973,0.03488372,0.00000000,4.37000000 +6594,chr22,32379663,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.01369863,0.00000000,4.82000000 +6595,chr22,32380655,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,103.00000000,0.00000000,1.23000000,0.00000000,,0.37362637,94.00000000,4.15929204,0.03191489,0.00000000,13.81000000 +6596,chr22,32380894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.25581395,89.00000000,3.93805310,0.02247191,0.00000000,5.89000000 +6597,chr22,32381377,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,62.00000000,0.00000000,1.44000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,5.41000000 +6598,chr22,32381582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,5.68000000 +6599,chr22,32381865,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.28000000 +6600,chr22,32382267,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.02000000,0.00000000,,0.48148148,81.00000000,3.58407080,0.00000000,0.00000000,4.46000000 +6601,chr22,32383240,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,28.00000000,0.00000000,-0.64000000,0.00000000,,0.32183908,88.00000000,3.89380531,0.01136364,0.00000000,3.49000000 +6602,chr22,32383257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-1.15000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,2.75000000 +6603,chr22,32383937,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.38000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +6604,chr22,32384677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.31034483,60.00000000,2.65486726,0.03333333,0.00000000,6.52000000 +6605,chr22,32386006,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.90000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +6606,chr22,32386609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.27000000,0.00000000,,0.31746032,65.00000000,2.87610619,0.03076923,0.00000000,3.65000000 +6607,chr22,32386999,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.35000000 +6608,chr22,32387137,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.44000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.15151515,0.00000000,4.87000000 +6609,chr22,32390267,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.18000000 +6610,chr22,32390642,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.58000000 +6611,chr22,32391951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.47000000,0.00000000,,0.21505376,96.00000000,4.24778761,0.03125000,0.00000000,6.48000000 +6612,chr22,32392089,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.01162791,0.00000000,8.63000000 +6613,chr22,32393533,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.81000000,0.00000000,,0.28888889,90.00000000,3.98230088,0.00000000,0.00000000,6.70000000 +6614,chr22,32395016,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.79000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,6.17000000 +6615,chr22,32395508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.00000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,5.99000000 +6616,chr22,32395521,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.83000000,0.00000000,,0.19277108,88.00000000,3.89380531,0.05681818,0.00000000,6.08000000 +6617,chr22,32397547,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.34000000 +6618,chr22,32399654,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,1.34000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,5.23000000 +6619,chr22,32402578,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.12000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.45000000 +6620,chr22,32402772,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,1.38000000,0.00000000,,0.55172414,59.00000000,2.61061947,0.01694915,0.00000000,3.92000000 +6621,chr22,32402844,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.53000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.00000000,0.00000000,6.72000000 +6622,chr22,32403090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.93000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.02000000 +6623,chr22,32404113,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.46000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.99000000 +6624,chr22,32407604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.75000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.00000000,0.00000000,6.99000000 +6625,chr22,32408189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.00000000,0.00000000,6.83000000 +6626,chr22,32408638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,1.57000000,0.00000000,,0.24489796,99.00000000,4.38053097,0.01010101,0.00000000,5.98000000 +6627,chr22,32412091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.52000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.93000000 +6628,chr22,32412839,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-1.67000000,0.00000000,,0.10989011,93.00000000,4.11504425,0.01075269,0.00000000,5.49000000 +6629,chr22,32414391,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.12000000,0.00000000,,0.26315789,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6630,chr22,32415243,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,4.40000000 +6631,chr22,32415965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.78000000,0.00000000,,0.45054945,94.00000000,4.15929204,0.03191489,0.00000000,4.16000000 +6632,chr22,32416204,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.21739130,74.00000000,3.27433628,0.06756757,0.00000000,5.84000000 +6633,chr22,32416325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.57000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +6634,chr22,32416471,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.62000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +6635,chr22,32417856,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.28000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.02666667,0.00000000,6.03000000 +6636,chr22,32417947,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,6.01000000 +6637,chr22,32418179,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +6638,chr22,32418545,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.25490196,52.00000000,2.30088496,0.01923077,0.00000000,6.29000000 +6639,chr22,32419411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,-0.87000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6640,chr22,32420471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.71000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +6641,chr22,32421160,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,87.00000000,0.00000000,-0.11000000,0.00000000,,0.43333333,91.00000000,4.02654867,0.01098901,0.00000000,8.24000000 +6642,chr22,32422929,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.56000000,0.00000000,,0.12857143,70.00000000,3.09734513,0.00000000,0.00000000,5.22000000 +6643,chr22,32424379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,71.00000000,0.00000000,1.39000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,4.97000000 +6644,chr22,32424970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,31.00000000,0.00000000,-0.97000000,0.00000000,,0.38333333,60.00000000,2.65486726,0.00000000,0.00000000,3.95000000 +6645,chr22,32425085,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.02000000,0.00000000,,0.42857143,57.00000000,2.52212389,0.01754386,0.00000000,4.28000000 +6646,chr22,32425152,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.14000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,4.24000000 +6647,chr22,32425414,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,-0.03000000,0.00000000,,0.40983607,62.00000000,2.74336283,0.01612903,0.00000000,4.62000000 +6648,chr22,32426201,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.41000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.00000000 +6649,chr22,32426298,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.58000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +6650,chr22,32426630,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.93000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,5.36000000 +6651,chr22,32428921,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.85000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.79000000 +6652,chr22,32429117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,-0.57000000,0.00000000,,0.32142857,85.00000000,3.76106195,0.01176471,0.00000000,7.56000000 +6653,chr22,32429427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,73.00000000,0.00000000,1.09000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.10256410,0.00000000,5.96000000 +6654,chr22,32429578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.25000000,0.00000000,57.00000000,0.00000000,-2.91000000,0.00000000,,0.09433962,63.00000000,2.78761062,0.15873016,0.00000000,2.78000000 +6655,chr22,32429612,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,-2.10000000,0.00000000,,0.32786885,71.00000000,3.14159292,0.14084507,0.00000000,8.17000000 +6656,chr22,32429957,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,6.06000000 +6657,chr22,32430290,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.78000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,8.95000000 +6658,chr22,32431071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.03000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.00000000,0.00000000,6.98000000 +6659,chr22,32431599,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.69000000 +6660,chr22,32432085,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,-0.15000000,0.00000000,,0.48611111,74.00000000,3.27433628,0.02702703,0.00000000,4.36000000 +6661,chr22,32432221,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.22000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.04166667,0.00000000,5.78000000 +6662,chr22,32432237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.23188406,72.00000000,3.18584071,0.04166667,0.00000000,5.81000000 +6663,chr22,32440645,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.47000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +6664,chr22,32442908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.79000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +6665,chr22,32443775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.54000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.77000000 +6666,chr22,32444239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.64000000,0.00000000,,0.29032258,63.00000000,2.78761062,0.01587302,0.00000000,6.24000000 +6667,chr22,32444708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,92.00000000,0.00000000,0.17000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.22000000 +6668,chr22,32444754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.05000000,0.00000000,,0.28571429,86.00000000,3.80530973,0.02325581,0.00000000,6.30000000 +6669,chr22,32446085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.14000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.83000000 +6670,chr22,32446327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.60000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,4.91000000 +6671,chr22,32446361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.42000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.27000000 +6672,chr22,32447449,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.58000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.84000000 +6673,chr22,32447858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,5.14000000 +6674,chr22,32448727,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-1.17000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,6.47000000 +6675,chr22,32449480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.33000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +6676,chr22,32449970,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-1.09000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +6677,chr22,32450632,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,90.00000000,0.00000000,0.33000000,0.00000000,,0.25961538,106.00000000,4.69026549,0.01886792,0.00000000,5.68000000 +6678,chr22,32451129,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,1.43000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +6679,chr22,32452586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,62.00000000,0.00000000,-0.74000000,0.00000000,,0.16923077,71.00000000,3.14159292,0.07042254,0.00000000,5.26000000 +6680,chr22,32452716,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,0.15000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,5.71000000 +6681,chr22,32453142,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.13095238,87.00000000,3.84955752,0.03448276,0.00000000,5.35000000 +6682,chr22,32453205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-1.02000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,6.07000000 +6683,chr22,32454813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.86000000 +6684,chr22,32455501,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,86.00000000,0.00000000,-0.30000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.12000000 +6685,chr22,32456471,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-1.63000000,0.00000000,,0.09615385,60.00000000,2.65486726,0.13333333,0.00000000,4.90000000 +6686,chr22,32456837,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,6.24000000 +6687,chr22,32456937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.73000000 +6688,chr22,32458870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.57000000 +6689,chr22,32461012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6690,chr22,32480752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.84000000,0.00000000,,0.15384615,67.00000000,2.96460177,0.02985075,0.00000000,5.54000000 +6691,chr22,32524703,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,0.00000000,-0.06000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,5.92000000 +6692,chr22,32527375,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.58000000,0.00000000,,0.30985915,71.00000000,3.14159292,0.00000000,0.00000000,7.85000000 +6693,chr22,32531373,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.22580645,62.00000000,2.74336283,0.00000000,0.00000000,6.77000000 +6694,chr22,32532448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.02000000,0.00000000,,0.33707865,89.00000000,3.93805310,0.00000000,0.00000000,8.37000000 +6695,chr22,32534156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.73000000,0.00000000,,0.24242424,70.00000000,3.09734513,0.05714286,0.00000000,6.58000000 +6696,chr22,32534483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.17647059,71.00000000,3.14159292,0.02816901,0.00000000,5.96000000 +6697,chr22,32534582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.75000000 +6698,chr22,32535882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,1.07000000,0.00000000,,0.11627907,88.00000000,3.89380531,0.01136364,0.00000000,5.03000000 +6699,chr22,32536919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.48000000 +6700,chr22,32538239,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,2.14000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.84000000 +6701,chr22,32538583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.85000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.44000000 +6702,chr22,32538673,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,0.00000000,-0.81000000,0.00000000,,0.12195122,85.00000000,3.76106195,0.02352941,0.00000000,4.75000000 +6703,chr22,32539085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.27000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,2.94000000 +6704,chr22,32539186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.43000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.32000000 +6705,chr22,32539417,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.72000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.53000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,4.27000000 +6706,chr22,32539439,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.14000000,0.00000000,,0.18181818,56.00000000,2.47787611,0.01785714,0.00000000,5.78000000 +6707,chr22,32539566,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,-1.08000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.00000000,0.00000000,6.65000000 +6708,chr22,32539581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.55000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.91000000 +6709,chr22,32540063,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.15000000 +6710,chr22,32540661,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.22916667,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +6711,chr22,32540827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.02500000,0.00000000,4.88000000 +6712,chr22,32541415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.65000000 +6713,chr22,32541754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.00000000,0.00000000,6.98000000 +6714,chr22,32542926,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.01315789,0.00000000,6.23000000 +6715,chr22,32543027,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.54000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +6716,chr22,32543828,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.01538462,0.00000000,6.58000000 +6717,chr22,32544674,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,67.00000000,0.00000000,0.50000000,0.00000000,,0.17204301,95.00000000,4.20353982,0.02105263,0.00000000,5.79000000 +6718,chr22,32545130,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,-1.51000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.71000000 +6719,chr22,32547211,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.24000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +6720,chr22,32547755,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.25000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +6721,chr22,32548792,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.27272727,100.00000000,4.42477876,0.01000000,0.00000000,5.98000000 +6722,chr22,32549820,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,61.00000000,0.00000000,1.07000000,0.00000000,,0.26760563,75.00000000,3.31858407,0.04000000,0.00000000,5.44000000 +6723,chr22,32550127,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.46000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.72000000 +6724,chr22,32553326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.20000000 +6725,chr22,32553396,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.15000000,0.00000000,,0.19587629,99.00000000,4.38053097,0.02020202,0.00000000,5.78000000 +6726,chr22,32554067,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +6727,chr22,32556026,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,1.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +6728,chr22,32567596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.95000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,3.04000000 +6729,chr22,32583094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +6730,chr22,32583287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-2.00000000,0.00000000,,0.21839080,90.00000000,3.98230088,0.03333333,0.00000000,6.28000000 +6731,chr22,32583806,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.27906977,88.00000000,3.89380531,0.02272727,0.00000000,6.60000000 +6732,chr22,32584055,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.65000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.01388889,0.00000000,6.52000000 +6733,chr22,32584080,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.01408451,0.00000000,6.38000000 +6734,chr22,32584161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.80000000,0.00000000,,0.19607843,102.00000000,4.51327434,0.00000000,0.00000000,6.39000000 +6735,chr22,32584509,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.53000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.01052632,0.00000000,6.81000000 +6736,chr22,32585346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.79000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.02469136,0.00000000,5.44000000 +6737,chr22,32585739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.01190476,0.00000000,6.49000000 +6738,chr22,32585740,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.31000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.59000000 +6739,chr22,32586073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.81000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +6740,chr22,32586597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-2.14000000,0.00000000,,0.09677419,64.00000000,2.83185841,0.03125000,0.00000000,4.91000000 +6741,chr22,32589488,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,5.91000000 +6742,chr22,32589701,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.88000000,0.00000000,,0.30487805,87.00000000,3.84955752,0.04597701,0.00000000,6.93000000 +6743,chr22,32590245,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.20000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.56000000 +6744,chr22,32592634,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.04000000,0.00000000,,0.23469388,100.00000000,4.42477876,0.02000000,0.00000000,6.02000000 +6745,chr22,32595941,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-1.20000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.68000000 +6746,chr22,32596014,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.77000000 +6747,chr22,32596049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.96000000,0.00000000,,0.32758621,59.00000000,2.61061947,0.01694915,0.00000000,8.69000000 +6748,chr22,32597046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.44000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,2.94000000 +6749,chr22,32602033,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.79000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.71000000 +6750,chr22,32603073,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,51.00000000,0.00000000,-0.53000000,0.00000000,,0.31578947,61.00000000,2.69911504,0.06557377,0.00000000,3.35000000 +6751,chr22,32605191,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.93000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.05000000 +6752,chr22,32610644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.86000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.58000000 +6753,chr22,32610668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.81000000,0.00000000,,0.24137931,59.00000000,2.61061947,0.01694915,0.00000000,6.79000000 +6754,chr22,32611528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.55000000,0.00000000,,0.24561404,57.00000000,2.52212389,0.00000000,0.00000000,6.83000000 +6755,chr22,32612135,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.34000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.69000000 +6756,chr22,32613226,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,0.82000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.85000000 +6757,chr22,32613282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.04000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.55000000 +6758,chr22,32613354,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.16000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +6759,chr22,32613422,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.01333333,0.00000000,8.09000000 +6760,chr22,32613549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.48000000 +6761,chr22,32614086,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-1.01000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +6762,chr22,32617412,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.91000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.52000000 +6763,chr22,32621541,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +6764,chr22,32625012,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.49000000 +6765,chr22,32635198,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.69000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,6.15000000 +6766,chr22,32635318,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.96000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6767,chr22,32635407,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.91000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,6.60000000 +6768,chr22,32638022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.35000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +6769,chr22,32641209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,1.02000000,0.00000000,,0.15189873,79.00000000,3.49557522,0.00000000,0.00000000,5.48000000 +6770,chr22,32641481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.26000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,2.84000000 +6771,chr22,32641762,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.89000000 +6772,chr22,32643330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.81000000,0.00000000,,0.15217391,48.00000000,2.12389381,0.04166667,0.00000000,5.40000000 +6773,chr22,32645291,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.11000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.81000000 +6774,chr22,32645340,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.49000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,4.86000000 +6775,chr22,32646223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-0.89000000,0.00000000,,0.26086957,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +6776,chr22,32647504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,0.13000000,0.00000000,,0.17441860,91.00000000,4.02654867,0.05494505,0.00000000,2.81000000 +6777,chr22,32647940,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.94000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.89000000 +6778,chr22,32649009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,89.00000000,0.00000000,-0.21000000,0.00000000,,0.30588235,87.00000000,3.84955752,0.01149425,0.00000000,7.08000000 +6779,chr22,32654580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.48000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.25000000 +6780,chr22,32666261,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,94.00000000,0.00000000,0.19000000,0.00000000,,0.31428571,72.00000000,3.18584071,0.01388889,0.00000000,7.61000000 +6781,chr22,32669230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.98000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,6.19000000 +6782,chr22,32670444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.55000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.83000000 +6783,chr22,32670516,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.29000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.60000000 +6784,chr22,32672132,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.47000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.22000000 +6785,chr22,32674361,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,0.47000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,5.70000000 +6786,chr22,32674797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.31000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.45000000 +6787,chr22,32675097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,-1.21000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.16000000 +6788,chr22,32675437,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.18000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.34000000 +6789,chr22,32676160,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.25714286,109.00000000,4.82300885,0.03669725,0.00000000,5.84000000 +6790,chr22,32676519,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.25352113,81.00000000,3.58407080,0.08641975,0.00000000,6.12000000 +6791,chr22,32676775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,1.43000000,0.00000000,,0.22000000,54.00000000,2.38938053,0.07407407,0.00000000,5.40000000 +6792,chr22,32676933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,65.00000000,0.00000000,0.75000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.48000000 +6793,chr22,32677771,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.08000000,0.00000000,,0.21518987,83.00000000,3.67256637,0.04819277,0.00000000,6.32000000 +6794,chr22,32678191,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.10000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +6795,chr22,32681460,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.21000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +6796,chr22,32683931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.36000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +6797,chr22,32684767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,6.02000000 +6798,chr22,32688180,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.54000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +6799,chr22,32688359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.92000000,0.00000000,,0.18032787,63.00000000,2.78761062,0.01587302,0.00000000,6.52000000 +6800,chr22,32688994,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.07000000,0.00000000,,0.14516129,63.00000000,2.78761062,0.01587302,0.00000000,5.20000000 +6801,chr22,32693732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,48.00000000,0.00000000,0.05000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.03389831,0.00000000,2.77000000 +6802,chr22,32695345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,83.00000000,0.00000000,-0.33000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,5.56000000 +6803,chr22,32696573,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.10000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +6804,chr22,32699574,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +6805,chr22,32701676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.18000000,0.00000000,,0.19266055,110.00000000,4.86725664,0.00909091,0.00000000,6.45000000 +6806,chr22,32704547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.12000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,6.53000000 +6807,chr22,32704751,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.35000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6808,chr22,32707932,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.18987342,85.00000000,3.76106195,0.07058824,0.00000000,6.03000000 +6809,chr22,32707982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.18604651,89.00000000,3.93805310,0.03370787,0.00000000,5.65000000 +6810,chr22,32708362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.13000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.01075269,0.00000000,7.02000000 +6811,chr22,32708391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.01000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,6.70000000 +6812,chr22,32708529,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.98000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.61000000 +6813,chr22,32708987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.10447761,67.00000000,2.96460177,0.00000000,0.00000000,4.94000000 +6814,chr22,32710547,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,35.00000000,0.00000000,-2.89000000,0.00000000,,0.43396226,59.00000000,2.61061947,0.06779661,0.00000000,4.01000000 +6815,chr22,32710751,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.55000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.02272727,0.00000000,6.18000000 +6816,chr22,32711325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,63.00000000,0.00000000,-0.44000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,5.77000000 +6817,chr22,32711970,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-2.09000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.74000000 +6818,chr22,32712164,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.32000000 +6819,chr22,32712379,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.10000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,7.09000000 +6820,chr22,32712880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.21000000 +6821,chr22,32713396,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.38000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.01000000 +6822,chr22,32713997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.00000000,0.00000000,6.69000000 +6823,chr22,32714574,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.07000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +6824,chr22,32714611,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,82.00000000,0.00000000,0.61000000,0.00000000,,0.25287356,90.00000000,3.98230088,0.03333333,0.00000000,5.72000000 +6825,chr22,32716505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.55000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.37000000 +6826,chr22,32717702,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,5.99000000 +6827,chr22,32720328,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.19000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.36000000 +6828,chr22,32720793,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,5.59000000 +6829,chr22,32722343,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-1.28000000,0.00000000,,0.27397260,75.00000000,3.31858407,0.02666667,0.00000000,6.05000000 +6830,chr22,32725803,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.29000000,0.00000000,,0.17171717,101.00000000,4.46902655,0.01980198,0.00000000,5.45000000 +6831,chr22,32727603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.47000000 +6832,chr22,32728528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.76000000 +6833,chr22,32736910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,1.19000000,0.00000000,,0.26530612,99.00000000,4.38053097,0.01010101,0.00000000,6.48000000 +6834,chr22,32737722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.88000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.41000000 +6835,chr22,32737917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.27000000,0.00000000,,0.13432836,68.00000000,3.00884956,0.01470588,0.00000000,2.87000000 +6836,chr22,32737950,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.56000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.00000000,0.00000000,4.20000000 +6837,chr22,32738154,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.01265823,0.00000000,5.16000000 +6838,chr22,32738765,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +6839,chr22,32738866,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.01000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +6840,chr22,32739206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.05633803,0.00000000,6.21000000 +6841,chr22,32739209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.05633803,0.00000000,6.21000000 +6842,chr22,32739528,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.38000000,0.00000000,,0.47692308,67.00000000,2.96460177,0.02985075,0.00000000,7.58000000 +6843,chr22,32739593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,58.00000000,0.00000000,0.29000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,3.98000000 +6844,chr22,32740276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,2.04000000,0.00000000,,0.20370370,54.00000000,2.38938053,0.00000000,0.00000000,6.64000000 +6845,chr22,32742477,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.80000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +6846,chr22,32742604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,-0.33000000,0.00000000,,0.11688312,78.00000000,3.45132743,0.01282051,0.00000000,3.53000000 +6847,chr22,32743183,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,5.58000000 +6848,chr22,32749509,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,60.00000000,0.00000000,1.37000000,0.00000000,,0.23529412,72.00000000,3.18584071,0.05555556,0.00000000,5.22000000 +6849,chr22,32749699,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.88000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.47000000 +6850,chr22,32750255,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.32894737,78.00000000,3.45132743,0.02564103,0.00000000,8.09000000 +6851,chr22,32750824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,5.80000000 +6852,chr22,32752589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.32000000 +6853,chr22,32752590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.05000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +6854,chr22,32752591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,1.46000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.32000000 +6855,chr22,32754550,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,43.00000000,0.00000000,-1.37000000,0.00000000,,0.57142857,80.00000000,3.53982301,0.02500000,0.00000000,4.04000000 +6856,chr22,32754783,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.30000000,0.00000000,,0.20388350,103.00000000,4.55752212,0.00000000,0.00000000,6.72000000 +6857,chr22,32756448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.01333333,0.00000000,8.37000000 +6858,chr22,32757219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.03409091,0.00000000,6.25000000 +6859,chr22,32757586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.49000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.59000000 +6860,chr22,32760917,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +6861,chr22,32763380,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.43000000 +6862,chr22,32764190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.83000000 +6863,chr22,32764527,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,0.81000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,5.77000000 +6864,chr22,32765586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,52.00000000,0.00000000,2.02000000,0.00000000,,0.31818182,67.00000000,2.96460177,0.01492537,0.00000000,3.49000000 +6865,chr22,32765838,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,1.86000000,0.00000000,,0.22950820,64.00000000,2.83185841,0.04687500,0.00000000,2.82000000 +6866,chr22,32770636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.78000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.86000000 +6867,chr22,32775100,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.79000000 +6868,chr22,32777602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.07000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +6869,chr22,32781792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.50000000 +6870,chr22,32783027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.75000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.41000000 +6871,chr22,32786583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,6.59000000 +6872,chr22,32787993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.95000000 +6873,chr22,32788337,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,0.00000000,0.42000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,5.85000000 +6874,chr22,32790679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.70000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.32000000 +6875,chr22,32791912,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.43000000,0.00000000,,0.40298507,70.00000000,3.09734513,0.04285714,0.00000000,8.15000000 +6876,chr22,32797064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,7.69000000 +6877,chr22,32798308,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,-0.52000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.01136364,0.00000000,6.65000000 +6878,chr22,32800526,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-1.36000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +6879,chr22,32805018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.20000000,0.00000000,,0.28571429,77.00000000,3.40707965,0.06493506,0.00000000,3.24000000 +6880,chr22,32807773,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.76000000 +6881,chr22,32811019,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.62000000,0.00000000,,0.30769231,78.00000000,3.45132743,0.00000000,0.00000000,6.50000000 +6882,chr22,32811080,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.34000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.62000000 +6883,chr22,32811322,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.25000000 +6884,chr22,32811711,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,2.19000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.66000000 +6885,chr22,32814019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,59.00000000,0.00000000,0.34000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,3.75000000 +6886,chr22,32814229,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.40000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,45.00000000,0.00000000,-1.19000000,0.00000000,,0.34482759,61.00000000,2.69911504,0.04918033,0.00000000,4.46000000 +6887,chr22,32815068,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.69000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,6.54000000 +6888,chr22,32817333,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,95.00000000,0.00000000,0.25000000,0.00000000,,0.29213483,92.00000000,4.07079646,0.02173913,0.00000000,5.66000000 +6889,chr22,32817508,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.64000000,0.00000000,,0.13414634,85.00000000,3.76106195,0.03529412,0.00000000,5.09000000 +6890,chr22,32817811,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.30000000 +6891,chr22,32821415,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.97000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.22000000 +6892,chr22,32823901,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.03389831,0.00000000,6.01000000 +6893,chr22,32824226,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,-0.44000000,0.00000000,,0.13888889,84.00000000,3.71681416,0.13095238,0.00000000,3.14000000 +6894,chr22,32825044,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.62000000 +6895,chr22,32825583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,0.00000000,-1.62000000,0.00000000,,0.22222222,58.00000000,2.56637168,0.22413793,0.00000000,5.68000000 +6896,chr22,32827422,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.32000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +6897,chr22,32828453,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +6898,chr22,32830664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.33333333,67.00000000,2.96460177,0.01492537,0.00000000,8.58000000 +6899,chr22,32831512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.56000000,0.00000000,,0.17333333,78.00000000,3.45132743,0.02564103,0.00000000,6.19000000 +6900,chr22,32832706,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.56000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.05000000 +6901,chr22,32833520,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.69000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.57000000 +6902,chr22,32833610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.76000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.99000000 +6903,chr22,32833699,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.46000000,0.00000000,,0.35443038,79.00000000,3.49557522,0.00000000,0.00000000,8.45000000 +6904,chr22,32833844,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,38.00000000,0.00000000,0.93000000,0.00000000,,0.54320988,81.00000000,3.58407080,0.00000000,0.00000000,3.58000000 +6905,chr22,32834363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,1.05000000,0.00000000,,0.20588235,76.00000000,3.36283186,0.10526316,0.00000000,5.65000000 +6906,chr22,32834806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.61000000 +6907,chr22,32834918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.24000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,6.57000000 +6908,chr22,32834997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-1.01000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +6909,chr22,32835400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.97000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.51000000 +6910,chr22,32836560,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.11000000,0.00000000,,0.22666667,79.00000000,3.49557522,0.05063291,0.00000000,6.80000000 +6911,chr22,32838192,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.20689655,60.00000000,2.65486726,0.01666667,0.00000000,5.77000000 +6912,chr22,32839316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.71000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,3.03000000 +6913,chr22,32839530,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.43000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.27000000 +6914,chr22,32840409,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.96000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,6.09000000 +6915,chr22,32841125,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +6916,chr22,32841204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.45000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.01123596,0.00000000,6.38000000 +6917,chr22,32842120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.47000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.95000000 +6918,chr22,32842121,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.14000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.00000000,0.00000000,6.95000000 +6919,chr22,32845381,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.40000000,0.00000000,,0.24137931,62.00000000,2.74336283,0.06451613,0.00000000,5.95000000 +6920,chr22,32845856,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-1.55000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +6921,chr22,32846617,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.49000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.70000000 +6922,chr22,32852068,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,1.05000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +6923,chr22,32852660,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.80000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +6924,chr22,32853624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.93000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.22000000 +6925,chr22,32853901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +6926,chr22,32858642,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.18000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.99000000 +6927,chr22,32861480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.81000000 +6928,chr22,32864399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.92000000 +6929,chr22,32867620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.12000000,0.00000000,,0.16393443,63.00000000,2.78761062,0.03174603,0.00000000,4.73000000 +6930,chr22,32867828,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.56000000 +6931,chr22,32869601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,1.65000000,0.00000000,,0.17647059,73.00000000,3.23008850,0.05479452,0.00000000,5.69000000 +6932,chr22,32870922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,1.04000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,5.80000000 +6933,chr22,32875646,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.65000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.51000000 +6934,chr22,32877066,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-2.30000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.89000000 +6935,chr22,32877339,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.61000000,0.00000000,,0.27472527,91.00000000,4.02654867,0.00000000,0.00000000,6.73000000 +6936,chr22,32878555,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.35000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.24000000 +6937,chr22,32879460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-1.01000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +6938,chr22,32885068,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.38000000,0.00000000,,0.19587629,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +6939,chr22,32885796,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.70000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,6.61000000 +6940,chr22,32902630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.50000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.56000000 +6941,chr22,32909496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.49000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +6942,chr22,32917382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-0.58000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +6943,chr22,32923223,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.03000000 +6944,chr22,32926292,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,0.29000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.55000000 +6945,chr22,32929818,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.54000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.35000000 +6946,chr22,32946732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.13000000 +6947,chr22,32947435,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.38000000 +6948,chr22,32947970,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.85000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.01204819,0.00000000,4.80000000 +6949,chr22,32948526,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.23529412,70.00000000,3.09734513,0.02857143,0.00000000,6.35000000 +6950,chr22,32951637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.62000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.85000000 +6951,chr22,32951907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,2.78000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.03571429,0.00000000,5.71000000 +6952,chr22,32952108,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.03000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +6953,chr22,32954192,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.58000000,0.00000000,,0.09459459,77.00000000,3.40707965,0.03896104,0.00000000,5.07000000 +6954,chr22,32955901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.30000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.00000000,0.00000000,6.70000000 +6955,chr22,32956204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,74.00000000,0.00000000,0.72000000,0.00000000,,0.19672131,67.00000000,2.96460177,0.08955224,0.00000000,5.90000000 +6956,chr22,32956689,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.02702703,0.00000000,6.32000000 +6957,chr22,32957858,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +6958,chr22,32957928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.55000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +6959,chr22,32958615,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.40000000 +6960,chr22,32959870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,5.99000000 +6961,chr22,32962292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.30158730,63.00000000,2.78761062,0.00000000,0.00000000,6.79000000 +6962,chr22,32965690,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.01408451,0.00000000,6.46000000 +6963,chr22,32967370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.00000000,0.00000000,5.63000000 +6964,chr22,32968014,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,6.69000000 +6965,chr22,32968472,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.29000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.71000000 +6966,chr22,32970066,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +6967,chr22,32970995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.67000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,7.05000000 +6968,chr22,32972048,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,1.75000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.86000000 +6969,chr22,32975350,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.25000000,0.00000000,68.00000000,0.00000000,0.07000000,0.00000000,,0.30769231,92.00000000,4.07079646,0.15217391,0.00000000,6.14000000 +6970,chr22,32975608,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.59000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +6971,chr22,32977231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.29577465,74.00000000,3.27433628,0.02702703,0.00000000,6.42000000 +6972,chr22,32977520,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-1.13000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.01234568,0.00000000,6.62000000 +6973,chr22,32977636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-0.59000000,0.00000000,,0.24675325,81.00000000,3.58407080,0.01234568,0.00000000,4.27000000 +6974,chr22,32978602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.35087719,58.00000000,2.56637168,0.01724138,0.00000000,8.12000000 +6975,chr22,32978917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,90.00000000,0.00000000,-0.86000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.11000000 +6976,chr22,32982645,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +6977,chr22,32982997,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.15384615,82.00000000,3.62831858,0.03658537,0.00000000,5.60000000 +6978,chr22,32984191,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.20289855,76.00000000,3.36283186,0.06578947,0.00000000,5.45000000 +6979,chr22,32984390,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.77000000,0.00000000,,0.24074074,55.00000000,2.43362832,0.01818182,0.00000000,6.16000000 +6980,chr22,32986156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.51000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.34000000 +6981,chr22,32986568,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,3.01000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.32000000 +6982,chr22,32988277,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.15000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-1.55000000,0.00000000,,0.18292683,86.00000000,3.80530973,0.04651163,0.00000000,5.84000000 +6983,chr22,32990613,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,2.01000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.45000000 +6984,chr22,32990821,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.43000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.55000000 +6985,chr22,32991111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.85000000,0.00000000,,0.26470588,71.00000000,3.14159292,0.04225352,0.00000000,6.65000000 +6986,chr22,32993753,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.11000000,0.00000000,,0.45945946,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +6987,chr22,32996033,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-1.10000000,0.00000000,,0.46268657,71.00000000,3.14159292,0.04225352,0.00000000,7.79000000 +6988,chr22,32996091,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.44000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +6989,chr22,32996194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,49.00000000,0.00000000,-0.66000000,0.00000000,,0.34285714,71.00000000,3.14159292,0.01408451,0.00000000,4.50000000 +6990,chr22,32997753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-1.29000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.43000000 +6991,chr22,32998082,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.98000000 +6992,chr22,32999311,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.32394366,72.00000000,3.18584071,0.01388889,0.00000000,8.01000000 +6993,chr22,32999634,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.06000000,0.00000000,,0.18750000,69.00000000,3.05309735,0.07246377,0.00000000,6.31000000 +6994,chr22,32999733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.16000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,7.13000000 +6995,chr22,32999866,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.26000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.68000000 +6996,chr22,32999983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.61000000 +6997,chr22,33000450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.10000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,7.19000000 +6998,chr22,33000868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.28000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.56000000 +6999,chr22,33000919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.06000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.04109589,0.00000000,6.24000000 +7000,chr22,33001060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.11000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.66000000 +7001,chr22,33001440,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.46000000,0.00000000,,0.53333333,61.00000000,2.69911504,0.00000000,0.00000000,8.04000000 +7002,chr22,33001874,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,1.12000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.13000000 +7003,chr22,33002084,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +7004,chr22,33002102,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,-2.08000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.22000000 +7005,chr22,33002318,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.28000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +7006,chr22,33002372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.41000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.05000000 +7007,chr22,33002727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.22093023,90.00000000,3.98230088,0.04444444,0.00000000,6.31000000 +7008,chr22,33003134,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.42000000 +7009,chr22,33004388,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.70000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.48000000 +7010,chr22,33005040,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-2.10000000,0.00000000,,0.55714286,70.00000000,3.09734513,0.00000000,0.00000000,8.89000000 +7011,chr22,33005230,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.85000000,0.00000000,,0.42307692,79.00000000,3.49557522,0.01265823,0.00000000,4.12000000 +7012,chr22,33005370,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.48000000,0.00000000,,0.47126437,90.00000000,3.98230088,0.03333333,0.00000000,8.29000000 +7013,chr22,33005799,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.68000000,0.00000000,,0.42352941,85.00000000,3.76106195,0.00000000,0.00000000,8.47000000 +7014,chr22,33005880,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.71000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.73000000 +7015,chr22,33005983,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.19000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,7.26000000 +7016,chr22,33006858,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.43000000 +7017,chr22,33007293,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,1.45000000,0.00000000,,0.18000000,102.00000000,4.51327434,0.01960784,0.00000000,5.59000000 +7018,chr22,33007444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.01149425,0.00000000,5.87000000 +7019,chr22,33008561,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,9.00000000,0.00000000,-1.03000000,0.00000000,,0.36842105,76.00000000,3.36283186,0.00000000,0.00000000,3.30000000 +7020,chr22,33008773,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.01000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.10000000 +7021,chr22,33009288,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.45000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7022,chr22,33010456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.37000000 +7023,chr22,33010544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,2.05000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.00000000,0.00000000,5.56000000 +7024,chr22,33010782,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +7025,chr22,33012683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.18000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.02173913,0.00000000,6.18000000 +7026,chr22,33012814,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.98000000 +7027,chr22,33012958,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.40000000,0.00000000,,0.36781609,88.00000000,3.89380531,0.01136364,0.00000000,8.46000000 +7028,chr22,33014923,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,-0.17000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.01960784,0.00000000,5.88000000 +7029,chr22,33015007,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.33333333,89.00000000,3.93805310,0.04494382,0.00000000,7.48000000 +7030,chr22,33015448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.44000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +7031,chr22,33015461,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.58000000,0.00000000,,0.46067416,89.00000000,3.93805310,0.00000000,0.00000000,8.91000000 +7032,chr22,33015509,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-2.07000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.69000000 +7033,chr22,33015891,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.08510638,0.00000000,77.00000000,0.00000000,0.20000000,0.00000000,,0.17073171,96.00000000,4.24778761,0.14583333,0.00000000,5.00000000 +7034,chr22,33015936,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,93.00000000,0.00000000,0.16000000,0.00000000,,0.43209877,89.00000000,3.93805310,0.08988764,0.00000000,6.26000000 +7035,chr22,33016001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.14634146,84.00000000,3.71681416,0.01190476,0.00000000,5.26000000 +7036,chr22,33016275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,60.00000000,0.00000000,1.01000000,0.00000000,,0.41538462,65.00000000,2.87610619,0.00000000,0.00000000,7.83000000 +7037,chr22,33017064,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,1.19000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +7038,chr22,33017111,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.98000000,0.00000000,,0.33707865,90.00000000,3.98230088,0.01111111,0.00000000,8.72000000 +7039,chr22,33017214,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.16000000 +7040,chr22,33017325,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,104.00000000,0.00000000,0.76000000,0.00000000,,0.34146341,83.00000000,3.67256637,0.01204819,0.00000000,13.50000000 +7041,chr22,33018179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,7.12000000 +7042,chr22,33018374,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.50000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.49000000 +7043,chr22,33019413,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.37000000 +7044,chr22,33020216,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.05000000 +7045,chr22,33020472,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.69000000 +7046,chr22,33020493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.11000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.56000000 +7047,chr22,33020504,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.74000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.76000000 +7048,chr22,33021724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.37000000,0.00000000,,0.20792079,103.00000000,4.55752212,0.01941748,0.00000000,6.46000000 +7049,chr22,33022579,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,-0.10000000,0.00000000,,0.40789474,76.00000000,3.36283186,0.00000000,0.00000000,8.02000000 +7050,chr22,33022871,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,117.00000000,0.00000000,0.51000000,0.00000000,,0.35632184,87.00000000,3.84955752,0.00000000,0.00000000,14.08000000 +7051,chr22,33022906,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-2.33000000,0.00000000,,0.24038462,104.00000000,4.60176991,0.00000000,0.00000000,6.68000000 +7052,chr22,33023187,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,30.00000000,0.00000000,1.16000000,0.00000000,,0.33846154,66.00000000,2.92035398,0.01515152,0.00000000,3.06000000 +7053,chr22,33023297,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,0.68000000,0.00000000,,0.07692308,80.00000000,3.53982301,0.02500000,0.00000000,5.06000000 +7054,chr22,33023411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,96.00000000,0.00000000,-1.31000000,0.00000000,,0.30000000,91.00000000,4.02654867,0.00000000,0.00000000,6.83000000 +7055,chr22,33023547,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.29000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.00000000,0.00000000,6.66000000 +7056,chr22,33023718,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.89000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,7.22000000 +7057,chr22,33025110,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.37000000,0.00000000,,0.29090909,56.00000000,2.47787611,0.01785714,0.00000000,6.40000000 +7058,chr22,33025194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.12000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.70000000 +7059,chr22,33026105,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.07000000,0.00000000,,0.50000000,79.00000000,3.49557522,0.01265823,0.00000000,7.79000000 +7060,chr22,33026131,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.17000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.00000000,0.00000000,6.48000000 +7061,chr22,33026233,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.15000000,0.00000000,,0.48648649,76.00000000,3.36283186,0.02631579,0.00000000,8.42000000 +7062,chr22,33026521,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,0.24000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.41000000 +7063,chr22,33027865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.76000000 +7064,chr22,33028012,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.55000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +7065,chr22,33028764,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.74000000,0.00000000,,0.45312500,68.00000000,3.00884956,0.05882353,0.00000000,4.83000000 +7066,chr22,33030634,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +7067,chr22,33031049,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,5.93000000 +7068,chr22,33033409,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +7069,chr22,33035179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-1.15000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.01369863,0.00000000,5.49000000 +7070,chr22,33035743,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.91000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.67000000 +7071,chr22,33036325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.84000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.82000000 +7072,chr22,33036480,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,3.23000000 +7073,chr22,33037659,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.28070175,58.00000000,2.56637168,0.01724138,0.00000000,6.05000000 +7074,chr22,33038081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.61000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.36000000 +7075,chr22,33038679,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.31000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.52000000 +7076,chr22,33038851,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.48000000,0.00000000,,0.30357143,57.00000000,2.52212389,0.01754386,0.00000000,6.92000000 +7077,chr22,33038885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.30000000,0.00000000,,0.29090909,57.00000000,2.52212389,0.03508772,0.00000000,6.42000000 +7078,chr22,33039237,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.20000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7079,chr22,33040454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.68000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +7080,chr22,33040848,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,7.04000000 +7081,chr22,33040977,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.35000000,0.00000000,,0.27450980,53.00000000,2.34513274,0.01886792,0.00000000,6.49000000 +7082,chr22,33041029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.48000000,0.00000000,,0.28846154,55.00000000,2.43362832,0.05454545,0.00000000,5.66000000 +7083,chr22,33041405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,-0.64000000,0.00000000,,0.26415094,56.00000000,2.47787611,0.03571429,0.00000000,6.19000000 +7084,chr22,33047035,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,2.10000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.64000000 +7085,chr22,33049251,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.30000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,5.49000000 +7086,chr22,33049732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +7087,chr22,33049771,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.14000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,7.10000000 +7088,chr22,33050951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-1.51000000,0.00000000,,0.25000000,96.00000000,4.24778761,0.00000000,0.00000000,6.79000000 +7089,chr22,33051960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +7090,chr22,33053663,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.03000000 +7091,chr22,33054511,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.47000000,0.00000000,,0.15730337,90.00000000,3.98230088,0.01111111,0.00000000,5.83000000 +7092,chr22,33055165,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.34000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.30000000 +7093,chr22,33055872,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-2.73000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.93000000 +7094,chr22,33056502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +7095,chr22,33056640,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.98000000,0.00000000,,0.21590909,92.00000000,4.07079646,0.04347826,0.00000000,6.31000000 +7096,chr22,33056801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.99000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.10000000 +7097,chr22,33057547,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.94000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.01388889,0.00000000,2.95000000 +7098,chr22,33057845,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.06000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.69000000 +7099,chr22,33058334,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.20000000,62.00000000,2.74336283,0.01612903,0.00000000,6.44000000 +7100,chr22,33058455,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.03000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.83000000 +7101,chr22,33059450,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.44000000,0.00000000,,0.28000000,76.00000000,3.36283186,0.01315789,0.00000000,6.57000000 +7102,chr22,33062394,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,-0.45000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.89000000 +7103,chr22,33063145,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.90000000,0.00000000,,0.46153846,80.00000000,3.53982301,0.02500000,0.00000000,4.72000000 +7104,chr22,33064358,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.04000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +7105,chr22,33064506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.13953488,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.22807018,63.00000000,2.78761062,0.07936508,0.00000000,5.43000000 +7106,chr22,33066380,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.15000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.37000000 +7107,chr22,33066753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +7108,chr22,33070837,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.38000000,0.00000000,,0.19047619,64.00000000,2.83185841,0.01562500,0.00000000,6.29000000 +7109,chr22,33071021,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.49000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.79000000 +7110,chr22,33072123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.89000000,0.00000000,,0.32432432,78.00000000,3.45132743,0.03846154,0.00000000,8.07000000 +7111,chr22,33074606,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,1.51000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,5.79000000 +7112,chr22,33075552,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.25000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.29000000 +7113,chr22,33077004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.52000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,6.36000000 +7114,chr22,33077580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-2.26000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.03000000 +7115,chr22,33078477,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.73000000 +7116,chr22,33078803,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.25000000,0.00000000,,0.40449438,89.00000000,3.93805310,0.00000000,0.00000000,8.93000000 +7117,chr22,33079153,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,85.00000000,0.00000000,2.90000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,5.78000000 +7118,chr22,33079716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.19000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.96000000 +7119,chr22,33080023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,7.03000000 +7120,chr22,33081934,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.05000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.80000000 +7121,chr22,33082208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.13000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,7.16000000 +7122,chr22,33085225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.12000000 +7123,chr22,33086126,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.22000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +7124,chr22,33086273,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.03000000,0.00000000,,0.53086420,82.00000000,3.62831858,0.01219512,0.00000000,8.58000000 +7125,chr22,33086322,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.54000000 +7126,chr22,33086535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23750000,85.00000000,3.76106195,0.05882353,0.00000000,5.94000000 +7127,chr22,33087258,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +7128,chr22,33089778,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.96000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.02325581,0.01149425,8.24000000 +7129,chr22,33093982,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.12698413,63.00000000,2.78761062,0.00000000,0.00000000,5.27000000 +7130,chr22,33094567,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.53000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.01315789,0.00000000,8.50000000 +7131,chr22,33096834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.34000000,0.00000000,,0.25757576,69.00000000,3.05309735,0.04347826,0.00000000,5.93000000 +7132,chr22,33097275,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.58000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +7133,chr22,33098397,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,1.06000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,2.83000000 +7134,chr22,33099346,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.18461538,68.00000000,3.00884956,0.04411765,0.00000000,6.10000000 +7135,chr22,33099348,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,1.05000000,0.00000000,,0.18461538,68.00000000,3.00884956,0.04411765,0.00000000,6.03000000 +7136,chr22,33099479,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,28.00000000,0.00000000,0.33000000,0.00000000,,0.59259259,54.00000000,2.38938053,0.00000000,0.00000000,3.91000000 +7137,chr22,33101046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.41000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +7138,chr22,33103004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.02000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +7139,chr22,33103038,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.32000000,0.00000000,,0.20000000,58.00000000,2.56637168,0.01724138,0.00000000,6.50000000 +7140,chr22,33103560,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,6.17000000 +7141,chr22,33105391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.38000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,6.46000000 +7142,chr22,33105723,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,1.79000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.15000000 +7143,chr22,33106567,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,80.00000000,0.00000000,0.97000000,0.00000000,,0.43661972,80.00000000,3.53982301,0.11250000,0.00000000,7.80000000 +7144,chr22,33109169,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +7145,chr22,33109512,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.38000000 +7146,chr22,33111579,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-2.65000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.65000000 +7147,chr22,33121680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.52000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +7148,chr22,33122660,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.48000000 +7149,chr22,33123593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,84.00000000,0.00000000,0.31000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.67000000 +7150,chr22,33127568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.86000000,0.00000000,,0.31168831,80.00000000,3.53982301,0.02500000,0.00000000,7.69000000 +7151,chr22,33128060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.32000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.66000000 +7152,chr22,33130462,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +7153,chr22,33130929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,68.00000000,0.00000000,-0.87000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.10126582,0.00000000,6.06000000 +7154,chr22,33130957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,64.00000000,0.00000000,0.27000000,0.00000000,,0.18181818,75.00000000,3.31858407,0.12000000,0.00000000,5.70000000 +7155,chr22,33160142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,1.32000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.58000000 +7156,chr22,33163244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.29000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +7157,chr22,33165397,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.60000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,5.89000000 +7158,chr22,33165405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.37000000 +7159,chr22,33277139,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.17000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +7160,chr22,33303845,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,27.00000000,1.19469027,0.11111111,0.00000000,60.00000000,0.00000000,-1.54000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.73000000 +7161,chr22,33310959,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.22000000,0.00000000,,0.24637681,73.00000000,3.23008850,0.05479452,0.00000000,5.73000000 +7162,chr22,33311128,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.99000000 +7163,chr22,33328558,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,-1.70000000,0.00000000,,0.10909091,58.00000000,2.56637168,0.05172414,0.00000000,4.72000000 +7164,chr22,33343549,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.47619048,84.00000000,3.71681416,0.00000000,0.00000000,8.75000000 +7165,chr22,33351370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +7166,chr22,33352376,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.51000000,0.00000000,,0.53846154,53.00000000,2.34513274,0.01886792,0.00000000,6.02000000 +7167,chr22,33354935,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-1.14000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.78000000 +7168,chr22,33355877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.89000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,7.54000000 +7169,chr22,33356434,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.39000000 +7170,chr22,33357391,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.77000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.56000000 +7171,chr22,33358782,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,-1.31000000,2.54000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,4.66000000 +7172,chr22,33360030,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.18867925,53.00000000,2.34513274,0.00000000,0.00000000,6.62000000 +7173,chr22,33360037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.20000000,56.00000000,2.47787611,0.00000000,0.00000000,7.09000000 +7174,chr22,33372132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.52000000,0.00000000,,0.25581395,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7175,chr22,33383987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.78000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,6.83000000 +7176,chr22,33412439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.02247191,0.00000000,6.23000000 +7177,chr22,33412523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-1.09000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +7178,chr22,33415673,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,6.88000000 +7179,chr22,33416862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.79000000,0.00000000,,0.20588235,74.00000000,3.27433628,0.06756757,0.00000000,5.95000000 +7180,chr22,33420236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.79000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +7181,chr22,33420374,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.47000000,0.00000000,,0.14666667,78.00000000,3.45132743,0.02564103,0.00000000,5.69000000 +7182,chr22,33427423,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,68.00000000,0.00000000,0.43000000,0.00000000,,0.15151515,100.00000000,4.42477876,0.01000000,0.00000000,5.17000000 +7183,chr22,33430335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.32000000 +7184,chr22,33432446,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.22000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.00000000,0.00000000,6.86000000 +7185,chr22,33433324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.24137931,58.00000000,2.56637168,0.00000000,0.00000000,6.41000000 +7186,chr22,33438756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.23000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +7187,chr22,33442986,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.71000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.80000000 +7188,chr22,33444555,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.59000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.05333333,0.00000000,6.15000000 +7189,chr22,33444629,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.47000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,5.84000000 +7190,chr22,33446257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.41000000 +7191,chr22,33446652,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,1.35000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.03750000,0.00000000,5.50000000 +7192,chr22,33448354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.73000000,0.00000000,,0.22471910,93.00000000,4.11504425,0.02150538,0.00000000,6.32000000 +7193,chr22,33451891,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,2.30000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.47000000 +7194,chr22,33452024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-1.07000000,0.00000000,,0.28000000,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +7195,chr22,33452274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.73000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.06000000 +7196,chr22,33452384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-0.40000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.57000000 +7197,chr22,33453139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.92000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7198,chr22,33455519,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +7199,chr22,33461558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.17105263,79.00000000,3.49557522,0.03797468,0.00000000,5.32000000 +7200,chr22,33464908,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.24489796,52.00000000,2.30088496,0.03846154,0.00000000,6.20000000 +7201,chr22,33473415,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.81000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,4.78000000 +7202,chr22,33489911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.63000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.19000000 +7203,chr22,33495580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.38000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.00000000,0.00000000,5.07000000 +7204,chr22,33499050,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,109.00000000,0.00000000,0.31000000,0.00000000,,0.34939759,85.00000000,3.76106195,0.02352941,0.00000000,13.49000000 +7205,chr22,33500083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.14000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.36000000 +7206,chr22,33502441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,1.76000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,4.14000000 +7207,chr22,33504951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.91000000,0.00000000,,0.29213483,89.00000000,3.93805310,0.00000000,0.00000000,6.79000000 +7208,chr22,33558346,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.01298701,0.00000000,6.51000000 +7209,chr22,33561460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.70000000 +7210,chr22,33572382,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.32000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.93000000 +7211,chr22,33573528,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,-1.57000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.45000000 +7212,chr22,33576452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,8.02000000 +7213,chr22,33577102,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.16000000 +7214,chr22,33577132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.37000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.39000000 +7215,chr22,33577429,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,2.61000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.00000000,5.99000000 +7216,chr22,33577919,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.31000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +7217,chr22,33579853,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.85000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +7218,chr22,33580012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-1.04000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +7219,chr22,33582090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +7220,chr22,33582145,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.94000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.39000000 +7221,chr22,33582325,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-0.50000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.28000000 +7222,chr22,33582472,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-2.08000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,5.75000000 +7223,chr22,33583619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.54000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.60000000 +7224,chr22,33583951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.68000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.65000000 +7225,chr22,33584733,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,0.46000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,3.87000000 +7226,chr22,33585613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.40000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.01315789,0.00000000,6.39000000 +7227,chr22,33587608,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,-0.87000000,0.00000000,,0.29591837,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +7228,chr22,33588343,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.05000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.02105263,0.00000000,5.99000000 +7229,chr22,33588408,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.62000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.82000000 +7230,chr22,33588771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.86000000 +7231,chr22,33589024,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.20000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.89000000 +7232,chr22,33589374,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.28000000,0.00000000,,0.20192308,104.00000000,4.60176991,0.00000000,0.00000000,7.01000000 +7233,chr22,33589643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.54000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,5.74000000 +7234,chr22,33590507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +7235,chr22,33590557,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.93000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.73000000 +7236,chr22,33590682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,1.53000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7237,chr22,33591022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,0.09000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.40000000 +7238,chr22,33593872,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.00000000,0.00000000,6.57000000 +7239,chr22,33594217,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.68000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,7.05000000 +7240,chr22,33595444,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.89000000 +7241,chr22,33595585,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.03000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.31000000 +7242,chr22,33595970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.57831325,84.00000000,3.71681416,0.00000000,0.00000000,8.63000000 +7243,chr22,33599480,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.92000000 +7244,chr22,33601565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.76000000 +7245,chr22,33604244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.27368421,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +7246,chr22,33608486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,0.18000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.00000000,0.00000000,5.91000000 +7247,chr22,33609920,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.60000000 +7248,chr22,33614279,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.30769231,93.00000000,4.11504425,0.02150538,0.00000000,6.39000000 +7249,chr22,33625477,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.45000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +7250,chr22,33625587,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.43000000,0.00000000,,0.14117647,86.00000000,3.80530973,0.01162791,0.00000000,4.47000000 +7251,chr22,33626107,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.21000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.43000000 +7252,chr22,33628220,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.79000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +7253,chr22,33629289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-1.13000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.07000000 +7254,chr22,33632607,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.98000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,5.81000000 +7255,chr22,33636453,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.58000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +7256,chr22,33653952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7257,chr22,33660399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.73000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +7258,chr22,33670230,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,63.00000000,0.00000000,-1.33000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,4.93000000 +7259,chr22,33670860,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,5.72000000 +7260,chr22,33688860,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,60.00000000,0.00000000,0.62000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,7.59000000 +7261,chr22,33690249,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.86000000 +7262,chr22,33690430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,-2.08000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.02739726,0.00000000,7.98000000 +7263,chr22,33693196,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,2.10000000,0.00000000,,0.42352941,87.00000000,3.84955752,0.02298851,0.00000000,3.96000000 +7264,chr22,33693274,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.97000000,0.00000000,,0.38666667,78.00000000,3.45132743,0.03846154,0.00000000,8.31000000 +7265,chr22,33693362,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,0.00000000,0.00000000,,0.34939759,92.00000000,4.07079646,0.08695652,0.00000000,7.61000000 +7266,chr22,33695762,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.26000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.07000000 +7267,chr22,33696505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.22000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,7.00000000 +7268,chr22,33759851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.01369863,0.00000000,6.15000000 +7269,chr22,33768699,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,5.51000000 +7270,chr22,33773407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.50000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.69000000 +7271,chr22,33775903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.23880597,72.00000000,3.18584071,0.06944444,0.00000000,5.74000000 +7272,chr22,33776290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.73000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.89000000 +7273,chr22,33778642,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-2.77000000,0.00000000,,0.31506849,73.00000000,3.23008850,0.00000000,0.00000000,8.73000000 +7274,chr22,33779767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.55000000,5.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,-0.58000000,0.00000000,,0.28571429,73.00000000,3.23008850,0.04109589,0.00000000,5.58000000 +7275,chr22,33782172,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.20000000 +7276,chr22,33784250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.32000000 +7277,chr22,33785018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.05000000,0.00000000,,0.27380952,90.00000000,3.98230088,0.06666667,0.00000000,2.89000000 +7278,chr22,33788172,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +7279,chr22,33788578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.93000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +7280,chr22,33790993,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,6.13000000 +7281,chr22,33791106,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.95000000 +7282,chr22,33794915,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-3.04000000,0.00000000,,0.13953488,88.00000000,3.89380531,0.02272727,0.00000000,5.30000000 +7283,chr22,33795648,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,0.17000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.03076923,0.00000000,5.67000000 +7284,chr22,33797245,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +7285,chr22,33797894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.46000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.45000000 +7286,chr22,33801004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.56000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.80000000 +7287,chr22,33801200,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.98000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.64000000 +7288,chr22,33801815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.62000000 +7289,chr22,33802520,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.74000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.69000000 +7290,chr22,33830594,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.59000000,0.00000000,,0.14285714,77.00000000,3.40707965,0.00000000,0.00000000,5.31000000 +7291,chr22,33831054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,72.00000000,0.00000000,0.40000000,0.00000000,,0.16842105,99.00000000,4.38053097,0.03030303,0.00000000,5.59000000 +7292,chr22,33834485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.50000000,0.00000000,,0.32203390,63.00000000,2.78761062,0.06349206,0.00000000,7.07000000 +7293,chr22,33838313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,5.83000000 +7294,chr22,33840029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.25757576,67.00000000,2.96460177,0.01492537,0.00000000,6.38000000 +7295,chr22,33844808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,73.00000000,0.00000000,-2.89000000,0.00000000,,0.27777778,57.00000000,2.52212389,0.05263158,0.00000000,5.88000000 +7296,chr22,33844995,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.87000000,0.00000000,,0.14705882,70.00000000,3.09734513,0.01428571,0.00000000,5.43000000 +7297,chr22,33845823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.20512821,82.00000000,3.62831858,0.04878049,0.00000000,6.46000000 +7298,chr22,33846064,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.01000000 +7299,chr22,33846578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.15000000,7.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-1.60000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.93000000 +7300,chr22,33846737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.84000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,4.28000000 +7301,chr22,33847654,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +7302,chr22,33850988,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.44000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +7303,chr22,33851076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.46000000 +7304,chr22,33851929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.28000000,0.00000000,,0.16901408,75.00000000,3.31858407,0.05333333,0.00000000,5.58000000 +7305,chr22,33852618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.32000000 +7306,chr22,33852676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.22000000,0.00000000,,0.14545455,55.00000000,2.43362832,0.00000000,0.00000000,5.48000000 +7307,chr22,33853729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-0.41000000,0.00000000,,0.15662651,83.00000000,3.67256637,0.00000000,0.00000000,5.73000000 +7308,chr22,33854483,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.63000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,5.28000000 +7309,chr22,33855117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.63000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,6.04000000 +7310,chr22,33863390,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.53000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +7311,chr22,33864750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.57000000,0.00000000,,0.25581395,86.00000000,3.80530973,0.00000000,0.00000000,6.32000000 +7312,chr22,33866428,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,0.22000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +7313,chr22,33871578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-0.49000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,5.79000000 +7314,chr22,33873196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.71000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.92000000 +7315,chr22,33873338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.10000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.03529412,0.00000000,2.90000000 +7316,chr22,33873455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.74000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +7317,chr22,33874580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,1.25000000,0.00000000,,0.15652174,116.00000000,5.13274336,0.00862069,0.00000000,5.43000000 +7318,chr22,33880107,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.22000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.26000000 +7319,chr22,33880975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.80000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.15000000 +7320,chr22,33894728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.01333333,0.00000000,7.67000000 +7321,chr22,33899422,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-1.13000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.59000000 +7322,chr22,33901563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.25000000,0.00000000,,0.25000000,99.00000000,4.38053097,0.01010101,0.00000000,6.61000000 +7323,chr22,33904564,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-1.48000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,7.00000000 +7324,chr22,33907389,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.16666667,96.00000000,4.24778761,0.00000000,0.00000000,5.23000000 +7325,chr22,33908085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.61000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +7326,chr22,33908703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,54.00000000,0.00000000,0.94000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,2.81000000 +7327,chr22,33909631,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.06000000,0.00000000,,0.19230769,84.00000000,3.71681416,0.07142857,0.00000000,5.67000000 +7328,chr22,33910804,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.74000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +7329,chr22,33922078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.06000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +7330,chr22,33923521,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.26000000,0.00000000,,0.19387755,98.00000000,4.33628319,0.00000000,0.00000000,6.61000000 +7331,chr22,33923748,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +7332,chr22,33926330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.82000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.40000000 +7333,chr22,33927511,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7334,chr22,33929558,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.63000000 +7335,chr22,33931720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.27380952,88.00000000,3.89380531,0.03409091,0.00000000,6.61000000 +7336,chr22,33933614,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.70000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +7337,chr22,33938368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.95000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,6.32000000 +7338,chr22,33938543,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.93000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +7339,chr22,33941394,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,2.09000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.79000000 +7340,chr22,33941635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.28000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.40000000 +7341,chr22,33944873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.39000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,6.33000000 +7342,chr22,33945645,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.18181818,70.00000000,3.09734513,0.05714286,0.00000000,5.57000000 +7343,chr22,33948207,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.04411765,0.00000000,6.38000000 +7344,chr22,33954476,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.28000000,0.00000000,,0.21538462,68.00000000,3.00884956,0.04411765,0.00000000,5.95000000 +7345,chr22,33957265,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,46.00000000,0.00000000,-0.47000000,0.00000000,,0.37931034,60.00000000,2.65486726,0.03333333,0.00000000,4.64000000 +7346,chr22,33960516,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,-1.09000000,0.00000000,,0.13829787,94.00000000,4.15929204,0.00000000,0.00000000,5.55000000 +7347,chr22,33963729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.55000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.42000000 +7348,chr22,33967297,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.92000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +7349,chr22,33968260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.12000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.01000000 +7350,chr22,33968691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +7351,chr22,33972557,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,68.00000000,0.00000000,-0.06000000,0.00000000,,0.18367347,60.00000000,2.65486726,0.18333333,0.00000000,5.83000000 +7352,chr22,33972561,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16981132,63.00000000,2.78761062,0.15873016,0.00000000,5.22000000 +7353,chr22,33973972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.94000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.73000000 +7354,chr22,33978446,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,36.00000000,0.00000000,1.25000000,0.00000000,,0.37777778,47.00000000,2.07964602,0.04255319,0.00000000,3.62000000 +7355,chr22,33978567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,49.00000000,0.00000000,0.80000000,0.00000000,,0.30508475,62.00000000,2.74336283,0.01612903,0.00000000,4.21000000 +7356,chr22,33979209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.29213483,89.00000000,3.93805310,0.00000000,0.00000000,5.86000000 +7357,chr22,33979259,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.10000000,0.00000000,,0.27368421,98.00000000,4.33628319,0.03061224,0.00000000,6.19000000 +7358,chr22,33983160,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.87000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.32000000 +7359,chr22,33987676,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.62000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +7360,chr22,33990094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.79000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +7361,chr22,33990484,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.50000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +7362,chr22,33991521,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.79000000,0.00000000,,0.45679012,85.00000000,3.76106195,0.04705882,0.00000000,7.66000000 +7363,chr22,33993966,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.01136364,0.00000000,6.66000000 +7364,chr22,33994613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.10000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.03030303,0.00000000,6.85000000 +7365,chr22,34000682,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.75000000,0.00000000,,0.15463918,99.00000000,4.38053097,0.01010101,0.00000000,5.70000000 +7366,chr22,34006198,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.14000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,7.04000000 +7367,chr22,34009778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.24137931,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.24615385,76.00000000,3.36283186,0.13157895,0.00000000,5.33000000 +7368,chr22,34017284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.18000000 +7369,chr22,34036787,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +7370,chr22,34106800,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,4.78000000 +7371,chr22,34107070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.46000000 +7372,chr22,34108875,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,2.08000000,0.00000000,,0.16923077,75.00000000,3.31858407,0.13333333,0.00000000,5.07000000 +7373,chr22,34123811,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,-1.36000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.14000000 +7374,chr22,34136895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,5.91000000 +7375,chr22,34138015,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-1.29000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.61000000 +7376,chr22,34138118,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.43000000,0.00000000,,0.22058824,75.00000000,3.31858407,0.09333333,0.00000000,5.75000000 +7377,chr22,34140731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.98000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.76000000 +7378,chr22,34140979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.56000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.47000000 +7379,chr22,34143397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-1.99000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +7380,chr22,34143889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-1.32000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.62000000 +7381,chr22,34144292,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.87000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +7382,chr22,34147521,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.41000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.04411765,0.00000000,5.94000000 +7383,chr22,34149063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.33000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.73000000 +7384,chr22,34149560,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,0.04000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.01538462,0.00000000,5.45000000 +7385,chr22,34149793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.43000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +7386,chr22,34150514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.56000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +7387,chr22,34151420,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,60.00000000,0.00000000,0.15000000,0.00000000,,0.32258065,70.00000000,3.09734513,0.11428571,0.00000000,7.03000000 +7388,chr22,34152193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,4.76000000 +7389,chr22,34152453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,1.11000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.11000000 +7390,chr22,34152561,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-1.26000000,0.00000000,,0.12500000,82.00000000,3.62831858,0.02439024,0.00000000,5.33000000 +7391,chr22,34152893,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.98000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.96000000 +7392,chr22,34152978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.34000000 +7393,chr22,34153451,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.06000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.31000000 +7394,chr22,34153506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.15000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.98000000 +7395,chr22,34153646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.13000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.61000000 +7396,chr22,34153787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.26000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.16000000 +7397,chr22,34154351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,2.11000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.02000000 +7398,chr22,34154411,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-1.30000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.00000000,0.00000000,5.73000000 +7399,chr22,34154534,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,-0.22000000,0.00000000,,0.28000000,79.00000000,3.49557522,0.05063291,0.00000000,2.79000000 +7400,chr22,34154586,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.91000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.38000000 +7401,chr22,34154601,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.60000000 +7402,chr22,34155115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.01176471,0.00000000,6.97000000 +7403,chr22,34155472,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.83000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,5.82000000 +7404,chr22,34155833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +7405,chr22,34156416,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.61000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.04225352,0.00000000,5.89000000 +7406,chr22,34156426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.13000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,5.65000000 +7407,chr22,34156487,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.28000000 +7408,chr22,34156492,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,0.67000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,4.42000000 +7409,chr22,34156712,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,2.04000000,0.00000000,,0.21428571,59.00000000,2.61061947,0.03389831,0.00000000,5.79000000 +7410,chr22,34157665,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.64000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +7411,chr22,34157835,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.23437500,71.00000000,3.14159292,0.09859155,0.00000000,6.10000000 +7412,chr22,34158249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,5.59000000 +7413,chr22,34164387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.01098901,0.00000000,6.85000000 +7414,chr22,34167330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,2.20000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.37000000 +7415,chr22,34169857,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-2.10000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.69000000 +7416,chr22,34170664,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,1.30000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.24000000 +7417,chr22,34178049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.52000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +7418,chr22,34188025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.90000000 +7419,chr22,34189863,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.04000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,2.91000000 +7420,chr22,34190213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.48000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.63000000 +7421,chr22,34190576,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.54000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.76000000 +7422,chr22,34191167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +7423,chr22,34191372,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.82000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.46000000 +7424,chr22,34191458,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.36000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +7425,chr22,34191514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.76000000 +7426,chr22,34191997,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-1.08000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.00000000,0.00000000,6.55000000 +7427,chr22,34193425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.72000000,0.00000000,,0.32203390,59.00000000,2.61061947,0.00000000,0.00000000,8.03000000 +7428,chr22,34193881,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-1.02000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.40000000 +7429,chr22,34193899,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.60000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.56000000 +7430,chr22,34194170,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.27142857,74.00000000,3.27433628,0.05405405,0.00000000,6.50000000 +7431,chr22,34196167,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.20000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.84000000 +7432,chr22,34197023,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.25757576,67.00000000,2.96460177,0.01492537,0.00000000,6.25000000 +7433,chr22,34198313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,5.87000000 +7434,chr22,34200567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.26000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.37000000 +7435,chr22,34200901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,77.00000000,0.00000000,0.69000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.00000000,0.00000000,5.80000000 +7436,chr22,34201427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.00000000,0.00000000,6.71000000 +7437,chr22,34202007,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.18000000 +7438,chr22,34202320,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,1.90000000,0.00000000,,0.28358209,73.00000000,3.23008850,0.08219178,0.00000000,5.55000000 +7439,chr22,34202579,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.13725490,106.00000000,4.69026549,0.01886792,0.00000000,5.42000000 +7440,chr22,34202673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-0.73000000,0.00000000,,0.09183673,102.00000000,4.51327434,0.03921569,0.00000000,5.48000000 +7441,chr22,34203628,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.70000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.35000000 +7442,chr22,34204024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.14000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.33000000 +7443,chr22,34204476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-1.20000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.15000000 +7444,chr22,34204477,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,4.96000000 +7445,chr22,34204695,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.46000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.94000000 +7446,chr22,34204945,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.95000000,0.00000000,,0.21428571,68.00000000,3.00884956,0.14705882,0.00000000,6.70000000 +7447,chr22,34207244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.64000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +7448,chr22,34208264,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +7449,chr22,34209968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.24000000,0.00000000,,0.30588235,86.00000000,3.80530973,0.01162791,0.00000000,6.02000000 +7450,chr22,34210310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,-0.64000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,6.10000000 +7451,chr22,34210850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.82000000,0.00000000,,0.13888889,72.00000000,3.18584071,0.00000000,0.00000000,5.10000000 +7452,chr22,34211724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.92000000,0.00000000,,0.24137931,59.00000000,2.61061947,0.01694915,0.00000000,6.60000000 +7453,chr22,34212523,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,-2.44000000,0.00000000,,0.32432432,76.00000000,3.36283186,0.02631579,0.00000000,8.38000000 +7454,chr22,34214105,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.88000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,6.68000000 +7455,chr22,34214916,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.73000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +7456,chr22,34215630,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.22000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.93000000 +7457,chr22,34215943,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.27000000,0.00000000,,0.33333333,75.00000000,3.31858407,0.02666667,0.00000000,9.24000000 +7458,chr22,34216946,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.20000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +7459,chr22,34217680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.89000000 +7460,chr22,34217911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-1.10000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.67000000 +7461,chr22,34217930,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,-1.20000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.01000000 +7462,chr22,34218264,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.68000000 +7463,chr22,34218931,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.24000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.25000000 +7464,chr22,34219207,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.80000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.73000000 +7465,chr22,34220874,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.44000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,7.15000000 +7466,chr22,34222809,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.77000000,0.00000000,,0.10810811,74.00000000,3.27433628,0.00000000,0.00000000,5.38000000 +7467,chr22,34222830,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.50000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,6.15000000 +7468,chr22,34223456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.06000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.01136364,0.00000000,6.02000000 +7469,chr22,34243064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +7470,chr22,34251521,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,27.00000000,0.00000000,1.06000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,3.21000000 +7471,chr22,34252923,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,20.00000000,0.00000000,-0.17000000,0.00000000,,0.46268657,67.00000000,2.96460177,0.00000000,0.00000000,3.13000000 +7472,chr22,34254793,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,57.00000000,0.00000000,-0.28000000,0.00000000,,0.47761194,67.00000000,2.96460177,0.00000000,0.00000000,4.21000000 +7473,chr22,34255553,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-0.25000000,0.00000000,,0.40697674,90.00000000,3.98230088,0.03333333,0.00000000,8.29000000 +7474,chr22,34258911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.36000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.88000000 +7475,chr22,34259658,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.81000000,0.00000000,,0.44680851,94.00000000,4.15929204,0.00000000,0.00000000,4.26000000 +7476,chr22,34264927,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,1.35000000,0.00000000,,0.40000000,81.00000000,3.58407080,0.01234568,0.00000000,7.91000000 +7477,chr22,34265829,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.42682927,84.00000000,3.71681416,0.01190476,0.00000000,8.64000000 +7478,chr22,34265988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.47000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.89000000 +7479,chr22,34266141,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,50.00000000,0.00000000,-1.89000000,0.00000000,,0.43750000,70.00000000,3.09734513,0.08571429,0.00000000,4.53000000 +7480,chr22,34267078,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,0.70000000,0.00000000,,0.46575342,75.00000000,3.31858407,0.02666667,0.00000000,4.65000000 +7481,chr22,34270882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.16000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,2.87000000 +7482,chr22,34272341,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.11000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,4.46000000 +7483,chr22,34279399,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.40000000,0.00000000,,0.38297872,50.00000000,2.21238938,0.04000000,0.00000000,4.72000000 +7484,chr22,34279400,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.29000000,0.00000000,,0.37500000,50.00000000,2.21238938,0.04000000,0.00000000,4.81000000 +7485,chr22,34281901,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,51.00000000,0.00000000,-0.09000000,0.00000000,,0.37142857,70.00000000,3.09734513,0.00000000,0.00000000,4.66000000 +7486,chr22,34282150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.20270270,80.00000000,3.53982301,0.07500000,0.00000000,6.60000000 +7487,chr22,34283400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,6.67000000 +7488,chr22,34285173,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.35000000,0.00000000,,0.48648649,75.00000000,3.31858407,0.01333333,0.00000000,4.57000000 +7489,chr22,34287449,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.70000000,0.00000000,,0.52941176,87.00000000,3.84955752,0.02298851,0.00000000,8.04000000 +7490,chr22,34288899,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,48.00000000,0.00000000,-0.46000000,0.00000000,,0.37078652,92.00000000,4.07079646,0.03260870,0.00000000,4.68000000 +7491,chr22,34290908,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.47000000,0.00000000,,0.53125000,66.00000000,2.92035398,0.03030303,0.00000000,8.00000000 +7492,chr22,34290969,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.92000000,0.00000000,,0.50943396,54.00000000,2.38938053,0.01851852,0.00000000,7.54000000 +7493,chr22,34291040,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.80000000,0.00000000,,0.43103448,60.00000000,2.65486726,0.01666667,0.00000000,4.31000000 +7494,chr22,34293199,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.44000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.64000000 +7495,chr22,34294658,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.16000000,0.00000000,,0.46478873,71.00000000,3.14159292,0.00000000,0.00000000,4.27000000 +7496,chr22,34295045,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-1.83000000,0.00000000,,0.42424242,99.00000000,4.38053097,0.00000000,0.00000000,8.96000000 +7497,chr22,34299196,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.09000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,4.00000000 +7498,chr22,34299419,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,-0.47000000,0.00000000,,0.42682927,85.00000000,3.76106195,0.03529412,0.00000000,8.14000000 +7499,chr22,34300419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.45000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,1.34000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.64000000 +7500,chr22,34306500,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.17000000,0.00000000,,0.33333333,77.00000000,3.40707965,0.02597403,0.00000000,8.00000000 +7501,chr22,34309076,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.42000000,0.00000000,,0.43661972,74.00000000,3.27433628,0.04054054,0.00000000,4.52000000 +7502,chr22,34313133,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,60.00000000,0.00000000,-2.00000000,0.00000000,,0.48571429,73.00000000,3.23008850,0.04109589,0.00000000,7.44000000 +7503,chr22,34313631,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.37179487,80.00000000,3.53982301,0.02500000,0.00000000,8.41000000 +7504,chr22,34319890,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,43.00000000,1.90265487,0.00000000,0.00000000,58.00000000,0.00000000,-0.53000000,0.00000000,,0.53012048,86.00000000,3.80530973,0.03488372,0.00000000,5.64000000 +7505,chr22,34320509,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.02000000,0.00000000,,0.40000000,86.00000000,3.80530973,0.01162791,0.00000000,8.63000000 +7506,chr22,34323889,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.55000000,0.00000000,,0.18750000,99.00000000,4.38053097,0.03030303,0.00000000,6.74000000 +7507,chr22,34325145,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.59000000,0.00000000,,0.46969697,68.00000000,3.00884956,0.02941176,0.00000000,4.68000000 +7508,chr22,34325284,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.83000000,0.00000000,,0.46753247,81.00000000,3.58407080,0.02469136,0.00000000,8.38000000 +7509,chr22,34326226,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.23300971,103.00000000,4.55752212,0.00000000,0.00000000,7.09000000 +7510,chr22,34332188,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.81000000,0.00000000,,0.53658537,83.00000000,3.67256637,0.01204819,0.00000000,8.30000000 +7511,chr22,34332223,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-1.08000000,0.00000000,,0.58620690,89.00000000,3.93805310,0.02247191,0.00000000,8.32000000 +7512,chr22,34332241,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-1.43000000,0.00000000,,0.57303371,91.00000000,4.02654867,0.02197802,0.00000000,8.10000000 +7513,chr22,34332357,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.62000000,0.00000000,,0.44318182,89.00000000,3.93805310,0.01123596,0.00000000,4.03000000 +7514,chr22,34332596,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.76000000,0.00000000,,0.49382716,84.00000000,3.71681416,0.02380952,0.00000000,3.94000000 +7515,chr22,34332759,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.10000000,0.00000000,,0.54166667,72.00000000,3.18584071,0.00000000,0.00000000,8.75000000 +7516,chr22,34333801,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,44.00000000,0.00000000,-1.83000000,0.00000000,,0.45901639,63.00000000,2.78761062,0.03174603,0.00000000,4.04000000 +7517,chr22,34333835,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.75000000,0.00000000,,0.40000000,65.00000000,2.87610619,0.00000000,0.00000000,6.03000000 +7518,chr22,34335041,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.35000000 +7519,chr22,34335060,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.47435897,79.00000000,3.49557522,0.01265823,0.00000000,8.27000000 +7520,chr22,34335855,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.10000000,0.00000000,,0.53846154,78.00000000,3.45132743,0.00000000,0.00000000,8.82000000 +7521,chr22,34336032,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,0.80000000,0.00000000,,0.47058824,85.00000000,3.76106195,0.00000000,0.00000000,4.14000000 +7522,chr22,34336108,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-0.13000000,0.00000000,,0.46341463,85.00000000,3.76106195,0.03529412,0.00000000,8.16000000 +7523,chr22,34337188,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,34.00000000,0.00000000,-1.30000000,0.00000000,,0.37142857,73.00000000,3.23008850,0.04109589,0.00000000,3.91000000 +7524,chr22,34337520,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,20.00000000,0.00000000,0.61000000,0.00000000,,0.43939394,66.00000000,2.92035398,0.00000000,0.00000000,3.96000000 +7525,chr22,34338381,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,0.00000000,-0.62000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,14.35000000 +7526,chr22,34338883,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.17000000,0.00000000,,0.49350649,79.00000000,3.49557522,0.02531646,0.00000000,4.34000000 +7527,chr22,34339149,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-2.58000000,0.00000000,,0.55813953,88.00000000,3.89380531,0.02272727,0.00000000,7.67000000 +7528,chr22,34339383,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.39534884,90.00000000,3.98230088,0.04444444,0.00000000,8.07000000 +7529,chr22,34339742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.70000000,0.00000000,,0.13846154,69.00000000,3.05309735,0.05797101,0.00000000,5.37000000 +7530,chr22,34340795,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.45121951,83.00000000,3.67256637,0.01204819,0.00000000,8.43000000 +7531,chr22,34341303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,0.43000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,5.56000000 +7532,chr22,34341311,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,51.00000000,0.00000000,-1.02000000,0.00000000,,0.38235294,68.00000000,3.00884956,0.00000000,0.00000000,4.08000000 +7533,chr22,34345550,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.26436782,90.00000000,3.98230088,0.03333333,0.00000000,5.84000000 +7534,chr22,34346809,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.63000000,0.00000000,,0.46666667,77.00000000,3.40707965,0.02597403,0.00000000,4.30000000 +7535,chr22,34347084,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,2.47000000,0.00000000,,0.39080460,89.00000000,3.93805310,0.02247191,0.00000000,4.62000000 +7536,chr22,34347513,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.48000000,0.00000000,,0.47297297,77.00000000,3.40707965,0.03896104,0.00000000,4.76000000 +7537,chr22,34348646,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.40000000,82.00000000,3.62831858,0.02439024,0.00000000,8.20000000 +7538,chr22,34348859,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.27000000,0.00000000,,0.45161290,95.00000000,4.20353982,0.02105263,0.00000000,4.41000000 +7539,chr22,34348916,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,0.08000000,0.00000000,,0.48684211,77.00000000,3.40707965,0.01298701,0.00000000,4.28000000 +7540,chr22,34349208,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,0.58000000,0.00000000,,0.51515152,70.00000000,3.09734513,0.04285714,0.00000000,4.33000000 +7541,chr22,34351519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,0.04000000,0.00000000,,0.41538462,66.00000000,2.92035398,0.01515152,0.00000000,4.80000000 +7542,chr22,34352396,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.02000000,0.00000000,,0.48333333,61.00000000,2.69911504,0.01639344,0.00000000,4.35000000 +7543,chr22,34352730,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.17000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,8.49000000 +7544,chr22,34352977,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,29.00000000,0.00000000,-0.85000000,0.00000000,,0.43661972,71.00000000,3.14159292,0.00000000,0.00000000,3.60000000 +7545,chr22,34353202,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,1.46000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,8.05000000 +7546,chr22,34353976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.82000000,0.00000000,,0.28865979,98.00000000,4.33628319,0.00000000,0.00000000,6.76000000 +7547,chr22,34354883,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.40697674,88.00000000,3.89380531,0.02272727,0.00000000,8.21000000 +7548,chr22,34354930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.26000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.46000000 +7549,chr22,34376884,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.68000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.43000000 +7550,chr22,34384313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.64000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.26000000 +7551,chr22,34384700,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,78.00000000,0.00000000,1.31000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.02898551,0.00000000,5.73000000 +7552,chr22,34385208,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,96.00000000,0.00000000,1.47000000,0.00000000,,0.27906977,89.00000000,3.93805310,0.01123596,0.00000000,5.75000000 +7553,chr22,34394551,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.28000000 +7554,chr22,34397040,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.52000000,0.00000000,,0.20000000,45.00000000,1.99115044,0.00000000,0.00000000,5.12000000 +7555,chr22,34398628,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.30000000,11.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.42000000,0.00000000,,0.16363636,58.00000000,2.56637168,0.05172414,0.00000000,4.82000000 +7556,chr22,34401129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,6.32000000 +7557,chr22,34402293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,2.81000000,0.00000000,,0.24096386,87.00000000,3.84955752,0.04597701,0.00000000,6.05000000 +7558,chr22,34426450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.54000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7559,chr22,34436149,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,1.65000000,0.00000000,,0.22727273,70.00000000,3.09734513,0.05714286,0.00000000,5.71000000 +7560,chr22,34448584,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,0.87000000,0.00000000,,0.18840580,76.00000000,3.36283186,0.06578947,0.00000000,5.74000000 +7561,chr22,34518725,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.25000000 +7562,chr22,34547994,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.16000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +7563,chr22,34592231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.67000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.29000000 +7564,chr22,34592895,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.97000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +7565,chr22,34597410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.64000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.81000000 +7566,chr22,34598309,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.54000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +7567,chr22,34600489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.00000000,0.00000000,6.46000000 +7568,chr22,34601461,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,75.00000000,0.00000000,1.77000000,0.00000000,,0.30337079,91.00000000,4.02654867,0.02197802,0.00000000,6.08000000 +7569,chr22,34625752,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,40.93000000,54.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,29.00000000,0.00000000,-1.19000000,0.00000000,,0.34375000,33.00000000,1.46017699,0.03030303,0.00000000,3.77000000 +7570,chr22,34626822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.45000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.55000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,5.62000000 +7571,chr22,34627420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,0.85000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,8.09000000 +7572,chr22,34631593,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.97000000,0.00000000,,0.25490196,102.00000000,4.51327434,0.00000000,0.00000000,6.72000000 +7573,chr22,34635887,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,-0.91000000,0.00000000,,0.22580645,68.00000000,3.00884956,0.08823529,0.00000000,5.93000000 +7574,chr22,34650700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.00000000,0.00000000,6.47000000 +7575,chr22,34651224,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.13000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.23000000 +7576,chr22,34653047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.04000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.69000000 +7577,chr22,34661637,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.93000000,1.68000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.62000000 +7578,chr22,34672035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,0.24000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.96000000 +7579,chr22,34677348,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.08000000,0.00000000,,0.14130435,92.00000000,4.07079646,0.00000000,0.00000000,5.82000000 +7580,chr22,34685001,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.76000000,29.00000000,ref,1.00000000,0.11764706,17.00000000,0.75221239,0.00000000,0.00000000,14.00000000,0.00000000,-0.44000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,3.38000000 +7581,chr22,34688214,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.09000000 +7582,chr22,34689598,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-2.04000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +7583,chr22,34690145,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,5.82000000 +7584,chr22,34694531,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.69000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +7585,chr22,34694838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,1.24000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.93000000 +7586,chr22,34696418,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.16000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.44000000 +7587,chr22,34697149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.33000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,7.05000000 +7588,chr22,34702934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.15000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.74000000 +7589,chr22,34711932,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.31428571,73.00000000,3.23008850,0.04109589,0.00000000,6.53000000 +7590,chr22,34726322,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.77000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.90000000 +7591,chr22,34728988,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.64000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.41000000 +7592,chr22,34735623,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,0.00000000,,0.15306122,98.00000000,4.33628319,0.00000000,0.00000000,5.56000000 +7593,chr22,34745814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.13000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,50.00000000,0.00000000,-1.40000000,0.00000000,,0.17777778,57.00000000,2.52212389,0.19298246,0.00000000,2.78000000 +7594,chr22,34746793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.43000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.12000000 +7595,chr22,34748492,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.18000000 +7596,chr22,34752992,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.03225806,0.00000000,6.32000000 +7597,chr22,34753937,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-1.10000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,6.19000000 +7598,chr22,34768729,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.80000000 +7599,chr22,34780014,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,31.00000000,0.00000000,-0.03000000,0.00000000,,0.34883721,44.00000000,1.94690265,0.02272727,0.00000000,3.87000000 +7600,chr22,34799388,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.20000000,0.00000000,,0.25000000,60.00000000,2.65486726,0.00000000,0.00000000,6.41000000 +7601,chr22,34801363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.24000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.31000000 +7602,chr22,34804960,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.03000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.13000000 +7603,chr22,34845607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +7604,chr22,34846128,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.26315789,0.00000000,34.00000000,0.00000000,0.06000000,0.00000000,,0.33333333,72.00000000,3.18584071,0.23611111,0.00000000,3.88000000 +7605,chr22,34869265,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,-2.43000000,0.00000000,,0.44086022,96.00000000,4.24778761,0.02083333,0.00000000,7.56000000 +7606,chr22,34869546,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,54.00000000,0.00000000,1.25000000,0.00000000,,0.37662338,81.00000000,3.58407080,0.01234568,0.00000000,4.55000000 +7607,chr22,34894677,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.93000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.13000000 +7608,chr22,34896665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.66000000 +7609,chr22,34908625,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.75000000,0.00000000,,0.25555556,93.00000000,4.11504425,0.03225806,0.00000000,5.84000000 +7610,chr22,34937806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.16000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7611,chr22,34954905,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.25000000,0.00000000,,0.28333333,60.00000000,2.65486726,0.00000000,0.00000000,6.70000000 +7612,chr22,34956574,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.85000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.01086957,0.00000000,5.82000000 +7613,chr22,34961978,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.51000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +7614,chr22,34976639,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,0.64000000,0.00000000,,0.12790698,88.00000000,3.89380531,0.02272727,0.00000000,4.71000000 +7615,chr22,34976788,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,90.00000000,0.00000000,0.86000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.00000000,0.00000000,6.07000000 +7616,chr22,34976832,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,88.00000000,0.00000000,2.24000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.91000000 +7617,chr22,34977894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.46000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +7618,chr22,34977903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.22000000 +7619,chr22,34982267,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.33000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,7.08000000 +7620,chr22,34993644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,-1.18000000,0.00000000,,0.18750000,97.00000000,4.29203540,0.01030928,0.00000000,6.18000000 +7621,chr22,34994406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.25000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.26000000 +7622,chr22,35004579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-0.37000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.23000000 +7623,chr22,35010293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.18000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +7624,chr22,35011693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,60.00000000,0.00000000,1.13000000,0.00000000,,0.12500000,75.00000000,3.31858407,0.04000000,0.00000000,4.41000000 +7625,chr22,35012904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.02000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.07000000 +7626,chr22,35014861,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.19354839,66.00000000,2.92035398,0.04545455,0.00000000,5.68000000 +7627,chr22,35019584,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.85000000 +7628,chr22,35036907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,-1.46000000,0.00000000,,0.11764706,85.00000000,3.76106195,0.00000000,0.00000000,5.61000000 +7629,chr22,35039988,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.03000000,0.00000000,,0.24137931,87.00000000,3.84955752,0.00000000,0.00000000,6.93000000 +7630,chr22,35041832,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-0.15000000,0.00000000,,0.18867925,107.00000000,4.73451327,0.00934579,0.00000000,6.65000000 +7631,chr22,35043514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.90000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +7632,chr22,35044097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +7633,chr22,35045744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.88000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +7634,chr22,35046825,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.61000000 +7635,chr22,35047302,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.04000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.03750000,0.00000000,6.28000000 +7636,chr22,35053699,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.01000000,0.00000000,,0.16923077,67.00000000,2.96460177,0.02985075,0.00000000,5.80000000 +7637,chr22,35054311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.83000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.30000000 +7638,chr22,35054520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,102.00000000,0.00000000,0.91000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,12.77000000 +7639,chr22,35054947,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,-0.79000000,0.00000000,,0.28070175,58.00000000,2.56637168,0.01724138,0.00000000,6.27000000 +7640,chr22,35055959,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.02666667,0.00000000,5.52000000 +7641,chr22,35057270,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.91000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +7642,chr22,35057834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.49000000,0.00000000,,0.16666667,99.00000000,4.38053097,0.02020202,0.00000000,6.14000000 +7643,chr22,35058735,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,0.00000000,0.82000000,0.00000000,,0.23684211,82.00000000,3.62831858,0.02439024,0.00000000,4.21000000 +7644,chr22,35058755,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.59000000 +7645,chr22,35058758,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.01000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.22000000 +7646,chr22,35058829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,62.00000000,0.00000000,-1.69000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,5.78000000 +7647,chr22,35059117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,86.00000000,0.00000000,-0.66000000,0.00000000,,0.20353982,114.00000000,5.04424779,0.00877193,0.00000000,5.63000000 +7648,chr22,35059370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.49000000 +7649,chr22,35059589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.43000000 +7650,chr22,35059860,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.26000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.58000000 +7651,chr22,35059996,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.72000000,0.00000000,,0.21428571,58.00000000,2.56637168,0.01724138,0.00000000,6.40000000 +7652,chr22,35062863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.28000000,0.00000000,,0.22500000,84.00000000,3.71681416,0.04761905,0.00000000,6.66000000 +7653,chr22,35064374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.36000000,7.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,1.19000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,5.54000000 +7654,chr22,35064529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.22000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7655,chr22,35067169,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.06185567,0.00000000,6.08000000 +7656,chr22,35067186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.16091954,92.00000000,4.07079646,0.04347826,0.00000000,5.87000000 +7657,chr22,35071100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,2.18000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.46000000 +7658,chr22,35071858,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.20000000 +7659,chr22,35072747,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +7660,chr22,35072886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.66000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,6.57000000 +7661,chr22,35076157,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,89.00000000,0.00000000,1.44000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,5.26000000 +7662,chr22,35079135,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,86.00000000,0.00000000,-0.24000000,0.00000000,,0.30927835,98.00000000,4.33628319,0.01020408,0.00000000,6.75000000 +7663,chr22,35080843,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.22000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.00000000,0.00000000,6.51000000 +7664,chr22,35083705,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,1.15000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.02000000 +7665,chr22,35084899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,1.74000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,4.35000000 +7666,chr22,35091549,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.73000000 +7667,chr22,35092674,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.15000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +7668,chr22,35096320,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-1.64000000,0.00000000,,0.19417476,105.00000000,4.64601770,0.01904762,0.00000000,6.23000000 +7669,chr22,35096565,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.66000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,6.72000000 +7670,chr22,35098961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +7671,chr22,35100571,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.49000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.95000000 +7672,chr22,35104061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,2.22000000,0.00000000,,0.23287671,77.00000000,3.40707965,0.05194805,0.00000000,6.24000000 +7673,chr22,35104270,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.29000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.94000000 +7674,chr22,35111838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7675,chr22,35112181,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.52000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.67000000 +7676,chr22,35113528,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.26136364,91.00000000,4.02654867,0.03296703,0.00000000,5.96000000 +7677,chr22,35115596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7678,chr22,35118133,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.63000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.81000000 +7679,chr22,35119272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-1.79000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +7680,chr22,35119414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +7681,chr22,35120563,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.23000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +7682,chr22,35120686,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.58000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +7683,chr22,35120738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,-1.45000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.45000000 +7684,chr22,35121182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-1.81000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.35000000 +7685,chr22,35121397,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-1.40000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.02352941,0.00000000,5.76000000 +7686,chr22,35121640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.14000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.03529412,0.00000000,5.61000000 +7687,chr22,35121680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.04000000,0.00000000,,0.18478261,96.00000000,4.24778761,0.04166667,0.00000000,6.01000000 +7688,chr22,35121693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.03000000,0.00000000,,0.18478261,96.00000000,4.24778761,0.03125000,0.00000000,6.43000000 +7689,chr22,35121775,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.52000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.60000000 +7690,chr22,35122049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.64000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,4.43000000 +7691,chr22,35122592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +7692,chr22,35122789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,83.00000000,0.00000000,0.53000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.01000000 +7693,chr22,35122896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,-0.99000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.74000000 +7694,chr22,35122957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.16438356,80.00000000,3.53982301,0.08750000,0.00000000,4.99000000 +7695,chr22,35122994,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,73.00000000,0.00000000,-1.03000000,0.00000000,,0.17910448,76.00000000,3.36283186,0.11842105,0.00000000,5.60000000 +7696,chr22,35123091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.25454545,73.00000000,3.23008850,0.24657534,0.00000000,5.63000000 +7697,chr22,35123104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.25862069,72.00000000,3.18584071,0.19444444,0.00000000,5.63000000 +7698,chr22,35123285,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +7699,chr22,35123470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.03797468,0.00000000,5.94000000 +7700,chr22,35123519,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,6.70000000 +7701,chr22,35123732,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05882353,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.39000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +7702,chr22,35123857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.72000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +7703,chr22,35124083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,0.29000000,0.00000000,,0.27956989,95.00000000,4.20353982,0.02105263,0.00000000,6.22000000 +7704,chr22,35124891,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,0.00000000,1.41000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.11000000 +7705,chr22,35127380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.39000000,0.00000000,,0.20879121,95.00000000,4.20353982,0.03157895,0.00000000,6.50000000 +7706,chr22,35127875,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.32000000 +7707,chr22,35131086,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.15000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,6.65000000 +7708,chr22,35132132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.02000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,5.97000000 +7709,chr22,35132465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-1.49000000,0.00000000,,0.30000000,76.00000000,3.36283186,0.05263158,0.00000000,3.80000000 +7710,chr22,35132470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.78000000,0.00000000,,0.32307692,70.00000000,3.09734513,0.05714286,0.00000000,5.09000000 +7711,chr22,35132509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-1.59000000,0.00000000,,0.33333333,71.00000000,3.14159292,0.02816901,0.00000000,4.85000000 +7712,chr22,35133148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,1.15000000,0.00000000,,0.13793103,59.00000000,2.61061947,0.01694915,0.00000000,4.60000000 +7713,chr22,35135401,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.20000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +7714,chr22,35135619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.53000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.02000000 +7715,chr22,35135705,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.56000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,7.05000000 +7716,chr22,35136066,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.58000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.01351351,0.00000000,5.61000000 +7717,chr22,35136154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-0.77000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.99000000 +7718,chr22,35138137,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.37000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.15000000 +7719,chr22,35138579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.97000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,6.31000000 +7720,chr22,35141974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.51000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.58000000 +7721,chr22,35183913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.01136364,0.00000000,6.39000000 +7722,chr22,35201033,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.30000000,0.00000000,,0.27272727,68.00000000,3.00884956,0.02941176,0.00000000,6.15000000 +7723,chr22,35202386,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.95000000,0.00000000,,0.25555556,93.00000000,4.11504425,0.03225806,0.00000000,6.27000000 +7724,chr22,35203000,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.84000000,0.00000000,,0.28571429,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +7725,chr22,35203541,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,0.67000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.35000000 +7726,chr22,35203789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +7727,chr22,35205831,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.13000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,6.25000000 +7728,chr22,35205832,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.02000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.66000000 +7729,chr22,35206589,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.96000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +7730,chr22,35206905,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.00000000,0.00000000,5.43000000 +7731,chr22,35206969,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.27000000,0.00000000,,0.13888889,72.00000000,3.18584071,0.00000000,0.00000000,5.89000000 +7732,chr22,35207029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.15000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.67000000 +7733,chr22,35207369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.72000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +7734,chr22,35207600,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.42000000 +7735,chr22,35207803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.44000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.38000000 +7736,chr22,35208429,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.78000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +7737,chr22,35208509,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.26000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,5.82000000 +7738,chr22,35210118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.02000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.41000000 +7739,chr22,35210399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-1.93000000,0.00000000,,0.25242718,104.00000000,4.60176991,0.00961538,0.00000000,6.85000000 +7740,chr22,35212219,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.30000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.94000000 +7741,chr22,35212592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.83000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.01063830,0.00000000,6.48000000 +7742,chr22,35213787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.96000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.02105263,0.00000000,6.29000000 +7743,chr22,35215235,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,1.33000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.01098901,0.00000000,7.18000000 +7744,chr22,35215702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.39000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.53000000 +7745,chr22,35216575,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.12000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +7746,chr22,35217023,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.91000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.98000000 +7747,chr22,35217050,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.02439024,0.00000000,6.73000000 +7748,chr22,35218485,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.02000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,6.38000000 +7749,chr22,35219967,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,50.00000000,0.00000000,0.27000000,0.00000000,,0.26415094,64.00000000,2.83185841,0.17187500,0.00000000,2.81000000 +7750,chr22,35220058,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,0.10000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,5.87000000 +7751,chr22,35220195,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,92.00000000,0.00000000,-0.15000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,5.06000000 +7752,chr22,35221600,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,68.00000000,0.00000000,-0.22000000,0.00000000,,0.17283951,95.00000000,4.20353982,0.14736842,0.00000000,5.68000000 +7753,chr22,35226623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.54000000 +7754,chr22,35227928,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.09090909,0.00000000,92.00000000,0.00000000,-0.36000000,0.00000000,,0.26315789,80.00000000,3.53982301,0.03750000,0.00000000,4.97000000 +7755,chr22,35228308,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,-1.57000000,0.00000000,,0.27173913,96.00000000,4.24778761,0.04166667,0.00000000,5.89000000 +7756,chr22,35228924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,90.00000000,0.00000000,-1.44000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.78000000 +7757,chr22,35229187,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,43.00000000,1.90265487,0.06976744,0.00000000,69.00000000,0.00000000,-1.39000000,0.00000000,,0.24210526,98.00000000,4.33628319,0.03061224,0.00000000,5.43000000 +7758,chr22,35229569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.26000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +7759,chr22,35229852,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,100.00000000,0.00000000,0.56000000,0.00000000,,0.32142857,86.00000000,3.80530973,0.02325581,0.00000000,6.98000000 +7760,chr22,35230229,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,0.00000000,-0.74000000,0.00000000,,0.21782178,101.00000000,4.46902655,0.00000000,0.00000000,6.12000000 +7761,chr22,35343342,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,56.63000000,14.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,58.00000000,0.00000000,-0.94000000,0.00000000,,0.13043478,89.00000000,3.93805310,0.22471910,0.00000000,3.97000000 +7762,chr22,35344281,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.21428571,100.00000000,4.42477876,0.01000000,0.00000000,6.54000000 +7763,chr22,35344449,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.02127660,0.00000000,6.34000000 +7764,chr22,35345827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.78000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.04347826,0.00000000,6.23000000 +7765,chr22,35348479,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,79.00000000,0.00000000,-0.37000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,4.78000000 +7766,chr22,35348772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.24000000 +7767,chr22,35350159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,62.00000000,0.00000000,0.06000000,0.00000000,,0.17307692,62.00000000,2.74336283,0.14516129,0.00000000,5.39000000 +7768,chr22,35351507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.93000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.29000000 +7769,chr22,35354753,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.10447761,77.00000000,3.40707965,0.12987013,0.00000000,4.56000000 +7770,chr22,35354755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,1.53000000,0.00000000,,0.10606061,76.00000000,3.36283186,0.11842105,0.00000000,4.66000000 +7771,chr22,35354760,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,61.00000000,0.00000000,1.31000000,0.00000000,,0.10144928,78.00000000,3.45132743,0.10256410,0.00000000,4.73000000 +7772,chr22,35360290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.10000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.01694915,0.00000000,6.33000000 +7773,chr22,35362653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.24000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.28000000 +7774,chr22,35467114,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.33000000 +7775,chr22,35469225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,84.00000000,0.00000000,-0.33000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.89000000 +7776,chr22,35483088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.28000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +7777,chr22,35488161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,77.00000000,0.00000000,-0.38000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,5.86000000 +7778,chr22,35490107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.11578947,95.00000000,4.20353982,0.00000000,0.00000000,5.04000000 +7779,chr22,35495055,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.72000000 +7780,chr22,35497109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,5.79000000 +7781,chr22,35505248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.15714286,75.00000000,3.31858407,0.04000000,0.01315789,5.53000000 +7782,chr22,35505326,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.12000000,1.41000000,,0.15517241,62.00000000,2.74336283,0.03225806,0.00000000,4.41000000 +7783,chr22,35506470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.20000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.30000000 +7784,chr22,35507105,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,77.00000000,0.00000000,-1.44000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,4.90000000 +7785,chr22,35507281,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.00000000,6.22000000 +7786,chr22,35507688,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,62.00000000,2.74336283,0.01612903,0.00000000,6.25000000 +7787,chr22,35507784,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.24000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.26000000 +7788,chr22,35509020,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.58000000 +7789,chr22,35509497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.94000000,0.00000000,,0.18181818,82.00000000,3.62831858,0.01219512,0.00000000,6.10000000 +7790,chr22,35509502,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.24000000,0.90000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,4.24000000 +7791,chr22,35510088,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,1.17000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.00000000,0.00000000,6.06000000 +7792,chr22,35511940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.97000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.06000000,0.00000000,,0.32530120,87.00000000,3.84955752,0.04597701,0.00000000,7.11000000 +7793,chr22,35513171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.20224719,93.00000000,4.11504425,0.03225806,0.00000000,6.62000000 +7794,chr22,35534700,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.19000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.18000000 +7795,chr22,35537756,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.78000000,0.00000000,,0.40298507,69.00000000,3.05309735,0.02898551,0.00000000,8.31000000 +7796,chr22,35537815,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.41000000,0.00000000,,0.47435897,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +7797,chr22,35538024,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.63000000,0.00000000,,0.48936170,97.00000000,4.29203540,0.03092784,0.00000000,8.29000000 +7798,chr22,35547675,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.12000000,0.00000000,,0.44210526,95.00000000,4.20353982,0.00000000,0.00000000,6.16000000 +7799,chr22,35547761,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.12000000,0.00000000,,0.44565217,96.00000000,4.24778761,0.04166667,0.00000000,8.06000000 +7800,chr22,35549656,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,98.00000000,0.00000000,-1.95000000,0.00000000,,0.41250000,80.00000000,3.53982301,0.00000000,0.00000000,8.99000000 +7801,chr22,35551538,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.59000000,0.00000000,,0.42105263,57.00000000,2.52212389,0.00000000,0.00000000,8.04000000 +7802,chr22,35552950,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,22.00000000,0.00000000,-0.50000000,0.00000000,,0.45161290,63.00000000,2.78761062,0.01587302,0.00000000,3.98000000 +7803,chr22,35554101,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.63000000,0.00000000,,0.47560976,83.00000000,3.67256637,0.01204819,0.00000000,7.79000000 +7804,chr22,35555829,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.47142857,71.00000000,3.14159292,0.00000000,0.00000000,8.91000000 +7805,chr22,35556943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,0.34000000,0.00000000,,0.44871795,78.00000000,3.45132743,0.00000000,0.00000000,3.92000000 +7806,chr22,35559256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.33000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.05000000 +7807,chr22,35559321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-1.47000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.20000000 +7808,chr22,35559335,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,53.00000000,0.00000000,-1.39000000,0.00000000,,0.44705882,85.00000000,3.76106195,0.00000000,0.00000000,4.00000000 +7809,chr22,35559851,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.41176471,70.00000000,3.09734513,0.02857143,0.00000000,8.01000000 +7810,chr22,35560057,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.02000000,0.00000000,,0.42253521,72.00000000,3.18584071,0.01388889,0.00000000,8.76000000 +7811,chr22,35561395,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.04000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,4.64000000 +7812,chr22,35563023,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.47435897,80.00000000,3.53982301,0.02500000,0.00000000,8.20000000 +7813,chr22,35563038,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.79000000,0.00000000,,0.47887324,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +7814,chr22,35563195,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.26000000,0.00000000,,0.45977011,87.00000000,3.84955752,0.00000000,0.00000000,8.67000000 +7815,chr22,35564238,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.41095890,76.00000000,3.36283186,0.03947368,0.00000000,8.42000000 +7816,chr22,35566046,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,93.00000000,0.00000000,-0.13000000,0.00000000,,0.31034483,87.00000000,3.84955752,0.00000000,0.00000000,6.87000000 +7817,chr22,35568005,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,-0.80000000,0.00000000,,0.34177215,83.00000000,3.67256637,0.04819277,0.00000000,8.09000000 +7818,chr22,35568111,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.33000000,0.00000000,,0.35714286,58.00000000,2.56637168,0.03448276,0.00000000,8.44000000 +7819,chr22,35568675,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.42857143,85.00000000,3.76106195,0.01176471,0.00000000,8.95000000 +7820,chr22,35569030,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.84000000,0.00000000,,0.51764706,87.00000000,3.84955752,0.02298851,0.00000000,4.33000000 +7821,chr22,35572173,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.56179775,89.00000000,3.93805310,0.00000000,0.00000000,8.57000000 +7822,chr22,35573396,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.77000000,0.00000000,,0.27272727,91.00000000,4.02654867,0.03296703,0.00000000,6.27000000 +7823,chr22,35574157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.41000000 +7824,chr22,35574262,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,1.22000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.02325581,0.00000000,6.48000000 +7825,chr22,35574780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.38000000,0.00000000,,0.27906977,88.00000000,3.89380531,0.02272727,0.00000000,6.24000000 +7826,chr22,35575162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.15000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.35000000 +7827,chr22,35575731,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.43750000,83.00000000,3.67256637,0.02409639,0.00000000,8.06000000 +7828,chr22,35575809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,-1.09000000,0.00000000,,0.15053763,94.00000000,4.15929204,0.00000000,0.00000000,6.13000000 +7829,chr22,35577536,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,50.00000000,0.00000000,-1.37000000,0.00000000,,0.51388889,76.00000000,3.36283186,0.01315789,0.00000000,4.19000000 +7830,chr22,35578245,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.88000000,0.00000000,,0.14545455,58.00000000,2.56637168,0.01724138,0.00000000,5.68000000 +7831,chr22,35578894,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.28000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,2.98000000 +7832,chr22,35579169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,0.94000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,4.68000000 +7833,chr22,35580124,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.22000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.44000000 +7834,chr22,35580525,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.08000000,0.00000000,,0.47887324,73.00000000,3.23008850,0.02739726,0.00000000,8.06000000 +7835,chr22,35581111,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,1.37000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.23000000 +7836,chr22,35582568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.83000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.59000000 +7837,chr22,35594140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.64000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +7838,chr22,35596849,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.24242424,76.00000000,3.36283186,0.11842105,0.00000000,5.75000000 +7839,chr22,35597536,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,-0.53000000,0.00000000,,0.30555556,83.00000000,3.67256637,0.13253012,0.00000000,5.88000000 +7840,chr22,35597736,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.22000000,0.00000000,,0.28235294,85.00000000,3.76106195,0.00000000,0.00000000,6.70000000 +7841,chr22,35598064,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,-1.49000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.83000000 +7842,chr22,35598991,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,3.19000000,0.00000000,,0.27272727,69.00000000,3.05309735,0.02898551,0.00000000,3.14000000 +7843,chr22,35599003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,3.42000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.18000000 +7844,chr22,35600629,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,91.00000000,0.00000000,1.22000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,5.59000000 +7845,chr22,35601153,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,73.00000000,0.00000000,-2.42000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +7846,chr22,35601340,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.96000000 +7847,chr22,35605813,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.70000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.45000000 +7848,chr22,35606373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-1.55000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.01333333,0.00000000,6.66000000 +7849,chr22,35607892,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.54000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,5.99000000 +7850,chr22,35609961,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,-0.46000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,6.17000000 +7851,chr22,35610998,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.63000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.00000000,0.00000000,6.25000000 +7852,chr22,35611028,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.05000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +7853,chr22,35611374,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,6.25000000 +7854,chr22,35614833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,5.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,82.00000000,0.00000000,0.80000000,0.00000000,,0.21428571,102.00000000,4.51327434,0.03921569,0.00000000,5.54000000 +7855,chr22,35615982,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-0.61000000,0.00000000,,0.10000000,92.00000000,4.07079646,0.02173913,0.00000000,4.79000000 +7856,chr22,35616817,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.71000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.95000000 +7857,chr22,35628924,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,-0.13000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.11000000 +7858,chr22,35651044,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.21359223,106.00000000,4.69026549,0.02830189,0.00000000,6.56000000 +7859,chr22,35696652,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.10000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.00000000,0.00000000,6.37000000 +7860,chr22,35698719,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.19047619,69.00000000,3.05309735,0.08695652,0.00000000,5.61000000 +7861,chr22,35701597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.02000000,0.00000000,,0.22619048,89.00000000,3.93805310,0.05617978,0.00000000,5.99000000 +7862,chr22,35701617,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,-0.35000000,0.00000000,,0.23809524,91.00000000,4.02654867,0.06593407,0.00000000,5.98000000 +7863,chr22,35704844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.08000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.87000000 +7864,chr22,35707938,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,0.83000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +7865,chr22,35718774,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.49000000 +7866,chr22,35726677,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,85.00000000,0.00000000,0.76000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.47000000 +7867,chr22,35752292,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,1.19000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +7868,chr22,35777072,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,59.00000000,0.00000000,0.74000000,0.00000000,,0.28358209,74.00000000,3.27433628,0.09459459,0.00000000,4.58000000 +7869,chr22,35778700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.03000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.92000000 +7870,chr22,35780530,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,1.38000000,0.00000000,,0.30952381,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +7871,chr22,35794526,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,5.72000000 +7872,chr22,35794528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.31000000 +7873,chr22,35806094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.68000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.00000000,0.00000000,6.91000000 +7874,chr22,35806312,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.02105263,0.00000000,6.33000000 +7875,chr22,35808475,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.00000000,0.00000000,5.90000000 +7876,chr22,35811237,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-1.66000000,0.00000000,,0.29268293,85.00000000,3.76106195,0.03529412,0.00000000,5.99000000 +7877,chr22,35835310,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.07000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +7878,chr22,35921132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,92.00000000,0.00000000,-0.33000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,5.93000000 +7879,chr22,35942290,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.35000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.73000000 +7880,chr22,35946342,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-2.47000000,0.00000000,,0.50000000,90.00000000,3.98230088,0.01111111,0.00000000,8.90000000 +7881,chr22,35959979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.45000000,0.00000000,,0.29411765,106.00000000,4.69026549,0.03773585,0.00000000,6.30000000 +7882,chr22,35986366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.24770642,111.00000000,4.91150442,0.01801802,0.00000000,6.34000000 +7883,chr22,36014323,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +7884,chr22,36016233,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,41.00000000,0.00000000,-0.42000000,0.00000000,,0.50000000,69.00000000,3.05309735,0.01449275,0.00000000,4.48000000 +7885,chr22,36031436,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,8.39000000 +7886,chr22,36043581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.30120482,83.00000000,3.67256637,0.00000000,0.00000000,6.46000000 +7887,chr22,36059731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.36000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.98000000 +7888,chr22,36060004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-0.60000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,5.86000000 +7889,chr22,36061961,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,1.50000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.95000000 +7890,chr22,36070488,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,0.15000000,0.00000000,,0.18181818,57.00000000,2.52212389,0.22807018,0.00000000,5.45000000 +7891,chr22,36077815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.26000000 +7892,chr22,36094437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.09000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.00000000,0.00000000,5.87000000 +7893,chr22,36094660,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,5.82000000 +7894,chr22,36102932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-1.35000000,0.00000000,,0.14130435,92.00000000,4.07079646,0.00000000,0.00000000,5.86000000 +7895,chr22,36107268,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,-0.28000000,0.00000000,,0.30000000,64.00000000,2.83185841,0.04687500,0.00000000,5.70000000 +7896,chr22,36108216,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.14473684,81.00000000,3.58407080,0.04938272,0.00000000,5.32000000 +7897,chr22,36109722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.14000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +7898,chr22,36111469,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,1.68000000,0.00000000,,0.28571429,93.00000000,4.11504425,0.02150538,0.00000000,6.42000000 +7899,chr22,36113914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,0.21000000,0.00000000,,0.20481928,88.00000000,3.89380531,0.05681818,0.00000000,5.98000000 +7900,chr22,36117367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,5.90000000 +7901,chr22,36117577,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +7902,chr22,36119221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.25000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.90000000 +7903,chr22,36119755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +7904,chr22,36121006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.11000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.32000000 +7905,chr22,36122051,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.40000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.38000000 +7906,chr22,36122913,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-1.38000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.42000000 +7907,chr22,36122954,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.01000000 +7908,chr22,36123556,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.43000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.46000000 +7909,chr22,36127043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.13000000,0.00000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,3.00000000 +7910,chr22,36127863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.96000000 +7911,chr22,36129789,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,1.04000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.40000000 +7912,chr22,36129933,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,-2.37000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00000000,0.00000000,6.43000000 +7913,chr22,36131919,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.53000000,0.00000000,,0.36470588,86.00000000,3.80530973,0.00000000,0.00000000,8.41000000 +7914,chr22,36136603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.56000000 +7915,chr22,36143804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.53000000,0.00000000,,0.24561404,116.00000000,5.13274336,0.01724138,0.00000000,6.28000000 +7916,chr22,36148968,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.23000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.65000000 +7917,chr22,36150374,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-0.43000000,0.00000000,,0.13580247,81.00000000,3.58407080,0.00000000,0.00000000,5.23000000 +7918,chr22,36152893,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,1.00000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +7919,chr22,36153957,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.53000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +7920,chr22,36154186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,0.37000000,0.00000000,,0.24675325,82.00000000,3.62831858,0.03658537,0.00000000,5.77000000 +7921,chr22,36160650,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.02173913,0.00000000,5.76000000 +7922,chr22,36160916,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,88.00000000,0.00000000,0.94000000,0.00000000,,0.26086957,73.00000000,3.23008850,0.05479452,0.00000000,5.70000000 +7923,chr22,36161452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,4.88000000 +7924,chr22,36161473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,4.98000000 +7925,chr22,36163251,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.43000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.64000000 +7926,chr22,36167280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.03125000,0.00000000,6.16000000 +7927,chr22,36168923,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,96.00000000,0.00000000,-0.22000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,5.34000000 +7928,chr22,36171791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.01000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.00000000,0.00000000,6.57000000 +7929,chr22,36172830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.03000000 +7930,chr22,36190418,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,57.55000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.28358209,67.00000000,2.96460177,0.00000000,0.00000000,6.46000000 +7931,chr22,36197199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.31645570,81.00000000,3.58407080,0.02469136,0.00000000,6.66000000 +7932,chr22,36202744,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,48.00000000,0.00000000,-0.61000000,0.00000000,,0.42622951,65.00000000,2.87610619,0.06153846,0.00000000,4.83000000 +7933,chr22,36203498,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-0.95000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.01204819,0.00000000,4.71000000 +7934,chr22,36203613,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-0.34000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,7.11000000 +7935,chr22,36205011,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.85000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.13000000 +7936,chr22,36205517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,5.74000000 +7937,chr22,36206137,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.02173913,0.00000000,5.43000000 +7938,chr22,36206548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,68.00000000,0.00000000,0.05000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.23000000 +7939,chr22,36219137,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +7940,chr22,36230716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.14000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +7941,chr22,36237948,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.69000000,0.00000000,,0.30120482,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +7942,chr22,36238986,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.04878049,0.00000000,5.74000000 +7943,chr22,36248062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,5.51000000 +7944,chr22,36249624,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,96.00000000,0.00000000,0.75000000,0.00000000,,0.28358209,67.00000000,2.96460177,0.00000000,0.00000000,5.76000000 +7945,chr22,36258966,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.99000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,6.57000000 +7946,chr22,36262758,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,6.07000000 +7947,chr22,36266608,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.18518519,56.00000000,2.47787611,0.03571429,0.00000000,5.68000000 +7948,chr22,36266676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.17307692,52.00000000,2.30088496,0.00000000,0.00000000,5.80000000 +7949,chr22,36268499,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,-1.09000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,5.60000000 +7950,chr22,36272137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.87000000,0.00000000,,0.37142857,72.00000000,3.18584071,0.01388889,0.00000000,7.82000000 +7951,chr22,36276230,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,34.00000000,0.00000000,-0.11000000,0.00000000,,0.44000000,106.00000000,4.69026549,0.05660377,0.00000000,2.98000000 +7952,chr22,36276249,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,81.00000000,0.00000000,-0.91000000,0.00000000,,0.43434343,103.00000000,4.55752212,0.03883495,0.00000000,7.01000000 +7953,chr22,36276581,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,0.70000000,0.00000000,,0.46753247,79.00000000,3.49557522,0.02531646,0.00000000,4.20000000 +7954,chr22,36276693,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.01282051,0.00000000,4.45000000 +7955,chr22,36277203,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.52702703,83.00000000,3.67256637,0.08433735,0.00000000,7.54000000 +7956,chr22,36278965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,-1.82000000,0.00000000,,0.40243902,85.00000000,3.76106195,0.03529412,0.00000000,8.24000000 +7957,chr22,36279104,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.51851852,81.00000000,3.58407080,0.00000000,0.00000000,8.30000000 +7958,chr22,36279306,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,2.29000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,6.16000000 +7959,chr22,36279318,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,1.98000000,0.00000000,,0.38636364,91.00000000,4.02654867,0.03296703,0.00000000,7.99000000 +7960,chr22,36282072,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,99.00000000,0.00000000,-0.16000000,0.00000000,,0.37373737,101.00000000,4.46902655,0.00990099,0.00000000,8.61000000 +7961,chr22,36283012,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.67000000,0.00000000,,0.53750000,81.00000000,3.58407080,0.01234568,0.00000000,8.54000000 +7962,chr22,36283169,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,107.00000000,0.00000000,0.51000000,0.00000000,,0.34444444,92.00000000,4.07079646,0.02173913,0.00000000,13.75000000 +7963,chr22,36283593,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,34.00000000,0.00000000,1.21000000,0.00000000,,0.37037037,89.00000000,3.93805310,0.08988764,0.00000000,3.76000000 +7964,chr22,36286572,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.65000000,0.00000000,,0.17894737,101.00000000,4.46902655,0.05940594,0.00000000,6.12000000 +7965,chr22,36292132,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,1.10000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.10000000 +7966,chr22,36302369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,1.84000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +7967,chr22,36303451,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,-0.91000000,0.00000000,,0.28070175,60.00000000,2.65486726,0.05000000,0.00000000,4.78000000 +7968,chr22,36303733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,58.00000000,0.00000000,0.61000000,0.00000000,,0.24561404,78.00000000,3.45132743,0.24358974,0.00000000,4.32000000 +7969,chr22,36305441,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.01075269,0.00000000,5.87000000 +7970,chr22,36309058,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.50000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +7971,chr22,36312579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,1.99000000,0.00000000,,0.14516129,65.00000000,2.87610619,0.03076923,0.00000000,3.70000000 +7972,chr22,36317029,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.20000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,48.00000000,0.00000000,-2.75000000,0.00000000,,0.32142857,58.00000000,2.56637168,0.03448276,0.00000000,4.05000000 +7973,chr22,36317709,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,90.00000000,0.00000000,0.11000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.00000000,0.00000000,5.93000000 +7974,chr22,36318614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,1.22000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.35000000 +7975,chr22,36322070,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,77.00000000,0.00000000,-0.25000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,5.59000000 +7976,chr22,36323677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.51000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.00000000,0.00000000,6.56000000 +7977,chr22,36323996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.07000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +7978,chr22,36337016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.80000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.50000000 +7979,chr22,36341894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.49000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.29000000 +7980,chr22,36348767,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.94000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.61000000 +7981,chr22,36358029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.56000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.18000000 +7982,chr22,36361067,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.97000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.93000000 +7983,chr22,36366917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.90000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.50000000 +7984,chr22,36367195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.24000000 +7985,chr22,36369855,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.33000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.02083333,0.00000000,5.92000000 +7986,chr22,36369923,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.66000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.34000000 +7987,chr22,36374567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.34000000,0.00000000,,0.15662651,86.00000000,3.80530973,0.02325581,0.00000000,5.54000000 +7988,chr22,36376023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.32352941,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.17241379,82.00000000,3.62831858,0.29268293,0.00000000,5.19000000 +7989,chr22,36377769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.56000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,8.45000000 +7990,chr22,36378307,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.95000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,6.69000000 +7991,chr22,36378767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.13000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.01111111,0.00000000,6.18000000 +7992,chr22,36378956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.16304348,95.00000000,4.20353982,0.03157895,0.00000000,5.75000000 +7993,chr22,36379504,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-0.85000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.84000000 +7994,chr22,36381324,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.07000000,0.00000000,,0.08791209,92.00000000,4.07079646,0.01086957,0.00000000,5.25000000 +7995,chr22,36383230,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,0.73000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.68000000 +7996,chr22,36383775,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-0.28000000,0.00000000,,0.21621622,84.00000000,3.71681416,0.10714286,0.00000000,5.89000000 +7997,chr22,36385087,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.31000000 +7998,chr22,36386886,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-1.16000000,0.00000000,,0.10526316,99.00000000,4.38053097,0.04040404,0.00000000,5.15000000 +7999,chr22,36386899,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.86000000,0.00000000,,0.16504854,106.00000000,4.69026549,0.01886792,0.00000000,6.10000000 +8000,chr22,36388342,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +8001,chr22,36388385,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.31000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.01123596,0.00000000,7.01000000 +8002,chr22,36388875,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.40000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.23000000 +8003,chr22,36390895,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.32000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.76000000 +8004,chr22,36391704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.09000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.73000000 +8005,chr22,36392507,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.77000000,0.00000000,,0.18072289,92.00000000,4.07079646,0.09782609,0.00000000,5.76000000 +8006,chr22,36395005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.94000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.90000000 +8007,chr22,36397503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.56000000 +8008,chr22,36397757,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-1.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.01136364,0.00000000,6.36000000 +8009,chr22,36398518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.74000000 +8010,chr22,36399959,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,72.00000000,0.00000000,0.59000000,0.00000000,,0.18055556,76.00000000,3.36283186,0.05263158,0.00000000,5.55000000 +8011,chr22,36406510,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.32000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.63000000 +8012,chr22,36408344,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.81000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.20000000 +8013,chr22,36410404,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.94000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,7.07000000 +8014,chr22,36410413,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.86000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +8015,chr22,36412682,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,5.84000000 +8016,chr22,36417540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.49000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,5.65000000 +8017,chr22,36425681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-1.16000000,0.00000000,,0.30000000,82.00000000,3.62831858,0.01219512,0.00000000,6.80000000 +8018,chr22,36426502,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,2.15000000,0.00000000,,0.17283951,84.00000000,3.71681416,0.03571429,0.00000000,6.16000000 +8019,chr22,36427391,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.02000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +8020,chr22,36427643,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,2.15000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,6.06000000 +8021,chr22,36428312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.23456790,89.00000000,3.93805310,0.08988764,0.00000000,5.86000000 +8022,chr22,36429516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.11000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.31000000 +8023,chr22,36429838,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.62000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,87.00000000,0.00000000,0.18000000,0.00000000,,0.23148148,115.00000000,5.08849558,0.06086957,0.00000000,5.53000000 +8024,chr22,36432984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,75.00000000,0.00000000,-0.10000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.59000000 +8025,chr22,36436523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.96000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,5.95000000 +8026,chr22,36438493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,2.08000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.13000000 +8027,chr22,36439230,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.46000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +8028,chr22,36439383,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.19791667,97.00000000,4.29203540,0.01030928,0.01020408,6.29000000 +8029,chr22,36439401,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.42000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.87000000 +8030,chr22,36440855,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-0.96000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,5.47000000 +8031,chr22,36440961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +8032,chr22,36441075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.26000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.57000000 +8033,chr22,36441643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.49000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,4.78000000 +8034,chr22,36442432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,81.00000000,0.00000000,-0.76000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.01333333,0.00000000,6.17000000 +8035,chr22,36443585,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,0.00000000,-1.65000000,3.26000000,,0.10909091,62.00000000,2.74336283,0.11290323,0.00000000,2.83000000 +8036,chr22,36443587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,58.00000000,0.00000000,-0.90000000,3.25000000,,0.10909091,63.00000000,2.78761062,0.11111111,0.00000000,2.84000000 +8037,chr22,36443930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-2.93000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.01000000 +8038,chr22,36444147,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.21000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.60000000 +8039,chr22,36445431,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.17647059,104.00000000,4.60176991,0.01923077,0.00000000,5.85000000 +8040,chr22,36447478,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +8041,chr22,36453154,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,65.00000000,0.00000000,-1.26000000,0.00000000,,0.17857143,74.00000000,3.27433628,0.24324324,0.00000000,5.84000000 +8042,chr22,36453713,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.02000000,0.00000000,,0.23076923,69.00000000,3.05309735,0.04347826,0.00000000,6.61000000 +8043,chr22,36455348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.02000000,0.00000000,,0.12658228,82.00000000,3.62831858,0.02439024,0.00000000,5.13000000 +8044,chr22,36456983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.27868852,62.00000000,2.74336283,0.01612903,0.00000000,6.28000000 +8045,chr22,36458817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,0.00000000,-0.06000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.03333333,0.00000000,5.14000000 +8046,chr22,36459140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.74000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.25000000 +8047,chr22,36459716,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.18181818,101.00000000,4.46902655,0.01980198,0.00000000,5.09000000 +8048,chr22,36462853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,59.00000000,0.00000000,0.68000000,0.00000000,,0.55882353,71.00000000,3.14159292,0.02816901,0.00000000,6.45000000 +8049,chr22,36463901,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-2.02000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.01176471,0.00000000,4.47000000 +8050,chr22,36464472,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-1.15000000,0.00000000,,0.17333333,81.00000000,3.58407080,0.07407407,0.00000000,5.94000000 +8051,chr22,36464477,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.16000000,82.00000000,3.62831858,0.08536585,0.00000000,5.54000000 +8052,chr22,36464563,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,97.00000000,0.00000000,0.45000000,0.00000000,,0.44444444,84.00000000,3.71681416,0.02380952,0.00000000,7.84000000 +8053,chr22,36465099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,6.38000000 +8054,chr22,36465325,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.65000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.41000000 +8055,chr22,36467113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +8056,chr22,36467444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,87.00000000,0.00000000,-0.29000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.05000000 +8057,chr22,36467658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.58000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,7.23000000 +8058,chr22,36468016,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.26000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.87000000 +8059,chr22,36468924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.62000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,5.86000000 +8060,chr22,36468943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.20270270,78.00000000,3.45132743,0.03846154,0.00000000,6.26000000 +8061,chr22,36469105,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.64000000,0.00000000,,0.23148148,109.00000000,4.82300885,0.00917431,0.00000000,6.48000000 +8062,chr22,36469112,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.90000000,0.00000000,,0.24107143,114.00000000,5.04424779,0.01754386,0.00000000,5.81000000 +8063,chr22,36469151,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.77000000,0.00000000,,0.22115385,105.00000000,4.64601770,0.00952381,0.00000000,6.77000000 +8064,chr22,36469261,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.24210526,95.00000000,4.20353982,0.00000000,0.00000000,6.68000000 +8065,chr22,36469338,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.23000000,0.00000000,,0.26262626,100.00000000,4.42477876,0.01000000,0.00000000,6.59000000 +8066,chr22,36469557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.25510204,100.00000000,4.42477876,0.02000000,0.00000000,6.34000000 +8067,chr22,36469566,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.64000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +8068,chr22,36469575,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.01041667,0.00000000,6.68000000 +8069,chr22,36469597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.34000000,0.00000000,,0.22916667,97.00000000,4.29203540,0.01030928,0.00000000,6.81000000 +8070,chr22,36469749,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.26000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.00000000,0.00000000,6.92000000 +8071,chr22,36470230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.67000000 +8072,chr22,36470273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,5.95000000 +8073,chr22,36470660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.61000000,0.00000000,,0.25316456,84.00000000,3.71681416,0.05952381,0.00000000,5.86000000 +8074,chr22,36470761,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,1.20000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.11764706,0.00000000,5.61000000 +8075,chr22,36471086,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,88.00000000,0.00000000,-1.52000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.28000000 +8076,chr22,36471689,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,5.87000000 +8077,chr22,36471784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-1.11000000,0.00000000,,0.12307692,66.00000000,2.92035398,0.01515152,0.00000000,5.36000000 +8078,chr22,36471843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,5.61000000 +8079,chr22,36471892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.16438356,87.00000000,3.84955752,0.14942529,0.00000000,5.41000000 +8080,chr22,36473848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.64000000,0.00000000,,0.25531915,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +8081,chr22,36485370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,-0.58000000,0.00000000,,0.21212121,71.00000000,3.14159292,0.07042254,0.00000000,3.07000000 +8082,chr22,36493069,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,1.09000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.72000000 +8083,chr22,36499618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.77000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +8084,chr22,36500973,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.12765957,99.00000000,4.38053097,0.04040404,0.00000000,5.33000000 +8085,chr22,36501214,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.32000000 +8086,chr22,36501906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.39000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,4.66000000 +8087,chr22,36508103,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.70000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,5.86000000 +8088,chr22,36523328,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.83000000,0.00000000,,0.14444444,91.00000000,4.02654867,0.01098901,0.00000000,6.20000000 +8089,chr22,36529225,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02040816,50.00000000,2.21238938,0.00000000,0.00000000,84.00000000,0.00000000,0.42000000,0.00000000,,0.23584906,107.00000000,4.73451327,0.00934579,0.00000000,5.64000000 +8090,chr22,36532368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,1.50000000,0.00000000,,0.14285714,99.00000000,4.38053097,0.01010101,0.00000000,5.57000000 +8091,chr22,36534527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.88000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.00980392,0.00000000,6.63000000 +8092,chr22,36535932,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.26086957,77.00000000,3.40707965,0.10389610,0.00000000,5.71000000 +8093,chr22,36538549,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.02777778,0.00000000,6.20000000 +8094,chr22,36543189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.91000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +8095,chr22,36558558,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.17391304,95.00000000,4.20353982,0.03157895,0.00000000,5.97000000 +8096,chr22,36558563,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.17582418,95.00000000,4.20353982,0.04210526,0.00000000,6.02000000 +8097,chr22,36559576,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.21782178,102.00000000,4.51327434,0.00980392,0.00000000,6.84000000 +8098,chr22,36560300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.85000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.75000000 +8099,chr22,36560703,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.05000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.55000000 +8100,chr22,36561094,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.84000000,0.00000000,,0.22093023,86.00000000,3.80530973,0.00000000,0.00000000,5.91000000 +8101,chr22,36562021,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.16000000,102.00000000,4.51327434,0.00980392,0.00000000,5.61000000 +8102,chr22,36562573,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,5.65000000 +8103,chr22,36563807,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,71.00000000,0.00000000,-1.03000000,0.00000000,,0.19718310,86.00000000,3.80530973,0.17441860,0.00000000,5.84000000 +8104,chr22,36564175,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,76.00000000,0.00000000,-1.13000000,0.00000000,,0.18181818,95.00000000,4.20353982,0.06315789,0.00000000,5.71000000 +8105,chr22,36565434,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.26470588,72.00000000,3.18584071,0.01388889,0.00000000,5.94000000 +8106,chr22,36567018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.47000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +8107,chr22,36567243,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.23529412,103.00000000,4.55752212,0.00970874,0.00000000,6.64000000 +8108,chr22,36568175,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,60.00000000,0.00000000,-0.93000000,0.00000000,,0.13580247,81.00000000,3.58407080,0.00000000,0.00000000,5.43000000 +8109,chr22,36568507,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.07000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.20000000 +8110,chr22,36568729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.13953488,89.00000000,3.93805310,0.03370787,0.00000000,5.42000000 +8111,chr22,36573087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.37000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8112,chr22,36576607,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.20000000 +8113,chr22,36577422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.64000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.75000000 +8114,chr22,36580463,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.36000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.09000000 +8115,chr22,36582213,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.91000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +8116,chr22,36591271,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.50000000,0.00000000,,0.18666667,80.00000000,3.53982301,0.06250000,0.00000000,6.43000000 +8117,chr22,36591321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.44000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.27000000 +8118,chr22,36591814,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.90000000,0.00000000,,0.24528302,55.00000000,2.43362832,0.03636364,0.00000000,6.51000000 +8119,chr22,36594753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.11904762,86.00000000,3.80530973,0.02325581,0.00000000,4.70000000 +8120,chr22,36597041,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,-0.27000000,0.00000000,,0.30000000,62.00000000,2.74336283,0.03225806,0.00000000,5.97000000 +8121,chr22,36599573,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.52000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.28000000 +8122,chr22,36601824,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,1.66000000,0.00000000,,0.19417476,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8123,chr22,36603966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.15000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +8124,chr22,36608124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.40000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.04166667,0.00000000,6.41000000 +8125,chr22,36610084,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.95000000,0.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,62.00000000,0.00000000,-0.24000000,0.00000000,,0.23809524,68.00000000,3.00884956,0.07352941,0.00000000,5.33000000 +8126,chr22,36610270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.39000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,0.24000000,0.00000000,,0.09803922,55.00000000,2.43362832,0.05454545,0.00000000,3.70000000 +8127,chr22,36610364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.17000000,0.00000000,,0.23809524,69.00000000,3.05309735,0.07246377,0.00000000,6.20000000 +8128,chr22,36612283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-0.63000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,5.91000000 +8129,chr22,36612440,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.81000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.23000000 +8130,chr22,36612881,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +8131,chr22,36615601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.32978723,94.00000000,4.15929204,0.00000000,0.00000000,8.57000000 +8132,chr22,36616172,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.12000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.32000000 +8133,chr22,36616274,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.16000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.27000000 +8134,chr22,36616906,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.92000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,6.24000000 +8135,chr22,36617120,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.18000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,5.68000000 +8136,chr22,36617346,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.06000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,5.98000000 +8137,chr22,36617562,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.42000000 +8138,chr22,36617647,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.37000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +8139,chr22,36617772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.22641509,106.00000000,4.69026549,0.00000000,0.00000000,5.84000000 +8140,chr22,36618650,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.56000000 +8141,chr22,36618695,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,1.31000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.45000000 +8142,chr22,36618716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,1.89000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.02247191,0.00000000,5.34000000 +8143,chr22,36618778,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,-1.54000000,0.00000000,,0.08196721,66.00000000,2.92035398,0.07575758,0.00000000,4.91000000 +8144,chr22,36619224,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.90000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.05000000 +8145,chr22,36619282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.32000000 +8146,chr22,36619471,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.59000000,0.00000000,,0.26363636,110.00000000,4.86725664,0.00000000,0.00000000,6.70000000 +8147,chr22,36622787,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.84000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.01562500,0.00000000,6.56000000 +8148,chr22,36622815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,1.40000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.00000000,0.00000000,6.26000000 +8149,chr22,36623871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.13000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.75000000 +8150,chr22,36625168,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.23762376,104.00000000,4.60176991,0.02884615,0.00000000,5.71000000 +8151,chr22,36625351,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.64000000 +8152,chr22,36625490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.44000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.31000000 +8153,chr22,36625748,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.94000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +8154,chr22,36626439,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,72.00000000,0.00000000,0.46000000,0.00000000,,0.15730337,92.00000000,4.07079646,0.03260870,0.00000000,4.98000000 +8155,chr22,36627049,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.79000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +8156,chr22,36628906,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,88.00000000,0.00000000,0.36000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,5.86000000 +8157,chr22,36629227,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.53000000 +8158,chr22,36629545,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,1.03000000,0.00000000,,0.21538462,69.00000000,3.05309735,0.05797101,0.00000000,5.79000000 +8159,chr22,36629772,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.20000000 +8160,chr22,36630948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.30263158,76.00000000,3.36283186,0.00000000,0.00000000,6.47000000 +8161,chr22,36631420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.54000000,0.00000000,,0.28333333,61.00000000,2.69911504,0.01639344,0.00000000,6.25000000 +8162,chr22,36631633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.42105263,79.00000000,3.49557522,0.02531646,0.00000000,8.18000000 +8163,chr22,36685352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.41000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +8164,chr22,36685650,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.18000000 +8165,chr22,36688788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.27272727,55.00000000,2.43362832,0.00000000,0.00000000,6.76000000 +8166,chr22,36689890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.75000000 +8167,chr22,36694298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +8168,chr22,36709329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.32000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.30000000 +8169,chr22,36726235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.01111111,0.00000000,6.07000000 +8170,chr22,36739371,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.71000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.77000000 +8171,chr22,36764322,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,89.00000000,0.00000000,-0.17000000,0.00000000,,0.25773196,100.00000000,4.42477876,0.03000000,0.00000000,5.72000000 +8172,chr22,36774856,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,86.00000000,0.00000000,0.96000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.02150538,0.00000000,5.21000000 +8173,chr22,36781489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,0.85000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,5.78000000 +8174,chr22,36797496,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.43000000,0.00000000,,0.16393443,65.00000000,2.87610619,0.04615385,0.00000000,5.61000000 +8175,chr22,36799011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.18000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.01041667,0.00000000,5.98000000 +8176,chr22,36799729,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.80000000,0.00000000,,0.17647059,90.00000000,3.98230088,0.04444444,0.00000000,6.07000000 +8177,chr22,36802330,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.92000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,4.86000000 +8178,chr22,36802357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.71000000 +8179,chr22,36803762,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.54000000 +8180,chr22,36804090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +8181,chr22,36804791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.76000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.58000000 +8182,chr22,36805773,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,1.54000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.00000000,0.00000000,5.06000000 +8183,chr22,36805847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.67000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.00000000,0.00000000,6.99000000 +8184,chr22,36806504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.14000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +8185,chr22,36806787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.99000000 +8186,chr22,36807253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.18000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +8187,chr22,36809106,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.84000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,6.25000000 +8188,chr22,36810297,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,48.00000000,0.00000000,-3.27000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,2.76000000 +8189,chr22,36811136,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.65000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,5.74000000 +8190,chr22,36811623,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,0.74000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,4.74000000 +8191,chr22,36812036,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.64000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.38000000 +8192,chr22,36821310,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +8193,chr22,36825758,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.44000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +8194,chr22,36825808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,71.00000000,0.00000000,0.77000000,0.00000000,,0.18181818,92.00000000,4.07079646,0.04347826,0.00000000,5.23000000 +8195,chr22,36825816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.15662651,88.00000000,3.89380531,0.05681818,0.00000000,4.88000000 +8196,chr22,36825915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.68000000 +8197,chr22,36826192,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.83000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.75000000 +8198,chr22,36827290,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.22000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.03529412,0.00000000,6.62000000 +8199,chr22,36827622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,98.00000000,0.00000000,-0.96000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.02409639,0.00000000,5.69000000 +8200,chr22,36827630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,105.00000000,0.00000000,-0.65000000,0.00000000,,0.33333333,84.00000000,3.71681416,0.03571429,0.00000000,12.84000000 +8201,chr22,36827888,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.24000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.00000000 +8202,chr22,36828288,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.47000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.57000000 +8203,chr22,36828314,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +8204,chr22,36828505,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.77000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,5.91000000 +8205,chr22,36828547,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.63000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.83000000 +8206,chr22,36828826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,0.74000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.12000000 +8207,chr22,36829056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.51000000,0.00000000,,0.23880597,70.00000000,3.09734513,0.04285714,0.00000000,6.30000000 +8208,chr22,36829446,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.03614458,0.00000000,6.35000000 +8209,chr22,36829587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,59.00000000,0.00000000,-1.00000000,0.00000000,,0.13636364,85.00000000,3.76106195,0.22352941,0.00000000,3.90000000 +8210,chr22,36833414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.17283951,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +8211,chr22,36834165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-1.56000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.41000000 +8212,chr22,36836926,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,76.00000000,0.00000000,0.07000000,0.00000000,,0.32051282,84.00000000,3.71681416,0.07142857,0.00000000,6.92000000 +8213,chr22,36841148,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.49000000 +8214,chr22,36843509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,0.53000000,0.00000000,,0.14432990,97.00000000,4.29203540,0.00000000,0.00000000,5.22000000 +8215,chr22,36845745,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,-1.90000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.02272727,0.00000000,6.03000000 +8216,chr22,36845851,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,1.60000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,5.79000000 +8217,chr22,36846262,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-0.60000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.13000000 +8218,chr22,36846433,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.44000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.83000000 +8219,chr22,36847542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.47000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.39000000 +8220,chr22,36847620,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.02469136,0.00000000,5.98000000 +8221,chr22,36848197,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.90000000 +8222,chr22,36848245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.14000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.40000000 +8223,chr22,36848514,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.70000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.90000000 +8224,chr22,36848835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,0.43000000,0.00000000,,0.18987342,83.00000000,3.67256637,0.02409639,0.00000000,5.66000000 +8225,chr22,36848978,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.31250000,50.00000000,2.21238938,0.04000000,0.00000000,6.48000000 +8226,chr22,36849662,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.20000000 +8227,chr22,36850287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,6.33000000 +8228,chr22,36855968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.29473684,97.00000000,4.29203540,0.00000000,0.00000000,7.21000000 +8229,chr22,36859500,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.75000000 +8230,chr22,36860220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,96.00000000,0.00000000,1.84000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.00000000,0.00000000,6.15000000 +8231,chr22,36860434,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.22000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.96000000 +8232,chr22,36860804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +8233,chr22,36863491,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,-2.02000000,0.00000000,,0.22222222,36.00000000,1.59292035,0.00000000,0.00000000,2.85000000 +8234,chr22,36869019,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.83000000,0.00000000,,0.44736842,78.00000000,3.45132743,0.02564103,0.00000000,4.14000000 +8235,chr22,36879513,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,5.95000000 +8236,chr22,36880113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.19387755,99.00000000,4.38053097,0.00000000,0.00000000,6.68000000 +8237,chr22,36883026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,6.16000000 +8238,chr22,36911552,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,77.00000000,0.00000000,-1.09000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.00000000,0.00000000,5.58000000 +8239,chr22,36925038,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.23913043,94.00000000,4.15929204,0.02127660,0.00000000,6.35000000 +8240,chr22,36927946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,0.62000000,0.00000000,,0.12328767,73.00000000,3.23008850,0.00000000,0.00000000,4.90000000 +8241,chr22,36951568,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,76.00000000,0.00000000,-0.11000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +8242,chr22,36951569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +8243,chr22,36953218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.27272727,70.00000000,3.09734513,0.05714286,0.00000000,5.96000000 +8244,chr22,36953592,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,-0.61000000,0.00000000,,0.24528302,62.00000000,2.74336283,0.09677419,0.00000000,4.41000000 +8245,chr22,36959440,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.65000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,6.26000000 +8246,chr22,36959458,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.37000000 +8247,chr22,36959875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.21000000 +8248,chr22,36959940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.44000000 +8249,chr22,36962357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.10000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.02597403,0.00000000,5.44000000 +8250,chr22,36963913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.90000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.00000000,0.00000000,6.98000000 +8251,chr22,36964511,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.30000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.97000000 +8252,chr22,36965734,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,1.90000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.91000000 +8253,chr22,36965816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-1.21000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +8254,chr22,36965911,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.31000000 +8255,chr22,36965961,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.88000000,0.00000000,,0.15942029,74.00000000,3.27433628,0.04054054,0.00000000,5.62000000 +8256,chr22,36965965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,1.48000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.08000000 +8257,chr22,36965969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,2.04000000,0.00000000,,0.18181818,69.00000000,3.05309735,0.04347826,0.00000000,5.66000000 +8258,chr22,36966038,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.23000000,0.00000000,,0.11267606,72.00000000,3.18584071,0.01388889,0.00000000,4.03000000 +8259,chr22,36966132,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.47000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,5.35000000 +8260,chr22,36966213,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-1.47000000,0.00000000,,0.25974026,81.00000000,3.58407080,0.04938272,0.00000000,5.94000000 +8261,chr22,36966244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.68000000,0.00000000,,0.25274725,97.00000000,4.29203540,0.06185567,0.00000000,5.98000000 +8262,chr22,36966245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.83000000,0.00000000,,0.24444444,97.00000000,4.29203540,0.07216495,0.00000000,5.98000000 +8263,chr22,36966327,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,1.40000000,0.00000000,,0.17948718,82.00000000,3.62831858,0.04878049,0.00000000,5.65000000 +8264,chr22,36966634,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,6.38000000 +8265,chr22,36966675,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-1.18000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.55000000 +8266,chr22,36966834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.66000000,0.00000000,,0.13253012,84.00000000,3.71681416,0.01190476,0.00000000,5.42000000 +8267,chr22,36966916,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-1.16000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,4.51000000 +8268,chr22,36967080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,5.98000000 +8269,chr22,36967114,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.57000000 +8270,chr22,36967159,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.66000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,6.64000000 +8271,chr22,36967361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.94000000,0.00000000,,0.29113924,80.00000000,3.53982301,0.01250000,0.00000000,6.34000000 +8272,chr22,36967417,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,1.12000000,0.00000000,,0.21739130,76.00000000,3.36283186,0.05263158,0.00000000,5.79000000 +8273,chr22,36967671,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-0.16000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.86000000 +8274,chr22,36967740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.02000000 +8275,chr22,36967923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-1.14000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.00000000,0.00000000,8.35000000 +8276,chr22,36968005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.79000000,0.00000000,,0.27368421,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +8277,chr22,36968083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-1.82000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,5.92000000 +8278,chr22,36968099,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.10000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +8279,chr22,36968391,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,1.55000000,0.00000000,,0.17894737,96.00000000,4.24778761,0.01041667,0.00000000,6.32000000 +8280,chr22,36969233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,0.47000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.49000000 +8281,chr22,36971495,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.02000000 +8282,chr22,36974880,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.41000000,0.00000000,,0.26984127,66.00000000,2.92035398,0.03030303,0.00000000,6.28000000 +8283,chr22,36976286,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.15000000 +8284,chr22,36978388,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +8285,chr22,36978710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.55000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +8286,chr22,36979076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,6.00000000 +8287,chr22,36979627,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.81000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.44000000 +8288,chr22,36979717,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-1.00000000,0.00000000,,0.17460317,67.00000000,2.96460177,0.04477612,0.00000000,5.98000000 +8289,chr22,36979992,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.70000000 +8290,chr22,36981053,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,44.00000000,0.00000000,0.89000000,0.00000000,,0.42352941,89.00000000,3.93805310,0.04494382,0.00000000,3.78000000 +8291,chr22,36981651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,1.51000000,0.00000000,,0.27500000,86.00000000,3.80530973,0.06976744,0.00000000,5.53000000 +8292,chr22,36981696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,95.00000000,0.00000000,1.24000000,0.00000000,,0.22988506,99.00000000,4.38053097,0.12121212,0.00000000,4.71000000 +8293,chr22,36982167,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.87000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.00000000,0.00000000,5.89000000 +8294,chr22,36982410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.02702703,0.00000000,6.36000000 +8295,chr22,36982702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.04705882,0.00000000,6.22000000 +8296,chr22,36983498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.56000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,6.16000000 +8297,chr22,36983648,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-2.10000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,8.12000000 +8298,chr22,36983979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,-0.35000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.92000000 +8299,chr22,36984027,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.55000000 +8300,chr22,36984103,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +8301,chr22,36984256,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.01098901,0.00000000,6.49000000 +8302,chr22,36984991,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.90000000,0.00000000,,0.29166667,76.00000000,3.36283186,0.05263158,0.00000000,6.39000000 +8303,chr22,36985302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.76000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,6.66000000 +8304,chr22,36985410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.34000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.38000000 +8305,chr22,36985633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,6.09000000 +8306,chr22,36985848,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +8307,chr22,36987006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.61000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +8308,chr22,36987362,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,62.00000000,0.00000000,-1.13000000,0.00000000,,0.08571429,87.00000000,3.84955752,0.18390805,0.00000000,4.88000000 +8309,chr22,36987373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,62.00000000,0.00000000,-2.19000000,0.00000000,,0.11842105,92.00000000,4.07079646,0.17391304,0.00000000,4.76000000 +8310,chr22,36987436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,83.00000000,0.00000000,-1.82000000,0.00000000,,0.21276596,103.00000000,4.55752212,0.08737864,0.00000000,6.18000000 +8311,chr22,36987574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.60000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.80000000 +8312,chr22,36987768,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,70.00000000,0.00000000,1.88000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.20000000 +8313,chr22,36988062,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +8314,chr22,36988295,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.19000000 +8315,chr22,36988372,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,1.42000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.02816901,0.00000000,5.81000000 +8316,chr22,36988474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,5.30000000 +8317,chr22,36989008,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.53000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.34000000 +8318,chr22,36990016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.68000000 +8319,chr22,36990493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.43000000,0.00000000,,0.17525773,98.00000000,4.33628319,0.01020408,0.00000000,6.33000000 +8320,chr22,36990606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,5.97000000 +8321,chr22,36990753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,-0.91000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,5.81000000 +8322,chr22,36990879,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.89000000,0.00000000,,0.24657534,76.00000000,3.36283186,0.01315789,0.00000000,6.20000000 +8323,chr22,36991078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,-1.17000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.02000000 +8324,chr22,36991420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,2.13000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.11000000 +8325,chr22,36991464,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.08000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.58000000 +8326,chr22,36991716,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.25000000,0.00000000,,0.25882353,88.00000000,3.89380531,0.01136364,0.00000000,6.23000000 +8327,chr22,36993486,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,81.00000000,0.00000000,1.18000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,5.60000000 +8328,chr22,36994293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,89.00000000,0.00000000,0.17000000,0.00000000,,0.22330097,103.00000000,4.55752212,0.00000000,0.00000000,5.89000000 +8329,chr22,36995514,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05714286,36.00000000,1.59292035,0.02777778,0.00000000,37.00000000,0.00000000,-2.88000000,0.00000000,,0.40909091,67.00000000,2.96460177,0.01492537,0.00000000,3.46000000 +8330,chr22,36995594,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.70000000 +8331,chr22,36995956,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.20000000,101.00000000,4.46902655,0.00990099,0.00000000,6.67000000 +8332,chr22,36998253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-0.95000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +8333,chr22,36998294,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.72000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.05000000 +8334,chr22,36998350,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.24000000,0.00000000,,0.19672131,65.00000000,2.87610619,0.06153846,0.00000000,6.28000000 +8335,chr22,36998460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +8336,chr22,36998467,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.41000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +8337,chr22,36998679,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.16000000,0.00000000,,0.20183486,111.00000000,4.91150442,0.00900901,0.00000000,6.53000000 +8338,chr22,36998690,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.18348624,114.00000000,5.04424779,0.02631579,0.00000000,6.30000000 +8339,chr22,36998978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.79000000 +8340,chr22,37000376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.72000000 +8341,chr22,37001386,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,0.01000000,0.00000000,,0.44285714,74.00000000,3.27433628,0.05405405,0.00000000,4.34000000 +8342,chr22,37001389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.59000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.06666667,0.00000000,2.84000000 +8343,chr22,37001509,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.46153846,68.00000000,3.00884956,0.01470588,0.00000000,8.34000000 +8344,chr22,37002154,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.91000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.16000000 +8345,chr22,37002160,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.00000000,0.00000000,5.77000000 +8346,chr22,37002601,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.02000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.44000000 +8347,chr22,37004368,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.69000000,0.00000000,,0.46250000,84.00000000,3.71681416,0.04761905,0.00000000,7.83000000 +8348,chr22,37004519,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,8.26000000 +8349,chr22,37004916,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,0.25000000,0.00000000,,0.48051948,77.00000000,3.40707965,0.00000000,0.00000000,8.35000000 +8350,chr22,37004935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.46000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.23000000 +8351,chr22,37004997,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.47368421,96.00000000,4.24778761,0.01041667,0.00000000,8.49000000 +8352,chr22,37005010,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.45054945,92.00000000,4.07079646,0.01086957,0.00000000,8.17000000 +8353,chr22,37005060,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.17000000,0.00000000,,0.43298969,98.00000000,4.33628319,0.01020408,0.00000000,8.52000000 +8354,chr22,37005218,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.40963855,85.00000000,3.76106195,0.02352941,0.00000000,8.25000000 +8355,chr22,37005323,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.78000000,0.00000000,,0.48750000,82.00000000,3.62831858,0.02439024,0.00000000,8.38000000 +8356,chr22,37005477,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,114.00000000,0.00000000,0.02000000,0.00000000,,0.39000000,103.00000000,4.55752212,0.02912621,0.00000000,12.64000000 +8357,chr22,37005491,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,115.00000000,0.00000000,-0.17000000,0.00000000,,0.35922330,111.00000000,4.91150442,0.07207207,0.00000000,11.92000000 +8358,chr22,37005596,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,62.00000000,0.00000000,1.80000000,0.00000000,,0.43010753,105.00000000,4.64601770,0.09523810,0.00000000,7.89000000 +8359,chr22,37005751,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,110.00000000,0.00000000,0.77000000,0.00000000,,0.35779817,110.00000000,4.86725664,0.00909091,0.00000000,14.94000000 +8360,chr22,37006170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,94.00000000,0.00000000,-0.84000000,0.00000000,,0.33333333,100.00000000,4.42477876,0.01000000,0.00000000,8.42000000 +8361,chr22,37006739,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,104.00000000,0.00000000,0.41000000,0.00000000,,0.40000000,107.00000000,4.73451327,0.01869159,0.00000000,15.14000000 +8362,chr22,37006869,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,0.00000000,-0.48000000,0.00000000,,0.50000000,87.00000000,3.84955752,0.03448276,0.00000000,6.32000000 +8363,chr22,37007261,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.41000000,0.00000000,,0.39393939,100.00000000,4.42477876,0.01000000,0.00000000,8.59000000 +8364,chr22,37008208,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,92.00000000,0.00000000,-2.87000000,0.00000000,,0.42352941,87.00000000,3.84955752,0.01149425,0.00000000,8.41000000 +8365,chr22,37008796,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.58000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.49000000 +8366,chr22,37009367,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.52000000,0.00000000,,0.14563107,104.00000000,4.60176991,0.00961538,0.00000000,5.11000000 +8367,chr22,37009376,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,89.00000000,0.00000000,0.45000000,0.00000000,,0.42000000,102.00000000,4.51327434,0.01960784,0.00000000,7.76000000 +8368,chr22,37009400,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.40206186,98.00000000,4.33628319,0.01020408,0.00000000,8.58000000 +8369,chr22,37009589,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.59000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.63000000 +8370,chr22,37009824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-0.21000000,0.00000000,,0.50000000,89.00000000,3.93805310,0.01123596,0.00000000,8.27000000 +8371,chr22,37010293,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.99000000,0.00000000,,0.57647059,86.00000000,3.80530973,0.01162791,0.00000000,8.60000000 +8372,chr22,37010360,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,19.00000000,0.00000000,-0.36000000,0.00000000,,0.51388889,76.00000000,3.36283186,0.02631579,0.00000000,3.14000000 +8373,chr22,37011486,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,36.00000000,0.00000000,0.89000000,0.00000000,,0.44943820,91.00000000,4.02654867,0.02197802,0.00000000,3.41000000 +8374,chr22,37012094,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.18000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,8.26000000 +8375,chr22,37012189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.39000000,0.00000000,,0.44565217,94.00000000,4.15929204,0.02127660,0.00000000,8.06000000 +8376,chr22,37012358,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,-1.20000000,0.00000000,,0.47500000,83.00000000,3.67256637,0.03614458,0.00000000,12.00000000 +8377,chr22,37012678,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,33.00000000,1.46017699,0.03030303,0.00000000,54.00000000,0.00000000,-0.01000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,4.12000000 +8378,chr22,37012788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.33000000 +8379,chr22,37012866,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.25000000,0.00000000,,0.50684932,74.00000000,3.27433628,0.00000000,0.00000000,8.49000000 +8380,chr22,37013037,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.31081081,77.00000000,3.40707965,0.01298701,0.00000000,8.36000000 +8381,chr22,37013185,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.15000000,0.00000000,,0.51470588,69.00000000,3.05309735,0.01449275,0.00000000,7.72000000 +8382,chr22,37013278,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.00000000,0.00000000,8.89000000 +8383,chr22,37013535,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.45945946,81.00000000,3.58407080,0.08641975,0.00000000,8.29000000 +8384,chr22,37013537,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,0.00000000,-0.85000000,0.00000000,,0.45945946,81.00000000,3.58407080,0.08641975,0.00000000,7.57000000 +8385,chr22,37014168,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,0.38000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,8.19000000 +8386,chr22,37014327,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-1.34000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,8.93000000 +8387,chr22,37014388,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,-2.11000000,0.00000000,,0.46666667,90.00000000,3.98230088,0.00000000,0.00000000,13.31000000 +8388,chr22,37014926,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.40697674,87.00000000,3.84955752,0.00000000,0.00000000,8.15000000 +8389,chr22,37015139,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.41772152,82.00000000,3.62831858,0.03658537,0.00000000,7.91000000 +8390,chr22,37015149,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.04000000,0.00000000,,0.44871795,82.00000000,3.62831858,0.04878049,0.00000000,7.66000000 +8391,chr22,37015166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.40000000,0.00000000,,0.50588235,87.00000000,3.84955752,0.02298851,0.00000000,4.60000000 +8392,chr22,37015541,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,21.00000000,0.92920354,0.00000000,0.00000000,31.00000000,0.00000000,-2.38000000,0.00000000,,0.52380952,85.00000000,3.76106195,0.01176471,0.00000000,3.62000000 +8393,chr22,37016092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.96000000,0.00000000,,0.19642857,56.00000000,2.47787611,0.00000000,0.00000000,7.05000000 +8394,chr22,37016103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.22807018,57.00000000,2.52212389,0.00000000,0.00000000,6.59000000 +8395,chr22,37018942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,1.45000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +8396,chr22,37020759,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.09000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.14000000 +8397,chr22,37021156,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +8398,chr22,37022220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.11111111,90.00000000,3.98230088,0.00000000,0.00000000,5.21000000 +8399,chr22,37023179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,6.32000000 +8400,chr22,37024082,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,1.34000000,0.00000000,,0.26262626,100.00000000,4.42477876,0.01000000,0.00000000,6.68000000 +8401,chr22,37025428,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.49000000 +8402,chr22,37025661,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +8403,chr22,37029160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.51000000,0.00000000,,0.21875000,99.00000000,4.38053097,0.03030303,0.00000000,6.28000000 +8404,chr22,37029161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-0.51000000,0.00000000,,0.21875000,99.00000000,4.38053097,0.03030303,0.00000000,6.30000000 +8405,chr22,37031452,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,-0.13000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.01250000,0.00000000,6.22000000 +8406,chr22,37031542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.02000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.00000000,0.00000000,6.45000000 +8407,chr22,37031552,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +8408,chr22,37039860,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.69000000 +8409,chr22,37066592,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.05000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.62000000 +8410,chr22,37067410,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.11000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,6.32000000 +8411,chr22,37073551,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.24000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.94000000 +8412,chr22,37073781,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.72000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.47000000 +8413,chr22,37074001,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,0.70000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,5.74000000 +8414,chr22,37074184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.14000000 +8415,chr22,37074564,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,-0.85000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,5.89000000 +8416,chr22,37087441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,73.00000000,0.00000000,-1.60000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.00000000,0.00000000,5.62000000 +8417,chr22,37087651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02040816,51.00000000,2.25663717,0.03921569,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.14473684,86.00000000,3.80530973,0.08139535,0.00000000,4.57000000 +8418,chr22,37088297,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-1.00000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +8419,chr22,37088334,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.17000000,0.00000000,,0.30555556,76.00000000,3.36283186,0.05263158,0.00000000,6.31000000 +8420,chr22,37088904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.36000000 +8421,chr22,37089153,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.83000000,0.00000000,,0.21348315,92.00000000,4.07079646,0.02173913,0.00000000,6.47000000 +8422,chr22,37089684,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,1.69000000,0.00000000,,0.28571429,96.00000000,4.24778761,0.04166667,0.00000000,6.20000000 +8423,chr22,37090165,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.30681818,91.00000000,4.02654867,0.01098901,0.00000000,8.02000000 +8424,chr22,37090826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.78000000 +8425,chr22,37091489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,-1.13000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,6.04000000 +8426,chr22,37091619,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.94000000 +8427,chr22,37091647,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-2.46000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.83000000 +8428,chr22,37091770,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,91.00000000,0.00000000,2.19000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.48000000 +8429,chr22,37092534,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.42000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.41000000 +8430,chr22,37092810,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,1.61000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.01219512,0.00000000,5.86000000 +8431,chr22,37092941,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,1.29000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,5.90000000 +8432,chr22,37093234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.90000000,0.00000000,,0.26153846,66.00000000,2.92035398,0.01515152,0.00000000,6.45000000 +8433,chr22,37093690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.16000000,0.00000000,,0.30232558,44.00000000,1.94690265,0.02272727,0.00000000,6.36000000 +8434,chr22,37093733,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.23000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.23000000 +8435,chr22,37093840,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.49000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,4.98000000 +8436,chr22,37093965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.11000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.94000000 +8437,chr22,37093993,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.08000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.85000000 +8438,chr22,37094356,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,75.00000000,0.00000000,0.94000000,0.00000000,,0.17431193,110.00000000,4.86725664,0.00909091,0.00000000,5.57000000 +8439,chr22,37095100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +8440,chr22,37095110,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.00000000,0.00000000,6.39000000 +8441,chr22,37095505,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,5.95000000 +8442,chr22,37095799,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,0.00000000,1.08000000,0.00000000,,0.08860759,84.00000000,3.71681416,0.04761905,0.00000000,4.60000000 +8443,chr22,37096161,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.26000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.63000000 +8444,chr22,37096545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,97.00000000,0.00000000,0.42000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.00000000 +8445,chr22,37100243,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.46000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.83000000 +8446,chr22,37100370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.22891566,86.00000000,3.80530973,0.03488372,0.00000000,6.29000000 +8447,chr22,37100807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.31000000,0.00000000,,0.35714286,57.00000000,2.52212389,0.01754386,0.00000000,8.02000000 +8448,chr22,37114705,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.90000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,7.01000000 +8449,chr22,37137490,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.09000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.60000000 +8450,chr22,37148205,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.02083333,0.00000000,6.61000000 +8451,chr22,37148305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.22000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.47000000 +8452,chr22,37148446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.92000000,0.00000000,,0.08888889,90.00000000,3.98230088,0.00000000,0.00000000,5.28000000 +8453,chr22,37148770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +8454,chr22,37149465,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.18888889,95.00000000,4.20353982,0.02105263,0.00000000,5.58000000 +8455,chr22,37155447,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.75000000 +8456,chr22,37155567,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.12000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +8457,chr22,37156854,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.35000000 +8458,chr22,37157579,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,1.51000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.98000000 +8459,chr22,37157685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,-1.93000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.63000000 +8460,chr22,37158659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.54000000,0.00000000,,0.10869565,95.00000000,4.20353982,0.03157895,0.00000000,4.63000000 +8461,chr22,37158799,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.36000000 +8462,chr22,37159006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,96.00000000,0.00000000,-1.07000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.02222222,0.00000000,4.63000000 +8463,chr22,37160971,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.22000000,0.00000000,,0.24509804,103.00000000,4.55752212,0.00970874,0.00000000,6.67000000 +8464,chr22,37161922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.18000000 +8465,chr22,37162316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,74.00000000,0.00000000,0.60000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,4.69000000 +8466,chr22,37163761,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.94000000 +8467,chr22,37174744,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.76000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.57000000 +8468,chr22,37174805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.03000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +8469,chr22,37174974,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.41000000,0.00000000,,0.27777778,94.00000000,4.15929204,0.04255319,0.00000000,6.30000000 +8470,chr22,37177389,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.25000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.02000000 +8471,chr22,37177672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.73000000 +8472,chr22,37177754,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.46000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,4.24000000 +8473,chr22,37177807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-1.26000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.28000000 +8474,chr22,37179429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.64000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +8475,chr22,37181105,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.73000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +8476,chr22,37181697,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.51000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,6.44000000 +8477,chr22,37182767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.42000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.02061856,0.00000000,6.35000000 +8478,chr22,37183763,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +8479,chr22,37184294,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,74.00000000,0.00000000,-0.18000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +8480,chr22,37185382,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,5.95000000 +8481,chr22,37185445,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,106.00000000,0.00000000,0.98000000,0.00000000,,0.33734940,84.00000000,3.71681416,0.01190476,0.00000000,14.32000000 +8482,chr22,37185637,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,0.08000000,0.00000000,,0.36956522,94.00000000,4.15929204,0.01063830,0.00000000,8.39000000 +8483,chr22,37186126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.26000000 +8484,chr22,37186165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.68000000 +8485,chr22,37187056,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.06000000 +8486,chr22,37188312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,0.72000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.06250000,0.00000000,6.28000000 +8487,chr22,37189696,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,109.00000000,0.00000000,-1.41000000,0.00000000,,0.35643564,102.00000000,4.51327434,0.00980392,0.00000000,14.33000000 +8488,chr22,37190632,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,30.00000000,0.00000000,0.38000000,0.00000000,,0.44594595,83.00000000,3.67256637,0.10843373,0.00000000,3.50000000 +8489,chr22,37190636,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,58.00000000,0.00000000,0.95000000,0.00000000,,0.44000000,83.00000000,3.67256637,0.09638554,0.00000000,6.30000000 +8490,chr22,37190921,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,101.00000000,0.00000000,1.06000000,0.00000000,,0.25454545,111.00000000,4.91150442,0.00900901,0.00000000,5.15000000 +8491,chr22,37191071,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.26000000,0.00000000,,0.42222222,90.00000000,3.98230088,0.00000000,0.00000000,8.95000000 +8492,chr22,37191331,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.59000000,0.00000000,,0.19000000,101.00000000,4.46902655,0.00990099,0.00000000,5.46000000 +8493,chr22,37191973,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,82.00000000,0.00000000,-0.70000000,0.00000000,,0.17647059,102.00000000,4.51327434,0.00000000,0.00000000,5.50000000 +8494,chr22,37192526,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,1.43000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,5.99000000 +8495,chr22,37192780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,93.00000000,0.00000000,0.55000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,5.65000000 +8496,chr22,37193388,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.00000000,0.00000000,84.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.00000000,0.00000000,6.82000000 +8497,chr22,37193478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.13000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.22000000 +8498,chr22,37193765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.25000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.02500000,0.00000000,6.61000000 +8499,chr22,37193829,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.37000000,0.00000000,,0.51136364,92.00000000,4.07079646,0.03260870,0.00000000,8.16000000 +8500,chr22,37194163,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.68000000,0.00000000,,0.23684211,115.00000000,5.08849558,0.00869565,0.00000000,6.12000000 +8501,chr22,37194167,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,2.10000000,0.00000000,,0.21739130,116.00000000,5.13274336,0.00862069,0.00000000,6.10000000 +8502,chr22,37194262,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,79.00000000,0.00000000,0.29000000,0.00000000,,0.16981132,107.00000000,4.73451327,0.00000000,0.00000000,5.79000000 +8503,chr22,37194509,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-0.54000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,5.86000000 +8504,chr22,37194678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,65.00000000,0.00000000,-1.66000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.53000000 +8505,chr22,37195221,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,1.83000000,0.00000000,,0.14736842,98.00000000,4.33628319,0.03061224,0.00000000,4.95000000 +8506,chr22,37195250,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.07000000,0.00000000,,0.41237113,102.00000000,4.51327434,0.04901961,0.00000000,8.35000000 +8507,chr22,37195278,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,111.00000000,0.00000000,-0.55000000,0.00000000,,0.42307692,105.00000000,4.64601770,0.00952381,0.00000000,14.43000000 +8508,chr22,37195621,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,73.00000000,0.00000000,-1.71000000,0.00000000,,0.15463918,100.00000000,4.42477876,0.03000000,0.00000000,5.41000000 +8509,chr22,37196066,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.01923077,52.00000000,2.30088496,0.00000000,0.00000000,85.00000000,0.00000000,-0.93000000,0.00000000,,0.46341463,82.00000000,3.62831858,0.00000000,0.00000000,6.74000000 +8510,chr22,37197051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,42.00000000,1.85840708,0.07142857,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.23584906,106.00000000,4.69026549,0.00000000,0.00000000,5.90000000 +8511,chr22,37197116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,83.00000000,0.00000000,-0.61000000,0.00000000,,0.20000000,103.00000000,4.55752212,0.01941748,0.00000000,5.81000000 +8512,chr22,37197648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.86000000 +8513,chr22,37199446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.44000000 +8514,chr22,37200194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.85000000,0.00000000,,0.21428571,90.00000000,3.98230088,0.06666667,0.00000000,5.99000000 +8515,chr22,37203666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.23913043,95.00000000,4.20353982,0.02105263,0.00000000,6.49000000 +8516,chr22,37204523,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.01492537,0.00000000,5.57000000 +8517,chr22,37205266,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.42000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.19000000 +8518,chr22,37206982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,82.00000000,0.00000000,-0.68000000,0.00000000,,0.18181818,102.00000000,4.51327434,0.02941176,0.00000000,5.07000000 +8519,chr22,37207012,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,91.00000000,0.00000000,-0.31000000,0.00000000,,0.20952381,108.00000000,4.77876106,0.02777778,0.00000000,5.16000000 +8520,chr22,37207351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,0.00000000,0.76000000,0.00000000,,0.14678899,109.00000000,4.82300885,0.00000000,0.00000000,5.06000000 +8521,chr22,37207705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,89.00000000,0.00000000,-0.03000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,5.76000000 +8522,chr22,37207911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,70.00000000,0.00000000,0.26000000,0.00000000,,0.12643678,88.00000000,3.89380531,0.01136364,0.00000000,4.67000000 +8523,chr22,37209757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,1.21000000,0.00000000,,0.32941176,85.00000000,3.76106195,0.00000000,0.00000000,8.08000000 +8524,chr22,37213008,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,82.00000000,0.00000000,-1.49000000,0.00000000,,0.17391304,117.00000000,5.17699115,0.01709402,0.00000000,5.20000000 +8525,chr22,37213302,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.25675676,77.00000000,3.40707965,0.02597403,0.00000000,6.20000000 +8526,chr22,37214379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.44000000 +8527,chr22,37215180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.13725490,103.00000000,4.55752212,0.00970874,0.00000000,5.09000000 +8528,chr22,37215767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.90000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,6.30000000 +8529,chr22,37215822,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,1.15000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.40000000 +8530,chr22,37215911,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.26000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8531,chr22,37215947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.75000000 +8532,chr22,37216002,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.01111111,0.00000000,6.56000000 +8533,chr22,37216015,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +8534,chr22,37216063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-1.22000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.00961538,0.00000000,6.52000000 +8535,chr22,37216225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,53.00000000,0.00000000,0.66000000,0.00000000,,0.26086957,54.00000000,2.38938053,0.14814815,0.00000000,2.92000000 +8536,chr22,37216870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,-1.02000000,0.00000000,,0.27450980,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8537,chr22,37217119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.79000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.38000000 +8538,chr22,37217269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-1.64000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.20000000 +8539,chr22,37217956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.50000000 +8540,chr22,37218168,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,0.08000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.01000000 +8541,chr22,37218665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-1.33000000,0.00000000,,0.25581395,93.00000000,4.11504425,0.07526882,0.00000000,5.96000000 +8542,chr22,37219208,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,7.01000000 +8543,chr22,37219316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,83.00000000,0.00000000,0.59000000,0.00000000,,0.18181818,102.00000000,4.51327434,0.02941176,0.00000000,5.04000000 +8544,chr22,37219574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,78.00000000,0.00000000,0.77000000,0.00000000,,0.19480519,81.00000000,3.58407080,0.04938272,0.00000000,5.52000000 +8545,chr22,37219642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,79.00000000,0.00000000,0.35000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.35000000 +8546,chr22,37220050,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,97.00000000,0.00000000,0.72000000,0.00000000,,0.26000000,102.00000000,4.51327434,0.01960784,0.00000000,5.33000000 +8547,chr22,37221104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.41000000,0.00000000,,0.30434783,92.00000000,4.07079646,0.00000000,0.00000000,6.63000000 +8548,chr22,37221362,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.13684211,95.00000000,4.20353982,0.00000000,0.00000000,5.86000000 +8549,chr22,37222449,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.95000000 +8550,chr22,37222893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,1.43000000,0.00000000,,0.13953488,91.00000000,4.02654867,0.05494505,0.00000000,5.33000000 +8551,chr22,37222981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,0.00000000,-2.16000000,0.00000000,,0.15853659,89.00000000,3.93805310,0.07865169,0.00000000,5.40000000 +8552,chr22,37223245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.16455696,83.00000000,3.67256637,0.04819277,0.00000000,5.31000000 +8553,chr22,37224432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +8554,chr22,37224493,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.39000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.03260870,0.00000000,6.35000000 +8555,chr22,37225911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,-0.74000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,5.62000000 +8556,chr22,37226270,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.46000000,0.00000000,,0.23880597,70.00000000,3.09734513,0.04285714,0.00000000,5.72000000 +8557,chr22,37226435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-1.01000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.68000000 +8558,chr22,37226537,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.65000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.56000000 +8559,chr22,37226550,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.96000000,0.00000000,,0.28378378,75.00000000,3.31858407,0.00000000,0.00000000,6.51000000 +8560,chr22,37226775,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.91000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,4.93000000 +8561,chr22,37228009,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-0.08000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.15000000 +8562,chr22,37228196,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.04938272,0.00000000,5.56000000 +8563,chr22,37229037,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,0.35000000,0.00000000,,0.26530612,101.00000000,4.46902655,0.01980198,0.00000000,6.25000000 +8564,chr22,37229604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.04000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.03448276,0.00000000,4.94000000 +8565,chr22,37230062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +8566,chr22,37231194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.68000000,0.00000000,,0.29333333,77.00000000,3.40707965,0.02597403,0.00000000,6.26000000 +8567,chr22,37231206,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.09000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,5.76000000 +8568,chr22,37231805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-1.64000000,0.00000000,,0.16867470,88.00000000,3.89380531,0.05681818,0.00000000,6.01000000 +8569,chr22,37234239,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.92000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +8570,chr22,37234278,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.28985507,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +8571,chr22,37234443,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.02380952,0.00000000,6.68000000 +8572,chr22,37234822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.17000000 +8573,chr22,37241613,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-0.10000000,0.00000000,,0.24731183,98.00000000,4.33628319,0.05102041,0.00000000,5.85000000 +8574,chr22,37242256,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.86000000 +8575,chr22,37245228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-1.19000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.97000000 +8576,chr22,37245370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.13636364,90.00000000,3.98230088,0.01111111,0.00000000,5.79000000 +8577,chr22,37245584,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +8578,chr22,37245956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.77000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +8579,chr22,37246161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,0.46000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,5.71000000 +8580,chr22,37246174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,79.00000000,0.00000000,1.89000000,0.00000000,,0.16504854,106.00000000,4.69026549,0.02830189,0.00000000,5.06000000 +8581,chr22,37246195,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,75.00000000,0.00000000,1.52000000,0.00000000,,0.14563107,106.00000000,4.69026549,0.02830189,0.00000000,4.89000000 +8582,chr22,37246274,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,74.00000000,0.00000000,-1.72000000,0.00000000,,0.15384615,93.00000000,4.11504425,0.02150538,0.00000000,4.53000000 +8583,chr22,37246308,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,-0.49000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,6.17000000 +8584,chr22,37246334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.90000000,0.00000000,,0.19402985,70.00000000,3.09734513,0.04285714,0.00000000,5.67000000 +8585,chr22,37246376,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,1.38000000,0.00000000,,0.13513514,76.00000000,3.36283186,0.02631579,0.00000000,5.35000000 +8586,chr22,37246484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,5.01000000 +8587,chr22,37246485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,0.00000000,-0.20000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,4.79000000 +8588,chr22,37246829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.19047619,108.00000000,4.77876106,0.02777778,0.00000000,5.86000000 +8589,chr22,37246885,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.17857143,112.00000000,4.95575221,0.00000000,0.00000000,6.56000000 +8590,chr22,37246904,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.38000000,0.00000000,,0.15841584,102.00000000,4.51327434,0.00980392,0.00000000,6.06000000 +8591,chr22,37246960,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-1.05000000,0.00000000,,0.19117647,73.00000000,3.23008850,0.06849315,0.00000000,6.21000000 +8592,chr22,37246989,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.79000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,6.52000000 +8593,chr22,37246991,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.88000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.02000000 +8594,chr22,37247193,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.34000000,0.00000000,,0.15492958,80.00000000,3.53982301,0.10000000,0.00000000,4.61000000 +8595,chr22,37247806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.90000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.04347826,0.00000000,6.85000000 +8596,chr22,37247808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.85000000 +8597,chr22,37254280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.07000000,0.00000000,,0.26865672,70.00000000,3.09734513,0.02857143,0.00000000,6.18000000 +8598,chr22,37256235,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.19000000,0.00000000,,0.25000000,94.00000000,4.15929204,0.02127660,0.00000000,6.16000000 +8599,chr22,37256722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,47.00000000,2.07964602,0.02127660,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.21739130,94.00000000,4.15929204,0.02127660,0.00000000,5.22000000 +8600,chr22,37262417,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.15957447,96.00000000,4.24778761,0.02083333,0.00000000,5.33000000 +8601,chr22,37262659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.92000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +8602,chr22,37262764,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,1.10000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.59000000 +8603,chr22,37263015,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.22000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.65000000 +8604,chr22,37263247,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.37000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,6.89000000 +8605,chr22,37263266,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.20000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.74000000 +8606,chr22,37263371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,-1.23000000,0.00000000,,0.21311475,77.00000000,3.40707965,0.20779221,0.00000000,5.42000000 +8607,chr22,37263380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,63.00000000,0.00000000,-1.87000000,0.00000000,,0.22950820,76.00000000,3.36283186,0.19736842,0.00000000,5.33000000 +8608,chr22,37263757,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.88000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,7.04000000 +8609,chr22,37264214,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.83000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.01282051,0.00000000,5.96000000 +8610,chr22,37265578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.01020408,0.00000000,6.31000000 +8611,chr22,37267308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.44000000 +8612,chr22,37267349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.03409091,0.00000000,5.03000000 +8613,chr22,37269806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.55000000,0.00000000,,0.13636364,94.00000000,4.15929204,0.06382979,0.00000000,5.41000000 +8614,chr22,37270230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,-1.11000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.69000000 +8615,chr22,37271595,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.13000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.11000000 +8616,chr22,37272537,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.51000000,0.00000000,,0.15384615,67.00000000,2.96460177,0.02985075,0.00000000,5.19000000 +8617,chr22,37272690,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,52.00000000,0.00000000,-0.31000000,0.00000000,,0.28301887,58.00000000,2.56637168,0.08620690,0.00000000,2.81000000 +8618,chr22,37273280,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.22000000 +8619,chr22,37276407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.38000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.64000000 +8620,chr22,37277066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.16000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.22000000 +8621,chr22,37286324,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +8622,chr22,37286914,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-2.21000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,6.82000000 +8623,chr22,37286923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-3.00000000,0.00000000,,0.32000000,77.00000000,3.40707965,0.01298701,0.00000000,8.16000000 +8624,chr22,37286969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.17000000 +8625,chr22,37287177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-0.62000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.22000000 +8626,chr22,37287239,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.20754717,53.00000000,2.34513274,0.00000000,0.00000000,6.55000000 +8627,chr22,37287255,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.48000000,0.00000000,,0.22641509,53.00000000,2.34513274,0.00000000,0.00000000,6.06000000 +8628,chr22,37287335,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.30000000,0.00000000,,0.26865672,67.00000000,2.96460177,0.00000000,0.00000000,7.13000000 +8629,chr22,37287642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,-0.03000000,0.00000000,,0.18750000,67.00000000,2.96460177,0.04477612,0.00000000,3.15000000 +8630,chr22,37288031,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.50000000 +8631,chr22,37288148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.37000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.91000000 +8632,chr22,37289698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-1.03000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,6.01000000 +8633,chr22,37289855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.42000000 +8634,chr22,37290072,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-1.41000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +8635,chr22,37290669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,0.00000000,-0.51000000,0.00000000,,0.12195122,83.00000000,3.67256637,0.01204819,0.00000000,5.29000000 +8636,chr22,37295274,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,80.00000000,0.00000000,0.56000000,0.00000000,,0.30769231,81.00000000,3.58407080,0.03703704,0.00000000,5.93000000 +8637,chr22,37295866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.67000000,0.00000000,,0.18867925,106.00000000,4.69026549,0.00000000,0.00000000,6.72000000 +8638,chr22,37296897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.04000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.96000000 +8639,chr22,37296970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,1.03000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.02000000 +8640,chr22,37298236,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.21621622,77.00000000,3.40707965,0.03896104,0.00000000,6.50000000 +8641,chr22,37299215,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.49000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,5.75000000 +8642,chr22,37300514,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +8643,chr22,37301270,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.98000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.23000000 +8644,chr22,37303127,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.80000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.52000000 +8645,chr22,37307488,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +8646,chr22,37322025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.23000000 +8647,chr22,37358982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.43000000,0.00000000,,0.17741935,64.00000000,2.83185841,0.03125000,0.00000000,6.25000000 +8648,chr22,37369770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,1.18000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.89000000 +8649,chr22,37370156,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.41000000,0.00000000,,0.38983051,60.00000000,2.65486726,0.01666667,0.00000000,8.20000000 +8650,chr22,37374026,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.44329897,101.00000000,4.46902655,0.02970297,0.00000000,8.23000000 +8651,chr22,37374317,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.27000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.53000000 +8652,chr22,37375118,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,56.00000000,0.00000000,-0.06000000,0.00000000,,0.37681159,70.00000000,3.09734513,0.01428571,0.00000000,4.41000000 +8653,chr22,37375945,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.58000000,0.00000000,,0.51948052,81.00000000,3.58407080,0.03703704,0.00000000,8.18000000 +8654,chr22,37378045,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.37837838,76.00000000,3.36283186,0.02631579,0.00000000,7.73000000 +8655,chr22,37378318,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.46000000,0.00000000,,0.48936170,96.00000000,4.24778761,0.02083333,0.00000000,8.33000000 +8656,chr22,37379188,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.29000000 +8657,chr22,37379850,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,23.00000000,0.00000000,-1.67000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.14000000 +8658,chr22,37385551,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.33000000,0.00000000,,0.42241379,116.00000000,5.13274336,0.00000000,0.00000000,8.37000000 +8659,chr22,37387311,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,-2.16000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.55000000 +8660,chr22,37388121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,6.28000000 +8661,chr22,37388189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.71000000 +8662,chr22,37388470,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.36000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,5.93000000 +8663,chr22,37390670,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.88000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.19000000 +8664,chr22,37391285,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,8.79000000 +8665,chr22,37392166,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.01162791,0.00000000,7.24000000 +8666,chr22,37394463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.69000000 +8667,chr22,37398028,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.14000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,6.31000000 +8668,chr22,37399132,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.17000000 +8669,chr22,37399189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.36000000 +8670,chr22,37399243,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,1.51000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.05405405,0.00000000,2.86000000 +8671,chr22,37400992,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.66000000 +8672,chr22,37403624,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,2.95000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +8673,chr22,37403817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,82.00000000,0.00000000,-0.09000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.87000000 +8674,chr22,37404129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.31000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +8675,chr22,37406043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.39000000,0.00000000,,0.14018692,108.00000000,4.77876106,0.00925926,0.00000000,5.20000000 +8676,chr22,37406307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.48000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.02197802,0.00000000,4.65000000 +8677,chr22,37407850,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,1.75000000,0.00000000,,0.28767123,77.00000000,3.40707965,0.02597403,0.00000000,6.26000000 +8678,chr22,37409239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.86000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.81000000 +8679,chr22,37409835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.14457831,84.00000000,3.71681416,0.01190476,0.00000000,5.56000000 +8680,chr22,37413199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.18000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.76000000 +8681,chr22,37413396,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,5.61000000 +8682,chr22,37414668,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,1.12000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,5.47000000 +8683,chr22,37416131,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.89000000 +8684,chr22,37416456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.13000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.20000000 +8685,chr22,37420163,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +8686,chr22,37420899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.50000000 +8687,chr22,37422201,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.66000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.00000000,0.00000000,2.88000000 +8688,chr22,37422292,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.79000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.61000000 +8689,chr22,37423947,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.39000000,0.00000000,,0.18947368,97.00000000,4.29203540,0.02061856,0.00000000,6.23000000 +8690,chr22,37424776,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,0.99000000,0.00000000,,0.20481928,87.00000000,3.84955752,0.04597701,0.00000000,5.92000000 +8691,chr22,37430598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.82000000 +8692,chr22,37431160,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.72000000,0.00000000,,0.25842697,92.00000000,4.07079646,0.02173913,0.00000000,5.72000000 +8693,chr22,37435883,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.15000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.46000000 +8694,chr22,37479919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,0.85000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.47000000 +8695,chr22,37484612,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,-0.46000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.48000000 +8696,chr22,37506493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,79.00000000,0.00000000,-1.12000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.02272727,0.00000000,5.26000000 +8697,chr22,37506919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,0.23000000,0.00000000,,0.10144928,69.00000000,3.05309735,0.00000000,0.00000000,4.89000000 +8698,chr22,37509278,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,0.34000000,0.00000000,,0.14084507,75.00000000,3.31858407,0.05333333,0.00000000,5.00000000 +8699,chr22,37513199,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.28000000,0.00000000,,0.20634921,66.00000000,2.92035398,0.04545455,0.00000000,6.32000000 +8700,chr22,37553313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,75.00000000,0.00000000,-0.55000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.33000000 +8701,chr22,37554117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-2.35000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,5.98000000 +8702,chr22,37556772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.49000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.84000000 +8703,chr22,37556871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.64000000 +8704,chr22,37557060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +8705,chr22,37563207,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.22000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.19000000 +8706,chr22,37564358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.14000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +8707,chr22,37574465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.18309859,83.00000000,3.67256637,0.14457831,0.00000000,5.87000000 +8708,chr22,37581474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,5.27000000 +8709,chr22,37581706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,2.30000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +8710,chr22,37583257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.00000000,0.00000000,,0.22535211,74.00000000,3.27433628,0.04054054,0.00000000,6.01000000 +8711,chr22,37587405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.89000000,0.00000000,,0.27160494,84.00000000,3.71681416,0.02380952,0.00000000,6.53000000 +8712,chr22,37588516,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.01298701,0.00000000,5.10000000 +8713,chr22,37591677,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.71000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.49000000 +8714,chr22,37591809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.02000000,4.03000000,,0.11111111,64.00000000,2.83185841,0.01562500,0.00000000,3.90000000 +8715,chr22,37593206,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.33000000 +8716,chr22,37593944,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.41000000 +8717,chr22,37596697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.79000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,5.94000000 +8718,chr22,37602351,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.43000000,0.00000000,,0.19767442,95.00000000,4.20353982,0.09473684,0.00000000,5.26000000 +8719,chr22,37602558,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.37000000 +8720,chr22,37633716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,73.00000000,0.00000000,-0.61000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.91000000 +8721,chr22,37636755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,-0.87000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,5.66000000 +8722,chr22,37638746,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,-0.78000000,0.00000000,,0.27906977,91.00000000,4.02654867,0.04395604,0.00000000,5.78000000 +8723,chr22,37639342,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.23000000 +8724,chr22,37645008,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.20588235,105.00000000,4.64601770,0.02857143,0.00000000,5.76000000 +8725,chr22,37648490,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,5.97000000 +8726,chr22,37649700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,86.00000000,0.00000000,0.28000000,0.00000000,,0.19417476,106.00000000,4.69026549,0.02830189,0.00000000,5.52000000 +8727,chr22,37655198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.37000000 +8728,chr22,37662079,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.14285714,76.00000000,3.36283186,0.07894737,0.00000000,4.85000000 +8729,chr22,37687094,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,52.00000000,0.00000000,1.05000000,0.00000000,,0.32500000,81.00000000,3.58407080,0.00000000,0.00000000,4.19000000 +8730,chr22,37696885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.79000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.16000000 +8731,chr22,37700046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.68000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,6.18000000 +8732,chr22,37700327,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.19565217,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.21951220,0.00000000,5.27000000 +8733,chr22,37700690,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.84000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,5.95000000 +8734,chr22,37701352,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.64000000 +8735,chr22,37707538,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,77.00000000,0.00000000,-2.60000000,0.00000000,,0.21126761,78.00000000,3.45132743,0.05128205,0.00000000,5.90000000 +8736,chr22,37708602,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-1.89000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,7.16000000 +8737,chr22,37709246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.54000000 +8738,chr22,37710101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.26027397,79.00000000,3.49557522,0.07594937,0.00000000,5.63000000 +8739,chr22,37713108,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.40000000 +8740,chr22,37717871,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,4.13000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,4.16000000 +8741,chr22,37719685,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.58000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.07000000 +8742,chr22,37720772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.66000000 +8743,chr22,37726960,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,67.00000000,0.00000000,-0.70000000,0.00000000,,0.30000000,77.00000000,3.40707965,0.07792208,0.00000000,6.54000000 +8744,chr22,37727357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.04225352,0.00000000,6.14000000 +8745,chr22,37730575,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.00000000,0.00000000,,0.28333333,63.00000000,2.78761062,0.03174603,0.00000000,6.13000000 +8746,chr22,37731620,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.90000000 +8747,chr22,37731943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.02000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.34000000 +8748,chr22,37734452,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.62000000 +8749,chr22,37738159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.24000000 +8750,chr22,37740669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,0.27000000,0.00000000,,0.19791667,99.00000000,4.38053097,0.03030303,0.00000000,5.70000000 +8751,chr22,37742372,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.19277108,90.00000000,3.98230088,0.07777778,0.00000000,6.60000000 +8752,chr22,37744345,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.69000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.00000000,0.00000000,7.01000000 +8753,chr22,37748228,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.39000000,0.00000000,,0.12359551,92.00000000,4.07079646,0.03260870,0.00000000,5.14000000 +8754,chr22,37752875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,6.25000000 +8755,chr22,37754183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.41000000,0.00000000,,0.29069767,87.00000000,3.84955752,0.01149425,0.00000000,6.73000000 +8756,chr22,37758683,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.35000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.42000000 +8757,chr22,37762702,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,0.00000000,1.74000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,5.76000000 +8758,chr22,37764787,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.13131313,100.00000000,4.42477876,0.01000000,0.00000000,5.58000000 +8759,chr22,37767006,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.09523810,0.00000000,80.00000000,0.00000000,0.28000000,0.00000000,,0.19354839,99.00000000,4.38053097,0.06060606,0.00000000,5.67000000 +8760,chr22,37768099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.94000000 +8761,chr22,37769580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.28421053,97.00000000,4.29203540,0.01030928,0.00000000,6.64000000 +8762,chr22,37776206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-2.08000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8763,chr22,37776373,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.51000000 +8764,chr22,37779948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.02777778,0.00000000,6.06000000 +8765,chr22,37780209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.83000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.59000000 +8766,chr22,37783466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,91.00000000,4.02654867,0.02197802,0.00000000,5.99000000 +8767,chr22,37783883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +8768,chr22,37784480,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,76.00000000,0.00000000,0.66000000,0.00000000,,0.28000000,80.00000000,3.53982301,0.05000000,0.00000000,5.68000000 +8769,chr22,37785108,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.81000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.48000000 +8770,chr22,37786539,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.40000000,14.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,60.00000000,2.65486726,0.03333333,0.00000000,4.33000000 +8771,chr22,37787365,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,47.62000000,37.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.74000000,0.45000000,,0.13888889,38.00000000,1.68141593,0.05263158,0.00000000,3.73000000 +8772,chr22,37787990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.16666667,52.00000000,2.30088496,0.07692308,0.00000000,5.37000000 +8773,chr22,37788678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.02000000,0.00000000,,0.29411765,87.00000000,3.84955752,0.02298851,0.00000000,6.19000000 +8774,chr22,37788865,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.02247191,0.00000000,6.25000000 +8775,chr22,37789964,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.88000000,0.00000000,,0.25287356,91.00000000,4.02654867,0.04395604,0.00000000,6.27000000 +8776,chr22,37790393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.58000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +8777,chr22,37792277,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,0.12000000,0.00000000,,0.13043478,69.00000000,3.05309735,0.00000000,0.00000000,4.71000000 +8778,chr22,37799589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.19512195,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.22058824,86.00000000,3.80530973,0.20930233,0.00000000,5.63000000 +8779,chr22,37799789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,58.00000000,0.00000000,-0.81000000,0.00000000,,0.10204082,61.00000000,2.69911504,0.19672131,0.00000000,3.75000000 +8780,chr22,37799812,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.11864407,65.00000000,2.87610619,0.09230769,0.00000000,5.30000000 +8781,chr22,37800566,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,5.82000000 +8782,chr22,37802307,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,5.63000000 +8783,chr22,37803047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,2.25000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.33000000 +8784,chr22,37804117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.28000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,7.03000000 +8785,chr22,37807789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,-0.18000000,0.00000000,,0.16666667,87.00000000,3.84955752,0.03448276,0.00000000,5.29000000 +8786,chr22,37808252,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.75000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.01086957,0.00000000,5.87000000 +8787,chr22,37808533,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,-1.91000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.44000000 +8788,chr22,37808633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +8789,chr22,37809777,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.12987013,81.00000000,3.58407080,0.04938272,0.00000000,5.01000000 +8790,chr22,37809887,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.14285714,94.00000000,4.15929204,0.03191489,0.00000000,4.94000000 +8791,chr22,37809982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.00000000,0.00000000,6.42000000 +8792,chr22,37810832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.51000000 +8793,chr22,37811412,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.61000000,0.00000000,,0.16393443,72.00000000,3.18584071,0.15277778,0.00000000,2.86000000 +8794,chr22,37811549,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.92000000,0.00000000,,0.17948718,88.00000000,3.89380531,0.11363636,0.00000000,5.61000000 +8795,chr22,37812253,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.24731183,96.00000000,4.24778761,0.03125000,0.00000000,5.79000000 +8796,chr22,37814556,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.00000000,0.00000000,5.70000000 +8797,chr22,37825025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,90.00000000,0.00000000,0.69000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.00961538,0.00000000,5.59000000 +8798,chr22,37867986,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.25714286,73.00000000,3.23008850,0.04109589,0.00000000,6.15000000 +8799,chr22,37872915,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,73.00000000,0.00000000,2.49000000,0.00000000,,0.16000000,102.00000000,4.51327434,0.01960784,0.00000000,4.94000000 +8800,chr22,37876922,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.29000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.19000000 +8801,chr22,37877296,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.02816901,0.00000000,6.25000000 +8802,chr22,37877742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,58.00000000,0.00000000,0.96000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,3.69000000 +8803,chr22,37882772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.81000000 +8804,chr22,37882773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.10000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.52000000 +8805,chr22,37882805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,1.18000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.03448276,0.00000000,6.38000000 +8806,chr22,37884304,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-0.80000000,0.00000000,,0.20388350,103.00000000,4.55752212,0.00000000,0.00000000,6.70000000 +8807,chr22,37887598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,5.95000000 +8808,chr22,37889293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.05000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.02127660,0.00000000,6.24000000 +8809,chr22,37890137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.18000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.60000000 +8810,chr22,37895067,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.35000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,7.08000000 +8811,chr22,37895658,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,60.00000000,0.00000000,-0.54000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.01000000 +8812,chr22,37896967,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.06000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.50000000 +8813,chr22,37897419,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.24000000,0.00000000,,0.28395062,83.00000000,3.67256637,0.02409639,0.00000000,6.30000000 +8814,chr22,37899510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.40000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.26000000 +8815,chr22,37900161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.41000000 +8816,chr22,37900976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,5.55000000 +8817,chr22,37901256,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +8818,chr22,37904467,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.09000000 +8819,chr22,37904960,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.11904762,87.00000000,3.84955752,0.01149425,0.00000000,5.21000000 +8820,chr22,37908851,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +8821,chr22,37910699,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +8822,chr22,37910764,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.62000000 +8823,chr22,37911902,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.69000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.00000000,0.00000000,6.88000000 +8824,chr22,37912284,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,2.02000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.69000000 +8825,chr22,37912987,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.33000000,0.00000000,,0.21311475,68.00000000,3.00884956,0.08823529,0.00000000,5.69000000 +8826,chr22,37913931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,63.00000000,0.00000000,0.68000000,0.00000000,,0.07692308,90.00000000,3.98230088,0.13333333,0.00000000,4.63000000 +8827,chr22,37916413,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,68.00000000,0.00000000,0.72000000,0.00000000,,0.08910891,103.00000000,4.55752212,0.01941748,0.00000000,4.76000000 +8828,chr22,37916720,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,0.93000000,0.00000000,,0.17647059,102.00000000,4.51327434,0.00000000,0.00000000,6.17000000 +8829,chr22,37918171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,93.00000000,0.00000000,-0.10000000,0.00000000,,0.26262626,99.00000000,4.38053097,0.00000000,0.00000000,6.59000000 +8830,chr22,37919462,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.03191489,0.00000000,5.91000000 +8831,chr22,37923349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.19148936,95.00000000,4.20353982,0.01052632,0.00000000,6.63000000 +8832,chr22,37926343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.32000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,6.01000000 +8833,chr22,37926388,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.62000000 +8834,chr22,37928316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.53000000,0.00000000,,0.26086957,74.00000000,3.27433628,0.05405405,0.00000000,6.35000000 +8835,chr22,37933278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,5.25000000 +8836,chr22,37933517,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.23000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.84000000 +8837,chr22,37934916,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,-0.61000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.04166667,0.00000000,5.85000000 +8838,chr22,37935227,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.68000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,5.86000000 +8839,chr22,37936008,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.18000000,0.00000000,,0.27419355,63.00000000,2.78761062,0.01587302,0.00000000,6.77000000 +8840,chr22,37948046,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.03333333,0.00000000,5.25000000 +8841,chr22,37948047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.03278689,0.00000000,5.13000000 +8842,chr22,37955678,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,0.77000000,0.00000000,,0.32558140,86.00000000,3.80530973,0.00000000,0.00000000,8.17000000 +8843,chr22,37968198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,2.36000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,5.73000000 +8844,chr22,37968332,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.43000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +8845,chr22,37971233,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,1.75000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.28000000 +8846,chr22,38004802,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,1.17000000,0.00000000,,0.12068966,59.00000000,2.61061947,0.01694915,0.00000000,4.89000000 +8847,chr22,38025356,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.27000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.84000000 +8848,chr22,38039466,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.68000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.32000000 +8849,chr22,38064481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.82000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,6.24000000 +8850,chr22,38068017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.57000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.56000000 +8851,chr22,38111811,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,-0.61000000,0.00000000,,0.16822430,108.00000000,4.77876106,0.00925926,0.00000000,5.72000000 +8852,chr22,38118547,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.85000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +8853,chr22,38123682,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.06451613,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.01000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.15000000 +8854,chr22,38123834,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.10000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.80000000 +8855,chr22,38124825,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,2.00000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +8856,chr22,38125081,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.14000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.22000000 +8857,chr22,38130083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.88000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +8858,chr22,38134600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.67000000 +8859,chr22,38134949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,1.53000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,3.48000000 +8860,chr22,38137314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,-0.49000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.17000000 +8861,chr22,38140461,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.04000000,0.00000000,6.04000000 +8862,chr22,38149724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.95000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.38000000 +8863,chr22,38149884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.86000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.29000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.73000000 +8864,chr22,38152509,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.10000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +8865,chr22,38152545,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.26000000 +8866,chr22,38152582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.80000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +8867,chr22,38152838,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.17582418,94.00000000,4.15929204,0.02127660,0.00000000,5.74000000 +8868,chr22,38152957,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,0.00000000,-0.91000000,0.00000000,,0.16901408,76.00000000,3.36283186,0.05263158,0.00000000,5.77000000 +8869,chr22,38153366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +8870,chr22,38153592,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,71.00000000,0.00000000,-1.33000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.12987013,0.00000000,5.79000000 +8871,chr22,38153941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,78.00000000,0.00000000,-0.19000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,5.56000000 +8872,chr22,38153962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.02631579,0.00000000,5.20000000 +8873,chr22,38154166,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.03000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.43000000 +8874,chr22,38156523,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.53000000,0.00000000,,0.14102564,82.00000000,3.62831858,0.04878049,0.00000000,5.49000000 +8875,chr22,38156848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.25000000 +8876,chr22,38157147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.18000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.05000000,0.00000000,5.69000000 +8877,chr22,38163072,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.29000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.15000000 +8878,chr22,38164738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.16000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +8879,chr22,38164904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.53000000,4.13000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,3.90000000 +8880,chr22,38165516,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.81000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.00000000,0.00000000,6.41000000 +8881,chr22,38165752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,97.00000000,0.00000000,0.16000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.02105263,0.00000000,5.35000000 +8882,chr22,38165797,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,100.00000000,0.00000000,-0.31000000,0.00000000,,0.28846154,107.00000000,4.73451327,0.02803738,0.00000000,5.27000000 +8883,chr22,38166091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.59000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +8884,chr22,38166120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.13000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +8885,chr22,38166251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.17000000 +8886,chr22,38166272,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.20000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +8887,chr22,38166314,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-1.91000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.01041667,0.00000000,6.21000000 +8888,chr22,38166478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.22000000 +8889,chr22,38166917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.50000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +8890,chr22,38167176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,63.00000000,0.00000000,0.62000000,0.00000000,,0.12903226,82.00000000,3.62831858,0.24390244,0.00000000,4.54000000 +8891,chr22,38167183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,63.00000000,0.00000000,1.35000000,0.00000000,,0.11864407,80.00000000,3.53982301,0.26250000,0.00000000,4.36000000 +8892,chr22,38167215,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,65.00000000,0.00000000,-0.45000000,0.00000000,,0.15254237,83.00000000,3.67256637,0.28915663,0.00000000,5.32000000 +8893,chr22,38167290,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,-0.49000000,0.00000000,,0.25263158,98.00000000,4.33628319,0.03061224,0.00000000,5.99000000 +8894,chr22,38167534,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,5.41000000 +8895,chr22,38167541,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,5.47000000 +8896,chr22,38167565,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,5.64000000 +8897,chr22,38167965,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.40000000,0.00000000,,0.20212766,99.00000000,4.38053097,0.04040404,0.00000000,6.30000000 +8898,chr22,38169697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,1.05000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +8899,chr22,38170324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.03658537,0.00000000,6.05000000 +8900,chr22,38170661,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,5.91000000 +8901,chr22,38170942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.04000000,0.00000000,6.96000000 +8902,chr22,38170945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.02597403,0.00000000,6.98000000 +8903,chr22,38171033,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.26000000,0.00000000,,0.21538462,69.00000000,3.05309735,0.04347826,0.00000000,6.48000000 +8904,chr22,38171071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,67.00000000,0.00000000,-1.40000000,0.00000000,,0.22580645,71.00000000,3.14159292,0.11267606,0.00000000,5.82000000 +8905,chr22,38171325,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.59000000 +8906,chr22,38171333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.02000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.30000000 +8907,chr22,38171618,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.43000000,0.00000000,,0.24528302,53.00000000,2.34513274,0.00000000,0.00000000,7.09000000 +8908,chr22,38171664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.99000000 +8909,chr22,38171783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,68.00000000,0.00000000,2.00000000,0.00000000,,0.17808219,87.00000000,3.84955752,0.16091954,0.00000000,5.55000000 +8910,chr22,38171789,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,66.00000000,0.00000000,-0.38000000,0.00000000,,0.16216216,86.00000000,3.80530973,0.13953488,0.00000000,5.30000000 +8911,chr22,38171792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,64.00000000,0.00000000,-0.22000000,0.00000000,,0.15068493,87.00000000,3.84955752,0.16091954,0.00000000,5.26000000 +8912,chr22,38172087,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.97000000 +8913,chr22,38172458,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-1.62000000,0.00000000,,0.16494845,98.00000000,4.33628319,0.01020408,0.00000000,5.94000000 +8914,chr22,38172688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.13333333,79.00000000,3.49557522,0.03797468,0.00000000,4.96000000 +8915,chr22,38172696,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.60000000,0.00000000,,0.15277778,77.00000000,3.40707965,0.06493506,0.00000000,5.36000000 +8916,chr22,38173550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +8917,chr22,38176477,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.43000000 +8918,chr22,38176665,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.84000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.00000000,0.00000000,5.96000000 +8919,chr22,38177632,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.12000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,6.09000000 +8920,chr22,38177652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.72000000,0.00000000,,0.27118644,60.00000000,2.65486726,0.01666667,0.00000000,6.34000000 +8921,chr22,38177698,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,1.66000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.79000000 +8922,chr22,38178896,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-3.06000000,0.00000000,,0.19607843,106.00000000,4.69026549,0.02830189,0.00000000,6.82000000 +8923,chr22,38179405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.15492958,75.00000000,3.31858407,0.04000000,0.00000000,5.63000000 +8924,chr22,38187459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,6.87000000 +8925,chr22,38187469,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.32000000,0.00000000,,0.22330097,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8926,chr22,38188697,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.58000000,0.00000000,,0.25000000,49.00000000,2.16814159,0.02040816,0.00000000,6.70000000 +8927,chr22,38191377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.28000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.23000000 +8928,chr22,38191755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.17431193,112.00000000,4.95575221,0.02678571,0.00000000,5.82000000 +8929,chr22,38191826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,-1.43000000,0.00000000,,0.18269231,105.00000000,4.64601770,0.00952381,0.00000000,5.94000000 +8930,chr22,38192023,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,-0.06000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.58000000 +8931,chr22,38192095,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.32000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +8932,chr22,38192577,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.62000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,5.74000000 +8933,chr22,38192703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.37000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +8934,chr22,38193357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,96.00000000,0.00000000,-0.55000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,5.62000000 +8935,chr22,38195479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,0.50000000,0.00000000,,0.25925926,57.00000000,2.52212389,0.05263158,0.00000000,5.66000000 +8936,chr22,38195673,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,45.00000000,0.00000000,-0.64000000,0.00000000,,0.32608696,49.00000000,2.16814159,0.04081633,0.00000000,4.37000000 +8937,chr22,38200052,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.18000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.34000000 +8938,chr22,38204948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,2.22000000,0.00000000,,0.25581395,93.00000000,4.11504425,0.07526882,0.00000000,6.15000000 +8939,chr22,38215291,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,6.34000000 +8940,chr22,38253343,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.78000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,6.90000000 +8941,chr22,38280831,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,0.72000000,0.00000000,,0.47058824,52.00000000,2.30088496,0.01923077,0.00000000,3.38000000 +8942,chr22,38281815,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.19000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,7.66000000 +8943,chr22,38281961,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,0.34000000,0.00000000,,0.36842105,57.00000000,2.52212389,0.00000000,0.00000000,4.39000000 +8944,chr22,38282381,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.36000000,0.00000000,,0.35714286,57.00000000,2.52212389,0.01754386,0.00000000,4.53000000 +8945,chr22,38282445,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-0.21000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,4.68000000 +8946,chr22,38282657,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,52.00000000,0.00000000,0.59000000,0.00000000,,0.35593220,59.00000000,2.61061947,0.00000000,0.00000000,4.33000000 +8947,chr22,38282740,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.24000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.09000000 +8948,chr22,38282969,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,65.00000000,0.00000000,-2.14000000,0.00000000,,0.39215686,58.00000000,2.56637168,0.10344828,0.00000000,8.25000000 +8949,chr22,38283063,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,0.22000000,0.00000000,,0.37878788,68.00000000,3.00884956,0.01470588,0.00000000,8.37000000 +8950,chr22,38283067,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.37500000,67.00000000,2.96460177,0.02985075,0.00000000,7.85000000 +8951,chr22,38283399,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.23000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +8952,chr22,38283775,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.44000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.40000000 +8953,chr22,38286885,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.49000000,0.00000000,,0.43037975,84.00000000,3.71681416,0.04761905,0.00000000,7.76000000 +8954,chr22,38290229,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.68000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.25000000 +8955,chr22,38303667,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,-0.31000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,5.59000000 +8956,chr22,38304943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.31000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,5.79000000 +8957,chr22,38305633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,85.00000000,0.00000000,-0.10000000,0.00000000,,0.29545455,89.00000000,3.93805310,0.01123596,0.00000000,6.03000000 +8958,chr22,38305972,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,1.37000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +8959,chr22,38307101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.94000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.00000000 +8960,chr22,38319217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,2.05000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.36000000 +8961,chr22,38320633,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.57000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.55000000 +8962,chr22,38323184,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.16000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +8963,chr22,38323957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-1.23000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.23000000 +8964,chr22,38324429,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-0.37000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.29000000 +8965,chr22,38328127,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.40000000,0.00000000,,0.28395062,84.00000000,3.71681416,0.02380952,0.00000000,6.13000000 +8966,chr22,38339359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.50000000,0.00000000,,0.23232323,99.00000000,4.38053097,0.00000000,0.00000000,6.72000000 +8967,chr22,38339563,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.60000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.01086957,0.00000000,6.27000000 +8968,chr22,38339858,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.18571429,73.00000000,3.23008850,0.02739726,0.00000000,6.29000000 +8969,chr22,38345691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.23000000 +8970,chr22,38359223,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.04000000,4.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,-0.62000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.33000000 +8971,chr22,38368564,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.15000000,4.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.17647059,105.00000000,4.64601770,0.02857143,0.00000000,5.15000000 +8972,chr22,38389058,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.53000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-2.02000000,0.00000000,,0.10606061,66.00000000,2.92035398,0.00000000,0.00000000,5.58000000 +8973,chr22,38389502,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,33.00000000,1.46017699,0.09090909,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.19277108,92.00000000,4.07079646,0.09782609,0.00000000,5.82000000 +8974,chr22,38391684,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,70.00000000,0.00000000,-0.18000000,0.00000000,,0.10869565,95.00000000,4.20353982,0.03157895,0.00000000,4.33000000 +8975,chr22,38391698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.03000000,4.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,0.00000000,-0.09000000,0.00000000,,0.11494253,88.00000000,3.89380531,0.01136364,0.00000000,4.48000000 +8976,chr22,38393671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,0.03000000,0.00000000,,0.22330097,104.00000000,4.60176991,0.00961538,0.00000000,6.38000000 +8977,chr22,38393931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.73000000,6.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.08000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.17000000 +8978,chr22,38394126,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,57.92000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,98.00000000,0.00000000,-0.67000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,5.98000000 +8979,chr22,38394523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.86000000,5.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,80.00000000,0.00000000,1.59000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.28000000 +8980,chr22,38394755,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.48000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.88000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,5.99000000 +8981,chr22,38397262,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.03571429,0.00000000,4.86000000 +8982,chr22,38398655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.82000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.01492537,0.00000000,6.52000000 +8983,chr22,38399265,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.31034483,61.00000000,2.69911504,0.04918033,0.00000000,5.66000000 +8984,chr22,38399618,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.35000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,5.85000000 +8985,chr22,38400154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.31000000,0.00000000,,0.18627451,102.00000000,4.51327434,0.00000000,0.00000000,6.37000000 +8986,chr22,38400415,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.14000000 +8987,chr22,38400624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.18000000,15.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,1.04000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.08000000 +8988,chr22,38400781,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,-1.38000000,0.00000000,,0.19587629,100.00000000,4.42477876,0.02000000,0.00000000,6.08000000 +8989,chr22,38402182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.96000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.37000000 +8990,chr22,38417128,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-0.17000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.70000000 +8991,chr22,38436554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.75000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.01111111,0.00000000,5.92000000 +8992,chr22,38465341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +8993,chr22,38466623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-1.37000000,0.00000000,,0.13333333,63.00000000,2.78761062,0.04761905,0.00000000,5.43000000 +8994,chr22,38467001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +8995,chr22,38469963,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,80.00000000,0.00000000,1.17000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +8996,chr22,38524891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.24000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.02898551,0.00000000,6.28000000 +8997,chr22,38573411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,1.32000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.53000000 +8998,chr22,38596093,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,90.00000000,0.00000000,0.78000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.35000000 +8999,chr22,38720701,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.37000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,8.36000000 +9000,chr22,38737314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.91000000 +9001,chr22,38761379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.16666667,82.00000000,3.62831858,0.04878049,0.00000000,5.73000000 +9002,chr22,38761399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.03000000,0.00000000,,0.13580247,85.00000000,3.76106195,0.04705882,0.00000000,5.08000000 +9003,chr22,38761882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.09000000,10.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.25531915,0.00000000,65.00000000,0.00000000,-0.22000000,0.89000000,,0.08750000,105.00000000,4.64601770,0.23809524,0.00943396,3.03000000 +9004,chr22,38762931,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.13000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.63000000 +9005,chr22,38763719,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-2.20000000,0.00000000,,0.26470588,71.00000000,3.14159292,0.02816901,0.00000000,6.43000000 +9006,chr22,38775890,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.11000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +9007,chr22,38785591,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,0.19000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.73000000 +9008,chr22,38808556,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.37000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,94.00000000,0.00000000,-0.86000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.39000000 +9009,chr22,38814101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,1.07000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.21000000 +9010,chr22,38817322,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,6.03000000 +9011,chr22,38820662,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.13000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,5.89000000 +9012,chr22,38823927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,95.00000000,0.00000000,-0.37000000,0.00000000,,0.28125000,98.00000000,4.33628319,0.02040816,0.00000000,5.31000000 +9013,chr22,38875210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9014,chr22,38875612,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.09756098,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.17441860,0.00000000,5.73000000 +9015,chr22,38885631,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.29000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.75000000 +9016,chr22,38885769,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.00000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.65000000 +9017,chr22,38886013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.53000000,0.00000000,,0.22772277,103.00000000,4.55752212,0.00970874,0.00000000,6.07000000 +9018,chr22,38890772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-2.07000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,7.00000000 +9019,chr22,38893646,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.27777778,90.00000000,3.98230088,0.00000000,0.00000000,6.76000000 +9020,chr22,38898639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.44000000 +9021,chr22,38898954,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.82000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.06000000 +9022,chr22,38902771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,-0.49000000,0.00000000,,0.18446602,105.00000000,4.64601770,0.01904762,0.00000000,5.64000000 +9023,chr22,38904260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.72000000 +9024,chr22,38906189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +9025,chr22,38908504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,0.00000000,-0.54000000,0.00000000,,0.33333333,59.00000000,2.61061947,0.06779661,0.00000000,4.72000000 +9026,chr22,38968338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.75000000 +9027,chr22,38972379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.31000000,0.00000000,,0.13114754,62.00000000,2.74336283,0.01612903,0.00000000,4.39000000 +9028,chr22,38976126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.10204082,69.00000000,3.05309735,0.28985507,0.00000000,4.15000000 +9029,chr22,38976790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.80000000,0.00000000,,0.15277778,78.00000000,3.45132743,0.06410256,0.00000000,5.33000000 +9030,chr22,38977160,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,0.00000000,0.38000000,0.00000000,,0.20952381,113.00000000,5.00000000,0.05309735,0.00000000,5.91000000 +9031,chr22,38978131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.89000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.96000000 +9032,chr22,38988727,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.97000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-3.04000000,0.00000000,,0.18181818,59.00000000,2.61061947,0.06779661,0.00000000,5.08000000 +9033,chr22,38990814,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.70000000,17.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.82000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.89000000 +9034,chr22,38993439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.21875000,66.00000000,2.92035398,0.03030303,0.00000000,6.39000000 +9035,chr22,38993440,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.02985075,0.00000000,6.38000000 +9036,chr22,38996245,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.52000000,0.00000000,,0.14285714,86.00000000,3.80530973,0.02325581,0.00000000,5.51000000 +9037,chr22,38996803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.49000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.06000000 +9038,chr22,38997429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.59000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.27000000 +9039,chr22,38998416,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.99000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.86000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.00000000 +9040,chr22,38999381,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.06000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.04878049,0.00000000,6.45000000 +9041,chr22,39008817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.84000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.16000000 +9042,chr22,39009801,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,91.00000000,0.00000000,1.35000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00990099,0.00000000,6.25000000 +9043,chr22,39010932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,-2.13000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.71000000 +9044,chr22,39011824,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.02000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.70000000 +9045,chr22,39012316,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,-0.33000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.80000000 +9046,chr22,39012935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,1.24000000,0.00000000,,0.25316456,82.00000000,3.62831858,0.03658537,0.00000000,5.73000000 +9047,chr22,39013373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.27000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +9048,chr22,39018235,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.54000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.61000000 +9049,chr22,39018929,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,0.00000000,-1.63000000,0.00000000,,0.22549020,113.00000000,5.00000000,0.08849558,0.00000000,5.88000000 +9050,chr22,39036151,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.41000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.99000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.24000000 +9051,chr22,39050368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,45.99000000,36.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.11764706,53.00000000,2.34513274,0.03773585,0.00000000,5.07000000 +9052,chr22,39082393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.01000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.02000000 +9053,chr22,39085972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.27000000 +9054,chr22,39088005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.17000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.47000000 +9055,chr22,39092388,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.37000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +9056,chr22,39094305,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,1.43000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,5.85000000 +9057,chr22,39094749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.55000000,0.00000000,,0.19298246,61.00000000,2.69911504,0.06557377,0.00000000,5.55000000 +9058,chr22,39094916,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,0.43000000,0.00000000,,0.10843373,86.00000000,3.80530973,0.02325581,0.00000000,4.62000000 +9059,chr22,39095056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,1.55000000,0.00000000,,0.09523810,86.00000000,3.80530973,0.02325581,0.00000000,4.61000000 +9060,chr22,39095128,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-2.27000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +9061,chr22,39096128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.18627451,103.00000000,4.55752212,0.00000000,0.00000000,7.09000000 +9062,chr22,39096565,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,2.51000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.01030928,0.00000000,5.56000000 +9063,chr22,39096882,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.09000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.20000000 +9064,chr22,39096894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.70000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.40000000 +9065,chr22,39096929,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.65000000 +9066,chr22,39096959,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.02000000,0.00000000,,0.15714286,75.00000000,3.31858407,0.06666667,0.00000000,5.37000000 +9067,chr22,39097031,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,5.12000000 +9068,chr22,39097246,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,1.26000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.00000000,0.00000000,6.20000000 +9069,chr22,39097289,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.84000000,0.00000000,,0.11428571,71.00000000,3.14159292,0.00000000,0.01388889,5.24000000 +9070,chr22,39097351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.88000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.92000000 +9071,chr22,39097536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.03000000 +9072,chr22,39097550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,0.77000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.02409639,0.00000000,4.75000000 +9073,chr22,39097592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.32000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,6.14000000 +9074,chr22,39097893,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.89000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.84000000 +9075,chr22,39098876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.09000000,0.00000000,,0.19417476,105.00000000,4.64601770,0.01904762,0.00000000,6.31000000 +9076,chr22,39099496,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.48000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.03370787,0.00000000,5.30000000 +9077,chr22,39099558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,5.57000000 +9078,chr22,39100658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,-1.18000000,0.00000000,,0.24444444,92.00000000,4.07079646,0.02173913,0.00000000,5.81000000 +9079,chr22,39100739,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.19000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +9080,chr22,39100897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,-0.16000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,5.98000000 +9081,chr22,39110197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-0.87000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.28000000 +9082,chr22,39111474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,1.38000000,0.00000000,,0.24731183,93.00000000,4.11504425,0.00000000,0.00000000,6.45000000 +9083,chr22,39111915,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.47000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.30000000 +9084,chr22,39123406,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.86000000 +9085,chr22,39131785,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,90.00000000,0.00000000,0.82000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,5.96000000 +9086,chr22,39131792,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,88.00000000,0.00000000,-0.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.52000000 +9087,chr22,39131809,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,-1.06000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +9088,chr22,39131904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.54000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.72000000 +9089,chr22,39132435,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.94000000 +9090,chr22,39133424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +9091,chr22,39134127,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.87000000 +9092,chr22,39134854,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.17073171,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.19117647,88.00000000,3.89380531,0.21590909,0.00000000,5.48000000 +9093,chr22,39135727,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,0.49000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.11000000 +9094,chr22,39136415,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.95000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,5.74000000 +9095,chr22,39136513,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +9096,chr22,39139590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.17857143,64.00000000,2.83185841,0.12500000,0.00000000,5.50000000 +9097,chr22,39141867,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-0.20000000,0.00000000,,0.16129032,99.00000000,4.38053097,0.05050505,0.00000000,5.58000000 +9098,chr22,39142480,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.44000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,6.66000000 +9099,chr22,39143368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,92.00000000,0.00000000,-1.23000000,0.00000000,,0.20000000,116.00000000,5.13274336,0.00862069,0.00000000,5.31000000 +9100,chr22,39144522,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,59.00000000,0.00000000,-0.21000000,0.00000000,,0.12244898,100.00000000,4.42477876,0.00000000,0.00000000,3.51000000 +9101,chr22,39145009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,0.73000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.03370787,0.00000000,6.04000000 +9102,chr22,39146287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9103,chr22,39146387,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.92000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +9104,chr22,39148965,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,91.00000000,0.00000000,1.16000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,5.03000000 +9105,chr22,39149391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,-0.02000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.25000000 +9106,chr22,39150069,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,1.82000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +9107,chr22,39150140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.71000000,0.00000000,,0.16000000,100.00000000,4.42477876,0.00000000,0.00000000,5.14000000 +9108,chr22,39151016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,4.90000000 +9109,chr22,39151196,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.15306122,103.00000000,4.55752212,0.04854369,0.00000000,4.78000000 +9110,chr22,39151682,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-0.41000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.35000000 +9111,chr22,39151957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.49000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +9112,chr22,39152022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.22222222,68.00000000,3.00884956,0.04411765,0.00000000,6.29000000 +9113,chr22,39153421,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +9114,chr22,39153521,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-0.61000000,0.00000000,,0.30927835,102.00000000,4.51327434,0.04901961,0.00000000,6.60000000 +9115,chr22,39155793,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.50000000 +9116,chr22,39156070,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.25000000 +9117,chr22,39156592,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.92000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,2.84000000 +9118,chr22,39156883,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +9119,chr22,39157767,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.30000000 +9120,chr22,39157814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.45000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +9121,chr22,39161157,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.39000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.26000000 +9122,chr22,39161335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.15625000,99.00000000,4.38053097,0.02020202,0.00000000,5.46000000 +9123,chr22,39161591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.00000000,0.00000000,6.39000000 +9124,chr22,39161607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.79000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +9125,chr22,39161725,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,2.12000000,0.00000000,,0.15238095,105.00000000,4.64601770,0.00000000,0.00000000,5.04000000 +9126,chr22,39163737,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-1.03000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,6.48000000 +9127,chr22,39174623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,5.70000000 +9128,chr22,39181280,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-1.93000000,0.00000000,,0.12621359,105.00000000,4.64601770,0.00952381,0.00000000,6.13000000 +9129,chr22,39186306,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,5.75000000 +9130,chr22,39186504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.90000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +9131,chr22,39190978,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.12500000,89.00000000,3.93805310,0.00000000,0.00000000,5.40000000 +9132,chr22,39193925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.65000000 +9133,chr22,39194095,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.32352941,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.28888889,74.00000000,3.27433628,0.39189189,0.00000000,5.53000000 +9134,chr22,39194312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.06000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.41000000 +9135,chr22,39194325,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.87000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +9136,chr22,39194380,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.79000000,0.00000000,,0.23404255,94.00000000,4.15929204,0.00000000,0.00000000,6.70000000 +9137,chr22,39194526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.29000000,0.00000000,,0.12676056,74.00000000,3.27433628,0.04054054,0.00000000,5.34000000 +9138,chr22,39194616,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +9139,chr22,39194648,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.15000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.59000000 +9140,chr22,39194749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,91.00000000,0.00000000,-1.13000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.55000000 +9141,chr22,39194881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.79000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.89000000 +9142,chr22,39195236,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9143,chr22,39195397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.61000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.77000000 +9144,chr22,39195993,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.08108108,82.00000000,3.62831858,0.09756098,0.00000000,3.80000000 +9145,chr22,39196064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.75000000 +9146,chr22,39196104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.83000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.02247191,0.00000000,5.65000000 +9147,chr22,39196126,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.88000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +9148,chr22,39196176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,6.01000000 +9149,chr22,39196249,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9150,chr22,39196276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.62000000 +9151,chr22,39196299,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.80000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +9152,chr22,39196827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.71000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.22000000 +9153,chr22,39196875,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.93000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +9154,chr22,39196876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.85000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +9155,chr22,39197090,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,6.32000000 +9156,chr22,39197470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,-1.76000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.45000000 +9157,chr22,39198735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.49000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +9158,chr22,39199013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,1.21000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,6.10000000 +9159,chr22,39199057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9160,chr22,39199147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.00000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.01298701,0.00000000,6.40000000 +9161,chr22,39199155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.32000000 +9162,chr22,39199208,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.58000000,0.00000000,,0.14814815,85.00000000,3.76106195,0.04705882,0.00000000,5.32000000 +9163,chr22,39199863,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,81.00000000,0.00000000,0.31000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.19000000 +9164,chr22,39200021,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.73000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,7.18000000 +9165,chr22,39200344,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.06000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,6.27000000 +9166,chr22,39200629,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.29000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.97000000 +9167,chr22,39200699,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,1.08000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +9168,chr22,39200716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,1.32000000,0.00000000,,0.30000000,71.00000000,3.14159292,0.00000000,0.00000000,6.50000000 +9169,chr22,39201333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.29000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.61000000 +9170,chr22,39201376,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,1.69000000,0.00000000,,0.10638298,47.00000000,2.07964602,0.00000000,0.00000000,4.75000000 +9171,chr22,39201460,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.91000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.51000000 +9172,chr22,39201483,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-1.08000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.01408451,0.00000000,5.74000000 +9173,chr22,39203740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,82.00000000,0.00000000,-1.51000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.02469136,0.00000000,5.48000000 +9174,chr22,39203939,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,0.56000000,0.00000000,,0.20430108,101.00000000,4.46902655,0.06930693,0.00000000,6.29000000 +9175,chr22,39204104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.54000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,5.72000000 +9176,chr22,39225591,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,0.65000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.12000000 +9177,chr22,39247092,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.68000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.00000000,0.00000000,6.58000000 +9178,chr22,39248517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.69000000 +9179,chr22,39249542,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,77.00000000,0.00000000,1.73000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.64000000 +9180,chr22,39258137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +9181,chr22,39260999,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.04000000,0.00000000,,0.29213483,90.00000000,3.98230088,0.01111111,0.00000000,7.04000000 +9182,chr22,39262953,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.93000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.01010101,0.00000000,5.16000000 +9183,chr22,39263455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-0.19000000,0.00000000,,0.20952381,105.00000000,4.64601770,0.00000000,0.00000000,6.17000000 +9184,chr22,39265592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,1.60000000,0.00000000,,0.13333333,106.00000000,4.69026549,0.00943396,0.00000000,5.49000000 +9185,chr22,39267571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.31000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.30000000 +9186,chr22,39268387,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.15000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.49000000 +9187,chr22,39269518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-1.19000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.33000000 +9188,chr22,39269989,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.35294118,68.00000000,3.00884956,0.00000000,0.00000000,8.55000000 +9189,chr22,39270635,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.94000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +9190,chr22,39271485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.76000000,0.00000000,,0.18750000,100.00000000,4.42477876,0.04000000,0.00000000,6.48000000 +9191,chr22,39272253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.21000000 +9192,chr22,39276024,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,1.34000000,0.00000000,,0.36764706,68.00000000,3.00884956,0.00000000,0.00000000,8.31000000 +9193,chr22,39281833,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.26000000,0.00000000,,0.45744681,95.00000000,4.20353982,0.01052632,0.00000000,8.23000000 +9194,chr22,39285431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.84000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.98000000 +9195,chr22,39287439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.27000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.41000000 +9196,chr22,39288022,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.61000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,4.71000000 +9197,chr22,39288872,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.30434783,74.00000000,3.27433628,0.06756757,0.00000000,6.04000000 +9198,chr22,39289072,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.68000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.89000000 +9199,chr22,39289445,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,86.00000000,0.00000000,-0.57000000,0.00000000,,0.24137931,91.00000000,4.02654867,0.02197802,0.00000000,5.87000000 +9200,chr22,39289924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.02222222,0.00000000,5.71000000 +9201,chr22,39290801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.91000000,0.00000000,,0.24444444,95.00000000,4.20353982,0.04210526,0.00000000,6.19000000 +9202,chr22,39293098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.80000000 +9203,chr22,39294016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.53000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +9204,chr22,39294146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,84.00000000,0.00000000,-0.65000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.02197802,0.00000000,6.25000000 +9205,chr22,39294690,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-1.18000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,7.01000000 +9206,chr22,39295216,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.12000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,4.73000000 +9207,chr22,39295831,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,1.12000000,0.00000000,,0.13698630,73.00000000,3.23008850,0.00000000,0.00000000,5.41000000 +9208,chr22,39296402,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,0.48000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,5.93000000 +9209,chr22,39296870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.24096386,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +9210,chr22,39297403,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.76000000,0.00000000,,0.33750000,81.00000000,3.58407080,0.01234568,0.00000000,8.16000000 +9211,chr22,39298220,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.24000000,0.00000000,,0.25490196,104.00000000,4.60176991,0.01923077,0.00000000,6.35000000 +9212,chr22,39298589,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.42000000,0.00000000,,0.17582418,95.00000000,4.20353982,0.04210526,0.00000000,6.16000000 +9213,chr22,39298934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.11363636,0.00000000,5.14000000 +9214,chr22,39299176,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.38000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9215,chr22,39299500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.92000000,0.00000000,,0.26027397,76.00000000,3.36283186,0.02631579,0.00000000,6.40000000 +9216,chr22,39300919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,2.40000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.34000000 +9217,chr22,39300987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.44000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +9218,chr22,39301336,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.01000000,0.00000000,,0.28260870,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +9219,chr22,39302005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,1.49000000,0.00000000,,0.15730337,94.00000000,4.15929204,0.05319149,0.00000000,5.34000000 +9220,chr22,39302319,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +9221,chr22,39302453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.70000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +9222,chr22,39303783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.55000000,0.00000000,,0.11494253,87.00000000,3.84955752,0.00000000,0.00000000,4.02000000 +9223,chr22,39305004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.71000000,0.00000000,,0.15151515,73.00000000,3.23008850,0.09589041,0.00000000,5.51000000 +9224,chr22,39307878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.72000000,0.00000000,,0.27777778,77.00000000,3.40707965,0.03896104,0.00000000,5.87000000 +9225,chr22,39308159,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,-0.65000000,0.00000000,,0.28301887,55.00000000,2.43362832,0.03636364,0.00000000,4.92000000 +9226,chr22,39309099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-1.17000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.21000000 +9227,chr22,39310355,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.03488372,0.00000000,4.96000000 +9228,chr22,39312274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,1.26000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.61000000 +9229,chr22,39312328,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,84.00000000,0.00000000,-0.49000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.00000000,0.00000000,6.61000000 +9230,chr22,39312520,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.01075269,0.00000000,6.89000000 +9231,chr22,39313600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.01250000,0.00000000,5.34000000 +9232,chr22,39313743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,-0.91000000,0.00000000,,0.21250000,84.00000000,3.71681416,0.04761905,0.00000000,5.76000000 +9233,chr22,39313771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +9234,chr22,39314239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,89.00000000,0.00000000,1.22000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.03296703,0.00000000,5.73000000 +9235,chr22,39314385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.76000000 +9236,chr22,39316006,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.40000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9237,chr22,39316329,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.19000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,5.65000000 +9238,chr22,39316363,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.08000000,0.00000000,,0.47674419,86.00000000,3.80530973,0.00000000,0.00000000,8.48000000 +9239,chr22,39318485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-2.04000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,6.94000000 +9240,chr22,39319135,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,-1.16000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.03333333,0.00000000,5.60000000 +9241,chr22,39319214,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.26136364,90.00000000,3.98230088,0.02222222,0.00000000,6.02000000 +9242,chr22,39320336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.35000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.59000000 +9243,chr22,39322115,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-1.50000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.07142857,0.00000000,5.57000000 +9244,chr22,39322411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.48000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +9245,chr22,39326472,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.85000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.00000000,0.00000000,7.15000000 +9246,chr22,39332134,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,5.73000000 +9247,chr22,39333405,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.19512195,88.00000000,3.89380531,0.05681818,0.00000000,6.34000000 +9248,chr22,39333614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.11000000,0.00000000,,0.26000000,51.00000000,2.25663717,0.00000000,0.00000000,6.75000000 +9249,chr22,39334027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.31147541,75.00000000,3.31858407,0.18666667,0.00000000,6.03000000 +9250,chr22,39334125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.84000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.10000000 +9251,chr22,39335380,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.59000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.95000000 +9252,chr22,39335682,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,86.00000000,0.00000000,-0.80000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.04705882,0.00000000,6.21000000 +9253,chr22,39336244,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,1.17000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.00000000,0.00000000,6.43000000 +9254,chr22,39336408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +9255,chr22,39336660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,0.05000000,0.00000000,,0.12643678,91.00000000,4.02654867,0.03296703,0.00000000,5.36000000 +9256,chr22,39336771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,-1.66000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.11000000 +9257,chr22,39337237,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-2.10000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.89000000 +9258,chr22,39337482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.47000000,0.00000000,,0.27472527,99.00000000,4.38053097,0.08080808,0.00000000,5.87000000 +9259,chr22,39337650,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.52000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.14117647,0.00000000,6.31000000 +9260,chr22,39341085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.76000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.45000000 +9261,chr22,39341089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.68000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +9262,chr22,39341664,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.77000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,4.49000000 +9263,chr22,39342720,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,8.72000000 +9264,chr22,39343623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.14000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,6.43000000 +9265,chr22,39344073,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.38000000 +9266,chr22,39345086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.38000000 +9267,chr22,39345930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.98000000 +9268,chr22,39346383,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.07000000 +9269,chr22,39346401,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-1.01000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.66000000 +9270,chr22,39349634,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,101.00000000,0.00000000,-0.08000000,0.00000000,,0.36904762,85.00000000,3.76106195,0.01176471,0.00000000,8.99000000 +9271,chr22,39349693,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.65000000,0.00000000,,0.34666667,77.00000000,3.40707965,0.01298701,0.00000000,8.35000000 +9272,chr22,39350419,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,57.00000000,0.00000000,-0.37000000,0.00000000,,0.39534884,92.00000000,4.07079646,0.05434783,0.00000000,4.76000000 +9273,chr22,39350798,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-2.32000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.01612903,0.00000000,8.67000000 +9274,chr22,39350816,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,-1.13000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.02702703,0.00000000,5.82000000 +9275,chr22,39351082,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.80000000 +9276,chr22,39351413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,86.00000000,0.00000000,1.41000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.00000000,0.00000000,5.64000000 +9277,chr22,39351414,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,88.00000000,0.00000000,1.49000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,5.64000000 +9278,chr22,39353979,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.12000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +9279,chr22,39354452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.32000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.89000000 +9280,chr22,39355706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.24000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.79000000 +9281,chr22,39356098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-2.21000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,7.00000000 +9282,chr22,39356522,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.58000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.03703704,0.00000000,5.75000000 +9283,chr22,39356986,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.13000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.41000000 +9284,chr22,39356998,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.75000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +9285,chr22,39357261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.20512821,82.00000000,3.62831858,0.04878049,0.00000000,5.66000000 +9286,chr22,39359523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.93000000,0.00000000,,0.19718310,79.00000000,3.49557522,0.10126582,0.00000000,5.89000000 +9287,chr22,39361651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.11000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,5.77000000 +9288,chr22,39373090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.38000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.13000000 +9289,chr22,39375915,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.54000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +9290,chr22,39384956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,-1.04000000,0.00000000,,0.30263158,78.00000000,3.45132743,0.02564103,0.00000000,6.41000000 +9291,chr22,39396315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,1.93000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.93000000 +9292,chr22,39397149,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,100.00000000,0.00000000,-0.44000000,0.00000000,,0.27906977,90.00000000,3.98230088,0.03333333,0.00000000,4.98000000 +9293,chr22,39402122,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.21000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.41000000 +9294,chr22,39405441,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,-0.53000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,5.96000000 +9295,chr22,39405743,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-1.16000000,1.34000000,,0.21333333,76.00000000,3.36283186,0.01315789,0.00000000,4.54000000 +9296,chr22,39406490,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,60.00000000,0.00000000,0.70000000,0.00000000,,0.13541667,101.00000000,4.46902655,0.03960396,0.00000000,4.66000000 +9297,chr22,39410126,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.03000000,0.00000000,,0.25510204,100.00000000,4.42477876,0.02000000,0.00000000,5.74000000 +9298,chr22,39410148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.19801980,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +9299,chr22,39432720,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.19000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.01162791,0.00000000,5.95000000 +9300,chr22,39449326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,80.00000000,0.00000000,0.81000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.77000000 +9301,chr22,39458566,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,1.35000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.45000000 +9302,chr22,39471656,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.16417910,72.00000000,3.18584071,0.05555556,0.00000000,5.61000000 +9303,chr22,39476068,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.14634146,85.00000000,3.76106195,0.03529412,0.00000000,4.97000000 +9304,chr22,39512414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,-1.95000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.51000000 +9305,chr22,39557325,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.08000000 +9306,chr22,39577981,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.86000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,5.94000000 +9307,chr22,39580123,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.29000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,8.56000000 +9308,chr22,39580128,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,6.04000000 +9309,chr22,39586716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.14925373,69.00000000,3.05309735,0.02898551,0.00000000,5.42000000 +9310,chr22,39592170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.14000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.00000000,0.00000000,6.63000000 +9311,chr22,39594770,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,1.06000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.03529412,0.00000000,5.68000000 +9312,chr22,39595065,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.44000000 +9313,chr22,39595491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.04000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.01724138,0.00000000,5.95000000 +9314,chr22,39596655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,39.00000000,0.00000000,-0.39000000,0.00000000,,0.06557377,63.00000000,2.78761062,0.03174603,0.00000000,2.89000000 +9315,chr22,39597664,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,70.00000000,0.00000000,1.64000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.02631579,0.00000000,4.99000000 +9316,chr22,39600259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.02127660,0.00000000,5.80000000 +9317,chr22,39600877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.26829268,84.00000000,3.71681416,0.01190476,0.00000000,6.59000000 +9318,chr22,39601165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +9319,chr22,39601625,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.77000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.03076923,0.00000000,4.84000000 +9320,chr22,39603008,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.27000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.36000000 +9321,chr22,39604308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,3.13000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.64000000 +9322,chr22,39604437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,1.38000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +9323,chr22,39606565,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-1.35000000,4.37000000,,0.11267606,71.00000000,3.14159292,0.00000000,0.00000000,4.46000000 +9324,chr22,39607262,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.52000000,0.00000000,,0.28750000,81.00000000,3.58407080,0.01234568,0.00000000,6.73000000 +9325,chr22,39607304,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.29000000,0.00000000,,0.26966292,89.00000000,3.93805310,0.00000000,0.00000000,7.01000000 +9326,chr22,39609420,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.36000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.00000000,5.85000000 +9327,chr22,39610621,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.53000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +9328,chr22,39613575,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.26000000,0.00000000,,0.21904762,108.00000000,4.77876106,0.02777778,0.00000000,6.27000000 +9329,chr22,39614378,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,1.29000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.30000000 +9330,chr22,39614516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.87000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,5.81000000 +9331,chr22,39614677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.41000000 +9332,chr22,39614801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.03260870,0.00000000,4.83000000 +9333,chr22,39616279,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.19000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.12000000 +9334,chr22,39618061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-1.49000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.27000000 +9335,chr22,39619054,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.78000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.92000000 +9336,chr22,39630029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,1.72000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.73000000 +9337,chr22,39634093,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,-0.49000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +9338,chr22,39667356,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.18000000,0.00000000,,0.34939759,84.00000000,3.71681416,0.01190476,0.00000000,8.41000000 +9339,chr22,39670112,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.02000000,0.00000000,,0.20967742,65.00000000,2.87610619,0.04615385,0.00000000,6.29000000 +9340,chr22,39679943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.83000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +9341,chr22,39696558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.89000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.09000000 +9342,chr22,39725928,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.60000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.02409639,0.00000000,5.75000000 +9343,chr22,39737248,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.24000000 +9344,chr22,39740243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.42000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.01190476,0.00000000,6.87000000 +9345,chr22,39762200,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.58000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +9346,chr22,39771383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.01562500,0.00000000,5.78000000 +9347,chr22,39783534,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,72.00000000,0.00000000,0.06000000,0.00000000,,0.30434783,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +9348,chr22,39796227,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.19000000 +9349,chr22,39833589,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.30120482,84.00000000,3.71681416,0.00000000,0.00000000,7.52000000 +9350,chr22,39860481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.40000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.76000000 +9351,chr22,39861430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.51000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9352,chr22,39882389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.29000000,0.00000000,,0.29113924,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +9353,chr22,39883526,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,83.00000000,0.00000000,-1.33000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.00000000,0.00000000,6.83000000 +9354,chr22,39885691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.01000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.68000000 +9355,chr22,39887423,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,85.00000000,0.00000000,-0.62000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.25000000 +9356,chr22,39891930,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.00000000,0.00000000,6.72000000 +9357,chr22,39892381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.93000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.52000000 +9358,chr22,39900374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,3.22000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,6.14000000 +9359,chr22,39903154,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.20175439,115.00000000,5.08849558,0.00000000,0.00000000,5.90000000 +9360,chr22,39911890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +9361,chr22,39912914,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.34000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.18000000 +9362,chr22,39913326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,97.00000000,0.00000000,0.28000000,0.00000000,,0.26136364,90.00000000,3.98230088,0.02222222,0.00000000,5.69000000 +9363,chr22,39913386,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.92000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,5.98000000 +9364,chr22,39915875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,0.11000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.10000000 +9365,chr22,39917212,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.51000000,0.00000000,,0.23762376,101.00000000,4.46902655,0.00000000,0.00000000,6.68000000 +9366,chr22,39918231,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,74.00000000,0.00000000,-2.14000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,6.14000000 +9367,chr22,39919099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-1.31000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.90000000 +9368,chr22,39921122,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,88.00000000,0.00000000,1.13000000,0.00000000,,0.27142857,71.00000000,3.14159292,0.01408451,0.00000000,6.03000000 +9369,chr22,39927061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,87.00000000,0.00000000,-1.46000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +9370,chr22,39929157,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.25000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,6.17000000 +9371,chr22,39931202,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,2.16000000,0.00000000,,0.21100917,110.00000000,4.86725664,0.00909091,0.00000000,5.78000000 +9372,chr22,39931448,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.40000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9373,chr22,39932987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,6.03000000 +9374,chr22,39940817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.93000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.73000000 +9375,chr22,39940841,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-1.40000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.14000000 +9376,chr22,39944771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00961538,0.00000000,6.16000000 +9377,chr22,39952026,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,94.00000000,0.00000000,-0.55000000,0.00000000,,0.31506849,76.00000000,3.36283186,0.03947368,0.00000000,6.79000000 +9378,chr22,39955588,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.02000000,0.00000000,,0.15957447,97.00000000,4.29203540,0.03092784,0.00000000,5.77000000 +9379,chr22,39977293,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.60000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.13000000 +9380,chr22,39984652,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.19000000 +9381,chr22,39986245,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.68000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.97000000 +9382,chr22,39989126,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.16279070,91.00000000,4.02654867,0.04395604,0.00000000,5.85000000 +9383,chr22,39993003,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.32000000 +9384,chr22,39994234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,-0.02000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.08163265,0.00000000,5.88000000 +9385,chr22,40000990,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.52000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +9386,chr22,40025773,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.23000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,4.48000000 +9387,chr22,40036940,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.83000000 +9388,chr22,40060010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.09000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.99000000 +9389,chr22,40079685,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.21212121,70.00000000,3.09734513,0.05714286,0.00000000,5.66000000 +9390,chr22,40152453,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,7.87000000 +9391,chr22,40166812,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,-0.52000000,0.00000000,,0.27848101,84.00000000,3.71681416,0.04761905,0.00000000,5.96000000 +9392,chr22,40250719,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.89000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +9393,chr22,40285183,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,5.72000000 +9394,chr22,40363518,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.42000000 +9395,chr22,40385488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.82000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.54000000 +9396,chr22,40395010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,93.00000000,0.00000000,-0.30000000,0.00000000,,0.26262626,102.00000000,4.51327434,0.01960784,0.00000000,5.65000000 +9397,chr22,40418632,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.29000000,0.00000000,,0.26984127,65.00000000,2.87610619,0.03076923,0.00000000,6.24000000 +9398,chr22,40422162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,2.01000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,4.91000000 +9399,chr22,40447981,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.43000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +9400,chr22,40449344,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,6.24000000 +9401,chr22,40488865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.36000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,5.96000000 +9402,chr22,40523443,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.84000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +9403,chr22,40525463,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-1.00000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +9404,chr22,40531131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.53000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.96000000 +9405,chr22,40534208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,5.94000000 +9406,chr22,40539289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-1.83000000,0.00000000,,0.12643678,89.00000000,3.93805310,0.02247191,0.00000000,5.11000000 +9407,chr22,40541721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,72.00000000,0.00000000,0.80000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.42000000 +9408,chr22,40541988,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,1.74000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,5.75000000 +9409,chr22,40543702,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.61000000,0.00000000,,0.13402062,98.00000000,4.33628319,0.01020408,0.00000000,5.71000000 +9410,chr22,40549066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.75000000,0.00000000,,0.31746032,63.00000000,2.78761062,0.00000000,0.00000000,7.75000000 +9411,chr22,40551454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.60000000 +9412,chr22,40552657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.11000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.82000000 +9413,chr22,40555246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.80000000,0.00000000,,0.18367347,100.00000000,4.42477876,0.02000000,0.00000000,5.74000000 +9414,chr22,40568008,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.56000000 +9415,chr22,40569767,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.36000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,80.00000000,0.00000000,0.45000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.67000000 +9416,chr22,40625606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,55.00000000,2.43362832,0.01818182,0.00000000,6.39000000 +9417,chr22,40752484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.44000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.02739726,0.00000000,5.82000000 +9418,chr22,40786979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.41000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +9419,chr22,40819668,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,0.33000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.37000000 +9420,chr22,40837385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,-0.75000000,0.00000000,,0.23300971,104.00000000,4.60176991,0.00961538,0.00000000,6.56000000 +9421,chr22,40837827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +9422,chr22,40847168,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,95.00000000,0.00000000,-1.83000000,0.00000000,,0.25510204,99.00000000,4.38053097,0.01010101,0.00000000,5.34000000 +9423,chr22,40868537,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.26000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.45000000 +9424,chr22,40870526,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,2.14000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.53000000 +9425,chr22,40877828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.48000000 +9426,chr22,40967230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.05000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.02325581,0.00000000,5.80000000 +9427,chr22,41032973,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.01694915,0.00000000,5.90000000 +9428,chr22,41073312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,0.52000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.00000000,0.00000000,6.40000000 +9429,chr22,41081186,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.00000000,0.00000000,7.14000000 +9430,chr22,41130158,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.13000000,0.00000000,,0.30000000,75.00000000,3.31858407,0.06666667,0.00000000,6.56000000 +9431,chr22,41171160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.20000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,5.98000000 +9432,chr22,41173882,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.01000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,7.03000000 +9433,chr22,41176537,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.32000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +9434,chr22,41224821,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.30000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.85000000 +9435,chr22,41230371,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,0.75000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.01612903,0.00000000,5.66000000 +9436,chr22,41235476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.13000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.24000000 +9437,chr22,41247728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.21000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.69000000 +9438,chr22,41254844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.11000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.40000000 +9439,chr22,41314177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.57000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,85.00000000,0.00000000,0.20000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.55000000 +9440,chr22,41337258,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.09000000 +9441,chr22,41382613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.22950820,62.00000000,2.74336283,0.01612903,0.00000000,6.38000000 +9442,chr22,41421582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.78000000,0.00000000,,0.20312500,64.00000000,2.83185841,0.00000000,0.00000000,6.67000000 +9443,chr22,41475744,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.12000000,0.00000000,,0.19607843,53.00000000,2.34513274,0.03773585,0.00000000,3.02000000 +9444,chr22,41489835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.22000000 +9445,chr22,41500300,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,5.79000000 +9446,chr22,41539059,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.84000000 +9447,chr22,41540280,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +9448,chr22,41561606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.26595745,98.00000000,4.33628319,0.04081633,0.00000000,5.85000000 +9449,chr22,41562491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.19277108,94.00000000,4.15929204,0.11702128,0.00000000,5.52000000 +9450,chr22,41562858,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.68000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,5.65000000 +9451,chr22,41565130,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.62000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,6.32000000 +9452,chr22,41565185,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,5.71000000 +9453,chr22,41565827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.47000000 +9454,chr22,41565912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.40000000 +9455,chr22,41566288,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.51000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.67000000 +9456,chr22,41567549,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.16000000,0.00000000,,0.24742268,99.00000000,4.38053097,0.02020202,0.00000000,6.31000000 +9457,chr22,41568164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.21000000,8.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.21000000,0.00000000,,0.19047619,58.00000000,2.56637168,0.27586207,0.00000000,3.10000000 +9458,chr22,41568353,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.00000000,0.00000000,5.48000000 +9459,chr22,41568357,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,5.48000000 +9460,chr22,41569233,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,5.92000000 +9461,chr22,41569288,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.18292683,86.00000000,3.80530973,0.03488372,0.00000000,5.59000000 +9462,chr22,41569296,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.76000000 +9463,chr22,41570669,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.33000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,5.65000000 +9464,chr22,41571866,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.50000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +9465,chr22,41576028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,86.00000000,0.00000000,-0.57000000,0.00000000,,0.21568627,104.00000000,4.60176991,0.01923077,0.00000000,5.82000000 +9466,chr22,41580935,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.07000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +9467,chr22,41583664,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.54000000 +9468,chr22,41584888,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +9469,chr22,41585953,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-1.61000000,0.00000000,,0.31182796,94.00000000,4.15929204,0.01063830,0.00000000,7.23000000 +9470,chr22,41586471,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.01388889,0.00000000,6.31000000 +9471,chr22,41589952,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,1.40000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.03030303,0.00000000,5.81000000 +9472,chr22,41589954,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,1.78000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.02985075,0.00000000,5.83000000 +9473,chr22,41590710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,-1.66000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.04938272,0.00000000,5.95000000 +9474,chr22,41591539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,62.00000000,0.00000000,-2.16000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.00000000,0.00000000,6.06000000 +9475,chr22,41591623,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,60.00000000,2.65486726,0.00000000,0.00000000,6.64000000 +9476,chr22,41591933,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,85.00000000,0.00000000,-0.29000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.44000000 +9477,chr22,41597175,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-2.33000000,0.00000000,,0.08450704,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +9478,chr22,41597492,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.13978495,93.00000000,4.11504425,0.00000000,0.00000000,5.29000000 +9479,chr22,41599331,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.30000000,0.00000000,,0.26881720,93.00000000,4.11504425,0.00000000,0.00000000,5.92000000 +9480,chr22,41600127,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.20000000,44.00000000,1.94690265,0.06818182,0.00000000,6.56000000 +9481,chr22,41620522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.94000000 +9482,chr22,41623577,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.16000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,4.80000000 +9483,chr22,41641799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,2.39000000,0.00000000,,0.27058824,87.00000000,3.84955752,0.02298851,0.00000000,6.28000000 +9484,chr22,41642220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,1.34000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.07000000 +9485,chr22,41645306,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,1.18000000,0.00000000,,0.23529412,71.00000000,3.14159292,0.04225352,0.00000000,5.74000000 +9486,chr22,41672342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-0.30000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.02173913,0.00000000,4.62000000 +9487,chr22,41717161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.83000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.66000000 +9488,chr22,41718855,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.53000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.80000000 +9489,chr22,41724392,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.38000000,0.00000000,,0.21951220,85.00000000,3.76106195,0.03529412,0.00000000,6.44000000 +9490,chr22,41760830,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.69000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.33000000 +9491,chr22,41780913,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.07000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +9492,chr22,41781449,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +9493,chr22,41781895,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.86000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +9494,chr22,41782036,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.34920635,68.00000000,3.00884956,0.07352941,0.00000000,7.99000000 +9495,chr22,41782437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +9496,chr22,41786003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,59.00000000,0.00000000,-1.23000000,0.00000000,,0.11764706,66.00000000,2.92035398,0.21212121,0.00000000,3.91000000 +9497,chr22,41790834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.56000000 +9498,chr22,41791195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.36000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.71000000 +9499,chr22,41795632,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.47000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.28000000 +9500,chr22,41796718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.41000000 +9501,chr22,41797737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.56000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,5.98000000 +9502,chr22,41797909,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-1.67000000,0.00000000,,0.24096386,87.00000000,3.84955752,0.04597701,0.00000000,5.99000000 +9503,chr22,41798958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,70.00000000,0.00000000,0.03000000,0.00000000,,0.15730337,93.00000000,4.11504425,0.04301075,0.00000000,4.83000000 +9504,chr22,41799406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.21153846,105.00000000,4.64601770,0.00952381,0.00000000,5.99000000 +9505,chr22,41800680,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-1.59000000,0.00000000,,0.24752475,101.00000000,4.46902655,0.00000000,0.00000000,6.96000000 +9506,chr22,41802892,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.28089888,90.00000000,3.98230088,0.01111111,0.00000000,6.39000000 +9507,chr22,41803273,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,5.80000000 +9508,chr22,41804912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.83000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +9509,chr22,41806602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-2.16000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +9510,chr22,41806940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.39000000,0.00000000,,0.22807018,58.00000000,2.56637168,0.01724138,0.00000000,6.29000000 +9511,chr22,41808109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.05000000,0.00000000,71.00000000,0.00000000,1.02000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.66000000 +9512,chr22,41810080,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-1.59000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.45000000 +9513,chr22,41812668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.00000000 +9514,chr22,41813918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.12000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.79000000 +9515,chr22,41814981,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.68000000,0.00000000,,0.22580645,64.00000000,2.83185841,0.03125000,0.00000000,6.67000000 +9516,chr22,41815785,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.61000000 +9517,chr22,41816932,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.53000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +9518,chr22,41818234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,2.56000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.99000000 +9519,chr22,41818528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.13000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.01204819,0.00000000,6.52000000 +9520,chr22,41818781,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.43000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.64000000 +9521,chr22,41819680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.00000000,0.00000000,6.74000000 +9522,chr22,41820145,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.45000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.01515152,0.00000000,5.97000000 +9523,chr22,41820322,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,74.00000000,0.00000000,0.03000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,5.80000000 +9524,chr22,41822598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.90000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +9525,chr22,41822852,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,4.95000000 +9526,chr22,41823156,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.20430108,96.00000000,4.24778761,0.03125000,0.00000000,6.30000000 +9527,chr22,41823850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.12000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +9528,chr22,41824487,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,84.00000000,0.00000000,-0.50000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.00000000,0.00000000,6.40000000 +9529,chr22,41824715,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,6.00000000 +9530,chr22,41825646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,6.13000000 +9531,chr22,41825842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.19000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.10000000 +9532,chr22,41825947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.34000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.62000000 +9533,chr22,41828709,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.78000000 +9534,chr22,41830406,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.17045455,90.00000000,3.98230088,0.01111111,0.00000000,6.83000000 +9535,chr22,41830819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.96000000,0.00000000,,0.23000000,102.00000000,4.51327434,0.01960784,0.00000000,5.52000000 +9536,chr22,41831035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.16666667,98.00000000,4.33628319,0.02040816,0.00000000,5.36000000 +9537,chr22,41836573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.57000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.29000000 +9538,chr22,41837046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,-0.57000000,0.00000000,,0.28235294,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +9539,chr22,41837951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,-0.64000000,0.00000000,,0.20192308,109.00000000,4.82300885,0.04587156,0.00000000,5.90000000 +9540,chr22,41839811,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.35000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.72000000 +9541,chr22,41843823,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,91.00000000,0.00000000,-0.60000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.21000000 +9542,chr22,41848208,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.11000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.79000000 +9543,chr22,41850033,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,86.00000000,0.00000000,0.98000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.36000000 +9544,chr22,41851980,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.29629630,57.00000000,2.52212389,0.05263158,0.00000000,5.95000000 +9545,chr22,41856890,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +9546,chr22,41856956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.17857143,94.00000000,4.15929204,0.10638298,0.00000000,5.55000000 +9547,chr22,41862573,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.46000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.27000000 +9548,chr22,41864967,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.33000000 +9549,chr22,41868265,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,104.00000000,4.60176991,0.00000000,0.00000000,6.39000000 +9550,chr22,41872717,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.18309859,71.00000000,3.14159292,0.00000000,0.00000000,6.56000000 +9551,chr22,41874703,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.30000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +9552,chr22,41878283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.20000000,0.00000000,,0.20869565,116.00000000,5.13274336,0.00862069,0.00000000,6.41000000 +9553,chr22,41880738,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.67000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +9554,chr22,41881788,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,1.05000000,0.00000000,,0.21359223,105.00000000,4.64601770,0.00952381,0.00000000,5.98000000 +9555,chr22,41883502,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +9556,chr22,41888256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,94.00000000,0.00000000,0.18000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,5.69000000 +9557,chr22,41909516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.01000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.05000000 +9558,chr22,41930813,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.09000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,4.78000000 +9559,chr22,41933271,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.56000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,6.56000000 +9560,chr22,41949177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-2.32000000,0.00000000,,0.18292683,87.00000000,3.84955752,0.05747126,0.00000000,6.24000000 +9561,chr22,41950038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,5.87000000 +9562,chr22,41953130,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,87.00000000,0.00000000,-1.52000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.02631579,0.00000000,5.64000000 +9563,chr22,41953706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.23333333,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.26760563,81.00000000,3.58407080,0.11111111,0.00000000,5.64000000 +9564,chr22,41964829,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.25000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.02127660,0.00000000,5.43000000 +9565,chr22,41967404,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.51000000,0.00000000,,0.14473684,78.00000000,3.45132743,0.02564103,0.00000000,4.97000000 +9566,chr22,41968993,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.15000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.90000000 +9567,chr22,41972853,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.53000000 +9568,chr22,41974987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.21875000,104.00000000,4.60176991,0.07692308,0.00000000,5.78000000 +9569,chr22,41979757,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,93.00000000,0.00000000,-0.40000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,5.77000000 +9570,chr22,41983997,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.66000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.73000000 +9571,chr22,41986744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.41000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,6.65000000 +9572,chr22,41986793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +9573,chr22,41986801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.17910448,70.00000000,3.09734513,0.04285714,0.00000000,6.04000000 +9574,chr22,41989963,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.82000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.78000000 +9575,chr22,41993835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +9576,chr22,41994089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.33000000 +9577,chr22,41999238,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,41.00000000,1.81415929,0.00000000,0.00000000,66.00000000,0.00000000,-1.19000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,5.85000000 +9578,chr22,41999956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.50000000 +9579,chr22,42000146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,-0.68000000,0.00000000,,0.25882353,90.00000000,3.98230088,0.05555556,0.00000000,5.96000000 +9580,chr22,42000564,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.72000000 +9581,chr22,42001038,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.15000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.19000000,0.00000000,,0.17171717,103.00000000,4.55752212,0.02912621,0.00000000,5.53000000 +9582,chr22,42003321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.61000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.15000000 +9583,chr22,42003392,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,90.00000000,0.00000000,-1.62000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.26000000 +9584,chr22,42003682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,97.00000000,0.00000000,0.40000000,0.00000000,,0.28571429,100.00000000,4.42477876,0.02000000,0.00000000,5.58000000 +9585,chr22,42005745,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +9586,chr22,42005837,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.21000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.70000000 +9587,chr22,42006382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,0.01000000,0.00000000,,0.22352941,90.00000000,3.98230088,0.04444444,0.00000000,5.86000000 +9588,chr22,42006476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,1.01000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.89000000 +9589,chr22,42009318,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-1.71000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00000000,0.00000000,6.10000000 +9590,chr22,42009655,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.93000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.02222222,0.00000000,6.30000000 +9591,chr22,42009918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.44000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.63000000 +9592,chr22,42010367,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.01000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +9593,chr22,42010816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.41000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +9594,chr22,42010881,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,0.25000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.54000000 +9595,chr22,42011685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.17475728,103.00000000,4.55752212,0.00000000,0.00000000,6.25000000 +9596,chr22,42012075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.48000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.21000000 +9597,chr22,42013452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,81.00000000,0.00000000,1.14000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.58000000 +9598,chr22,42017974,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.79000000 +9599,chr22,42020052,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-2.21000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,6.55000000 +9600,chr22,42020299,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.57000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.83000000 +9601,chr22,42020983,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.01000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.03846154,57.00000000,0.00000000,1.68000000,0.00000000,,0.28888889,50.00000000,2.21238938,0.10000000,0.00000000,3.37000000 +9602,chr22,42021683,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.26506024,87.00000000,3.84955752,0.04597701,0.00000000,5.71000000 +9603,chr22,42027641,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,1.46000000,0.00000000,,0.22916667,97.00000000,4.29203540,0.00000000,0.00000000,6.43000000 +9604,chr22,42031945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.70000000,0.00000000,,0.16666667,102.00000000,4.51327434,0.00000000,0.00000000,5.53000000 +9605,chr22,42032723,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.56000000 +9606,chr22,42035242,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.94000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.27000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.15000000 +9607,chr22,42035425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +9608,chr22,42039864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.14000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.89000000 +9609,chr22,42046231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.01176471,0.00000000,5.11000000 +9610,chr22,42046535,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-2.29000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.67000000 +9611,chr22,42047904,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,0.44000000,0.00000000,,0.43750000,32.00000000,1.41592920,0.00000000,0.00000000,3.94000000 +9612,chr22,42051337,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.95000000 +9613,chr22,42058946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,5.86000000 +9614,chr22,42069784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.00000000,0.00000000,,0.21839080,90.00000000,3.98230088,0.03333333,0.00000000,5.82000000 +9615,chr22,42070901,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.91000000,0.00000000,,0.14423077,105.00000000,4.64601770,0.00952381,0.00000000,5.49000000 +9616,chr22,42077599,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,-1.39000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.01000000 +9617,chr22,42120416,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,1.87000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +9618,chr22,42141217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.85000000,37.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,-2.72000000,0.00000000,,0.26190476,44.00000000,1.94690265,0.04545455,0.00000000,2.86000000 +9619,chr22,42141231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,44.99000000,28.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,20.00000000,0.00000000,-1.55000000,0.00000000,,0.34285714,36.00000000,1.59292035,0.02777778,0.00000000,3.70000000 +9620,chr22,42141270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,53.36000000,15.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,24.00000000,0.00000000,1.91000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.07142857,0.00000000,3.83000000 +9621,chr22,42150313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.85000000 +9622,chr22,42170308,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.25806452,66.00000000,2.92035398,0.06060606,0.00000000,6.31000000 +9623,chr22,42174452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.66000000 +9624,chr22,42174589,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,1.02000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.03896104,0.00000000,5.05000000 +9625,chr22,42174891,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.75000000,5.01000000,,0.09523810,64.00000000,2.83185841,0.01562500,0.00000000,3.73000000 +9626,chr22,42175022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,-1.91000000,0.00000000,,0.13157895,45.00000000,1.99115044,0.13333333,0.00000000,2.85000000 +9627,chr22,42178824,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.45000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.01298701,0.00000000,6.60000000 +9628,chr22,42183514,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,1.00000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.30000000 +9629,chr22,42187865,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.43000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +9630,chr22,42196233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +9631,chr22,42200247,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.26000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +9632,chr22,42202945,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,-0.46000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.35000000 +9633,chr22,42204583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.34000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.70000000 +9634,chr22,42207808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.47000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.02150538,0.00000000,6.02000000 +9635,chr22,42217479,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.26000000,0.00000000,,0.16666667,75.00000000,3.31858407,0.04000000,0.00000000,5.40000000 +9636,chr22,42222334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.31000000 +9637,chr22,42225997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.22000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.99000000 +9638,chr22,42227712,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02000000,51.00000000,2.25663717,0.01960784,0.00000000,78.00000000,0.00000000,-0.51000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.12000000 +9639,chr22,42228439,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.65000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.38000000 +9640,chr22,42240681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-1.47000000,0.00000000,,0.16071429,56.00000000,2.47787611,0.00000000,0.00000000,6.19000000 +9641,chr22,42243639,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,6.57000000 +9642,chr22,42244600,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,66.00000000,0.00000000,0.18000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.19000000 +9643,chr22,42247033,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.17021277,0.00000000,73.00000000,0.00000000,-0.78000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,4.39000000 +9644,chr22,42252402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.45000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.18000000 +9645,chr22,42254657,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.67000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +9646,chr22,42256068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.26829268,86.00000000,3.80530973,0.04651163,0.00000000,6.30000000 +9647,chr22,42256311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.74000000 +9648,chr22,42256710,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.34000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,7.13000000 +9649,chr22,42261560,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,6.39000000 +9650,chr22,42266365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +9651,chr22,42268195,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +9652,chr22,42274959,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,1.20000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.66000000 +9653,chr22,42276118,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.48000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.28000000 +9654,chr22,42284794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.12000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.47000000 +9655,chr22,42287337,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,83.00000000,0.00000000,-1.71000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,5.29000000 +9656,chr22,42287991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.06250000,80.00000000,3.53982301,0.00000000,0.00000000,5.10000000 +9657,chr22,42293134,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.20000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.67000000 +9658,chr22,42293364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,86.00000000,0.00000000,0.43000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,5.69000000 +9659,chr22,42295290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.02409639,0.00000000,5.75000000 +9660,chr22,42299142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.30000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,6.31000000 +9661,chr22,42302596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.07000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +9662,chr22,42325368,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-2.01000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.00000000,0.00000000,7.43000000 +9663,chr22,42333590,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,88.00000000,0.00000000,0.46000000,0.00000000,,0.24509804,105.00000000,4.64601770,0.02857143,0.00000000,5.68000000 +9664,chr22,42340130,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.22000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +9665,chr22,42347019,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,78.00000000,0.00000000,1.16000000,0.00000000,,0.17391304,96.00000000,4.24778761,0.03125000,0.00000000,5.28000000 +9666,chr22,42349801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,42.00000000,0.00000000,-0.78000000,0.00000000,,0.33333333,34.00000000,1.50442478,0.02941176,0.00000000,4.23000000 +9667,chr22,42350170,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.28000000 +9668,chr22,42352455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-2.28000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.04225352,0.00000000,5.79000000 +9669,chr22,42357914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,0.69000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.01351351,0.00000000,5.91000000 +9670,chr22,42370103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.60000000 +9671,chr22,42383873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9672,chr22,42383874,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9673,chr22,42387064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9674,chr22,42387824,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.28000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +9675,chr22,42388938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.39000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.01587302,0.00000000,5.21000000 +9676,chr22,42389054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.08000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.40000000 +9677,chr22,42389115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-1.29000000,0.00000000,,0.12328767,74.00000000,3.27433628,0.01351351,0.00000000,5.21000000 +9678,chr22,42390538,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.20000000,0.00000000,,0.18571429,74.00000000,3.27433628,0.02702703,0.00000000,6.22000000 +9679,chr22,42391037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.59000000 +9680,chr22,42391095,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,1.67000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.44000000 +9681,chr22,42391272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.21666667,63.00000000,2.78761062,0.04761905,0.00000000,6.91000000 +9682,chr22,42392474,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.27450980,52.00000000,2.30088496,0.00000000,0.00000000,6.67000000 +9683,chr22,42394612,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.59000000,0.00000000,,0.17391304,94.00000000,4.15929204,0.02127660,0.00000000,5.94000000 +9684,chr22,42394697,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.81000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +9685,chr22,42395123,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.18072289,87.00000000,3.84955752,0.04597701,0.00000000,6.14000000 +9686,chr22,42395436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.63000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.69000000 +9687,chr22,42396154,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.32000000 +9688,chr22,42396204,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,2.26000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,5.89000000 +9689,chr22,42396368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,86.00000000,0.00000000,0.55000000,0.00000000,,0.22000000,103.00000000,4.55752212,0.02912621,0.00000000,5.61000000 +9690,chr22,42396894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.63000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.28000000 +9691,chr22,42397557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.27000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9692,chr22,42397839,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.71000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +9693,chr22,42397867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.91000000 +9694,chr22,42398231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.22000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +9695,chr22,42398320,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,-0.40000000,0.00000000,,0.32530120,83.00000000,3.67256637,0.00000000,0.00000000,9.04000000 +9696,chr22,42398608,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.95000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.03409091,0.00000000,6.76000000 +9697,chr22,42398634,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.55000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.84000000 +9698,chr22,42408022,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.05633803,0.00000000,5.62000000 +9699,chr22,42433180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,94.00000000,0.00000000,-0.97000000,0.00000000,,0.28915663,85.00000000,3.76106195,0.02352941,0.00000000,5.83000000 +9700,chr22,42434423,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.25000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,6.12000000 +9701,chr22,42438227,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.93000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.38000000 +9702,chr22,42439721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.20000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,6.70000000 +9703,chr22,42440331,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.83000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +9704,chr22,42441074,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.59000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,6.01000000 +9705,chr22,42441288,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,1.23000000,0.00000000,,0.24271845,105.00000000,4.64601770,0.00952381,0.00000000,5.89000000 +9706,chr22,42446626,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.67000000 +9707,chr22,42450052,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.01639344,0.00000000,6.40000000 +9708,chr22,42453192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.01219512,0.00000000,6.05000000 +9709,chr22,42453256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.72000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.28000000 +9710,chr22,42457116,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.38000000 +9711,chr22,42459780,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,1.42000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.84000000 +9712,chr22,42460485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.40000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.28000000 +9713,chr22,42461605,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.54000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.01111111,0.00000000,5.98000000 +9714,chr22,42465037,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.16000000 +9715,chr22,42467824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.27000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.02000000 +9716,chr22,42469004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.29761905,85.00000000,3.76106195,0.01176471,0.00000000,6.72000000 +9717,chr22,42469005,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.04000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.00000000,0.00000000,6.03000000 +9718,chr22,42469706,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.08000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +9719,chr22,42469748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.11000000,0.00000000,,0.23529412,106.00000000,4.69026549,0.03773585,0.00000000,6.20000000 +9720,chr22,42470054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.22058824,73.00000000,3.23008850,0.05479452,0.00000000,5.88000000 +9721,chr22,42470071,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,67.00000000,0.00000000,-0.19000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.06666667,0.00000000,6.06000000 +9722,chr22,42471849,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,70.00000000,0.00000000,0.56000000,0.00000000,,0.12345679,85.00000000,3.76106195,0.03529412,0.00000000,4.66000000 +9723,chr22,42471892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.42000000 +9724,chr22,42471951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,0.54000000,0.00000000,,0.21621622,78.00000000,3.45132743,0.05128205,0.00000000,5.79000000 +9725,chr22,42472077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,74.00000000,0.00000000,-0.14000000,0.00000000,,0.17441860,94.00000000,4.15929204,0.08510638,0.00000000,5.66000000 +9726,chr22,42472363,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.80000000 +9727,chr22,42473447,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,2.54000000,0.00000000,,0.34848485,67.00000000,2.96460177,0.01492537,0.00000000,3.79000000 +9728,chr22,42475109,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.74000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,5.95000000 +9729,chr22,42475676,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.10000000,0.00000000,,0.19387755,98.00000000,4.33628319,0.00000000,0.00000000,6.34000000 +9730,chr22,42476128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,0.00000000,0.73000000,0.00000000,,0.13953488,90.00000000,3.98230088,0.03333333,0.00000000,4.85000000 +9731,chr22,42513268,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.63000000,30.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.00000000,0.00000000,,0.28000000,52.00000000,2.30088496,0.03846154,0.00000000,2.92000000 +9732,chr22,42524035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.13000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.43000000 +9733,chr22,42531661,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.10000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.05000000 +9734,chr22,42588147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.22000000 +9735,chr22,42733821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.28000000,0.00000000,,0.23529412,73.00000000,3.23008850,0.06849315,0.00000000,5.61000000 +9736,chr22,42801853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,-0.62000000,0.00000000,,0.12068966,63.00000000,2.78761062,0.06349206,0.00000000,4.86000000 +9737,chr22,42810649,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.00000000 +9738,chr22,42815896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.58000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.89000000 +9739,chr22,42848565,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.84000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.54000000 +9740,chr22,42871158,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.50000000 +9741,chr22,42871399,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.88000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.03157895,0.00000000,5.73000000 +9742,chr22,42883605,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,94.00000000,0.00000000,-0.75000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,5.74000000 +9743,chr22,42915890,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.38000000,0.00000000,,0.27586207,87.00000000,3.84955752,0.00000000,0.00000000,6.50000000 +9744,chr22,42935288,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,5.86000000 +9745,chr22,42937587,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.34000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.77000000 +9746,chr22,42940225,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.60000000 +9747,chr22,42946717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.39000000 +9748,chr22,42947602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.32000000,0.00000000,,0.20833333,77.00000000,3.40707965,0.06493506,0.00000000,5.82000000 +9749,chr22,42953626,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.86000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +9750,chr22,43021001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,0.13000000,0.00000000,,0.30681818,92.00000000,4.07079646,0.04347826,0.00000000,5.80000000 +9751,chr22,43022051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.05000000,0.00000000,,0.12000000,78.00000000,3.45132743,0.02564103,0.00000000,5.00000000 +9752,chr22,43022053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.82000000,0.00000000,,0.11842105,78.00000000,3.45132743,0.02564103,0.00000000,4.95000000 +9753,chr22,43022826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,69.00000000,0.00000000,-1.04000000,0.00000000,,0.15277778,76.00000000,3.36283186,0.05263158,0.00000000,5.49000000 +9754,chr22,43023360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.07000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.00000000,0.00000000,6.68000000 +9755,chr22,43024320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.00000000,5.78000000 +9756,chr22,43024435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.91000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,5.92000000 +9757,chr22,43024487,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.59000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.30000000 +9758,chr22,43025274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.02000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.22000000 +9759,chr22,43025466,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.89000000 +9760,chr22,43026313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,-2.12000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.90000000 +9761,chr22,43026602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.44000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.85000000 +9762,chr22,43026670,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.61000000,0.00000000,,0.19387755,100.00000000,4.42477876,0.02000000,0.00000000,5.80000000 +9763,chr22,43026938,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.27000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.56000000 +9764,chr22,43026966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +9765,chr22,43026970,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.66000000 +9766,chr22,43027117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,0.00000000,2.02000000,0.00000000,,0.13333333,63.00000000,2.78761062,0.04761905,0.00000000,2.86000000 +9767,chr22,43027331,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.78000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +9768,chr22,43027622,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.32000000 +9769,chr22,43027897,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,65.00000000,0.00000000,-0.25000000,0.00000000,,0.12820513,81.00000000,3.58407080,0.03703704,0.00000000,5.19000000 +9770,chr22,43028031,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.61000000 +9771,chr22,43028471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.30000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,7.00000000 +9772,chr22,43029152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.14000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.81000000 +9773,chr22,43029170,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.20588235,73.00000000,3.23008850,0.02739726,0.00000000,4.17000000 +9774,chr22,43029818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.38000000 +9775,chr22,43030116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.05000000 +9776,chr22,43030182,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,1.55000000,0.00000000,,0.09859155,72.00000000,3.18584071,0.00000000,0.00000000,5.10000000 +9777,chr22,43031000,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-2.53000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,7.21000000 +9778,chr22,43032048,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +9779,chr22,43033144,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.64000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.58000000 +9780,chr22,43033719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.73000000 +9781,chr22,43035091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.23636364,57.00000000,2.52212389,0.01754386,0.00000000,6.33000000 +9782,chr22,43036025,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.98000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.03000000,0.00000000,,0.11842105,79.00000000,3.49557522,0.03797468,0.00000000,5.18000000 +9783,chr22,43037094,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,5.90000000 +9784,chr22,43040049,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.14705882,70.00000000,3.09734513,0.02857143,0.00000000,5.05000000 +9785,chr22,43046603,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +9786,chr22,43051885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.12000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +9787,chr22,43058701,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,1.94000000,0.00000000,,0.24418605,89.00000000,3.93805310,0.03370787,0.00000000,5.98000000 +9788,chr22,43060444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.00000000,0.00000000,6.04000000 +9789,chr22,43065688,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.66000000 +9790,chr22,43070925,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.97000000 +9791,chr22,43072370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.23000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,6.10000000 +9792,chr22,43072405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.84000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.77000000 +9793,chr22,43072659,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.00000000,0.00000000,6.34000000 +9794,chr22,43073077,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.03448276,32.00000000,1.41592920,0.09375000,0.00000000,73.00000000,0.00000000,-1.44000000,0.00000000,,0.25806452,102.00000000,4.51327434,0.08823529,0.00000000,5.94000000 +9795,chr22,43073951,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-2.08000000,0.00000000,,0.24000000,52.00000000,2.30088496,0.03846154,0.00000000,4.63000000 +9796,chr22,43075942,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.52000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,5.98000000 +9797,chr22,43076313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +9798,chr22,43076490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.12000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.55000000 +9799,chr22,43076508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.19000000 +9800,chr22,43077399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.13000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.01149425,0.00000000,6.97000000 +9801,chr22,43077428,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.09000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.95000000 +9802,chr22,43077656,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-0.60000000,0.00000000,,0.41538462,66.00000000,2.92035398,0.00000000,0.00000000,4.41000000 +9803,chr22,43078516,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9804,chr22,43079186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.98000000,5.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,50.00000000,0.00000000,-0.10000000,0.00000000,,0.21052632,46.00000000,2.03539823,0.15217391,0.00000000,2.77000000 +9805,chr22,43079465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.03000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +9806,chr22,43079557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.42000000 +9807,chr22,43081198,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.37179487,78.00000000,3.45132743,0.00000000,0.00000000,8.84000000 +9808,chr22,43081588,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,1.31000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.01162791,0.00000000,5.93000000 +9809,chr22,43082442,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.39344262,61.00000000,2.69911504,0.00000000,0.00000000,8.40000000 +9810,chr22,43084260,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.39130435,74.00000000,3.27433628,0.06756757,0.00000000,7.90000000 +9811,chr22,43084507,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.94000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,104.00000000,0.00000000,0.40000000,0.00000000,,0.34090909,90.00000000,3.98230088,0.02222222,0.00000000,14.81000000 +9812,chr22,43086614,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,8.15000000 +9813,chr22,43087236,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,38.00000000,0.00000000,-0.78000000,0.00000000,,0.39705882,71.00000000,3.14159292,0.04225352,0.00000000,3.67000000 +9814,chr22,43089379,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,0.66000000,0.00000000,,0.43589744,80.00000000,3.53982301,0.00000000,0.00000000,8.32000000 +9815,chr22,43089847,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.06000000,0.00000000,,0.48913043,95.00000000,4.20353982,0.03157895,0.00000000,4.43000000 +9816,chr22,43091254,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.43956044,93.00000000,4.11504425,0.02150538,0.00000000,8.06000000 +9817,chr22,43091959,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.10000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,8.30000000 +9818,chr22,43092742,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,36.00000000,0.00000000,1.37000000,0.00000000,,0.59523810,42.00000000,1.85840708,0.00000000,0.00000000,3.90000000 +9819,chr22,43093623,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.39000000,0.00000000,,0.38596491,58.00000000,2.56637168,0.01724138,0.00000000,8.46000000 +9820,chr22,43094834,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.51250000,80.00000000,3.53982301,0.00000000,0.00000000,8.63000000 +9821,chr22,43095263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.68000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.73000000 +9822,chr22,43096633,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.84000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,4.29000000 +9823,chr22,43096956,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.32000000,0.00000000,,0.32584270,91.00000000,4.02654867,0.02197802,0.00000000,8.17000000 +9824,chr22,43097344,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.61000000,0.00000000,,0.31250000,96.00000000,4.24778761,0.00000000,0.00000000,7.18000000 +9825,chr22,43097424,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-1.57000000,0.00000000,,0.42352941,88.00000000,3.89380531,0.03409091,0.00000000,7.92000000 +9826,chr22,43097643,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,96.00000000,0.00000000,-0.10000000,0.00000000,,0.32786885,64.00000000,2.83185841,0.04687500,0.00000000,8.12000000 +9827,chr22,43097824,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.42000000,0.00000000,,0.44615385,66.00000000,2.92035398,0.01515152,0.00000000,4.02000000 +9828,chr22,43097950,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.04000000,0.00000000,,0.34146341,83.00000000,3.67256637,0.01204819,0.00000000,8.44000000 +9829,chr22,43097998,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.31000000,0.00000000,,0.39506173,84.00000000,3.71681416,0.01190476,0.00000000,8.63000000 +9830,chr22,43098725,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.44444444,64.00000000,2.83185841,0.01562500,0.00000000,6.15000000 +9831,chr22,43099733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,72.00000000,0.00000000,-0.48000000,0.00000000,,0.18461538,71.00000000,3.14159292,0.08450704,0.00000000,5.92000000 +9832,chr22,43099928,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,42.00000000,0.00000000,0.27000000,0.00000000,,0.47058824,58.00000000,2.56637168,0.10344828,0.00000000,3.99000000 +9833,chr22,43099983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,-1.25000000,0.00000000,,0.28787879,74.00000000,3.27433628,0.10810811,0.00000000,6.23000000 +9834,chr22,43100917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.72000000,0.00000000,,0.25263158,95.00000000,4.20353982,0.00000000,0.00000000,6.72000000 +9835,chr22,43101892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,74.00000000,0.00000000,-1.23000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,5.62000000 +9836,chr22,43102155,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,75.00000000,0.00000000,-0.93000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.06756757,0.00000000,5.92000000 +9837,chr22,43102276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.22000000,56.00000000,2.47787611,0.10714286,0.00000000,5.37000000 +9838,chr22,43103006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-1.62000000,2.38000000,,0.10000000,52.00000000,2.30088496,0.03846154,0.00000000,3.42000000 +9839,chr22,43103012,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-1.24000000,2.04000000,,0.10204082,51.00000000,2.25663717,0.03921569,0.00000000,3.46000000 +9840,chr22,43103026,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.27000000,2.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,0.00000000,-1.28000000,1.74000000,,0.10869565,49.00000000,2.16814159,0.04081633,0.00000000,3.29000000 +9841,chr22,43103138,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.71000000,0.00000000,,0.25531915,49.00000000,2.16814159,0.04081633,0.00000000,6.74000000 +9842,chr22,43104206,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-1.06000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.20000000 +9843,chr22,43106820,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,89.00000000,0.00000000,-0.33000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.00000000,0.00000000,5.52000000 +9844,chr22,43107206,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,76.00000000,0.00000000,0.17000000,0.00000000,,0.20731707,88.00000000,3.89380531,0.06818182,0.00000000,5.63000000 +9845,chr22,43107351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.68000000,0.00000000,,0.30769231,69.00000000,3.05309735,0.05797101,0.00000000,5.93000000 +9846,chr22,43107541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.01492537,0.00000000,6.20000000 +9847,chr22,43108320,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.02000000,0.00000000,,0.18421053,87.00000000,3.84955752,0.12643678,0.00000000,5.84000000 +9848,chr22,43108321,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.12643678,0.00000000,5.95000000 +9849,chr22,43108322,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.87000000,0.00000000,,0.18421053,87.00000000,3.84955752,0.12643678,0.00000000,5.84000000 +9850,chr22,43108582,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,0.51000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.02352941,0.00000000,6.47000000 +9851,chr22,43109151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.09000000 +9852,chr22,43112216,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.72000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.63000000 +9853,chr22,43112308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,5.91000000 +9854,chr22,43113611,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-2.12000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.34000000 +9855,chr22,43122318,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.15384615,78.00000000,3.45132743,0.00000000,0.00000000,5.48000000 +9856,chr22,43124421,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.83000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.84000000 +9857,chr22,43124845,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-0.37000000,0.00000000,,0.25531915,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +9858,chr22,43127949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,80.00000000,0.00000000,1.38000000,0.00000000,,0.17821782,103.00000000,4.55752212,0.00970874,0.00000000,5.50000000 +9859,chr22,43129316,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,5.91000000 +9860,chr22,43130740,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +9861,chr22,43131675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +9862,chr22,43143114,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.47000000 +9863,chr22,43144168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,89.00000000,0.00000000,-0.35000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.00000000,0.00000000,5.62000000 +9864,chr22,43157454,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,81.00000000,0.00000000,-0.87000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,5.60000000 +9865,chr22,43159188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.25773196,101.00000000,4.46902655,0.02970297,0.00000000,6.31000000 +9866,chr22,43164345,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.42000000 +9867,chr22,43172660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.23000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.02061856,0.00000000,6.28000000 +9868,chr22,43175707,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,60.00000000,0.00000000,1.00000000,0.00000000,,0.13235294,70.00000000,3.09734513,0.02857143,0.00000000,4.66000000 +9869,chr22,43176348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.23214286,58.00000000,2.56637168,0.03448276,0.00000000,5.59000000 +9870,chr22,43178374,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.16216216,0.00000000,61.00000000,0.00000000,1.19000000,0.00000000,,0.20833333,79.00000000,3.49557522,0.08860759,0.00000000,5.52000000 +9871,chr22,43178511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-1.21000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.02857143,0.00000000,6.68000000 +9872,chr22,43178926,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,68.00000000,0.00000000,1.27000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,5.55000000 +9873,chr22,43179069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.10000000 +9874,chr22,43179319,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9875,chr22,43180392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.17000000,0.00000000,,0.24137931,91.00000000,4.02654867,0.04395604,0.00000000,5.99000000 +9876,chr22,43180461,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.02222222,0.00000000,6.04000000 +9877,chr22,43180664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.41000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,7.32000000 +9878,chr22,43180874,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-1.39000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.76000000 +9879,chr22,43181251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.23232323,103.00000000,4.55752212,0.03883495,0.00000000,5.99000000 +9880,chr22,43181442,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.15625000,98.00000000,4.33628319,0.02040816,0.00000000,4.99000000 +9881,chr22,43181646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +9882,chr22,43181651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.02105263,0.00000000,6.06000000 +9883,chr22,43181702,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.98000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.39000000 +9884,chr22,43181703,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.28000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.41000000 +9885,chr22,43181828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.13592233,107.00000000,4.73451327,0.03738318,0.00000000,5.08000000 +9886,chr22,43181829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.13592233,107.00000000,4.73451327,0.03738318,0.00000000,5.06000000 +9887,chr22,43181943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,67.00000000,0.00000000,0.00000000,0.00000000,,0.13684211,97.00000000,4.29203540,0.02061856,0.00000000,4.73000000 +9888,chr22,43182039,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,0.00000000,-1.73000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9889,chr22,43182159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.17000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,5.58000000 +9890,chr22,43182300,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,69.00000000,0.00000000,-1.12000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.03750000,0.00000000,5.44000000 +9891,chr22,43182528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.97000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.39000000 +9892,chr22,43183043,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,2.56000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.08000000 +9893,chr22,43183600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.30000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.90000000 +9894,chr22,43183826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,86.00000000,0.00000000,-0.14000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.02150538,0.00000000,5.82000000 +9895,chr22,43184171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.66000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +9896,chr22,43184954,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.58000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.50000000 +9897,chr22,43186533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,2.01000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,5.62000000 +9898,chr22,43187819,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,7.42000000 +9899,chr22,43188223,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.19000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.57000000 +9900,chr22,43188275,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.65000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.47000000 +9901,chr22,43188625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.39000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.00000000 +9902,chr22,43189299,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +9903,chr22,43189489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.24050633,84.00000000,3.71681416,0.05952381,0.00000000,5.99000000 +9904,chr22,43189524,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.34000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +9905,chr22,43190902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,1.62000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,5.79000000 +9906,chr22,43191950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.03703704,0.00000000,6.30000000 +9907,chr22,43192196,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.00000000,0.00000000,6.92000000 +9908,chr22,43192277,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,1.40000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,4.99000000 +9909,chr22,43192287,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,1.01000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,5.60000000 +9910,chr22,43196368,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.65000000,0.00000000,,0.21153846,105.00000000,4.64601770,0.00952381,0.00000000,6.12000000 +9911,chr22,43196804,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,6.20000000 +9912,chr22,43200119,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.00000000,0.00000000,,0.20987654,86.00000000,3.80530973,0.04651163,0.00000000,5.91000000 +9913,chr22,43200388,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.58000000,0.00000000,,0.24444444,90.00000000,3.98230088,0.00000000,0.00000000,6.43000000 +9914,chr22,43201548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.19000000,0.00000000,,0.21666667,63.00000000,2.78761062,0.03174603,0.00000000,6.35000000 +9915,chr22,43203911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.06666667,0.00000000,72.00000000,0.00000000,0.68000000,0.00000000,,0.15909091,94.00000000,4.15929204,0.04255319,0.00000000,4.97000000 +9916,chr22,43203985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-1.59000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.96000000 +9917,chr22,43204275,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.30434783,73.00000000,3.23008850,0.04109589,0.00000000,7.05000000 +9918,chr22,43206679,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,2.61000000,0.00000000,,0.24719101,93.00000000,4.11504425,0.04301075,0.00000000,6.19000000 +9919,chr22,43206754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.08000000,0.00000000,,0.18666667,79.00000000,3.49557522,0.05063291,0.00000000,5.21000000 +9920,chr22,43208917,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.80000000,0.00000000,,0.10344828,63.00000000,2.78761062,0.07936508,0.00000000,3.54000000 +9921,chr22,43209648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.41000000,0.00000000,,0.20408163,102.00000000,4.51327434,0.03921569,0.00000000,6.29000000 +9922,chr22,43209764,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.68000000 +9923,chr22,43210611,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.74000000 +9924,chr22,43210662,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.74000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.01538462,0.00000000,6.66000000 +9925,chr22,43212286,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.13000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +9926,chr22,43213125,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.64000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +9927,chr22,43213754,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.29000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.38000000 +9928,chr22,43219555,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.24324324,84.00000000,3.71681416,0.10714286,0.00000000,5.99000000 +9929,chr22,43219862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,6.23000000 +9930,chr22,43220044,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.18000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +9931,chr22,43221033,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,0.33000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,5.67000000 +9932,chr22,43223056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.16000000,104.00000000,4.60176991,0.03846154,0.00000000,5.40000000 +9933,chr22,43226228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.89000000,0.00000000,,0.19047619,69.00000000,3.05309735,0.08695652,0.00000000,4.71000000 +9934,chr22,43226478,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.15000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.03296703,0.00000000,6.36000000 +9935,chr22,43230810,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.71000000 +9936,chr22,43231149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.15957447,94.00000000,4.15929204,0.00000000,0.00000000,5.44000000 +9937,chr22,43236094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.00000000,0.00000000,,0.31506849,78.00000000,3.45132743,0.05128205,0.00000000,7.96000000 +9938,chr22,43236932,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.12345679,86.00000000,3.80530973,0.05813953,0.00000000,4.80000000 +9939,chr22,43237506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.62000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +9940,chr22,43239312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.84000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,6.34000000 +9941,chr22,43239543,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,2.09000000,0.00000000,,0.14583333,96.00000000,4.24778761,0.00000000,0.00000000,5.18000000 +9942,chr22,43241171,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.23000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.17000000 +9943,chr22,43242648,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.00000000,0.00000000,6.90000000 +9944,chr22,43242729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-0.82000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +9945,chr22,43243913,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,1.40000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.29000000 +9946,chr22,43245156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.94000000 +9947,chr22,43245327,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,84.00000000,0.00000000,-0.17000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.01041667,0.00000000,5.24000000 +9948,chr22,43245575,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.77000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.69000000 +9949,chr22,43246084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.84000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.79000000 +9950,chr22,43247281,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,0.23000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.85000000 +9951,chr22,43248551,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.09000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.73000000 +9952,chr22,43249274,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,72.00000000,0.00000000,-0.51000000,0.00000000,,0.18840580,81.00000000,3.58407080,0.13580247,0.00000000,5.88000000 +9953,chr22,43249329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.19047619,80.00000000,3.53982301,0.21250000,0.00000000,5.84000000 +9954,chr22,43250698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,6.27000000 +9955,chr22,43250703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.72000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,6.32000000 +9956,chr22,43268338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,0.74000000,0.00000000,,0.14736842,95.00000000,4.20353982,0.00000000,0.00000000,5.13000000 +9957,chr22,43271547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.31000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.72000000 +9958,chr22,43272594,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.38000000,0.00000000,,0.27058824,87.00000000,3.84955752,0.02298851,0.00000000,6.33000000 +9959,chr22,43275377,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,-0.63000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,5.86000000 +9960,chr22,43276623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.00000000,0.00000000,5.44000000 +9961,chr22,43276683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.14893617,94.00000000,4.15929204,0.00000000,0.00000000,5.06000000 +9962,chr22,43307723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.13000000 +9963,chr22,43307985,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,84.00000000,0.00000000,0.69000000,0.00000000,,0.26562500,69.00000000,3.05309735,0.05797101,0.00000000,5.77000000 +9964,chr22,43309672,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.26000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +9965,chr22,43309923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.69000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,5.87000000 +9966,chr22,43310482,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.03000000,0.00000000,,0.18750000,48.00000000,2.12389381,0.00000000,0.00000000,6.60000000 +9967,chr22,43310767,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.12000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +9968,chr22,43310987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.07000000,0.00000000,,0.12121212,69.00000000,3.05309735,0.02898551,0.00000000,5.16000000 +9969,chr22,43311990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.40000000 +9970,chr22,43312916,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.87000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.02000000 +9971,chr22,43314344,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +9972,chr22,43315074,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,84.00000000,0.00000000,1.23000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,5.72000000 +9973,chr22,43316779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.28000000 +9974,chr22,43342441,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.17241379,61.00000000,2.69911504,0.03278689,0.00000000,6.05000000 +9975,chr22,43349123,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.21000000 +9976,chr22,43353021,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-1.53000000,0.00000000,,0.17647059,70.00000000,3.09734513,0.01428571,0.00000000,6.10000000 +9977,chr22,43364197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.01000000,0.00000000,,0.16417910,72.00000000,3.18584071,0.06944444,0.00000000,2.82000000 +9978,chr22,43366765,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.32000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,5.95000000 +9979,chr22,43373865,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.28000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.02816901,0.00000000,6.36000000 +9980,chr22,43379906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.54000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.62000000 +9981,chr22,43383514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.51000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.02325581,0.00000000,5.85000000 +9982,chr22,43385424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.95000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.52000000 +9983,chr22,43388088,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.41000000,0.00000000,,0.16417910,69.00000000,3.05309735,0.02898551,0.00000000,5.80000000 +9984,chr22,43388500,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.55000000 +9985,chr22,43390225,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.27000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.03125000,0.00000000,5.86000000 +9986,chr22,43391224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,6.92000000 +9987,chr22,43392930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.24000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +9988,chr22,43401158,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,-0.40000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,5.96000000 +9989,chr22,43403001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.27000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +9990,chr22,43403122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +9991,chr22,43405211,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.59000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.70000000 +9992,chr22,43407408,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.52000000 +9993,chr22,43407987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.39000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.55000000 +9994,chr22,43411456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,5.93000000 +9995,chr22,43412739,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.37000000,3.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.07500000,0.00000000,75.00000000,0.00000000,-1.66000000,0.00000000,,0.19354839,100.00000000,4.42477876,0.05000000,0.00000000,5.84000000 +9996,chr22,43414741,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.83000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +9997,chr22,43416890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,-1.49000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.61000000 +9998,chr22,43419787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.47000000 +9999,chr22,43420021,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,1.67000000,0.00000000,,0.33783784,76.00000000,3.36283186,0.00000000,0.00000000,8.29000000 +10000,chr22,43421475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.50000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +10001,chr22,43422273,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,2.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.56000000 +10002,chr22,43426557,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.96000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.04225352,0.00000000,6.07000000 +10003,chr22,43430317,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.55000000 +10004,chr22,43431271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.31818182,89.00000000,3.93805310,0.01123596,0.00000000,7.24000000 +10005,chr22,43433976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.47000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,5.41000000 +10006,chr22,43434925,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,-0.82000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,5.84000000 +10007,chr22,43434980,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.77000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,5.99000000 +10008,chr22,43434990,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-1.47000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,5.86000000 +10009,chr22,43436674,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.23000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.42000000 +10010,chr22,43440073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.42000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.34000000 +10011,chr22,43442527,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.00000000,6.60000000 +10012,chr22,43449809,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.34000000,0.00000000,,0.50617284,81.00000000,3.58407080,0.00000000,0.00000000,4.10000000 +10013,chr22,43450616,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-3.12000000,0.00000000,,0.54794521,74.00000000,3.27433628,0.01351351,0.00000000,8.66000000 +10014,chr22,43451689,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.12000000,0.00000000,,0.50746269,67.00000000,2.96460177,0.00000000,0.00000000,4.05000000 +10015,chr22,43456740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.64000000 +10016,chr22,43457628,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,-1.14000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.89000000 +10017,chr22,43471297,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.13000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,4.86000000 +10018,chr22,43473483,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,7.00000000 +10019,chr22,43474183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.13000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.31000000 +10020,chr22,43474602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,64.00000000,0.00000000,-0.47000000,0.00000000,,0.13793103,92.00000000,4.07079646,0.05434783,0.00000000,4.94000000 +10021,chr22,43477772,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.14084507,74.00000000,3.27433628,0.01351351,0.00000000,5.74000000 +10022,chr22,43477791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.51000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.31000000 +10023,chr22,43478399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.50000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.30000000 +10024,chr22,43478722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-1.02000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +10025,chr22,43478855,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.20000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.37000000 +10026,chr22,43479660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.45000000 +10027,chr22,43480170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,90.00000000,0.00000000,1.63000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.03000000 +10028,chr22,43483368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.26229508,63.00000000,2.78761062,0.03174603,0.00000000,6.66000000 +10029,chr22,43498581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.84000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.54000000 +10030,chr22,43498719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.47000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.41000000 +10031,chr22,43503199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.38000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,5.98000000 +10032,chr22,43516119,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.93000000 +10033,chr22,43547951,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.31000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.01098901,0.00000000,5.66000000 +10034,chr22,43550596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,0.00000000,0.89000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,4.98000000 +10035,chr22,43551223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,61.00000000,0.00000000,1.05000000,0.00000000,,0.11688312,80.00000000,3.53982301,0.02500000,0.00000000,4.60000000 +10036,chr22,43561628,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.22000000,50.00000000,2.21238938,0.00000000,0.00000000,6.59000000 +10037,chr22,43563302,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +10038,chr22,43564048,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.19000000 +10039,chr22,43566669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.37000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10040,chr22,43566788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.02000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.59000000 +10041,chr22,43573950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.02380952,0.00000000,5.92000000 +10042,chr22,43574750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +10043,chr22,43574853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.90000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +10044,chr22,43589005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.72000000 +10045,chr22,43589320,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.19642857,69.00000000,3.05309735,0.18840580,0.00000000,5.14000000 +10046,chr22,43590254,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,73.00000000,0.00000000,-0.77000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.01265823,0.00000000,6.09000000 +10047,chr22,43593564,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,1.21000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,5.86000000 +10048,chr22,43594995,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.71000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.73000000 +10049,chr22,43595283,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.20000000 +10050,chr22,43602498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.58000000 +10051,chr22,43605971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.06000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.37000000 +10052,chr22,43608098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.37000000,0.00000000,,0.18181818,91.00000000,4.02654867,0.01098901,0.00000000,6.56000000 +10053,chr22,43611478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,1.60000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.42000000 +10054,chr22,43618354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.11111111,0.00000000,43.00000000,0.00000000,2.84000000,0.00000000,,0.32051282,79.00000000,3.49557522,0.01265823,0.00000000,3.54000000 +10055,chr22,43618601,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.23000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.91000000 +10056,chr22,43623003,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.08000000,0.00000000,,0.34666667,75.00000000,3.31858407,0.00000000,0.00000000,8.98000000 +10057,chr22,43623821,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.15789474,0.00000000,63.00000000,0.00000000,-1.38000000,0.00000000,,0.07575758,81.00000000,3.58407080,0.18518519,0.00000000,4.82000000 +10058,chr22,43623954,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,0.00000000,1.36000000,0.00000000,,0.30508475,60.00000000,2.65486726,0.01666667,0.00000000,2.92000000 +10059,chr22,43629037,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.23000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +10060,chr22,43630245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.29896907,97.00000000,4.29203540,0.00000000,0.00000000,6.61000000 +10061,chr22,43630684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.98000000 +10062,chr22,43630780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.26000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +10063,chr22,43638054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.17000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.00000000,0.00000000,6.26000000 +10064,chr22,43638361,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,1.41000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.45000000 +10065,chr22,43639423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,-1.84000000,0.00000000,,0.10389610,79.00000000,3.49557522,0.01265823,0.00000000,4.97000000 +10066,chr22,43640259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.00000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.15000000 +10067,chr22,43640528,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.95000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10068,chr22,43642799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.06000000,0.00000000,,0.22093023,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +10069,chr22,43643405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.82000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.58000000 +10070,chr22,43645124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.78000000,11.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.00000000,0.00000000,7.01000000 +10071,chr22,43650384,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,1.64000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.71000000 +10072,chr22,43650485,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.43000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.03896104,0.00000000,5.51000000 +10073,chr22,43656161,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,5.95000000 +10074,chr22,43656309,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.01234568,0.00000000,6.00000000 +10075,chr22,43656672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.48000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.67000000 +10076,chr22,43656883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.16000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.58000000 +10077,chr22,43658086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,5.76000000 +10078,chr22,43658183,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,-0.02000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.87000000 +10079,chr22,43659425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.04000000 +10080,chr22,43660064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,66.00000000,0.00000000,-0.96000000,0.00000000,,0.16129032,65.00000000,2.87610619,0.04615385,0.00000000,5.53000000 +10081,chr22,43660092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-0.50000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.49000000 +10082,chr22,43660361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-2.72000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.82000000 +10083,chr22,43660823,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.68000000 +10084,chr22,43662797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.40000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +10085,chr22,43663179,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +10086,chr22,43665129,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.07000000,0.00000000,,0.27586207,90.00000000,3.98230088,0.03333333,0.00000000,6.27000000 +10087,chr22,43672313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-1.87000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +10088,chr22,43672439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,82.00000000,0.00000000,0.83000000,0.00000000,,0.18000000,101.00000000,4.46902655,0.00990099,0.00000000,5.22000000 +10089,chr22,43672711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,67.00000000,0.00000000,-0.64000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.53000000 +10090,chr22,43673175,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.02000000 +10091,chr22,43674650,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.15000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.26000000 +10092,chr22,43676273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.42000000,0.00000000,,0.19402985,70.00000000,3.09734513,0.02857143,0.00000000,5.79000000 +10093,chr22,43679003,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +10094,chr22,43680254,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.19000000 +10095,chr22,43681227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-1.24000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.58000000 +10096,chr22,43684766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.40000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.97000000 +10097,chr22,43687122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.37000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,7.24000000 +10098,chr22,43689699,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-1.18000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +10099,chr22,43692692,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.34210526,77.00000000,3.40707965,0.01298701,0.00000000,8.31000000 +10100,chr22,43693460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,6.27000000 +10101,chr22,43699089,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.23809524,69.00000000,3.05309735,0.07246377,0.00000000,6.35000000 +10102,chr22,43700802,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.54000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.55000000 +10103,chr22,43705261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.00000000,0.00000000,7.97000000 +10104,chr22,43706756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.29000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +10105,chr22,43707413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-1.64000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.01111111,0.00000000,6.70000000 +10106,chr22,43713888,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.93000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +10107,chr22,43718504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.04000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +10108,chr22,43718736,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.77000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10109,chr22,43718981,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.73000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +10110,chr22,43720640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,58.00000000,0.00000000,0.47000000,0.00000000,,0.11940299,70.00000000,3.09734513,0.02857143,0.00000000,3.79000000 +10111,chr22,43721804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.89000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.01515152,0.00000000,5.94000000 +10112,chr22,43722088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.01098901,0.00000000,5.89000000 +10113,chr22,43722401,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,-0.68000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.00000000,0.00000000,6.08000000 +10114,chr22,43729050,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.08000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.95000000 +10115,chr22,43729553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,73.00000000,0.00000000,0.12000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.70000000 +10116,chr22,43730426,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.12000000,0.00000000,,0.26415094,53.00000000,2.34513274,0.00000000,0.00000000,6.96000000 +10117,chr22,43730637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,1.60000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.01515152,0.00000000,5.81000000 +10118,chr22,43731070,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.62000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,6.65000000 +10119,chr22,43732955,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,55.00000000,0.00000000,0.23000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,2.81000000 +10120,chr22,43733095,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.61000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +10121,chr22,43733567,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.22000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +10122,chr22,43733978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.01515152,0.00000000,6.15000000 +10123,chr22,43736216,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,0.62000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.09000000 +10124,chr22,43737984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.04109589,0.00000000,6.17000000 +10125,chr22,43741873,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.31000000 +10126,chr22,43743414,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-1.58000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.01694915,0.00000000,6.31000000 +10127,chr22,43746315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-0.31000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +10128,chr22,43751193,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.02000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.66000000 +10129,chr22,43760048,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-1.32000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.01639344,0.00000000,5.15000000 +10130,chr22,43761108,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.18000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +10131,chr22,43766676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.21000000,2.28000000,,0.17307692,52.00000000,2.30088496,0.00000000,0.00000000,5.36000000 +10132,chr22,43766794,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,6.48000000 +10133,chr22,43767513,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.90000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.41000000 +10134,chr22,43769718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.60000000 +10135,chr22,43771804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.02000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.84000000 +10136,chr22,43777650,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +10137,chr22,43783247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,94.00000000,0.00000000,0.62000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,5.75000000 +10138,chr22,43783254,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,88.00000000,0.00000000,1.06000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.01000000 +10139,chr22,43785432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.40000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,6.07000000 +10140,chr22,43797937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +10141,chr22,43800083,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.87000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,7.07000000 +10142,chr22,43804166,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-1.85000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.58000000 +10143,chr22,43804726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,62.00000000,0.00000000,-0.52000000,0.00000000,,0.12162162,103.00000000,4.55752212,0.27184466,0.00000000,4.81000000 +10144,chr22,43806676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-1.24000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.14000000 +10145,chr22,43813188,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-2.53000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.73000000 +10146,chr22,43815018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.48000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.22000000 +10147,chr22,43815138,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.22000000 +10148,chr22,43815181,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.06000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.48000000 +10149,chr22,43815779,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.18367347,105.00000000,4.64601770,0.06666667,0.00000000,6.19000000 +10150,chr22,43818622,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,5.97000000 +10151,chr22,43819173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,-1.26000000,0.00000000,,0.14285714,65.00000000,2.87610619,0.03076923,0.00000000,4.97000000 +10152,chr22,43819309,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.18750000,84.00000000,3.71681416,0.04761905,0.00000000,5.98000000 +10153,chr22,43819541,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,59.00000000,0.00000000,-0.72000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,3.45000000 +10154,chr22,43819782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.11000000 +10155,chr22,43820921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.52000000,0.00000000,,0.25301205,89.00000000,3.93805310,0.03370787,0.00000000,6.52000000 +10156,chr22,43821336,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.50000000 +10157,chr22,43822302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.94000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.83000000 +10158,chr22,43824064,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.15000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.66000000 +10159,chr22,43824984,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.12000000 +10160,chr22,43826465,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.65000000,0.00000000,,0.31428571,71.00000000,3.14159292,0.01408451,0.00000000,6.64000000 +10161,chr22,43827186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.92000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +10162,chr22,43828976,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,5.90000000 +10163,chr22,43829978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.30000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.04347826,0.00000000,6.21000000 +10164,chr22,43830386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,2.19000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.04301075,0.00000000,5.66000000 +10165,chr22,43836397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,46.34000000,9.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,19.00000000,0.00000000,-0.20000000,0.00000000,,0.34090909,49.00000000,2.16814159,0.10204082,0.00000000,3.73000000 +10166,chr22,43837007,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.37209302,90.00000000,3.98230088,0.04444444,0.00000000,8.00000000 +10167,chr22,43837546,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.44000000,0.00000000,,0.30303030,66.00000000,2.92035398,0.00000000,0.00000000,7.01000000 +10168,chr22,43838159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-1.06000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.39000000 +10169,chr22,43843870,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,-1.53000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,5.99000000 +10170,chr22,43846222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.45000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.30000000 +10171,chr22,43851908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.47000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +10172,chr22,43852351,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,5.93000000 +10173,chr22,43853583,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.64000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.92000000 +10174,chr22,43853597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.13000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.92000000 +10175,chr22,43853898,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.03000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,6.10000000 +10176,chr22,43854025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.48000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +10177,chr22,43854381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.15000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +10178,chr22,43854750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,5.53000000 +10179,chr22,43855309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-1.32000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.77000000 +10180,chr22,43859342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.15000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.67000000 +10181,chr22,43859452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.09000000 +10182,chr22,43861176,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,0.48000000,0.00000000,,0.12500000,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +10183,chr22,43861547,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.91000000 +10184,chr22,43863761,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.64000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.67000000 +10185,chr22,43864726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-3.03000000,0.00000000,,0.27906977,89.00000000,3.93805310,0.02247191,0.00000000,6.80000000 +10186,chr22,43865969,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.12000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.51000000 +10187,chr22,43868337,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.40000000 +10188,chr22,43869443,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.99000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.06000000 +10189,chr22,43870184,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +10190,chr22,43870562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.17000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.07000000 +10191,chr22,43871119,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.36000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,2.88000000 +10192,chr22,43871456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.77000000 +10193,chr22,43871785,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.96000000 +10194,chr22,43872696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.20000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.01041667,0.00000000,6.07000000 +10195,chr22,43873043,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,0.93000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.03061224,0.00000000,5.68000000 +10196,chr22,43874712,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,85.00000000,0.00000000,1.03000000,0.00000000,,0.21839080,91.00000000,4.02654867,0.04395604,0.00000000,5.64000000 +10197,chr22,43876405,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.18000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.54000000 +10198,chr22,43876570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.65000000,0.00000000,,0.09708738,104.00000000,4.60176991,0.00961538,0.00000000,4.94000000 +10199,chr22,43878815,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.09000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +10200,chr22,43878848,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.18000000 +10201,chr22,43879579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.10000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.54000000 +10202,chr22,43880023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.28000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,6.29000000 +10203,chr22,43880664,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-1.87000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.02857143,0.00000000,6.73000000 +10204,chr22,43881526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.34000000,0.00000000,,0.20689655,62.00000000,2.74336283,0.06451613,0.00000000,6.49000000 +10205,chr22,43882518,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.63000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.00000000,0.00000000,6.41000000 +10206,chr22,43882600,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.34000000,0.00000000,,0.25000000,117.00000000,5.17699115,0.00854701,0.00000000,6.16000000 +10207,chr22,43882872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.24000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.69000000 +10208,chr22,43883435,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,1.53000000,0.00000000,,0.39080460,87.00000000,3.84955752,0.00000000,0.00000000,8.24000000 +10209,chr22,43883547,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,61.00000000,0.00000000,-1.85000000,0.00000000,,0.46052632,78.00000000,3.45132743,0.02564103,0.00000000,7.54000000 +10210,chr22,43883575,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.48571429,71.00000000,3.14159292,0.01408451,0.00000000,8.21000000 +10211,chr22,43884532,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.51612903,64.00000000,2.83185841,0.03125000,0.00000000,8.00000000 +10212,chr22,43884621,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +10213,chr22,43884853,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.35000000,0.00000000,,0.38750000,82.00000000,3.62831858,0.02439024,0.00000000,8.34000000 +10214,chr22,43884952,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.91000000 +10215,chr22,43885002,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.45000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.56000000 +10216,chr22,43885193,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.94000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.35000000 +10217,chr22,43885264,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.72000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,5.51000000 +10218,chr22,43885281,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,0.04000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +10219,chr22,43885354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,62.00000000,0.00000000,1.47000000,0.00000000,,0.13846154,75.00000000,3.31858407,0.13333333,0.00000000,4.55000000 +10220,chr22,43885727,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.90000000,0.00000000,,0.45945946,74.00000000,3.27433628,0.00000000,0.00000000,4.65000000 +10221,chr22,43885828,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +10222,chr22,43886396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,75.00000000,0.00000000,-3.04000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.07000000 +10223,chr22,43886427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-2.49000000,0.00000000,,0.21904762,105.00000000,4.64601770,0.00000000,0.00000000,6.82000000 +10224,chr22,43886813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,0.61000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.02247191,0.00000000,6.68000000 +10225,chr22,43887076,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.78000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +10226,chr22,43887140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,1.06000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,6.14000000 +10227,chr22,43887676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.20000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,5.77000000 +10228,chr22,43888801,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.49295775,73.00000000,3.23008850,0.02739726,0.00000000,8.35000000 +10229,chr22,43888935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,0.00000000,0.82000000,0.00000000,,0.14473684,80.00000000,3.53982301,0.02500000,0.00000000,3.83000000 +10230,chr22,43888974,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.19000000,0.00000000,,0.38709677,66.00000000,2.92035398,0.01515152,0.00000000,4.24000000 +10231,chr22,43889074,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.16000000,0.00000000,,0.46250000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +10232,chr22,43889548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.75000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +10233,chr22,43889787,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.39240506,84.00000000,3.71681416,0.05952381,0.00000000,7.49000000 +10234,chr22,43889885,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,92.00000000,0.00000000,0.05000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,7.99000000 +10235,chr22,43890215,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.00000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.41000000 +10236,chr22,43890651,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,58.00000000,0.00000000,-1.28000000,0.00000000,,0.49397590,83.00000000,3.67256637,0.00000000,0.00000000,5.92000000 +10237,chr22,43891182,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.37500000,83.00000000,3.67256637,0.03614458,0.00000000,7.85000000 +10238,chr22,43893104,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,96.00000000,0.00000000,-1.53000000,0.00000000,,0.47572816,108.00000000,4.77876106,0.03703704,0.00000000,8.45000000 +10239,chr22,43893110,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,0.72000000,0.00000000,,0.46153846,108.00000000,4.77876106,0.03703704,0.00000000,8.28000000 +10240,chr22,43893382,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.18367347,103.00000000,4.55752212,0.03883495,0.00000000,5.05000000 +10241,chr22,43893463,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,101.00000000,0.00000000,0.35000000,0.00000000,,0.34177215,81.00000000,3.58407080,0.02469136,0.00000000,8.12000000 +10242,chr22,43893779,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,79.00000000,0.00000000,-1.08000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,5.83000000 +10243,chr22,43893800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,-1.89000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.70000000 +10244,chr22,43893943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,2.08000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.36000000 +10245,chr22,43894318,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +10246,chr22,43894395,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,2.09000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.81000000 +10247,chr22,43894532,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,6.36000000 +10248,chr22,43894600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.34000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10249,chr22,43894603,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.42000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.00000000,0.00000000,6.41000000 +10250,chr22,43894696,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.23000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +10251,chr22,43894817,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.73000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10252,chr22,43894976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.01000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.01428571,0.00000000,6.56000000 +10253,chr22,43895078,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.08000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.70000000 +10254,chr22,43895140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,1.23000000,0.00000000,,0.16000000,78.00000000,3.45132743,0.03846154,0.00000000,4.99000000 +10255,chr22,43895419,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,6.33000000 +10256,chr22,43897440,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,-0.15000000,0.00000000,,0.27500000,84.00000000,3.71681416,0.04761905,0.00000000,5.99000000 +10257,chr22,43898968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.08000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.06000000 +10258,chr22,43899925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.38000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.02247191,0.00000000,6.34000000 +10259,chr22,43900170,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.94000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.99000000 +10260,chr22,43900374,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.51000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.02500000,0.00000000,5.78000000 +10261,chr22,43900487,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,0.73000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.22000000 +10262,chr22,43900492,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,1.12000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.11000000 +10263,chr22,43900894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.70000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.26000000 +10264,chr22,43901397,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.07000000,0.00000000,,0.28985507,72.00000000,3.18584071,0.04166667,0.00000000,5.92000000 +10265,chr22,43901673,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.13000000,0.00000000,,0.48387097,63.00000000,2.78761062,0.01587302,0.00000000,3.96000000 +10266,chr22,43901818,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +10267,chr22,43902377,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.45714286,75.00000000,3.31858407,0.05333333,0.00000000,7.98000000 +10268,chr22,43902459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,93.00000000,0.00000000,1.10000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,5.91000000 +10269,chr22,43902710,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,106.00000000,0.00000000,-1.42000000,0.00000000,,0.34210526,78.00000000,3.45132743,0.02564103,0.00000000,13.38000000 +10270,chr22,43902958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,118.00000000,0.00000000,1.42000000,0.00000000,,0.41758242,92.00000000,4.07079646,0.01086957,0.00000000,11.75000000 +10271,chr22,43903014,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-2.86000000,0.00000000,,0.41463415,83.00000000,3.67256637,0.01204819,0.00000000,8.56000000 +10272,chr22,43903262,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,1.11000000,0.00000000,,0.25423729,66.00000000,2.92035398,0.10606061,0.00000000,3.30000000 +10273,chr22,43903788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,-0.72000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.13000000 +10274,chr22,43903805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.13000000 +10275,chr22,43903810,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,67.00000000,0.00000000,0.59000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,5.07000000 +10276,chr22,43903858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,0.27000000,0.00000000,,0.24285714,73.00000000,3.23008850,0.04109589,0.00000000,5.58000000 +10277,chr22,43904178,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.35000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,52.00000000,0.00000000,-0.77000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,3.93000000 +10278,chr22,43904419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.81000000,5.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,5.50000000 +10279,chr22,43904487,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.85000000,0.00000000,,0.52857143,74.00000000,3.27433628,0.05405405,0.00000000,4.77000000 +10280,chr22,43904593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.17000000,0.00000000,,0.42372881,62.00000000,2.74336283,0.04838710,0.00000000,4.46000000 +10281,chr22,43904837,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,94.00000000,0.00000000,-1.74000000,0.00000000,,0.36000000,77.00000000,3.40707965,0.02597403,0.00000000,8.32000000 +10282,chr22,43905296,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.32000000 +10283,chr22,43905383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.14000000,0.00000000,,0.31343284,71.00000000,3.14159292,0.05633803,0.00000000,6.65000000 +10284,chr22,43905392,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,1.80000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,5.87000000 +10285,chr22,43905879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,2.01000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +10286,chr22,43906044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.71000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.02150538,0.00000000,5.90000000 +10287,chr22,43906269,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,55.00000000,0.00000000,-1.33000000,0.00000000,,0.30769231,65.00000000,2.87610619,0.00000000,0.00000000,2.79000000 +10288,chr22,43906457,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +10289,chr22,43906706,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,1.20000000,0.00000000,,0.23529412,74.00000000,3.27433628,0.08108108,0.00000000,4.12000000 +10290,chr22,43910981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.02000000 +10291,chr22,43911122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +10292,chr22,43918708,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.92000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.69000000 +10293,chr22,43919812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.29333333,77.00000000,3.40707965,0.02597403,0.00000000,5.79000000 +10294,chr22,43922818,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.17000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,5.99000000 +10295,chr22,43927090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,0.00000000,0.14000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.06000000 +10296,chr22,43927717,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,58.00000000,0.00000000,-0.35000000,0.00000000,,0.42028986,73.00000000,3.23008850,0.04109589,0.00000000,6.38000000 +10297,chr22,43928085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.45000000 +10298,chr22,43928291,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.11111111,75.00000000,3.31858407,0.04000000,0.00000000,4.80000000 +10299,chr22,43929975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,5.91000000 +10300,chr22,43932101,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.84000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,5.75000000 +10301,chr22,43932714,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +10302,chr22,43933317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.14130435,94.00000000,4.15929204,0.02127660,0.00000000,5.46000000 +10303,chr22,43934394,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.16000000,0.00000000,,0.18309859,83.00000000,3.67256637,0.14457831,0.00000000,6.08000000 +10304,chr22,43935431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.24193548,65.00000000,2.87610619,0.04615385,0.00000000,6.35000000 +10305,chr22,43935831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.22000000 +10306,chr22,43941700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-1.89000000,0.00000000,,0.21698113,110.00000000,4.86725664,0.03636364,0.00000000,5.93000000 +10307,chr22,43947827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.89000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.24561404,58.00000000,2.56637168,0.01724138,0.00000000,6.32000000 +10308,chr22,43950399,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,1.69000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,5.90000000 +10309,chr22,43961149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-2.54000000,0.00000000,,0.17647059,70.00000000,3.09734513,0.01428571,0.00000000,6.52000000 +10310,chr22,43986192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,25.00000000,1.10619469,0.08000000,0.00000000,45.00000000,0.00000000,-0.81000000,0.00000000,,0.35897436,40.00000000,1.76991150,0.02500000,0.00000000,4.13000000 +10311,chr22,43993274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,94.00000000,0.00000000,1.62000000,0.00000000,,0.26923077,81.00000000,3.58407080,0.03703704,0.00000000,5.10000000 +10312,chr22,44003881,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-2.05000000,0.00000000,,0.42028986,72.00000000,3.18584071,0.01388889,0.00000000,4.55000000 +10313,chr22,44004818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.20000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.52000000 +10314,chr22,44005940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,5.77000000 +10315,chr22,44007304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.76000000 +10316,chr22,44008032,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,1.08000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.17000000 +10317,chr22,44014251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +10318,chr22,44015606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,88.00000000,0.00000000,1.88000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,5.71000000 +10319,chr22,44015758,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.61000000 +10320,chr22,44016286,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.55000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.15000000 +10321,chr22,44016310,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,59.00000000,0.00000000,-0.10000000,0.00000000,,0.44615385,73.00000000,3.23008850,0.10958904,0.00000000,6.40000000 +10322,chr22,44030865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.52112676,75.00000000,3.31858407,0.01333333,0.00000000,8.32000000 +10323,chr22,44052458,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.60000000 +10324,chr22,44054569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.97000000,0.00000000,,0.30303030,67.00000000,2.96460177,0.01492537,0.00000000,6.74000000 +10325,chr22,44055565,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,97.00000000,0.00000000,1.66000000,0.00000000,,0.37349398,86.00000000,3.80530973,0.03488372,0.00000000,7.49000000 +10326,chr22,44055733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-1.08000000,0.00000000,,0.15714286,73.00000000,3.23008850,0.04109589,0.00000000,5.67000000 +10327,chr22,44055943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.12000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,4.61000000 +10328,chr22,44056076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.35820896,69.00000000,3.05309735,0.01449275,0.00000000,8.37000000 +10329,chr22,44056142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,2.55000000,0.00000000,,0.28571429,64.00000000,2.83185841,0.01562500,0.00000000,3.02000000 +10330,chr22,44056209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.20000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.57000000 +10331,chr22,44056438,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,0.19000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.01282051,0.00000000,6.19000000 +10332,chr22,44056532,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.38000000 +10333,chr22,44058286,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.41379310,87.00000000,3.84955752,0.00000000,0.00000000,8.55000000 +10334,chr22,44058636,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.43055556,87.00000000,3.84955752,0.16091954,0.00000000,5.06000000 +10335,chr22,44058858,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.31147541,63.00000000,2.78761062,0.03174603,0.00000000,6.53000000 +10336,chr22,44058986,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.27118644,62.00000000,2.74336283,0.04838710,0.00000000,6.33000000 +10337,chr22,44060812,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-2.56000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.01754386,0.00000000,4.66000000 +10338,chr22,44062192,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,106.00000000,0.00000000,0.12000000,0.00000000,,0.35443038,80.00000000,3.53982301,0.01250000,0.00000000,14.73000000 +10339,chr22,44062640,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.02702703,0.00000000,51.00000000,0.00000000,-0.01000000,0.00000000,,0.34328358,71.00000000,3.14159292,0.04225352,0.00000000,3.93000000 +10340,chr22,44062880,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,48.00000000,0.00000000,-0.91000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.00000000,0.00000000,4.12000000 +10341,chr22,44064115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,1.47000000,0.00000000,,0.44047619,85.00000000,3.76106195,0.01176471,0.00000000,8.44000000 +10342,chr22,44064267,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,-0.95000000,0.00000000,,0.36708861,82.00000000,3.62831858,0.03658537,0.00000000,7.45000000 +10343,chr22,44066072,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-1.30000000,0.00000000,,0.41975309,83.00000000,3.67256637,0.01204819,0.00000000,8.51000000 +10344,chr22,44067987,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,1.40000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,4.43000000 +10345,chr22,44070670,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.43000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,6.16000000 +10346,chr22,44070807,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-2.17000000,0.00000000,,0.41573034,90.00000000,3.98230088,0.00000000,0.00000000,8.82000000 +10347,chr22,44071055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-1.43000000,0.00000000,,0.48148148,81.00000000,3.58407080,0.00000000,0.00000000,8.18000000 +10348,chr22,44074156,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,8.26000000 +10349,chr22,44080355,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.50000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.72000000 +10350,chr22,44083723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.41000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.43000000 +10351,chr22,44088319,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,0.13000000,0.00000000,,0.27027027,80.00000000,3.53982301,0.05000000,0.00000000,5.77000000 +10352,chr22,44098167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.48000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.00000000,0.00000000,6.55000000 +10353,chr22,44098437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.21052632,59.00000000,2.61061947,0.03389831,0.00000000,6.62000000 +10354,chr22,44098539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-0.09000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,6.23000000 +10355,chr22,44098647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,55.00000000,0.00000000,-1.13000000,0.00000000,,0.29824561,57.00000000,2.52212389,0.00000000,0.00000000,2.76000000 +10356,chr22,44102254,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.27272727,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +10357,chr22,44102321,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.01000000 +10358,chr22,44103678,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-0.77000000,0.00000000,,0.11111111,91.00000000,4.02654867,0.00000000,0.00000000,5.71000000 +10359,chr22,44104263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.29000000,0.00000000,,0.20408163,100.00000000,4.42477876,0.02000000,0.00000000,6.50000000 +10360,chr22,44108125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +10361,chr22,44121385,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,0.04000000,0.00000000,,0.45283019,55.00000000,2.43362832,0.03636364,0.00000000,6.46000000 +10362,chr22,44121400,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.59000000,0.00000000,,0.45901639,61.00000000,2.69911504,0.00000000,0.00000000,9.21000000 +10363,chr22,44121558,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.04000000,0.00000000,,0.37313433,71.00000000,3.14159292,0.05633803,0.00000000,8.37000000 +10364,chr22,44122009,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.54000000,0.00000000,,0.47252747,92.00000000,4.07079646,0.01086957,0.00000000,8.54000000 +10365,chr22,44122588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-2.53000000,0.00000000,,0.24137931,63.00000000,2.78761062,0.07936508,0.00000000,6.23000000 +10366,chr22,44122996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.02000000 +10367,chr22,44124012,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,1.29000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,14.00000000 +10368,chr22,44125395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,5.77000000 +10369,chr22,44128020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.92000000,0.00000000,,0.11111111,84.00000000,3.71681416,0.03571429,0.00000000,5.02000000 +10370,chr22,44134283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.60000000 +10371,chr22,44134574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.14102564,80.00000000,3.53982301,0.02500000,0.00000000,5.39000000 +10372,chr22,44138193,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.32000000 +10373,chr22,44143013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,-0.31000000,0.00000000,,0.17741935,66.00000000,2.92035398,0.06060606,0.00000000,3.91000000 +10374,chr22,44145479,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.51000000 +10375,chr22,44155090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.13000000,0.00000000,,0.25806452,64.00000000,2.83185841,0.03125000,0.00000000,6.29000000 +10376,chr22,44156872,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,81.00000000,0.00000000,-0.16000000,0.00000000,,0.24637681,73.00000000,3.23008850,0.05479452,0.00000000,5.90000000 +10377,chr22,44162802,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-1.28000000,0.00000000,,0.27173913,95.00000000,4.20353982,0.03157895,0.00000000,6.61000000 +10378,chr22,44162826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.71000000,0.00000000,,0.22340426,97.00000000,4.29203540,0.03092784,0.00000000,6.30000000 +10379,chr22,44162931,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.48000000,0.00000000,,0.23404255,97.00000000,4.29203540,0.03092784,0.00000000,6.04000000 +10380,chr22,44164115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,96.00000000,0.00000000,0.04000000,0.00000000,,0.22857143,107.00000000,4.73451327,0.01869159,0.00000000,5.35000000 +10381,chr22,44167659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.05000000,0.00000000,,0.24242424,71.00000000,3.14159292,0.02816901,0.00000000,6.27000000 +10382,chr22,44168522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.17391304,72.00000000,3.18584071,0.04166667,0.00000000,5.86000000 +10383,chr22,44169454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.59000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.02439024,0.00000000,6.35000000 +10384,chr22,44169631,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.20000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.52000000 +10385,chr22,44169712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.74000000,0.00000000,,0.19672131,70.00000000,3.09734513,0.12857143,0.00000000,6.06000000 +10386,chr22,44170683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,57.00000000,0.00000000,-1.61000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.03225806,0.00000000,2.80000000 +10387,chr22,44171555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,83.00000000,0.00000000,-1.07000000,0.00000000,,0.30000000,91.00000000,4.02654867,0.01098901,0.00000000,6.76000000 +10388,chr22,44172198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.24000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.01515152,5.87000000 +10389,chr22,44173323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.28000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.20000000 +10390,chr22,44173652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.52000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +10391,chr22,44173843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,6.27000000 +10392,chr22,44175674,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,66.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,70.00000000,3.09734513,0.21428571,0.00000000,5.66000000 +10393,chr22,44175675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.20000000,0.00000000,62.00000000,0.00000000,-0.65000000,0.00000000,,0.15094340,69.00000000,3.05309735,0.21739130,0.00000000,4.83000000 +10394,chr22,44175792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,2.13000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.94000000 +10395,chr22,44176698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.04000000,0.00000000,,0.17241379,91.00000000,4.02654867,0.04395604,0.00000000,6.01000000 +10396,chr22,44178438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +10397,chr22,44178524,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,7.14000000 +10398,chr22,44179698,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.27536232,71.00000000,3.14159292,0.02816901,0.00000000,6.33000000 +10399,chr22,44183815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.21538462,65.00000000,2.87610619,0.00000000,0.00000000,6.51000000 +10400,chr22,44183856,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,1.97000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,5.57000000 +10401,chr22,44183951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,-1.15000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,6.03000000 +10402,chr22,44184381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.32000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,6.62000000 +10403,chr22,44184590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.46000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.34000000 +10404,chr22,44185166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,0.00000000,2.42000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.01538462,0.00000000,13.44000000 +10405,chr22,44186256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.96000000 +10406,chr22,44201542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.02000000 +10407,chr22,44203243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.22000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.02150538,0.00000000,6.35000000 +10408,chr22,44203378,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.15730337,90.00000000,3.98230088,0.01111111,0.00000000,5.68000000 +10409,chr22,44203572,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,95.00000000,0.00000000,0.77000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,5.17000000 +10410,chr22,44203651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.20000000,0.00000000,,0.20000000,106.00000000,4.69026549,0.00943396,0.00000000,6.60000000 +10411,chr22,44203856,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.92000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +10412,chr22,44203901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,1.96000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.73000000 +10413,chr22,44204042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.34000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.05000000,0.00000000,5.86000000 +10414,chr22,44204255,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.79000000 +10415,chr22,44204292,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,2.04000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,5.72000000 +10416,chr22,44204295,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,2.38000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,5.72000000 +10417,chr22,44204946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.31000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,6.18000000 +10418,chr22,44205619,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,0.78000000,0.00000000,,0.29629630,81.00000000,3.58407080,0.00000000,0.00000000,5.92000000 +10419,chr22,44206292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +10420,chr22,44211634,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10421,chr22,44212577,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,2.74000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +10422,chr22,44212732,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,2.00000000,0.00000000,,0.30555556,75.00000000,3.31858407,0.02666667,0.00000000,7.08000000 +10423,chr22,44213423,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.19000000 +10424,chr22,44213489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.21538462,71.00000000,3.14159292,0.08450704,0.00000000,5.54000000 +10425,chr22,44213560,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.93000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,0.07000000,0.00000000,,0.15151515,76.00000000,3.36283186,0.13157895,0.00000000,4.88000000 +10426,chr22,44213730,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,77.00000000,0.00000000,-0.78000000,0.00000000,,0.22500000,86.00000000,3.80530973,0.06976744,0.00000000,6.33000000 +10427,chr22,44216775,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,-2.53000000,0.00000000,,0.46376812,69.00000000,3.05309735,0.00000000,0.00000000,3.89000000 +10428,chr22,44216937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,39.00000000,0.00000000,0.07000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,2.80000000 +10429,chr22,44217400,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +10430,chr22,44217630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.73000000,0.00000000,,0.29629630,81.00000000,3.58407080,0.00000000,0.00000000,6.73000000 +10431,chr22,44217642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +10432,chr22,44217682,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.50000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.61000000 +10433,chr22,44217732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.68000000 +10434,chr22,44218093,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.23000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.40000000 +10435,chr22,44218182,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.89000000 +10436,chr22,44218434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.17000000,0.00000000,,0.14814815,84.00000000,3.71681416,0.03571429,0.00000000,5.55000000 +10437,chr22,44218473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.81000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,5.85000000 +10438,chr22,44218483,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +10439,chr22,44218735,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.28000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,2.83000000 +10440,chr22,44218773,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.29000000,0.00000000,,0.45833333,73.00000000,3.23008850,0.01369863,0.00000000,5.88000000 +10441,chr22,44219553,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.01000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.77000000 +10442,chr22,44220315,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,52.00000000,0.00000000,0.18000000,0.00000000,,0.42187500,66.00000000,2.92035398,0.00000000,0.00000000,4.16000000 +10443,chr22,44220338,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.35000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,7.91000000 +10444,chr22,44221508,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,38.00000000,0.00000000,-2.25000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.62000000 +10445,chr22,44221522,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.34000000,0.00000000,,0.46250000,81.00000000,3.58407080,0.01234568,0.00000000,7.80000000 +10446,chr22,44221575,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,8.33000000 +10447,chr22,44221645,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.05000000,0.00000000,,0.41975309,83.00000000,3.67256637,0.02409639,0.00000000,8.33000000 +10448,chr22,44221763,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.25000000,0.00000000,,0.45833333,99.00000000,4.38053097,0.03030303,0.00000000,7.88000000 +10449,chr22,44221809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.41666667,87.00000000,3.84955752,0.03448276,0.00000000,8.22000000 +10450,chr22,44221820,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.41573034,90.00000000,3.98230088,0.01111111,0.00000000,8.63000000 +10451,chr22,44221916,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.39080460,89.00000000,3.93805310,0.02247191,0.00000000,8.19000000 +10452,chr22,44221984,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.47000000,0.00000000,,0.42682927,88.00000000,3.89380531,0.05681818,0.00000000,8.22000000 +10453,chr22,44222482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.37000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.59000000 +10454,chr22,44222726,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-1.58000000,0.00000000,,0.45454545,93.00000000,4.11504425,0.05376344,0.00000000,8.13000000 +10455,chr22,44222824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.38095238,88.00000000,3.89380531,0.04545455,0.00000000,8.24000000 +10456,chr22,44223455,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.78000000,0.00000000,,0.41891892,75.00000000,3.31858407,0.01333333,0.00000000,8.04000000 +10457,chr22,44223697,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,8.01000000 +10458,chr22,44223711,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-1.20000000,0.00000000,,0.43298969,101.00000000,4.46902655,0.02970297,0.00000000,4.78000000 +10459,chr22,44223820,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,1.35000000,0.00000000,,0.39240506,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +10460,chr22,44223906,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-2.93000000,0.00000000,,0.49382716,82.00000000,3.62831858,0.00000000,0.00000000,8.15000000 +10461,chr22,44224704,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-0.51000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,8.33000000 +10462,chr22,44225302,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.40000000,77.00000000,3.40707965,0.02597403,0.00000000,8.21000000 +10463,chr22,44229828,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.99000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.02469136,0.00000000,4.30000000 +10464,chr22,44230842,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.59000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,-2.32000000,0.00000000,,0.47619048,72.00000000,3.18584071,0.12500000,0.00000000,4.66000000 +10465,chr22,44231719,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.66000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.26086957,0.00000000,18.00000000,0.00000000,-1.92000000,0.00000000,,0.50000000,60.00000000,2.65486726,0.26666667,0.00000000,3.73000000 +10466,chr22,44231913,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.15000000,0.00000000,,0.39436620,72.00000000,3.18584071,0.01388889,0.00000000,4.57000000 +10467,chr22,44238828,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-2.08000000,0.00000000,,0.50000000,106.00000000,4.69026549,0.00000000,0.00000000,8.95000000 +10468,chr22,44241593,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.10000000,0.02439024,87.00000000,0.00000000,0.28000000,0.00000000,,0.28378378,86.00000000,3.80530973,0.11627907,0.00000000,5.91000000 +10469,chr22,44247281,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.16000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.01136364,0.00000000,6.32000000 +10470,chr22,44248854,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.15000000,0.00000000,,0.15492958,74.00000000,3.27433628,0.04054054,0.00000000,5.35000000 +10471,chr22,44276560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.68000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +10472,chr22,44278263,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.62000000 +10473,chr22,44282846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.13333333,78.00000000,3.45132743,0.03846154,0.00000000,5.00000000 +10474,chr22,44282847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.51000000,0.00000000,,0.13698630,76.00000000,3.36283186,0.03947368,0.00000000,5.35000000 +10475,chr22,44284798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,2.92000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.06000000 +10476,chr22,44286857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-1.21000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,6.28000000 +10477,chr22,44288159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.11000000,0.00000000,,0.23893805,117.00000000,5.17699115,0.00854701,0.00000000,6.30000000 +10478,chr22,44288408,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.90000000,0.00000000,,0.21348315,95.00000000,4.20353982,0.06315789,0.00000000,6.22000000 +10479,chr22,44288496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,2.09000000,0.00000000,,0.18691589,109.00000000,4.82300885,0.01834862,0.00000000,5.63000000 +10480,chr22,44289099,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.78000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.03191489,0.00000000,5.70000000 +10481,chr22,44289233,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.78000000 +10482,chr22,44289239,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-1.07000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +10483,chr22,44289738,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.82000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +10484,chr22,44291981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.04000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.50000000 +10485,chr22,44292658,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.89000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.03157895,0.00000000,6.31000000 +10486,chr22,44292684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.73000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.02105263,0.00000000,6.34000000 +10487,chr22,44293292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.36000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,4.84000000 +10488,chr22,44293357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.40000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.00000000,0.00000000,6.24000000 +10489,chr22,44294858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.61000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10490,chr22,44295276,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.33000000 +10491,chr22,44295281,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.38000000,0.00000000,,0.21739130,97.00000000,4.29203540,0.04123711,0.00000000,6.31000000 +10492,chr22,44295289,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.50000000,0.00000000,,0.20879121,96.00000000,4.24778761,0.04166667,0.00000000,6.29000000 +10493,chr22,44295760,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.23000000 +10494,chr22,44303653,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,53.00000000,0.00000000,0.75000000,0.00000000,,0.36734694,52.00000000,2.30088496,0.05769231,0.00000000,4.94000000 +10495,chr22,44303677,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,44.00000000,0.00000000,-0.70000000,0.00000000,,0.40350877,58.00000000,2.56637168,0.01724138,0.00000000,4.30000000 +10496,chr22,44303700,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,-0.73000000,0.00000000,,0.33898305,60.00000000,2.65486726,0.00000000,0.00000000,4.88000000 +10497,chr22,44303741,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,0.17000000,0.00000000,,0.43859649,58.00000000,2.56637168,0.01724138,0.00000000,4.21000000 +10498,chr22,44303943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.59000000,0.00000000,,0.25333333,84.00000000,3.71681416,0.10714286,0.00000000,5.78000000 +10499,chr22,44304067,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.44000000,0.00000000,,0.46478873,72.00000000,3.18584071,0.01388889,0.00000000,4.21000000 +10500,chr22,44304658,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,0.31000000,0.00000000,,0.40659341,95.00000000,4.20353982,0.04210526,0.00000000,7.98000000 +10501,chr22,44304707,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,70.00000000,0.00000000,-2.04000000,0.00000000,,0.39189189,77.00000000,3.40707965,0.02597403,0.00000000,8.30000000 +10502,chr22,44304779,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,64.00000000,0.00000000,0.45000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.01388889,0.00000000,7.98000000 +10503,chr22,44306812,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.36000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,44.00000000,0.00000000,0.10000000,0.00000000,,0.37500000,62.00000000,2.74336283,0.22580645,0.00000000,4.16000000 +10504,chr22,44306867,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.47000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,-1.68000000,0.00000000,,0.37500000,61.00000000,2.69911504,0.08196721,0.00000000,4.76000000 +10505,chr22,44311836,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,0.00000000,-0.02000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,14.34000000 +10506,chr22,44313265,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.44318182,92.00000000,4.07079646,0.03260870,0.00000000,8.35000000 +10507,chr22,44327239,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,1.71000000,0.00000000,,0.13114754,64.00000000,2.83185841,0.04687500,0.00000000,2.85000000 +10508,chr22,44346881,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-1.28000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.09000000 +10509,chr22,44347064,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,0.01000000,0.00000000,,0.37681159,71.00000000,3.14159292,0.02816901,0.00000000,7.95000000 +10510,chr22,44347756,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.88000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.21000000 +10511,chr22,44352841,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,58.00000000,0.00000000,0.18000000,0.00000000,,0.37662338,79.00000000,3.49557522,0.02531646,0.00000000,5.79000000 +10512,chr22,44354330,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,33.00000000,0.00000000,0.33000000,0.00000000,,0.42500000,80.00000000,3.53982301,0.00000000,0.00000000,3.76000000 +10513,chr22,44360038,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.22000000 +10514,chr22,44361191,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.25000000,0.00000000,,0.37500000,74.00000000,3.27433628,0.02702703,0.00000000,8.35000000 +10515,chr22,44361559,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.38961039,78.00000000,3.45132743,0.01282051,0.00000000,8.84000000 +10516,chr22,44364450,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.22000000,0.00000000,,0.46296296,56.00000000,2.47787611,0.01785714,0.00000000,4.01000000 +10517,chr22,44364852,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.00000000,0.00000000,8.96000000 +10518,chr22,44367097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.08000000,0.00000000,,0.34210526,76.00000000,3.36283186,0.00000000,0.00000000,8.31000000 +10519,chr22,44367397,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.51000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +10520,chr22,44367511,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.06000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +10521,chr22,44367595,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.22000000,0.00000000,,0.27142857,72.00000000,3.18584071,0.02777778,0.00000000,6.30000000 +10522,chr22,44367872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.48000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +10523,chr22,44368769,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,0.00000000,-0.34000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.05882353,0.00000000,6.37000000 +10524,chr22,44368772,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.23000000,0.00000000,,0.49382716,86.00000000,3.80530973,0.05813953,0.00000000,7.48000000 +10525,chr22,44369814,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,1.45000000,0.00000000,,0.43750000,99.00000000,4.38053097,0.02020202,0.00000000,4.37000000 +10526,chr22,44370432,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,0.00000000,-0.02000000,0.00000000,,0.51250000,83.00000000,3.67256637,0.03614458,0.00000000,4.40000000 +10527,chr22,44390306,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.20967742,67.00000000,2.96460177,0.02985075,0.00000000,6.31000000 +10528,chr22,44390360,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.52000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.69000000 +10529,chr22,44390484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +10530,chr22,44390952,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.97000000,0.00000000,,0.23711340,99.00000000,4.38053097,0.02020202,0.00000000,6.28000000 +10531,chr22,44393062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.59000000 +10532,chr22,44393637,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.79000000 +10533,chr22,44395658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.63000000,0.00000000,,0.22222222,67.00000000,2.96460177,0.04477612,0.00000000,6.31000000 +10534,chr22,44395927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,81.00000000,0.00000000,-0.80000000,0.00000000,,0.24615385,75.00000000,3.31858407,0.13333333,0.00000000,5.79000000 +10535,chr22,44396248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.96000000 +10536,chr22,44400256,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +10537,chr22,44404134,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.14000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +10538,chr22,44413313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.26000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +10539,chr22,44436776,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.41000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.13000000 +10540,chr22,44436777,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,1.92000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.39000000 +10541,chr22,44437202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,89.00000000,0.00000000,-0.55000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +10542,chr22,44437369,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.61000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.28000000 +10543,chr22,44437575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,-0.33000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.55000000 +10544,chr22,44437700,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.00000000,0.00000000,,0.21951220,88.00000000,3.89380531,0.04545455,0.00000000,6.40000000 +10545,chr22,44437716,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.22891566,87.00000000,3.84955752,0.04597701,0.00000000,6.30000000 +10546,chr22,44437719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.38000000,0.00000000,,0.22891566,87.00000000,3.84955752,0.04597701,0.00000000,6.08000000 +10547,chr22,44438093,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.29000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.56000000 +10548,chr22,44438308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.34000000,0.00000000,,0.17391304,74.00000000,3.27433628,0.06756757,0.00000000,5.62000000 +10549,chr22,44438412,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.62000000,0.00000000,,0.12941176,88.00000000,3.89380531,0.03409091,0.00000000,5.02000000 +10550,chr22,44438571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +10551,chr22,44439593,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.29000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,6.34000000 +10552,chr22,44440421,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.86000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.64000000 +10553,chr22,44440484,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,70.00000000,0.00000000,-0.96000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.38000000 +10554,chr22,44473788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.88000000 +10555,chr22,44491834,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +10556,chr22,44494381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.02409639,0.00000000,5.05000000 +10557,chr22,44536701,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.44000000 +10558,chr22,44536894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +10559,chr22,44536997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.29687500,69.00000000,3.05309735,0.07246377,0.00000000,6.24000000 +10560,chr22,44537028,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.57000000,0.00000000,,0.30769231,66.00000000,2.92035398,0.01515152,0.00000000,6.00000000 +10561,chr22,44537065,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,2.07000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10562,chr22,44537197,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-1.04000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.61000000 +10563,chr22,44537502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +10564,chr22,44537532,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.87000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.37000000 +10565,chr22,44538003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.14444444,90.00000000,3.98230088,0.00000000,0.00000000,5.92000000 +10566,chr22,44538659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.12000000,0.00000000,,0.18421053,80.00000000,3.53982301,0.05000000,0.00000000,6.63000000 +10567,chr22,44539075,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.20000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,6.38000000 +10568,chr22,44539491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.96000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,45.00000000,0.00000000,-0.95000000,0.00000000,,0.33333333,62.00000000,2.74336283,0.17741935,0.00000000,4.37000000 +10569,chr22,44539726,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.34000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,67.00000000,0.00000000,1.52000000,0.00000000,,0.18181818,62.00000000,2.74336283,0.11290323,0.00000000,5.28000000 +10570,chr22,44539749,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.14000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,58.00000000,0.00000000,-0.69000000,0.00000000,,0.14583333,59.00000000,2.61061947,0.16949153,0.00000000,3.95000000 +10571,chr22,44576984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.68000000 +10572,chr22,44577000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.25000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +10573,chr22,44577283,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.03000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.41000000 +10574,chr22,44579864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.22000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.79000000 +10575,chr22,44599217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.28000000 +10576,chr22,44604655,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-2.28000000,0.00000000,,0.20634921,67.00000000,2.96460177,0.05970149,0.00000000,6.07000000 +10577,chr22,44604826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +10578,chr22,44604897,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.26153846,73.00000000,3.23008850,0.08219178,0.00000000,5.80000000 +10579,chr22,44605067,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,52.00000000,0.00000000,1.59000000,0.00000000,,0.41269841,67.00000000,2.96460177,0.05970149,0.00000000,4.84000000 +10580,chr22,44605073,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,1.26000000,0.00000000,,0.40322581,68.00000000,3.00884956,0.07352941,0.00000000,4.64000000 +10581,chr22,44605402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,87.00000000,0.00000000,-1.22000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +10582,chr22,44605510,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.40322581,63.00000000,2.78761062,0.01587302,0.00000000,8.33000000 +10583,chr22,44605555,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,2.41000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.19000000 +10584,chr22,44606612,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.44000000 +10585,chr22,44606668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.22000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +10586,chr22,44607229,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.28000000,0.00000000,,0.17543860,59.00000000,2.61061947,0.03389831,0.00000000,5.67000000 +10587,chr22,44607868,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,0.67000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,4.89000000 +10588,chr22,44607998,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,26.00000000,0.00000000,0.15000000,0.00000000,,0.42028986,72.00000000,3.18584071,0.02777778,0.00000000,3.48000000 +10589,chr22,44608475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.71000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.21000000 +10590,chr22,44608484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.84000000 +10591,chr22,44609091,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.12280702,60.00000000,2.65486726,0.05000000,0.00000000,4.17000000 +10592,chr22,44609092,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-0.68000000,0.00000000,,0.44642857,59.00000000,2.61061947,0.05084746,0.00000000,4.77000000 +10593,chr22,44609481,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-1.71000000,0.00000000,,0.33333333,82.00000000,3.62831858,0.00000000,0.00000000,8.67000000 +10594,chr22,44609917,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.96000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.22000000 +10595,chr22,44609981,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.25000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.01388889,0.00000000,6.37000000 +10596,chr22,44610109,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.32000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.52000000 +10597,chr22,44610396,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.86000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.93000000 +10598,chr22,44610690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.87000000,0.00000000,,0.14814815,56.00000000,2.47787611,0.03571429,0.00000000,5.78000000 +10599,chr22,44610725,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.50000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,6.73000000 +10600,chr22,44610879,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.10000000,0.00000000,,0.31578947,79.00000000,3.49557522,0.02531646,0.00000000,7.07000000 +10601,chr22,44610950,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.24000000,0.00000000,,0.45454545,81.00000000,3.58407080,0.04938272,0.00000000,7.93000000 +10602,chr22,44611097,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.51000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +10603,chr22,44611283,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-0.63000000,0.00000000,,0.49333333,77.00000000,3.40707965,0.02597403,0.00000000,4.42000000 +10604,chr22,44611396,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,7.96000000 +10605,chr22,44611468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.66000000,0.00000000,,0.30526316,98.00000000,4.33628319,0.03061224,0.00000000,6.28000000 +10606,chr22,44611588,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,0.69000000,0.00000000,,0.41176471,71.00000000,3.14159292,0.04225352,0.00000000,3.80000000 +10607,chr22,44611683,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.80000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +10608,chr22,44611928,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.20000000,0.00000000,74.00000000,0.00000000,-0.31000000,0.00000000,,0.21518987,89.00000000,3.93805310,0.11235955,0.00000000,6.01000000 +10609,chr22,44612034,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.27000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.00000000 +10610,chr22,44612119,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-1.21000000,0.00000000,,0.48611111,72.00000000,3.18584071,0.00000000,0.00000000,4.19000000 +10611,chr22,44612167,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,8.15000000 +10612,chr22,44612737,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.96000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.22000000 +10613,chr22,44613195,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.20512821,83.00000000,3.67256637,0.06024096,0.01190476,5.67000000 +10614,chr22,44613312,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.17000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +10615,chr22,44613415,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.68000000,0.00000000,,0.48192771,84.00000000,3.71681416,0.01190476,0.00000000,8.62000000 +10616,chr22,44613482,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +10617,chr22,44613595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +10618,chr22,44613685,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.76000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.98000000 +10619,chr22,44613902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.90000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.44000000 +10620,chr22,44614111,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,63.00000000,0.00000000,0.43000000,0.00000000,,0.47311828,96.00000000,4.24778761,0.03125000,0.00000000,7.71000000 +10621,chr22,44614112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.14000000,0.00000000,,0.29347826,95.00000000,4.20353982,0.03157895,0.00000000,5.89000000 +10622,chr22,44614435,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.07000000,0.00000000,,0.40000000,93.00000000,4.11504425,0.02150538,0.00000000,8.21000000 +10623,chr22,44614489,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,0.10000000,0.00000000,,0.44444444,82.00000000,3.62831858,0.01219512,0.00000000,4.69000000 +10624,chr22,44615880,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.00000000,6.67000000 +10625,chr22,44615978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.85000000,0.00000000,,0.23880597,71.00000000,3.14159292,0.05633803,0.00000000,6.62000000 +10626,chr22,44616072,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +10627,chr22,44617139,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.27000000,0.00000000,,0.43055556,74.00000000,3.27433628,0.01351351,0.00000000,8.33000000 +10628,chr22,44617353,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,28.00000000,0.00000000,-0.63000000,0.00000000,,0.40816327,55.00000000,2.43362832,0.10909091,0.00000000,3.79000000 +10629,chr22,44621646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-2.22000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.00000000,0.00000000,6.68000000 +10630,chr22,44621648,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.85000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.68000000 +10631,chr22,44621855,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.44000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.63000000 +10632,chr22,44649100,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.99000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +10633,chr22,44649153,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.36000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,5.88000000 +10634,chr22,44650439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.35000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.40000000 +10635,chr22,44662741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,0.55000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.24000000 +10636,chr22,44665887,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.22388060,0.00000000,6.29000000 +10637,chr22,44665918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,61.00000000,0.00000000,-1.24000000,0.00000000,,0.20338983,79.00000000,3.49557522,0.25316456,0.00000000,5.32000000 +10638,chr22,44667863,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,0.19000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.01408451,0.00000000,8.19000000 +10639,chr22,44669044,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.04000000,0.00000000,,0.16666667,93.00000000,4.11504425,0.09677419,0.00000000,2.81000000 +10640,chr22,44669664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.20000000,0.00000000,,0.27848101,81.00000000,3.58407080,0.01234568,0.00000000,6.68000000 +10641,chr22,44669881,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,1.01000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,5.80000000 +10642,chr22,44669986,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.69000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.52000000 +10643,chr22,44670114,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.62000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +10644,chr22,44670122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.41000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,6.44000000 +10645,chr22,44670155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.26000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,6.46000000 +10646,chr22,44670191,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.26000000 +10647,chr22,44670538,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.15000000,0.00000000,,0.28125000,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +10648,chr22,44673355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,-0.43000000,0.00000000,,0.33333333,71.00000000,3.14159292,0.02816901,0.00000000,8.09000000 +10649,chr22,44675799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,2.12000000,0.00000000,,0.18750000,64.00000000,2.83185841,0.00000000,0.00000000,6.52000000 +10650,chr22,44679136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.27692308,68.00000000,3.00884956,0.02941176,0.00000000,5.74000000 +10651,chr22,44686543,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,1.50000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.01000000 +10652,chr22,44687975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.29000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.75000000 +10653,chr22,44688613,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.12941176,85.00000000,3.76106195,0.00000000,0.00000000,4.88000000 +10654,chr22,44693331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,-1.66000000,0.00000000,,0.14814815,56.00000000,2.47787611,0.01785714,0.00000000,5.57000000 +10655,chr22,44695495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.20000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.32000000 +10656,chr22,44697075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,90.00000000,0.00000000,0.60000000,0.00000000,,0.29487179,78.00000000,3.45132743,0.00000000,0.00000000,5.86000000 +10657,chr22,44697295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,5.88000000 +10658,chr22,44697779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.77000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.69000000 +10659,chr22,44698667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.21000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +10660,chr22,44706262,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.02000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.69000000 +10661,chr22,44710293,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,77.00000000,0.00000000,1.42000000,0.00000000,,0.23437500,71.00000000,3.14159292,0.09859155,0.00000000,5.76000000 +10662,chr22,44710906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.09000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,5.01000000 +10663,chr22,44712045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.68000000 +10664,chr22,44712312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,49.00000000,0.00000000,0.90000000,0.00000000,,0.34042553,96.00000000,4.24778761,0.01041667,0.00000000,3.84000000 +10665,chr22,44712377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.86000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.55000000 +10666,chr22,44712465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.63000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,4.17000000 +10667,chr22,44712484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.60000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +10668,chr22,44712523,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.91000000,0.00000000,,0.23170732,86.00000000,3.80530973,0.03488372,0.00000000,6.23000000 +10669,chr22,44713223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,5.95000000 +10670,chr22,44713331,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.55000000,0.00000000,,0.27906977,90.00000000,3.98230088,0.02222222,0.00000000,6.49000000 +10671,chr22,44713413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,83.00000000,0.00000000,0.79000000,0.00000000,,0.32631579,98.00000000,4.33628319,0.03061224,0.00000000,7.63000000 +10672,chr22,44713786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.25000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.28000000 +10673,chr22,44714885,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-2.42000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.75000000 +10674,chr22,44714971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,0.27000000,0.00000000,,0.28409091,92.00000000,4.07079646,0.04347826,0.00000000,6.07000000 +10675,chr22,44714996,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-2.71000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.23000000 +10676,chr22,44715225,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.02061856,0.00000000,6.34000000 +10677,chr22,44715354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.13000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,6.61000000 +10678,chr22,44715397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.38000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.30000000 +10679,chr22,44717874,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.92000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.01724138,0.00000000,6.22000000 +10680,chr22,44717876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.26000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,6.20000000 +10681,chr22,44717953,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.53000000,0.00000000,,0.26415094,54.00000000,2.38938053,0.01851852,0.00000000,6.43000000 +10682,chr22,44718042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.80000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.34000000 +10683,chr22,44718297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.18867925,57.00000000,2.52212389,0.07017544,0.00000000,5.81000000 +10684,chr22,44718968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.98000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.54000000 +10685,chr22,44719142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,0.54000000,0.00000000,,0.16438356,84.00000000,3.71681416,0.13095238,0.00000000,5.01000000 +10686,chr22,44719604,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +10687,chr22,44719617,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.40000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.81000000 +10688,chr22,44719652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.35000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.04000000,0.00000000,6.30000000 +10689,chr22,44719877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.10000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.55000000 +10690,chr22,44720168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.18604651,92.00000000,4.07079646,0.05434783,0.00000000,5.75000000 +10691,chr22,44720247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.39000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +10692,chr22,44720291,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.00000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,5.70000000 +10693,chr22,44720364,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,1.12000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +10694,chr22,44720570,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.13000000 +10695,chr22,44720784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +10696,chr22,44721298,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.22033898,60.00000000,2.65486726,0.01666667,0.00000000,6.49000000 +10697,chr22,44721515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.96000000 +10698,chr22,44721554,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,47.00000000,0.00000000,-0.91000000,0.00000000,,0.50000000,82.00000000,3.62831858,0.02439024,0.00000000,4.70000000 +10699,chr22,44721676,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.76000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.00000000,0.00000000,6.68000000 +10700,chr22,44721714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.61000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +10701,chr22,44721749,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.00000000,0.00000000,6.36000000 +10702,chr22,44722653,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,59.00000000,0.00000000,-1.10000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.00000000,0.00000000,3.85000000 +10703,chr22,44722670,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.62000000,0.00000000,,0.39682540,65.00000000,2.87610619,0.03076923,0.00000000,8.35000000 +10704,chr22,44722744,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.49000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.77000000 +10705,chr22,44722767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.07000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,4.87000000 +10706,chr22,44723054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.03000000,0.00000000,,0.24561404,62.00000000,2.74336283,0.08064516,0.00000000,6.46000000 +10707,chr22,44723779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +10708,chr22,44726034,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.24731183,95.00000000,4.20353982,0.02105263,0.00000000,6.35000000 +10709,chr22,44727204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.72000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +10710,chr22,44728715,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.51000000,0.00000000,,0.20430108,96.00000000,4.24778761,0.02083333,0.00000000,6.53000000 +10711,chr22,44729800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +10712,chr22,44730597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.30000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.15000000 +10713,chr22,44732352,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.50000000,0.00000000,,0.16161616,100.00000000,4.42477876,0.00000000,0.00000000,4.29000000 +10714,chr22,44733382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,-1.55000000,0.00000000,,0.28409091,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +10715,chr22,44735963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.63000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.29000000 +10716,chr22,44752320,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,101.00000000,0.00000000,1.31000000,0.00000000,,0.35526316,78.00000000,3.45132743,0.01282051,0.00000000,8.49000000 +10717,chr22,44752468,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,38.00000000,0.00000000,-1.94000000,0.00000000,,0.39622642,56.00000000,2.47787611,0.05357143,0.00000000,4.04000000 +10718,chr22,44753467,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.16438356,78.00000000,3.45132743,0.06410256,0.00000000,5.41000000 +10719,chr22,44753468,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.06410256,0.00000000,6.00000000 +10720,chr22,44753471,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.80000000,0.00000000,,0.16216216,80.00000000,3.53982301,0.06250000,0.00000000,5.80000000 +10721,chr22,44754197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.90000000,0.00000000,,0.19117647,72.00000000,3.18584071,0.05555556,0.00000000,4.79000000 +10722,chr22,44754213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.98000000 +10723,chr22,44754250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.51000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.33000000 +10724,chr22,44754600,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.09000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +10725,chr22,44754930,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,1.21000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.68000000 +10726,chr22,44754953,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.04938272,0.00000000,5.32000000 +10727,chr22,44755027,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.67000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.72000000 +10728,chr22,44755119,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.10000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.75000000 +10729,chr22,44755166,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.00000000,0.00000000,6.36000000 +10730,chr22,44755174,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.36000000 +10731,chr22,44755840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.05633803,0.00000000,6.31000000 +10732,chr22,44756663,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,38.00000000,0.00000000,-0.33000000,0.00000000,,0.26086957,47.00000000,2.07964602,0.02127660,0.00000000,2.77000000 +10733,chr22,44756886,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.22784810,84.00000000,3.71681416,0.04761905,0.00000000,6.27000000 +10734,chr22,44756907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.23287671,77.00000000,3.40707965,0.05194805,0.00000000,5.89000000 +10735,chr22,44758171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.08000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.00000000,0.00000000,6.08000000 +10736,chr22,44759238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.49000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.80000000 +10737,chr22,44759408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,1.71000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.31000000 +10738,chr22,44760015,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.60000000,0.00000000,,0.50769231,68.00000000,3.00884956,0.04411765,0.00000000,7.83000000 +10739,chr22,44760375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.25000000 +10740,chr22,44760894,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.41000000 +10741,chr22,44761336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.13000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.36000000 +10742,chr22,44761972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.02150538,0.00000000,5.77000000 +10743,chr22,44767348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.63000000 +10744,chr22,44773591,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.63000000 +10745,chr22,44773668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.59000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.39000000 +10746,chr22,44775383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,6.37000000 +10747,chr22,44778466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.00000000 +10748,chr22,44782567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.24489796,52.00000000,2.30088496,0.05769231,0.00000000,6.31000000 +10749,chr22,44797792,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,1.02000000,0.00000000,,0.30303030,72.00000000,3.18584071,0.06944444,0.00000000,6.76000000 +10750,chr22,44798752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,-0.50000000,0.00000000,,0.09210526,78.00000000,3.45132743,0.02564103,0.00000000,5.05000000 +10751,chr22,44821141,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,2.06000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.54000000 +10752,chr22,44825163,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.99000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.02898551,0.00000000,6.20000000 +10753,chr22,44826926,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.30000000 +10754,chr22,44828736,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.58000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.21000000 +10755,chr22,44829367,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,0.98000000,0.00000000,,0.34567901,82.00000000,3.62831858,0.01219512,0.00000000,8.33000000 +10756,chr22,44829470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.76000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.99000000 +10757,chr22,44830639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.84000000,0.00000000,,0.23456790,85.00000000,3.76106195,0.04705882,0.00000000,6.61000000 +10758,chr22,44831105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,86.00000000,0.00000000,0.56000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,5.82000000 +10759,chr22,44831110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,0.78000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +10760,chr22,44831243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.21000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.01265823,0.00000000,6.19000000 +10761,chr22,44831287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-1.58000000,0.00000000,,0.30769231,79.00000000,3.49557522,0.01265823,0.00000000,6.58000000 +10762,chr22,44831292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,-0.94000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.34000000 +10763,chr22,44831393,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.24000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.25000000 +10764,chr22,44831438,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +10765,chr22,44831592,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,5.80000000 +10766,chr22,44831947,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,5.65000000 +10767,chr22,44832749,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,5.90000000 +10768,chr22,44833918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.00000000,0.00000000,5.91000000 +10769,chr22,44834556,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,-1.47000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.60000000 +10770,chr22,44835219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.16000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +10771,chr22,44835690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,2.03000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.04000000 +10772,chr22,44835801,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,-1.31000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.94000000 +10773,chr22,44836003,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.69000000,0.00000000,,0.28378378,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10774,chr22,44837085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-2.03000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,3.12000000 +10775,chr22,44837838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.40000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.53000000 +10776,chr22,44838281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,5.77000000 +10777,chr22,44838286,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.68000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +10778,chr22,44838428,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.95000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.02352941,0.00000000,5.48000000 +10779,chr22,44838525,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-1.09000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.94000000 +10780,chr22,44838859,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.85000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +10781,chr22,44838875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.25000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.22000000 +10782,chr22,44840733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.56000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +10783,chr22,44841357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,0.87000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,5.75000000 +10784,chr22,44841690,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.86000000 +10785,chr22,44845822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,2.37000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,5.78000000 +10786,chr22,44845915,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,0.19000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,6.20000000 +10787,chr22,44847359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,4.65000000 +10788,chr22,44849386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.17000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.00000000,0.00000000,5.94000000 +10789,chr22,44849479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.64000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +10790,chr22,44851916,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-2.11000000,0.00000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,6.80000000 +10791,chr22,44855289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.62000000 +10792,chr22,44856067,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.62000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.79000000 +10793,chr22,44856405,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,64.00000000,0.00000000,-0.22000000,4.11000000,,0.14285714,56.00000000,2.47787611,0.00000000,0.00000000,4.33000000 +10794,chr22,44856486,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.27000000,5.10000000,,0.11666667,60.00000000,2.65486726,0.00000000,0.00000000,3.50000000 +10795,chr22,44857441,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-1.41000000,4.47000000,,0.15254237,60.00000000,2.65486726,0.01666667,0.00000000,4.40000000 +10796,chr22,44857453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-0.26000000,4.51000000,,0.13432836,69.00000000,3.05309735,0.01449275,0.00000000,4.50000000 +10797,chr22,44857631,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.25000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.99000000 +10798,chr22,44857756,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.13000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.81000000 +10799,chr22,44857830,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,72.00000000,0.00000000,-0.44000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.06666667,0.00000000,5.55000000 +10800,chr22,44857838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-0.39000000,0.00000000,,0.16455696,84.00000000,3.71681416,0.05952381,0.00000000,5.95000000 +10801,chr22,44857884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.01000000,4.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.40000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,4.98000000 +10802,chr22,44857894,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,5.97000000 +10803,chr22,44857951,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.00000000,4.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-2.03000000,0.00000000,,0.14285714,78.00000000,3.45132743,0.07692308,0.00000000,5.66000000 +10804,chr22,44857955,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.96000000,4.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.77000000,0.00000000,,0.14492754,75.00000000,3.31858407,0.08000000,0.00000000,5.49000000 +10805,chr22,44857992,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.92000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.28000000 +10806,chr22,44858015,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.49000000 +10807,chr22,44858323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.75000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.13000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.00000000,0.00000000,7.07000000 +10808,chr22,44858349,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.67000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.12000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,2.93000000 +10809,chr22,44858665,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.12000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,5.31000000 +10810,chr22,44858727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-1.34000000,0.00000000,,0.25531915,48.00000000,2.12389381,0.02083333,0.00000000,6.43000000 +10811,chr22,44858919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.03000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.66000000,0.00000000,,0.13559322,60.00000000,2.65486726,0.01666667,0.00000000,4.19000000 +10812,chr22,44859275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,1.93000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.29000000 +10813,chr22,44859324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.43000000,0.00000000,,0.10937500,65.00000000,2.87610619,0.01538462,0.00000000,4.87000000 +10814,chr22,44859407,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,69.00000000,0.00000000,-0.58000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.21000000 +10815,chr22,44859580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.94000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.44000000 +10816,chr22,44859750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.69000000 +10817,chr22,44859764,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.83000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.80000000 +10818,chr22,44859922,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.62000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +10819,chr22,44859952,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +10820,chr22,44860299,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,0.61000000,0.00000000,,0.11666667,68.00000000,3.00884956,0.11764706,0.00000000,2.85000000 +10821,chr22,44860343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.01000000,0.00000000,,0.13333333,60.00000000,2.65486726,0.00000000,0.00000000,4.26000000 +10822,chr22,44861908,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.00000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.30000000 +10823,chr22,44861990,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,6.01000000 +10824,chr22,44862132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.19000000 +10825,chr22,44862173,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.19000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.27000000 +10826,chr22,44862453,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +10827,chr22,44862909,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,96.00000000,4.24778761,0.04166667,0.00000000,5.81000000 +10828,chr22,44863694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.66000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.16000000 +10829,chr22,44863704,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-1.25000000,0.00000000,,0.24675325,81.00000000,3.58407080,0.04938272,0.00000000,5.97000000 +10830,chr22,44864165,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,2.02000000,0.00000000,,0.13888889,76.00000000,3.36283186,0.03947368,0.00000000,5.45000000 +10831,chr22,44864238,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,71.00000000,0.00000000,-0.59000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.36000000 +10832,chr22,44864697,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,1.17000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +10833,chr22,44865438,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.21505376,97.00000000,4.29203540,0.04123711,0.00000000,6.28000000 +10834,chr22,44865666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.22000000 +10835,chr22,44865957,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.05000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.67000000 +10836,chr22,44866332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.65000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.58000000 +10837,chr22,44866363,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.11000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.00000000,0.00000000,6.37000000 +10838,chr22,44867178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.91000000,0.00000000,,0.22807018,66.00000000,2.92035398,0.13636364,0.00000000,6.36000000 +10839,chr22,44867694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.30769231,81.00000000,3.58407080,0.03703704,0.00000000,6.08000000 +10840,chr22,44870441,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,2.03000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.77000000 +10841,chr22,44876390,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.72000000,0.00000000,,0.28395062,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +10842,chr22,44877298,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.35000000 +10843,chr22,44878081,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.29000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +10844,chr22,44878815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.37000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.03947368,0.00000000,6.35000000 +10845,chr22,44879162,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.11000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.03260870,0.00000000,6.04000000 +10846,chr22,44880466,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.55555556,86.00000000,3.80530973,0.04651163,0.00000000,8.52000000 +10847,chr22,44880986,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,62.00000000,0.00000000,0.12000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,7.77000000 +10848,chr22,44881784,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.61000000,0.00000000,,0.46153846,68.00000000,3.00884956,0.04411765,0.00000000,4.65000000 +10849,chr22,44883123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.98000000 +10850,chr22,44883440,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,-1.07000000,0.00000000,,0.39506173,81.00000000,3.58407080,0.00000000,0.00000000,4.69000000 +10851,chr22,44883618,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.48684211,76.00000000,3.36283186,0.00000000,0.00000000,7.92000000 +10852,chr22,44883769,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-0.26000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.02325581,0.00000000,6.50000000 +10853,chr22,44883921,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.50000000,80.00000000,3.53982301,0.05000000,0.00000000,8.40000000 +10854,chr22,44885190,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-2.40000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.58000000 +10855,chr22,44891872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,-1.55000000,0.00000000,,0.29213483,91.00000000,4.02654867,0.02197802,0.00000000,5.89000000 +10856,chr22,44894320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.18309859,71.00000000,3.14159292,0.00000000,0.00000000,6.51000000 +10857,chr22,44900122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-0.28000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,7.01000000 +10858,chr22,44905310,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.47826087,94.00000000,4.15929204,0.02127660,0.00000000,8.03000000 +10859,chr22,44912998,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.46753247,84.00000000,3.71681416,0.07142857,0.00000000,8.17000000 +10860,chr22,44917047,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.47000000,0.00000000,,0.40963855,84.00000000,3.71681416,0.01190476,0.00000000,8.54000000 +10861,chr22,44918366,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.46753247,78.00000000,3.45132743,0.01282051,0.00000000,8.40000000 +10862,chr22,44920910,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.94000000,0.00000000,,0.49411765,87.00000000,3.84955752,0.01149425,0.00000000,8.31000000 +10863,chr22,44921511,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,42.00000000,0.00000000,0.46000000,0.00000000,,0.38297872,49.00000000,2.16814159,0.04081633,0.00000000,4.11000000 +10864,chr22,44924329,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,46.00000000,0.00000000,-1.41000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,4.68000000 +10865,chr22,44924751,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,-0.13000000,0.00000000,,0.38461538,95.00000000,4.20353982,0.03157895,0.00000000,12.27000000 +10866,chr22,44925683,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.17000000,0.00000000,,0.47619048,66.00000000,2.92035398,0.03030303,0.00000000,8.29000000 +10867,chr22,44927959,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,22.00000000,0.00000000,-0.49000000,0.00000000,,0.51315789,76.00000000,3.36283186,0.00000000,0.00000000,3.16000000 +10868,chr22,44928053,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.00000000,0.00000000,17.00000000,0.00000000,0.42000000,0.00000000,,0.51515152,67.00000000,2.96460177,0.01492537,0.00000000,2.97000000 +10869,chr22,44928109,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,8.44000000 +10870,chr22,44928471,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,49.00000000,0.00000000,-0.37000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,4.54000000 +10871,chr22,44928537,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-1.77000000,0.00000000,,0.50746269,69.00000000,3.05309735,0.02898551,0.00000000,4.45000000 +10872,chr22,44931408,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.15277778,74.00000000,3.27433628,0.02702703,0.00000000,5.20000000 +10873,chr22,44979379,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.74000000,0.00000000,,0.53947368,76.00000000,3.36283186,0.00000000,0.00000000,7.89000000 +10874,chr22,44986430,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,1.08000000,0.00000000,,0.19298246,64.00000000,2.83185841,0.10937500,0.00000000,3.94000000 +10875,chr22,44996887,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.65000000,0.00000000,,0.27848101,81.00000000,3.58407080,0.02469136,0.00000000,6.22000000 +10876,chr22,45007428,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,46.00000000,0.00000000,-0.31000000,0.00000000,,0.41935484,64.00000000,2.83185841,0.01562500,0.00000000,4.62000000 +10877,chr22,45010510,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.05000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.50000000 +10878,chr22,45014004,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,46.00000000,0.00000000,0.49000000,0.00000000,,0.34545455,60.00000000,2.65486726,0.08333333,0.00000000,4.21000000 +10879,chr22,45014011,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,41.00000000,0.00000000,0.48000000,0.00000000,,0.36538462,60.00000000,2.65486726,0.13333333,0.00000000,4.24000000 +10880,chr22,45016708,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,49.00000000,0.00000000,0.88000000,0.00000000,,0.44827586,92.00000000,4.07079646,0.05434783,0.00000000,4.48000000 +10881,chr22,45016749,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,57.00000000,0.00000000,0.80000000,0.00000000,,0.37500000,82.00000000,3.62831858,0.02439024,0.00000000,4.89000000 +10882,chr22,45018258,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,7.75000000 +10883,chr22,45044553,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.06000000,0.00000000,,0.27868852,67.00000000,2.96460177,0.08955224,0.00000000,6.82000000 +10884,chr22,45045039,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.16000000 +10885,chr22,45052056,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.86000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.73000000 +10886,chr22,45055174,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.99000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,1.11000000,0.00000000,,0.20967742,68.00000000,3.00884956,0.08823529,0.00000000,5.20000000 +10887,chr22,45055846,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.64000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.03448276,0.00000000,8.17000000 +10888,chr22,45055979,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,-0.06000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.01538462,0.00000000,6.04000000 +10889,chr22,45056243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.99000000,0.00000000,,0.51612903,66.00000000,2.92035398,0.03030303,0.00000000,3.97000000 +10890,chr22,45056295,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,0.21000000,0.00000000,,0.42307692,80.00000000,3.53982301,0.02500000,0.00000000,7.61000000 +10891,chr22,45056428,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,93.00000000,0.00000000,0.23000000,0.00000000,,0.39743590,81.00000000,3.58407080,0.02469136,0.00000000,7.98000000 +10892,chr22,45057750,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.36000000,0.00000000,,0.49397590,85.00000000,3.76106195,0.00000000,0.00000000,8.56000000 +10893,chr22,45057777,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.87000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,8.41000000 +10894,chr22,45057850,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.31250000,68.00000000,3.00884956,0.04411765,0.00000000,7.48000000 +10895,chr22,45057893,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.29000000,0.00000000,,0.33823529,70.00000000,3.09734513,0.02857143,0.00000000,8.16000000 +10896,chr22,45058958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.98000000,0.00000000,,0.37974684,80.00000000,3.53982301,0.01250000,0.00000000,8.15000000 +10897,chr22,45059175,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.05555556,0.00000000,60.00000000,0.00000000,-0.60000000,0.00000000,,0.41558442,81.00000000,3.58407080,0.03703704,0.00000000,7.46000000 +10898,chr22,45059608,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.22000000,0.00000000,,0.42647059,71.00000000,3.14159292,0.02816901,0.00000000,8.35000000 +10899,chr22,45060258,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,45.00000000,0.00000000,-0.42000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,4.18000000 +10900,chr22,45060748,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,43.00000000,0.00000000,0.86000000,0.00000000,,0.41071429,57.00000000,2.52212389,0.01754386,0.00000000,4.10000000 +10901,chr22,45062910,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,76.00000000,0.00000000,1.46000000,0.00000000,,0.42857143,88.00000000,3.89380531,0.01136364,0.00000000,8.15000000 +10902,chr22,45064493,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.02702703,0.00000000,8.02000000 +10903,chr22,45065347,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,1.08000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.83000000 +10904,chr22,45068754,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.15000000,0.00000000,,0.37362637,92.00000000,4.07079646,0.00000000,0.00000000,8.38000000 +10905,chr22,45069109,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,96.00000000,0.00000000,0.60000000,0.00000000,,0.37974684,80.00000000,3.53982301,0.01250000,0.00000000,8.14000000 +10906,chr22,45069148,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.27000000,0.00000000,,0.38235294,69.00000000,3.05309735,0.01449275,0.00000000,8.34000000 +10907,chr22,45069187,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-2.09000000,0.00000000,,0.41428571,73.00000000,3.23008850,0.04109589,0.00000000,8.24000000 +10908,chr22,45070137,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.16000000,0.00000000,,0.36470588,88.00000000,3.89380531,0.03409091,0.00000000,8.21000000 +10909,chr22,45070534,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.41558442,77.00000000,3.40707965,0.00000000,0.00000000,8.52000000 +10910,chr22,45070906,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.33928571,58.00000000,2.56637168,0.03448276,0.00000000,8.30000000 +10911,chr22,45071028,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.46000000,0.00000000,,0.36986301,77.00000000,3.40707965,0.03896104,0.00000000,7.93000000 +10912,chr22,45071990,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.16000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.06000000 +10913,chr22,45072233,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,0.21000000,0.00000000,,0.55263158,77.00000000,3.40707965,0.01298701,0.00000000,6.46000000 +10914,chr22,45072999,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,44.00000000,0.00000000,-0.20000000,0.00000000,,0.45283019,54.00000000,2.38938053,0.01851852,0.00000000,3.99000000 +10915,chr22,45073622,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,0.53000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.01234568,0.00000000,8.48000000 +10916,chr22,45073905,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.80000000,0.00000000,,0.36986301,73.00000000,3.23008850,0.00000000,0.00000000,8.96000000 +10917,chr22,45074667,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.86000000,0.00000000,,0.48192771,84.00000000,3.71681416,0.01190476,0.00000000,8.43000000 +10918,chr22,45075086,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.15000000,0.00000000,,0.53488372,87.00000000,3.84955752,0.01149425,0.00000000,8.63000000 +10919,chr22,45075726,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-1.30000000,0.00000000,,0.52054795,75.00000000,3.31858407,0.01333333,0.00000000,4.26000000 +10920,chr22,45076165,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,-0.63000000,0.00000000,,0.55555556,59.00000000,2.61061947,0.06779661,0.00000000,4.66000000 +10921,chr22,45076203,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-1.26000000,0.00000000,,0.51020408,53.00000000,2.34513274,0.05660377,0.00000000,4.75000000 +10922,chr22,45076222,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.89000000,0.00000000,,0.47169811,55.00000000,2.43362832,0.03636364,0.00000000,4.86000000 +10923,chr22,45076693,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.35211268,71.00000000,3.14159292,0.00000000,0.00000000,8.71000000 +10924,chr22,45076940,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.95000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,7.97000000 +10925,chr22,45077186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,98.00000000,0.00000000,-0.98000000,0.00000000,,0.40845070,72.00000000,3.18584071,0.01388889,0.00000000,8.15000000 +10926,chr22,45078093,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.75000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,4.53000000 +10927,chr22,45079691,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.50724638,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +10928,chr22,45079996,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.63000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,8.49000000 +10929,chr22,45081332,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.86000000,0.00000000,,0.41176471,91.00000000,4.02654867,0.05494505,0.00000000,8.11000000 +10930,chr22,45082239,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,55.00000000,0.00000000,0.76000000,0.00000000,,0.38297872,94.00000000,4.15929204,0.00000000,0.00000000,4.35000000 +10931,chr22,45082758,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-0.05000000,0.00000000,,0.41176471,70.00000000,3.09734513,0.01428571,0.00000000,8.06000000 +10932,chr22,45086054,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.26000000,0.00000000,,0.37704918,63.00000000,2.78761062,0.03174603,0.00000000,8.19000000 +10933,chr22,45086094,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.30000000,0.00000000,,0.36923077,66.00000000,2.92035398,0.00000000,0.00000000,8.96000000 +10934,chr22,45086299,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.25000000,0.00000000,,0.44262295,61.00000000,2.69911504,0.00000000,0.00000000,8.34000000 +10935,chr22,45086377,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.39436620,73.00000000,3.23008850,0.02739726,0.00000000,8.42000000 +10936,chr22,45087490,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.43373494,88.00000000,3.89380531,0.04545455,0.00000000,7.87000000 +10937,chr22,45087702,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.92000000,0.00000000,,0.47311828,93.00000000,4.11504425,0.00000000,0.00000000,8.91000000 +10938,chr22,45088271,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.64000000,0.00000000,,0.38095238,89.00000000,3.93805310,0.04494382,0.00000000,8.75000000 +10939,chr22,45089484,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.48484848,67.00000000,2.96460177,0.01492537,0.00000000,8.39000000 +10940,chr22,45089705,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,0.69000000,0.00000000,,0.38961039,80.00000000,3.53982301,0.03750000,0.00000000,4.52000000 +10941,chr22,45093307,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.70000000,0.00000000,,0.54022989,89.00000000,3.93805310,0.02247191,0.00000000,8.24000000 +10942,chr22,45093430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.48275862,88.00000000,3.89380531,0.01136364,0.00000000,8.57000000 +10943,chr22,45093550,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,-0.50000000,0.00000000,,0.51111111,91.00000000,4.02654867,0.01098901,0.00000000,8.18000000 +10944,chr22,45094552,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,1.53000000,0.00000000,,0.40000000,82.00000000,3.62831858,0.01219512,0.00000000,8.41000000 +10945,chr22,45094855,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.41558442,77.00000000,3.40707965,0.00000000,0.00000000,8.52000000 +10946,chr22,45094895,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-0.87000000,0.00000000,,0.50000000,76.00000000,3.36283186,0.00000000,0.00000000,8.00000000 +10947,chr22,45095126,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-1.31000000,0.00000000,,0.39189189,79.00000000,3.49557522,0.06329114,0.00000000,8.29000000 +10948,chr22,45095307,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,7.98000000 +10949,chr22,45095749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.19000000,0.00000000,,0.42307692,78.00000000,3.45132743,0.00000000,0.00000000,8.61000000 +10950,chr22,45096727,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,0.12000000,0.00000000,,0.39393939,69.00000000,3.05309735,0.02898551,0.00000000,4.71000000 +10951,chr22,45097002,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,0.57000000,0.00000000,,0.44444444,73.00000000,3.23008850,0.01369863,0.00000000,4.59000000 +10952,chr22,45097708,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-1.62000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.01219512,0.00000000,8.64000000 +10953,chr22,45098263,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +10954,chr22,45098951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.37000000 +10955,chr22,45098959,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.26000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +10956,chr22,45099381,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.36666667,0.00000000,50.00000000,0.00000000,-0.20000000,0.00000000,,0.31481481,78.00000000,3.45132743,0.30769231,0.00000000,3.08000000 +10957,chr22,45099668,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.06000000 +10958,chr22,45099815,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.37000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.01298701,0.00000000,5.94000000 +10959,chr22,45100575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.05263158,0.00000000,6.29000000 +10960,chr22,45102122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.82000000,0.00000000,,0.10606061,67.00000000,2.96460177,0.01492537,0.00000000,5.38000000 +10961,chr22,45102306,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.98000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.66000000 +10962,chr22,45158647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-1.25000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.55000000 +10963,chr22,45209479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.68000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.19000000 +10964,chr22,45222455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.36000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.01298701,0.00000000,6.19000000 +10965,chr22,45244255,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.32000000,0.00000000,,0.24528302,55.00000000,2.43362832,0.03636364,0.00000000,5.73000000 +10966,chr22,45245510,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.59000000 +10967,chr22,45245530,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,-1.12000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.03846154,0.00000000,5.84000000 +10968,chr22,45245539,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.23000000,0.00000000,,0.26250000,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +10969,chr22,45245698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.86000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.00000000,0.00000000,5.57000000 +10970,chr22,45246980,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,-0.77000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.61000000 +10971,chr22,45247026,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-1.32000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +10972,chr22,45247338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.53000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +10973,chr22,45247799,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.75000000,0.00000000,,0.23456790,86.00000000,3.80530973,0.05813953,0.00000000,6.31000000 +10974,chr22,45247808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.60000000,0.00000000,,0.21951220,86.00000000,3.80530973,0.04651163,0.00000000,6.59000000 +10975,chr22,45247889,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +10976,chr22,45247969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.29000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,6.00000000 +10977,chr22,45247970,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.37000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.97000000 +10978,chr22,45248490,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.50000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +10979,chr22,45248620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +10980,chr22,45249120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,0.80000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.18000000 +10981,chr22,45249573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.85000000,0.00000000,,0.24691358,88.00000000,3.89380531,0.05681818,0.00000000,6.27000000 +10982,chr22,45249586,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.58000000,0.00000000,,0.24358974,86.00000000,3.80530973,0.06976744,0.00000000,6.28000000 +10983,chr22,45249588,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.32000000,0.00000000,,0.24675325,83.00000000,3.67256637,0.07228916,0.00000000,6.28000000 +10984,chr22,45249907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.72000000,0.00000000,,0.26415094,56.00000000,2.47787611,0.05357143,0.00000000,6.31000000 +10985,chr22,45249921,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.25000000,59.00000000,2.61061947,0.05084746,0.00000000,6.32000000 +10986,chr22,45249977,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.42000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +10987,chr22,45250087,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.31000000 +10988,chr22,45251185,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.13000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.56000000 +10989,chr22,45251219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.27000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.26000000 +10990,chr22,45251482,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.76000000,0.00000000,,0.28205128,81.00000000,3.58407080,0.02469136,0.00000000,6.09000000 +10991,chr22,45273305,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.23376623,83.00000000,3.67256637,0.07228916,0.00000000,5.60000000 +10992,chr22,45275710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.16000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,4.49000000 +10993,chr22,45278624,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.32000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.02777778,0.00000000,6.55000000 +10994,chr22,45281548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.02777778,0.00000000,6.77000000 +10995,chr22,45297947,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.31000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.02777778,0.00000000,4.74000000 +10996,chr22,45298042,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.74000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.00000000,0.00000000,8.78000000 +10997,chr22,45299973,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.50000000,83.00000000,3.67256637,0.22891566,0.00000000,7.81000000 +10998,chr22,45301150,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,0.48000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.34000000 +10999,chr22,45302042,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.54000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,6.00000000 +11000,chr22,45302392,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.58000000,0.00000000,,0.44444444,93.00000000,4.11504425,0.03225806,0.00000000,8.33000000 +11001,chr22,45312035,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.25000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.24000000 +11002,chr22,45312629,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.17000000,0.00000000,,0.47222222,74.00000000,3.27433628,0.02702703,0.00000000,8.21000000 +11003,chr22,45332715,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.95000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.16000000 +11004,chr22,45361410,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.99000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.02564103,0.00000000,4.93000000 +11005,chr22,45434199,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.58000000,0.00000000,,0.16049383,88.00000000,3.89380531,0.07954545,0.00000000,5.43000000 +11006,chr22,45440740,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,-2.81000000,0.00000000,,0.41772152,81.00000000,3.58407080,0.01234568,0.00000000,4.33000000 +11007,chr22,45441012,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.06000000,0.00000000,,0.43181818,92.00000000,4.07079646,0.04347826,0.00000000,5.80000000 +11008,chr22,45442765,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.78000000,0.00000000,,0.42307692,81.00000000,3.58407080,0.02469136,0.00000000,8.08000000 +11009,chr22,45442936,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.19000000,0.00000000,,0.46067416,91.00000000,4.02654867,0.02197802,0.00000000,5.74000000 +11010,chr22,45443175,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,61.00000000,0.00000000,-0.67000000,0.00000000,,0.38666667,81.00000000,3.58407080,0.07407407,0.00000000,8.13000000 +11011,chr22,45445396,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.30000000,0.00000000,,0.45454545,79.00000000,3.49557522,0.02531646,0.00000000,8.36000000 +11012,chr22,45447028,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.04166667,0.00000000,38.00000000,0.00000000,-1.72000000,0.00000000,,0.55555556,66.00000000,2.92035398,0.04545455,0.00000000,4.04000000 +11013,chr22,45447892,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.26000000,0.00000000,,0.50724638,69.00000000,3.05309735,0.00000000,0.00000000,4.58000000 +11014,chr22,45448044,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.40579710,69.00000000,3.05309735,0.00000000,0.00000000,8.46000000 +11015,chr22,45450490,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.39062500,66.00000000,2.92035398,0.01515152,0.00000000,8.23000000 +11016,chr22,45450591,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.42105263,76.00000000,3.36283186,0.00000000,0.00000000,8.59000000 +11017,chr22,45451084,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.36619718,75.00000000,3.31858407,0.05333333,0.00000000,8.46000000 +11018,chr22,45451315,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.42222222,92.00000000,4.07079646,0.02173913,0.00000000,8.10000000 +11019,chr22,45453675,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.38571429,73.00000000,3.23008850,0.04109589,0.00000000,8.19000000 +11020,chr22,45453927,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-0.74000000,0.00000000,,0.36764706,69.00000000,3.05309735,0.01449275,0.01428571,8.47000000 +11021,chr22,45454600,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,46.00000000,0.00000000,-0.36000000,0.00000000,,0.40229885,88.00000000,3.89380531,0.01136364,0.00000000,4.50000000 +11022,chr22,45456143,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,21.00000000,0.92920354,0.09523810,0.00000000,26.00000000,0.00000000,0.45000000,0.00000000,,0.44615385,69.00000000,3.05309735,0.05797101,0.00000000,3.79000000 +11023,chr22,45456568,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,1.94000000,0.00000000,,0.36666667,64.00000000,2.83185841,0.06250000,0.00000000,7.92000000 +11024,chr22,45456632,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.39622642,54.00000000,2.38938053,0.01851852,0.00000000,7.53000000 +11025,chr22,45460721,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,0.60000000,0.00000000,,0.43421053,79.00000000,3.49557522,0.03797468,0.00000000,7.91000000 +11026,chr22,45467989,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.33333333,73.00000000,3.23008850,0.01369863,0.00000000,8.05000000 +11027,chr22,45469174,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,0.26000000,0.00000000,,0.43037975,79.00000000,3.49557522,0.00000000,0.00000000,8.36000000 +11028,chr22,45470146,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,116.00000000,0.00000000,0.48000000,0.00000000,,0.36538462,106.00000000,4.69026549,0.01886792,0.00000000,12.60000000 +11029,chr22,45470643,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.43181818,93.00000000,4.11504425,0.04301075,0.00000000,8.14000000 +11030,chr22,45470648,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.52000000,0.00000000,,0.44943820,91.00000000,4.02654867,0.02197802,0.00000000,8.14000000 +11031,chr22,45470865,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,19.00000000,0.00000000,0.10000000,0.00000000,,0.47368421,39.00000000,1.72566372,0.02564103,0.00000000,3.87000000 +11032,chr22,45470902,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,32.00000000,0.00000000,-1.16000000,0.00000000,,0.53846154,39.00000000,1.72566372,0.00000000,0.00000000,3.73000000 +11033,chr22,45473433,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.43137255,52.00000000,2.30088496,0.01923077,0.00000000,8.00000000 +11034,chr22,45473612,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-1.21000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,8.11000000 +11035,chr22,45475587,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,-0.20000000,0.00000000,,0.29292929,100.00000000,4.42477876,0.00000000,0.00000000,7.09000000 +11036,chr22,45477815,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.55072464,69.00000000,3.05309735,0.00000000,0.00000000,8.96000000 +11037,chr22,45478446,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.44578313,83.00000000,3.67256637,0.00000000,0.00000000,8.27000000 +11038,chr22,45478493,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.48837209,86.00000000,3.80530973,0.00000000,0.00000000,8.95000000 +11039,chr22,45478737,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,50.00000000,0.00000000,-0.15000000,0.00000000,,0.57534247,73.00000000,3.23008850,0.00000000,0.00000000,4.48000000 +11040,chr22,45479942,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.85000000,0.00000000,,0.45205479,76.00000000,3.36283186,0.03947368,0.00000000,4.00000000 +11041,chr22,45480586,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.66000000,0.00000000,,0.57692308,78.00000000,3.45132743,0.00000000,0.00000000,8.38000000 +11042,chr22,45482865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.30769231,0.00000000,60.00000000,0.00000000,-0.45000000,0.00000000,,0.50909091,68.00000000,3.00884956,0.19117647,0.00000000,7.31000000 +11043,chr22,45483052,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.15000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.33000000 +11044,chr22,45483054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.15000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.28000000 +11045,chr22,45483103,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.39000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.43000000 +11046,chr22,45483190,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-2.10000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,8.74000000 +11047,chr22,45483518,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.35000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,8.16000000 +11048,chr22,45483551,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,8.82000000 +11049,chr22,45483763,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.67000000,0.00000000,,0.44318182,91.00000000,4.02654867,0.03296703,0.00000000,8.28000000 +11050,chr22,45483950,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.53000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.49000000 +11051,chr22,45484122,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,2.18000000,0.00000000,,0.41666667,73.00000000,3.23008850,0.01369863,0.00000000,8.19000000 +11052,chr22,45484395,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.53750000,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +11053,chr22,45485167,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.99000000,0.00000000,,0.49333333,76.00000000,3.36283186,0.01315789,0.00000000,8.40000000 +11054,chr22,45485346,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,1.00000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,8.14000000 +11055,chr22,45485434,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.42168675,86.00000000,3.80530973,0.03488372,0.00000000,7.61000000 +11056,chr22,45485715,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-2.04000000,0.00000000,,0.48000000,77.00000000,3.40707965,0.01298701,0.00000000,8.24000000 +11057,chr22,45485733,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.40000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,4.65000000 +11058,chr22,45487364,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,92.00000000,0.00000000,-0.73000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,8.93000000 +11059,chr22,45487945,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.27000000 +11060,chr22,45488033,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,-1.48000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,4.61000000 +11061,chr22,45489333,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.25000000,0.00000000,,0.41176471,72.00000000,3.18584071,0.05555556,0.00000000,8.12000000 +11062,chr22,45489399,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.14000000,0.00000000,,0.28813559,63.00000000,2.78761062,0.06349206,0.00000000,5.68000000 +11063,chr22,45489520,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.20000000,0.00000000,17.00000000,0.00000000,-0.66000000,0.00000000,,0.54761905,46.00000000,2.03539823,0.08695652,0.00000000,4.14000000 +11064,chr22,45489765,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-1.93000000,0.00000000,,0.34666667,76.00000000,3.36283186,0.01315789,0.00000000,8.92000000 +11065,chr22,45490010,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,51.00000000,0.00000000,-0.45000000,0.00000000,,0.47222222,73.00000000,3.23008850,0.01369863,0.00000000,4.21000000 +11066,chr22,45490093,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.16000000,0.00000000,,0.48214286,59.00000000,2.61061947,0.05084746,0.00000000,3.88000000 +11067,chr22,45490524,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.38181818,56.00000000,2.47787611,0.01785714,0.00000000,7.86000000 +11068,chr22,45491118,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,36.00000000,0.00000000,-1.62000000,0.00000000,,0.46315789,98.00000000,4.33628319,0.03061224,0.00000000,3.62000000 +11069,chr22,45491221,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,31.00000000,0.00000000,-1.76000000,0.00000000,,0.44871795,79.00000000,3.49557522,0.00000000,0.00000000,2.93000000 +11070,chr22,45491255,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.05000000,0.00000000,,0.46052632,78.00000000,3.45132743,0.02564103,0.00000000,4.43000000 +11071,chr22,45491276,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,48.00000000,0.00000000,-0.71000000,0.00000000,,0.47058824,74.00000000,3.27433628,0.06756757,0.00000000,4.33000000 +11072,chr22,45491453,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.38000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.00000000,0.00000000,8.52000000 +11073,chr22,45491545,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,-0.29000000,0.00000000,,0.38775510,98.00000000,4.33628319,0.00000000,0.00000000,8.80000000 +11074,chr22,45491675,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,48.00000000,0.00000000,-2.95000000,0.00000000,,0.42222222,91.00000000,4.02654867,0.01098901,0.00000000,3.96000000 +11075,chr22,45492066,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,21.00000000,0.00000000,-1.18000000,0.00000000,,0.44210526,96.00000000,4.24778761,0.01041667,0.00000000,3.16000000 +11076,chr22,45492193,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.38000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,7.96000000 +11077,chr22,45492714,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,54.00000000,0.00000000,-1.28000000,0.00000000,,0.44303797,81.00000000,3.58407080,0.02469136,0.00000000,4.27000000 +11078,chr22,45492752,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.01000000,0.00000000,,0.47474747,100.00000000,4.42477876,0.01000000,0.00000000,8.91000000 +11079,chr22,45493132,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.02352941,0.00000000,8.39000000 +11080,chr22,45493763,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,0.89000000,0.00000000,,0.38666667,78.00000000,3.45132743,0.03846154,0.00000000,6.26000000 +11081,chr22,45493799,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.77000000,0.00000000,,0.36764706,70.00000000,3.09734513,0.02857143,0.00000000,8.07000000 +11082,chr22,45494149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.00000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.30000000,0.00000000,,0.47435897,83.00000000,3.67256637,0.04819277,0.00000000,8.29000000 +11083,chr22,45494347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,2.78000000,0.00000000,,0.30303030,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +11084,chr22,45495653,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.36000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.03947368,0.00000000,7.69000000 +11085,chr22,45496553,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.37500000,81.00000000,3.58407080,0.01234568,0.00000000,8.41000000 +11086,chr22,45497007,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.35714286,84.00000000,3.71681416,0.00000000,0.00000000,8.28000000 +11087,chr22,45497415,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.68000000 +11088,chr22,45497854,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.54000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,8.41000000 +11089,chr22,45506341,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,85.00000000,0.00000000,-2.55000000,0.00000000,,0.31764706,86.00000000,3.80530973,0.01162791,0.00000000,7.34000000 +11090,chr22,45537574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-1.24000000,0.00000000,,0.20588235,79.00000000,3.49557522,0.12658228,0.00000000,6.21000000 +11091,chr22,45537831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-2.35000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +11092,chr22,45575411,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.30000000 +11093,chr22,45576000,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +11094,chr22,45576137,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.85000000,0.00000000,,0.20879121,95.00000000,4.20353982,0.02105263,0.00000000,6.16000000 +11095,chr22,45583045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.17391304,75.00000000,3.31858407,0.08000000,0.00000000,5.77000000 +11096,chr22,45594713,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.22950820,61.00000000,2.69911504,0.00000000,0.00000000,6.63000000 +11097,chr22,45627739,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.57000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.78000000 +11098,chr22,45633643,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.88000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,93.00000000,0.00000000,1.20000000,0.00000000,,0.32352941,69.00000000,3.05309735,0.01449275,0.00000000,7.33000000 +11099,chr22,45633963,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-1.93000000,0.00000000,,0.46226415,108.00000000,4.77876106,0.01851852,0.00000000,8.05000000 +11100,chr22,45634314,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.12000000,0.00000000,,0.59036145,83.00000000,3.67256637,0.00000000,0.00000000,8.18000000 +11101,chr22,45635786,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.44285714,70.00000000,3.09734513,0.00000000,0.00000000,9.18000000 +11102,chr22,45636011,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.58000000 +11103,chr22,45638047,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.11000000,0.00000000,,0.33333333,60.00000000,2.65486726,0.00000000,0.00000000,8.88000000 +11104,chr22,45638212,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.28000000,0.00000000,,0.40000000,77.00000000,3.40707965,0.02597403,0.00000000,7.78000000 +11105,chr22,45638215,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.24000000,0.00000000,,0.39473684,78.00000000,3.45132743,0.02564103,0.00000000,7.74000000 +11106,chr22,45638922,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.42028986,71.00000000,3.14159292,0.01408451,0.00000000,8.40000000 +11107,chr22,45639236,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.04000000,0.00000000,,0.35526316,77.00000000,3.40707965,0.01298701,0.00000000,8.83000000 +11108,chr22,45639641,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,41.00000000,0.00000000,-0.91000000,0.00000000,,0.49397590,83.00000000,3.67256637,0.00000000,0.00000000,4.31000000 +11109,chr22,45640199,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.54000000,0.00000000,,0.46052632,80.00000000,3.53982301,0.05000000,0.00000000,7.77000000 +11110,chr22,45640814,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.45000000,0.00000000,,0.36585366,85.00000000,3.76106195,0.03529412,0.00000000,8.32000000 +11111,chr22,45641168,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.66000000,0.00000000,,0.39682540,65.00000000,2.87610619,0.03076923,0.00000000,8.20000000 +11112,chr22,45642912,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,102.00000000,0.00000000,0.40000000,0.00000000,,0.37113402,97.00000000,4.29203540,0.00000000,0.00000000,14.00000000 +11113,chr22,45643028,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.32000000,0.00000000,,0.41860465,92.00000000,4.07079646,0.06521739,0.00000000,8.35000000 +11114,chr22,45644182,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,-1.68000000,0.00000000,,0.34920635,68.00000000,3.00884956,0.07352941,0.00000000,8.53000000 +11115,chr22,45644784,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,2.08000000,0.00000000,,0.34920635,63.00000000,2.78761062,0.00000000,0.00000000,6.90000000 +11116,chr22,45644899,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-1.57000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.37000000 +11117,chr22,45647099,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-2.17000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.73000000 +11118,chr22,45647586,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.14000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.01388889,0.00000000,4.40000000 +11119,chr22,45649013,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,18.00000000,0.00000000,-1.25000000,0.00000000,,0.44827586,88.00000000,3.89380531,0.01136364,0.00000000,3.07000000 +11120,chr22,45649260,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,1.93000000,0.00000000,,0.36170213,52.00000000,2.30088496,0.09615385,0.00000000,4.78000000 +11121,chr22,45650147,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,-1.81000000,0.00000000,,0.42268041,101.00000000,4.46902655,0.03960396,0.00000000,8.36000000 +11122,chr22,45650597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,-1.62000000,0.00000000,,0.46846847,112.00000000,4.95575221,0.00892857,0.00000000,8.16000000 +11123,chr22,45650832,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.76000000,0.00000000,,0.47619048,85.00000000,3.76106195,0.01176471,0.00000000,7.67000000 +11124,chr22,45653827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,8.71000000 +11125,chr22,45661570,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.22000000,0.00000000,,0.46478873,75.00000000,3.31858407,0.04000000,0.00000000,7.56000000 +11126,chr22,45667695,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.23000000,0.00000000,,0.50000000,88.00000000,3.89380531,0.00000000,0.00000000,4.52000000 +11127,chr22,45669583,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,-1.02000000,0.00000000,,0.44444444,76.00000000,3.36283186,0.02631579,0.00000000,8.18000000 +11128,chr22,45674369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.56000000,0.00000000,,0.21333333,79.00000000,3.49557522,0.03797468,0.00000000,5.83000000 +11129,chr22,45675586,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11130,chr22,45675808,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.21000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +11131,chr22,45677724,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.99000000,0.00000000,,0.47826087,69.00000000,3.05309735,0.00000000,0.00000000,4.21000000 +11132,chr22,45678378,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.40789474,76.00000000,3.36283186,0.00000000,0.00000000,8.39000000 +11133,chr22,45684972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.71000000,0.00000000,,0.22857143,105.00000000,4.64601770,0.00000000,0.00000000,7.15000000 +11134,chr22,45710437,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-1.38000000,0.00000000,,0.35227273,89.00000000,3.93805310,0.00000000,0.00000000,9.13000000 +11135,chr22,45711628,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,18.00000000,0.00000000,0.48000000,0.00000000,,0.51685393,93.00000000,4.11504425,0.03225806,0.00000000,3.24000000 +11136,chr22,45717831,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.43010753,95.00000000,4.20353982,0.01052632,0.00000000,8.58000000 +11137,chr22,45736304,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.52631579,96.00000000,4.24778761,0.01041667,0.00000000,8.60000000 +11138,chr22,45759668,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.65000000,0.00000000,,0.40963855,85.00000000,3.76106195,0.01176471,0.00000000,4.30000000 +11139,chr22,45768218,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.29230769,66.00000000,2.92035398,0.00000000,0.00000000,6.37000000 +11140,chr22,45776408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.01298701,0.00000000,6.16000000 +11141,chr22,45782499,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.99000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,7.99000000 +11142,chr22,45783657,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.80000000,0.00000000,,0.43589744,81.00000000,3.58407080,0.02469136,0.00000000,8.31000000 +11143,chr22,45784591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,6.08000000 +11144,chr22,45786876,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,-0.14000000,0.00000000,,0.54320988,84.00000000,3.71681416,0.03571429,0.00000000,7.54000000 +11145,chr22,45802434,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.54054054,75.00000000,3.31858407,0.01333333,0.00000000,8.59000000 +11146,chr22,45804957,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-1.30000000,0.00000000,,0.45312500,66.00000000,2.92035398,0.01515152,0.00000000,8.18000000 +11147,chr22,45818824,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.34000000,0.00000000,,0.45121951,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +11148,chr22,45822000,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.11000000,0.00000000,,0.29870130,79.00000000,3.49557522,0.02531646,0.00000000,6.42000000 +11149,chr22,45822561,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,48.00000000,0.00000000,-1.57000000,0.00000000,,0.37142857,56.00000000,2.47787611,0.37500000,0.00000000,4.39000000 +11150,chr22,45822788,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,19.00000000,0.00000000,-1.73000000,0.00000000,,0.48437500,64.00000000,2.83185841,0.00000000,0.00000000,3.41000000 +11151,chr22,45828032,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-1.28000000,0.00000000,,0.39175258,98.00000000,4.33628319,0.00000000,0.00000000,8.53000000 +11152,chr22,45836177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-1.02000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.03225806,0.00000000,5.86000000 +11153,chr22,45837484,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.37000000,0.00000000,,0.39080460,88.00000000,3.89380531,0.01136364,0.00000000,8.59000000 +11154,chr22,45839225,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,21.00000000,0.00000000,1.61000000,0.00000000,,0.45045045,111.00000000,4.91150442,0.00000000,0.00000000,3.14000000 +11155,chr22,45839581,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,-0.84000000,0.00000000,,0.49484536,100.00000000,4.42477876,0.03000000,0.00000000,8.03000000 +11156,chr22,45839717,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.43678161,88.00000000,3.89380531,0.01136364,0.00000000,8.43000000 +11157,chr22,45839797,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,1.16000000,0.00000000,,0.38888889,73.00000000,3.23008850,0.01369863,0.00000000,8.21000000 +11158,chr22,45842243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.76000000,0.00000000,,0.36507937,65.00000000,2.87610619,0.00000000,0.00000000,8.48000000 +11159,chr22,45850649,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.48000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,7.81000000 +11160,chr22,45851798,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,-1.23000000,0.00000000,,0.41791045,68.00000000,3.00884956,0.01470588,0.00000000,7.53000000 +11161,chr22,45852909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.56000000,0.00000000,,0.51851852,83.00000000,3.67256637,0.02409639,0.00000000,7.98000000 +11162,chr22,45856216,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.14000000,0.00000000,,0.51898734,80.00000000,3.53982301,0.01250000,0.00000000,7.79000000 +11163,chr22,45861769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.29000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,4.70000000 +11164,chr22,45872042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.24137931,58.00000000,2.56637168,0.00000000,0.00000000,7.04000000 +11165,chr22,45877161,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +11166,chr22,45892220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.32000000,0.00000000,,0.22500000,84.00000000,3.71681416,0.04761905,0.00000000,6.68000000 +11167,chr22,45897976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,62.00000000,0.00000000,-0.64000000,0.00000000,,0.11594203,70.00000000,3.09734513,0.01428571,0.00000000,4.84000000 +11168,chr22,45899145,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.20000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +11169,chr22,45899511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.84000000,0.00000000,,0.23000000,100.00000000,4.42477876,0.00000000,0.00000000,6.93000000 +11170,chr22,45899670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.50000000,0.00000000,,0.15555556,91.00000000,4.02654867,0.01098901,0.00000000,6.23000000 +11171,chr22,45905087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +11172,chr22,45905834,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.52000000,0.00000000,,0.18367347,99.00000000,4.38053097,0.01010101,0.00000000,6.52000000 +11173,chr22,45908657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,5.62000000 +11174,chr22,45910299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.58000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +11175,chr22,45910995,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.07000000 +11176,chr22,45911259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,0.70000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,5.89000000 +11177,chr22,45911628,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,84.00000000,0.00000000,1.03000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.37000000 +11178,chr22,45912013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.20000000 +11179,chr22,45913479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.25000000 +11180,chr22,45914761,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.04878049,0.00000000,62.00000000,0.00000000,-0.07000000,0.00000000,,0.35000000,84.00000000,3.71681416,0.04761905,0.00000000,7.01000000 +11181,chr22,45916231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,51.84000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.71000000,0.00000000,,0.19230769,55.00000000,2.43362832,0.05454545,0.00000000,3.16000000 +11182,chr22,45916611,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.25000000 +11183,chr22,45916613,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.63000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +11184,chr22,45917093,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.71000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.23000000 +11185,chr22,45917316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.27397260,73.00000000,3.23008850,0.00000000,0.00000000,6.50000000 +11186,chr22,45917330,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,2.13000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +11187,chr22,45917335,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,2.13000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +11188,chr22,45917565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,-1.36000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,2.99000000 +11189,chr22,45917705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.53000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.97000000 +11190,chr22,45917738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,1.86000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.80000000 +11191,chr22,45917935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.21917808,77.00000000,3.40707965,0.02597403,0.00000000,6.39000000 +11192,chr22,45918016,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.44000000 +11193,chr22,45919072,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,58.00000000,0.00000000,-1.03000000,0.00000000,,0.27906977,91.00000000,4.02654867,0.03296703,0.00000000,3.96000000 +11194,chr22,45919358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,86.00000000,0.00000000,-1.11000000,0.00000000,,0.22500000,86.00000000,3.80530973,0.05813953,0.00000000,5.55000000 +11195,chr22,45920270,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.70000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.05000000,0.00000000,6.14000000 +11196,chr22,45920983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.30508475,62.00000000,2.74336283,0.04838710,0.00000000,5.81000000 +11197,chr22,45921379,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.91000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.01123596,0.00000000,6.80000000 +11198,chr22,45921610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.39000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,5.82000000 +11199,chr22,45922040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.01000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.00000000,0.00000000,6.72000000 +11200,chr22,45922298,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.25000000 +11201,chr22,45922405,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,98.00000000,0.00000000,0.69000000,0.00000000,,0.25263158,95.00000000,4.20353982,0.00000000,0.00000000,5.78000000 +11202,chr22,45924992,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.12195122,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.20689655,67.00000000,2.96460177,0.13432836,0.00000000,5.62000000 +11203,chr22,45925525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.01000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.33000000 +11204,chr22,45926382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,5.86000000 +11205,chr22,45926580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.01010101,0.00000000,6.65000000 +11206,chr22,45926697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.18000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,6.73000000 +11207,chr22,45926961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-1.13000000,0.00000000,,0.19801980,103.00000000,4.55752212,0.01941748,0.00000000,6.05000000 +11208,chr22,45927364,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.23000000 +11209,chr22,45927972,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,83.00000000,0.00000000,0.14000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.00000000,0.00000000,5.81000000 +11210,chr22,45928404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.20000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,6.50000000 +11211,chr22,45928593,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.24000000,13.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.53000000 +11212,chr22,45930191,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,6.19000000 +11213,chr22,45931660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,1.49000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,5.83000000 +11214,chr22,45933938,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,6.51000000 +11215,chr22,45934925,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.51000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,6.24000000 +11216,chr22,45935779,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.23000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +11217,chr22,45936933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.02000000,0.00000000,,0.21518987,83.00000000,3.67256637,0.03614458,0.00000000,6.26000000 +11218,chr22,45937034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,70.00000000,3.09734513,0.05714286,0.00000000,5.10000000 +11219,chr22,45938253,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,0.60000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,2.87000000 +11220,chr22,45938354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.06000000,0.00000000,,0.25301205,87.00000000,3.84955752,0.03448276,0.00000000,5.73000000 +11221,chr22,45938587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,86.00000000,0.00000000,-0.10000000,0.00000000,,0.27058824,91.00000000,4.02654867,0.06593407,0.00000000,6.21000000 +11222,chr22,45938603,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.30000000,0.00000000,,0.21686747,89.00000000,3.93805310,0.03370787,0.00000000,6.27000000 +11223,chr22,45938850,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.98000000,0.00000000,,0.11304348,115.00000000,5.08849558,0.00000000,0.00000000,5.14000000 +11224,chr22,45939542,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,103.00000000,0.00000000,-1.78000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,8.39000000 +11225,chr22,45940422,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.26373626,93.00000000,4.11504425,0.02150538,0.00000000,5.75000000 +11226,chr22,45940463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-1.36000000,0.00000000,,0.29670330,92.00000000,4.07079646,0.01086957,0.00000000,6.57000000 +11227,chr22,45942676,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,72.00000000,0.00000000,-0.95000000,0.00000000,,0.22352941,89.00000000,3.93805310,0.04494382,0.00000000,6.25000000 +11228,chr22,45943034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.03488372,0.00000000,5.99000000 +11229,chr22,45943167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,0.02000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +11230,chr22,45943238,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.05555556,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.27586207,89.00000000,3.93805310,0.02247191,0.00000000,5.76000000 +11231,chr22,45943405,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-2.30000000,0.00000000,,0.20000000,105.00000000,4.64601770,0.00000000,0.00000000,7.13000000 +11232,chr22,45944108,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,1.82000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.03000000 +11233,chr22,45944885,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.27000000,0.00000000,,0.29411765,73.00000000,3.23008850,0.05479452,0.00000000,6.22000000 +11234,chr22,45946007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.95000000,0.00000000,,0.26732673,105.00000000,4.64601770,0.03809524,0.00000000,6.22000000 +11235,chr22,45946406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.50000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,5.95000000 +11236,chr22,45950904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +11237,chr22,45950930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +11238,chr22,45951119,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.34000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +11239,chr22,45951578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.99000000 +11240,chr22,45951639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,1.06000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.55000000 +11241,chr22,45951640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.87000000 +11242,chr22,45951641,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.91000000 +11243,chr22,45951664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.52000000 +11244,chr22,45951724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.19000000 +11245,chr22,45951771,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.31000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +11246,chr22,45951803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.26000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.00000000,0.00000000,6.32000000 +11247,chr22,45952042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.72000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.52000000 +11248,chr22,45952762,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.37000000,0.00000000,,0.17721519,83.00000000,3.67256637,0.03614458,0.00000000,6.17000000 +11249,chr22,45954396,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.19148936,95.00000000,4.20353982,0.01052632,0.00000000,6.60000000 +11250,chr22,45955601,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.14000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.54000000 +11251,chr22,45955944,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-0.77000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.61000000 +11252,chr22,45955976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +11253,chr22,45956836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,2.64000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.03370787,0.00000000,6.27000000 +11254,chr22,45956911,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.48000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.02469136,0.00000000,6.29000000 +11255,chr22,45959018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,-1.52000000,0.00000000,,0.25882353,87.00000000,3.84955752,0.01149425,0.00000000,6.29000000 +11256,chr22,45964203,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.33783784,76.00000000,3.36283186,0.02631579,0.00000000,8.55000000 +11257,chr22,45967859,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.27272727,79.00000000,3.49557522,0.01265823,0.00000000,5.99000000 +11258,chr22,45968281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.55000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.00000000,0.00000000,6.20000000 +11259,chr22,45968311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,6.61000000 +11260,chr22,45969677,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.03000000 +11261,chr22,45972355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.16326531,100.00000000,4.42477876,0.02000000,0.00000000,4.64000000 +11262,chr22,45975199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.32000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.52000000 +11263,chr22,45977088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.63000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.69000000 +11264,chr22,45987732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,-0.20000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.77000000 +11265,chr22,46002646,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.20588235,0.00000000,75.00000000,0.00000000,1.06000000,0.00000000,,0.24590164,74.00000000,3.27433628,0.16216216,0.00000000,5.72000000 +11266,chr22,46007440,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-1.87000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.56000000 +11267,chr22,46007835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.38000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.50000000 +11268,chr22,46011343,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.50000000,0.00000000,,0.24742268,98.00000000,4.33628319,0.00000000,0.00000000,6.37000000 +11269,chr22,46011835,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11270,chr22,46013032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.29000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.54000000 +11271,chr22,46016933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.27000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +11272,chr22,46026335,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.27000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.03703704,0.00000000,6.17000000 +11273,chr22,46029488,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,1.04000000,0.00000000,,0.26315789,61.00000000,2.69911504,0.03278689,0.00000000,4.91000000 +11274,chr22,46051834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.25333333,79.00000000,3.49557522,0.05063291,0.00000000,6.06000000 +11275,chr22,46055408,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.60000000 +11276,chr22,46055657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.21000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,7.01000000 +11277,chr22,46055932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,2.06000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.26000000 +11278,chr22,46055933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,2.20000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.00000000,6.26000000 +11279,chr22,46058832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.68000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.16000000 +11280,chr22,46061083,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,2.51000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,5.80000000 +11281,chr22,46063666,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-2.21000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.34000000 +11282,chr22,46066637,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.15217391,92.00000000,4.07079646,0.00000000,0.00000000,5.89000000 +11283,chr22,46080313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,1.32000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,5.65000000 +11284,chr22,46087704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.01369863,0.00000000,6.51000000 +11285,chr22,46092965,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.47000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,2.84000000 +11286,chr22,46102988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.18000000 +11287,chr22,46109293,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.61000000 +11288,chr22,46122309,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.04000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +11289,chr22,46123886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.50000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.02500000,0.00000000,5.81000000 +11290,chr22,46125069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,1.82000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.03614458,0.00000000,4.84000000 +11291,chr22,46125345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +11292,chr22,46126119,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.26000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,6.22000000 +11293,chr22,46127830,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.29870130,81.00000000,3.58407080,0.03703704,0.00000000,6.30000000 +11294,chr22,46130020,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.52000000,0.00000000,,0.27058824,90.00000000,3.98230088,0.05555556,0.00000000,5.81000000 +11295,chr22,46130584,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.00000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.38000000 +11296,chr22,46130737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.18000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +11297,chr22,46130759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.02000000 +11298,chr22,46131359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.41000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +11299,chr22,46131362,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,-0.61000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.12000000 +11300,chr22,46146495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.95000000,11.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,1.45000000,0.00000000,,0.13114754,64.00000000,2.83185841,0.04687500,0.16883117,4.71000000 +11301,chr22,46146500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.06000000,11.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,0.00000000,1.93000000,0.00000000,,0.13636364,69.00000000,3.05309735,0.04347826,0.15853659,4.67000000 +11302,chr22,46147582,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.14000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.02666667,0.00000000,5.89000000 +11303,chr22,46159614,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.69000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.70000000 +11304,chr22,46178533,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.95000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +11305,chr22,46226703,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.78000000,0.00000000,,0.32467532,77.00000000,3.40707965,0.00000000,0.00000000,8.14000000 +11306,chr22,46230535,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +11307,chr22,46230609,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.08000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,7.06000000 +11308,chr22,46241930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,63.00000000,0.00000000,-0.77000000,0.00000000,,0.12195122,91.00000000,4.02654867,0.09890110,0.00000000,4.73000000 +11309,chr22,46245622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,79.00000000,0.00000000,0.73000000,0.00000000,,0.17821782,101.00000000,4.46902655,0.00000000,0.00000000,5.88000000 +11310,chr22,46246007,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,5.90000000 +11311,chr22,46246828,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,0.23000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.02247191,0.00000000,5.72000000 +11312,chr22,46246931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.18000000 +11313,chr22,46247126,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,1.23000000,0.00000000,,0.30379747,80.00000000,3.53982301,0.01250000,0.00000000,5.63000000 +11314,chr22,46247632,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,-0.84000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.00000000,0.00000000,6.14000000 +11315,chr22,46247844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.86000000 +11316,chr22,46247877,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.50000000 +11317,chr22,46248087,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.93000000 +11318,chr22,46248280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.27000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +11319,chr22,46248539,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.47000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.93000000 +11320,chr22,46250265,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.53000000 +11321,chr22,46251091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.39000000,0.00000000,,0.21176471,89.00000000,3.93805310,0.03370787,0.00000000,5.87000000 +11322,chr22,46251491,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,6.52000000 +11323,chr22,46252012,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.40000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +11324,chr22,46254203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,1.92000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.73000000 +11325,chr22,46254949,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.10294118,72.00000000,3.18584071,0.05555556,0.00000000,5.16000000 +11326,chr22,46254954,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.10000000,73.00000000,3.23008850,0.04109589,0.00000000,5.06000000 +11327,chr22,46254961,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.01388889,0.00000000,5.64000000 +11328,chr22,46255062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.54000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,6.21000000 +11329,chr22,46255469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.51000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.01030928,0.00000000,5.63000000 +11330,chr22,46255470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.01030928,0.00000000,6.12000000 +11331,chr22,46255816,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.18000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,6.43000000 +11332,chr22,46256166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.92000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.97000000 +11333,chr22,46256207,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.19000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,5.92000000 +11334,chr22,46256220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,5.92000000 +11335,chr22,46256256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.81000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.78000000 +11336,chr22,46256406,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.28000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.11000000 +11337,chr22,46256475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,5.87000000 +11338,chr22,46256840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.11000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +11339,chr22,46257032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.63000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.90000000 +11340,chr22,46258426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-1.19000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +11341,chr22,46260028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.71000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.01176471,0.00000000,6.23000000 +11342,chr22,46260051,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.41000000 +11343,chr22,46260349,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.14000000,0.00000000,,0.33000000,100.00000000,4.42477876,0.00000000,0.00000000,8.72000000 +11344,chr22,46260582,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.28301887,107.00000000,4.73451327,0.00934579,0.00000000,6.65000000 +11345,chr22,46260614,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.75000000,0.00000000,,0.26923077,105.00000000,4.64601770,0.00952381,0.00000000,6.61000000 +11346,chr22,46260710,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,81.00000000,0.00000000,-0.18000000,0.00000000,,0.19387755,99.00000000,4.38053097,0.01010101,0.00000000,6.05000000 +11347,chr22,46260908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.57000000 +11348,chr22,46261364,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.06000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,5.95000000 +11349,chr22,46261901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.17000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +11350,chr22,46262822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.02439024,0.00000000,5.51000000 +11351,chr22,46262828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.49000000 +11352,chr22,46263081,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +11353,chr22,46263246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.01000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.02197802,0.00000000,6.32000000 +11354,chr22,46263423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.30000000,0.00000000,,0.22772277,102.00000000,4.51327434,0.00980392,0.00000000,5.95000000 +11355,chr22,46263683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,5.87000000 +11356,chr22,46264028,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,7.08000000 +11357,chr22,46264045,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.69000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.44000000 +11358,chr22,46264414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.79000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.69000000 +11359,chr22,46264424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.99000000,0.00000000,,0.28260870,96.00000000,4.24778761,0.03125000,0.00000000,5.82000000 +11360,chr22,46264519,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.41000000 +11361,chr22,46264771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-1.00000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,6.29000000 +11362,chr22,46265656,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,0.12000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.00000000,0.00000000,5.84000000 +11363,chr22,46265962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,0.44000000,0.00000000,,0.19819820,111.00000000,4.91150442,0.00000000,0.00000000,5.86000000 +11364,chr22,46266195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +11365,chr22,46266254,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-1.22000000,0.00000000,,0.21649485,98.00000000,4.33628319,0.01020408,0.00000000,6.33000000 +11366,chr22,46266342,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-1.03000000,0.00000000,,0.26415094,106.00000000,4.69026549,0.00000000,0.00000000,6.78000000 +11367,chr22,46266630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.30000000 +11368,chr22,46267120,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.92000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.28000000 +11369,chr22,46267197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.12000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +11370,chr22,46267390,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.19000000,0.00000000,,0.20792079,101.00000000,4.46902655,0.00000000,0.00000000,6.39000000 +11371,chr22,46267425,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.20560748,109.00000000,4.82300885,0.01834862,0.00000000,5.49000000 +11372,chr22,46268534,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,88.00000000,0.00000000,-0.74000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.37000000 +11373,chr22,46268741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.04000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.81000000 +11374,chr22,46268958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.55000000 +11375,chr22,46269109,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.28048780,86.00000000,3.80530973,0.04651163,0.00000000,6.16000000 +11376,chr22,46269773,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.28000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +11377,chr22,46270264,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.67000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.39000000 +11378,chr22,46270678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,5.93000000 +11379,chr22,46271140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.23655914,96.00000000,4.24778761,0.03125000,0.00000000,5.81000000 +11380,chr22,46271756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,78.00000000,3.45132743,0.03846154,0.00000000,5.39000000 +11381,chr22,46272182,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.76000000,0.00000000,,0.14473684,79.00000000,3.49557522,0.03797468,0.00000000,5.42000000 +11382,chr22,46272455,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.43000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.72000000 +11383,chr22,46272618,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,84.00000000,0.00000000,-0.37000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,5.81000000 +11384,chr22,46272795,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.45000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.46000000 +11385,chr22,46272829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.88000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.03125000,0.00000000,5.98000000 +11386,chr22,46277659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.83000000,0.00000000,,0.21794872,85.00000000,3.76106195,0.08235294,0.00000000,6.50000000 +11387,chr22,46277874,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-2.73000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,6.42000000 +11388,chr22,46278315,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,94.00000000,0.00000000,-0.67000000,0.00000000,,0.30487805,87.00000000,3.84955752,0.05747126,0.00000000,6.31000000 +11389,chr22,46278742,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-0.44000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.73000000 +11390,chr22,46299792,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.27000000 +11391,chr22,46303456,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.09000000 +11392,chr22,46306657,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,-1.84000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.06000000 +11393,chr22,46309510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.51000000 +11394,chr22,46323157,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,-0.61000000,0.00000000,,0.31818182,90.00000000,3.98230088,0.02222222,0.00000000,7.12000000 +11395,chr22,46324381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.01000000,0.00000000,,0.22368421,80.00000000,3.53982301,0.05000000,0.00000000,6.62000000 +11396,chr22,46331715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.36000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +11397,chr22,46349443,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.71000000,0.00000000,,0.20481928,87.00000000,3.84955752,0.04597701,0.00000000,6.31000000 +11398,chr22,46366463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,34.00000000,0.00000000,-0.49000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.03030303,0.00000000,2.78000000 +11399,chr22,46377227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-1.94000000,0.00000000,,0.22680412,101.00000000,4.46902655,0.02970297,0.00000000,6.09000000 +11400,chr22,46395229,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,49.00000000,0.00000000,-0.89000000,0.00000000,,0.32894737,79.00000000,3.49557522,0.03797468,0.00000000,4.23000000 +11401,chr22,46438690,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.44000000 +11402,chr22,46438828,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-0.69000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,8.84000000 +11403,chr22,46442044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.63000000,0.00000000,,0.33333333,60.00000000,2.65486726,0.03333333,0.00000000,8.06000000 +11404,chr22,46443437,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,0.00000000,1.06000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.29000000 +11405,chr22,46443484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.23333333,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +11406,chr22,46443686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.82000000,0.00000000,,0.19801980,105.00000000,4.64601770,0.03809524,0.00000000,6.15000000 +11407,chr22,46443730,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.20000000,0.00000000,,0.17475728,105.00000000,4.64601770,0.01904762,0.00000000,6.05000000 +11408,chr22,46443997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.44000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.36000000 +11409,chr22,46444393,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.03000000 +11410,chr22,46445004,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.46000000 +11411,chr22,46445166,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,0.86000000,0.00000000,,0.28395062,85.00000000,3.76106195,0.04705882,0.00000000,5.62000000 +11412,chr22,46446125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.18000000,0.00000000,,0.26865672,70.00000000,3.09734513,0.02857143,0.00000000,6.30000000 +11413,chr22,46447887,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.94000000,0.00000000,,0.19178082,75.00000000,3.31858407,0.01333333,0.00000000,6.86000000 +11414,chr22,46448021,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,75.00000000,0.00000000,2.72000000,0.00000000,,0.17021277,97.00000000,4.29203540,0.03092784,0.00000000,5.58000000 +11415,chr22,46449579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.63000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.16000000 +11416,chr22,46450984,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.65000000 +11417,chr22,46451014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,5.99000000 +11418,chr22,46451366,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.03947368,0.00000000,4.17000000 +11419,chr22,46451570,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.80000000 +11420,chr22,46451682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,75.00000000,0.00000000,1.03000000,0.00000000,,0.19696970,70.00000000,3.09734513,0.04285714,0.00000000,5.75000000 +11421,chr22,46451876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,5.91000000 +11422,chr22,46452754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +11423,chr22,46452922,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.07142857,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.90000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,5.60000000 +11424,chr22,46453272,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +11425,chr22,46454633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,1.00000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,5.56000000 +11426,chr22,46455349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,0.95000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.01282051,0.00000000,5.87000000 +11427,chr22,46455422,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,-2.02000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +11428,chr22,46455956,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,2.68000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,5.76000000 +11429,chr22,46460447,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-0.59000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.02380952,0.00000000,6.06000000 +11430,chr22,46460745,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.20000000,0.00000000,,0.29487179,81.00000000,3.58407080,0.03703704,0.00000000,5.95000000 +11431,chr22,46461030,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.03000000 +11432,chr22,46461956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.19000000,0.00000000,,0.30693069,102.00000000,4.51327434,0.00980392,0.00000000,5.98000000 +11433,chr22,46462445,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,3.37000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.41000000 +11434,chr22,46462569,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-0.70000000,0.00000000,,0.22222222,78.00000000,3.45132743,0.06410256,0.00000000,5.99000000 +11435,chr22,46474128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,70.00000000,0.00000000,-1.70000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.03000000 +11436,chr22,46484186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +11437,chr22,46492685,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.43000000,0.00000000,,0.11842105,76.00000000,3.36283186,0.00000000,0.00000000,5.85000000 +11438,chr22,46493266,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,7.09000000 +11439,chr22,46493826,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.07000000 +11440,chr22,46496102,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.54000000,0.00000000,,0.13114754,63.00000000,2.78761062,0.03174603,0.00000000,5.31000000 +11441,chr22,46499108,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16129032,69.00000000,3.05309735,0.08695652,0.00000000,5.57000000 +11442,chr22,46499680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.38000000 +11443,chr22,46500937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.26213592,104.00000000,4.60176991,0.00961538,0.00000000,6.64000000 +11444,chr22,46501527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +11445,chr22,46505178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.33000000,0.00000000,,0.21311475,68.00000000,3.00884956,0.08823529,0.00000000,2.97000000 +11446,chr22,46506403,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,1.67000000,0.00000000,,0.10256410,81.00000000,3.58407080,0.02469136,0.00000000,4.63000000 +11447,chr22,46507079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.87000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.37000000 +11448,chr22,46507730,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,-1.90000000,0.00000000,,0.25882353,88.00000000,3.89380531,0.03409091,0.00000000,6.03000000 +11449,chr22,46508254,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.29000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,5.86000000 +11450,chr22,46508673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-1.15000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.38000000 +11451,chr22,46518647,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.11000000,0.00000000,,0.48421053,95.00000000,4.20353982,0.00000000,0.00000000,9.29000000 +11452,chr22,46519715,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.34000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.02325581,0.00000000,5.60000000 +11453,chr22,46519724,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-1.55000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.52000000 +11454,chr22,46520383,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.09000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.95000000 +11455,chr22,46521063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.14285714,91.00000000,4.02654867,0.00000000,0.00000000,5.86000000 +11456,chr22,46522220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.15000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.75000000 +11457,chr22,46522804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +11458,chr22,46523435,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.32000000 +11459,chr22,46523644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.77000000,0.00000000,,0.19117647,73.00000000,3.23008850,0.06849315,0.00000000,6.28000000 +11460,chr22,46523864,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.29000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,5.71000000 +11461,chr22,46524208,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.07000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,6.39000000 +11462,chr22,46524290,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.08000000,0.00000000,,0.27272727,72.00000000,3.18584071,0.06944444,0.00000000,5.92000000 +11463,chr22,46524379,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.02000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,6.27000000 +11464,chr22,46524869,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,2.79000000 +11465,chr22,46525143,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,0.67000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,8.25000000 +11466,chr22,46525163,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.25000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.00000000,0.00000000,6.21000000 +11467,chr22,46525224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-0.94000000,0.00000000,,0.30107527,96.00000000,4.24778761,0.03125000,0.00000000,6.33000000 +11468,chr22,46525238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-0.59000000,0.00000000,,0.32967033,94.00000000,4.15929204,0.02127660,0.00000000,8.19000000 +11469,chr22,46525287,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.42000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +11470,chr22,46525961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +11471,chr22,46526320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.44000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.59000000 +11472,chr22,46526333,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-0.30000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.01315789,0.00000000,6.61000000 +11473,chr22,46526714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.15000000,0.00000000,,0.21649485,97.00000000,4.29203540,0.00000000,0.00000000,6.72000000 +11474,chr22,46527141,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.13000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +11475,chr22,46528842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.83000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,5.67000000 +11476,chr22,46529728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.02000000,0.00000000,,0.13698630,78.00000000,3.45132743,0.05128205,0.00000000,4.93000000 +11477,chr22,46530437,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,2.33000000,0.00000000,,0.18269231,104.00000000,4.60176991,0.00000000,0.00000000,6.19000000 +11478,chr22,46530667,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,5.60000000 +11479,chr22,46531060,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-0.50000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +11480,chr22,46549045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.87000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.85000000 +11481,chr22,46549639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,-0.32000000,0.00000000,,0.17500000,84.00000000,3.71681416,0.04761905,0.00000000,5.63000000 +11482,chr22,46551121,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,0.18000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +11483,chr22,46551129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.29000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,5.94000000 +11484,chr22,46552017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.48000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.17000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.54000000 +11485,chr22,46552036,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.95000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,0.25000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +11486,chr22,46552220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +11487,chr22,46552345,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.64000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +11488,chr22,46553125,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.06000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,7.04000000 +11489,chr22,46553641,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +11490,chr22,46554766,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.70000000 +11491,chr22,46555542,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.49411765,85.00000000,3.76106195,0.00000000,0.00000000,8.85000000 +11492,chr22,46555892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.11000000,0.00000000,,0.29230769,65.00000000,2.87610619,0.00000000,0.00000000,6.26000000 +11493,chr22,46556531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.72000000 +11494,chr22,46556951,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,88.00000000,0.00000000,0.39000000,0.00000000,,0.21782178,105.00000000,4.64601770,0.03809524,0.00000000,5.63000000 +11495,chr22,46557815,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.70000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,6.24000000 +11496,chr22,46559201,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,5.86000000 +11497,chr22,46562668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.40000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.01666667,0.00000000,6.17000000 +11498,chr22,46570745,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,6.30000000 +11499,chr22,46579747,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,5.72000000 +11500,chr22,46579844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.13513514,76.00000000,3.36283186,0.02631579,0.00000000,4.82000000 +11501,chr22,46579979,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.83000000 +11502,chr22,46580660,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +11503,chr22,46580963,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,33.00000000,1.46017699,0.21212121,0.00000000,58.00000000,0.00000000,0.35000000,0.00000000,,0.12500000,94.00000000,4.15929204,0.31914894,0.00000000,3.62000000 +11504,chr22,46581053,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,-0.64000000,0.00000000,,0.24731183,95.00000000,4.20353982,0.02105263,0.00000000,6.15000000 +11505,chr22,46581342,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.21000000,0.00000000,,0.17346939,99.00000000,4.38053097,0.01010101,0.00000000,6.63000000 +11506,chr22,46584202,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.40000000,0.00000000,,0.16949153,59.00000000,2.61061947,0.00000000,0.00000000,6.49000000 +11507,chr22,46584877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.75000000 +11508,chr22,46585432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.18571429,75.00000000,3.31858407,0.06666667,0.00000000,6.21000000 +11509,chr22,46586417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.01449275,0.00000000,5.07000000 +11510,chr22,46586426,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,-0.23000000,0.00000000,,0.10606061,68.00000000,3.00884956,0.02941176,0.00000000,4.98000000 +11511,chr22,46586825,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.85000000 +11512,chr22,46587848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +11513,chr22,46588371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.19000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.34000000 +11514,chr22,46588561,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.83000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +11515,chr22,46588912,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +11516,chr22,46588956,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,5.41000000 +11517,chr22,46589140,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,1.16000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +11518,chr22,46590020,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,2.23000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +11519,chr22,46590080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-0.11000000,0.00000000,,0.13235294,72.00000000,3.18584071,0.04166667,0.00000000,5.21000000 +11520,chr22,46590222,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,2.04000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,5.87000000 +11521,chr22,46590320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23333333,95.00000000,4.20353982,0.05263158,0.00000000,6.42000000 +11522,chr22,46590326,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.21348315,94.00000000,4.15929204,0.05319149,0.00000000,6.00000000 +11523,chr22,46590366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.83000000,0.00000000,,0.23255814,90.00000000,3.98230088,0.04444444,0.00000000,6.42000000 +11524,chr22,46590403,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.34000000 +11525,chr22,46590436,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-1.27000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.02380952,0.00000000,6.79000000 +11526,chr22,46590460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.36000000,0.00000000,,0.25000000,90.00000000,3.98230088,0.02222222,0.00000000,6.38000000 +11527,chr22,46590548,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.45000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +11528,chr22,46590687,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-1.51000000,0.00000000,,0.15277778,74.00000000,3.27433628,0.02702703,0.00000000,5.85000000 +11529,chr22,46590851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.32000000,0.00000000,,0.20879121,96.00000000,4.24778761,0.05208333,0.00000000,6.68000000 +11530,chr22,46591150,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,2.39000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,6.24000000 +11531,chr22,46591190,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.33000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.57000000 +11532,chr22,46592092,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.15873016,65.00000000,2.87610619,0.03076923,0.00000000,5.11000000 +11533,chr22,46592098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-1.63000000,0.00000000,,0.13114754,63.00000000,2.78761062,0.03174603,0.00000000,4.96000000 +11534,chr22,46595100,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,1.37000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.39000000 +11535,chr22,46595573,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,97.00000000,0.00000000,1.03000000,0.00000000,,0.25263158,99.00000000,4.38053097,0.02020202,0.00000000,5.99000000 +11536,chr22,46599163,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,65.00000000,0.00000000,0.05000000,0.00000000,,0.50617284,84.00000000,3.71681416,0.03571429,0.00000000,7.94000000 +11537,chr22,46600051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.03000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.64000000 +11538,chr22,46601513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-1.74000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.40000000 +11539,chr22,46603932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.65000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +11540,chr22,46604085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.35000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,5.82000000 +11541,chr22,46604864,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,41.83000000,1.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.41000000,0.00000000,,0.18604651,47.00000000,2.07964602,0.08510638,0.00000000,4.70000000 +11542,chr22,46605004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.65000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.09000000,0.00000000,,0.17391304,47.00000000,2.07964602,0.00000000,0.00000000,5.05000000 +11543,chr22,46606783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-1.10000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,7.04000000 +11544,chr22,46609210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,1.75000000,0.00000000,,0.20792079,106.00000000,4.69026549,0.03773585,0.00000000,5.75000000 +11545,chr22,46617258,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.27000000,0.00000000,,0.20689655,63.00000000,2.78761062,0.07936508,0.00000000,6.37000000 +11546,chr22,46618557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.54000000,0.00000000,,0.19780220,94.00000000,4.15929204,0.02127660,0.00000000,6.32000000 +11547,chr22,46619547,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.90000000 +11548,chr22,46624687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.14000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,4.72000000 +11549,chr22,46625005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.12000000 +11550,chr22,46629883,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.92000000,0.00000000,,0.22448980,100.00000000,4.42477876,0.02000000,0.00000000,5.82000000 +11551,chr22,46630376,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,90.00000000,0.00000000,-0.42000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,6.60000000 +11552,chr22,46638932,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.09000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.40000000 +11553,chr22,46639717,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.16000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.99000000 +11554,chr22,46640199,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.14285714,99.00000000,4.38053097,0.00000000,0.00000000,5.47000000 +11555,chr22,46640554,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-2.02000000,0.00000000,,0.20454545,95.00000000,4.20353982,0.06315789,0.00000000,6.35000000 +11556,chr22,46642184,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,85.00000000,0.00000000,-0.40000000,0.00000000,,0.20000000,108.00000000,4.77876106,0.01851852,0.00000000,6.31000000 +11557,chr22,46650497,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +11558,chr22,46670687,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.15000000,0.00000000,,0.23456790,87.00000000,3.84955752,0.06896552,0.00000000,6.48000000 +11559,chr22,46674850,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.18823529,90.00000000,3.98230088,0.03333333,0.00000000,6.31000000 +11560,chr22,46677904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.70000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.95000000 +11561,chr22,46677964,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,1.83000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.69000000 +11562,chr22,46683966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.28571429,73.00000000,3.23008850,0.04109589,0.00000000,6.05000000 +11563,chr22,46687916,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.50000000,94.00000000,4.15929204,0.00000000,0.00000000,9.00000000 +11564,chr22,46691154,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.42105263,81.00000000,3.58407080,0.04938272,0.00000000,7.33000000 +11565,chr22,46698913,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,-2.19000000,0.00000000,,0.45945946,76.00000000,3.36283186,0.02631579,0.00000000,4.07000000 +11566,chr22,46699512,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,53.00000000,0.00000000,0.56000000,0.00000000,,0.44303797,80.00000000,3.53982301,0.01250000,0.00000000,4.49000000 +11567,chr22,46699721,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,101.00000000,0.00000000,2.11000000,0.00000000,,0.41509434,109.00000000,4.82300885,0.02752294,0.00000000,8.30000000 +11568,chr22,46703072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.88000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.01666667,0.00000000,5.96000000 +11569,chr22,46704247,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.66000000,0.00000000,,0.26760563,74.00000000,3.27433628,0.04054054,0.00000000,6.67000000 +11570,chr22,46704262,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.55000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.40000000 +11571,chr22,46704581,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.23000000,0.00000000,,0.36781609,88.00000000,3.89380531,0.01136364,0.00000000,8.58000000 +11572,chr22,46705175,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,1.16000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,4.27000000 +11573,chr22,46706495,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.44000000,0.00000000,,0.43902439,83.00000000,3.67256637,0.01204819,0.00000000,6.01000000 +11574,chr22,46708555,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.72000000,0.00000000,,0.19587629,99.00000000,4.38053097,0.02020202,0.00000000,5.97000000 +11575,chr22,46709961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.14545455,112.00000000,4.95575221,0.01785714,0.00000000,5.41000000 +11576,chr22,46715641,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.52000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.64000000 +11577,chr22,46715823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,-0.80000000,0.00000000,,0.15841584,102.00000000,4.51327434,0.00980392,0.00000000,5.58000000 +11578,chr22,46716481,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,2.73000000,1.06000000,,0.13725490,61.00000000,2.69911504,0.14754098,0.00000000,3.54000000 +11579,chr22,46716499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,1.12000000,0.00000000,,0.16949153,65.00000000,2.87610619,0.09230769,0.00000000,5.45000000 +11580,chr22,46716537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.13432836,71.00000000,3.14159292,0.04225352,0.00000000,5.47000000 +11581,chr22,46717303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,1.91000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.58000000 +11582,chr22,46717791,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.83000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,6.06000000 +11583,chr22,46717809,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.37000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.00000000,0.00000000,5.33000000 +11584,chr22,46717856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.74000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +11585,chr22,46717884,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +11586,chr22,46717899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.43000000,0.00000000,,0.15384615,68.00000000,3.00884956,0.04411765,0.00000000,5.70000000 +11587,chr22,46717948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.98000000 +11588,chr22,46718055,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.14754098,63.00000000,2.78761062,0.03174603,0.00000000,4.96000000 +11589,chr22,46718081,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,0.16000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.04545455,0.00000000,5.10000000 +11590,chr22,46718189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,0.87000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.00000000 +11591,chr22,46718624,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.59000000 +11592,chr22,46718766,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.10869565,93.00000000,4.11504425,0.01075269,0.00000000,4.87000000 +11593,chr22,46718809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,99.00000000,0.00000000,-1.74000000,0.00000000,,0.30588235,87.00000000,3.84955752,0.02298851,0.00000000,5.91000000 +11594,chr22,46718845,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,0.00000000,-2.24000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.67000000 +11595,chr22,46718978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,1.21000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.40000000 +11596,chr22,46719493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.97000000,0.00000000,,0.29629630,55.00000000,2.43362832,0.01818182,0.00000000,6.51000000 +11597,chr22,46719783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.00000000,0.00000000,,0.14563107,106.00000000,4.69026549,0.02830189,0.00000000,4.54000000 +11598,chr22,46719859,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.46000000,0.00000000,,0.46236559,94.00000000,4.15929204,0.00000000,0.00000000,7.98000000 +11599,chr22,46719928,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +11600,chr22,46720377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,78.00000000,0.00000000,1.95000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.16000000 +11601,chr22,46720420,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.13541667,98.00000000,4.33628319,0.02040816,0.00000000,4.96000000 +11602,chr22,46720428,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.00000000,0.00000000,5.09000000 +11603,chr22,46721008,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.54000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,6.31000000 +11604,chr22,46721676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.51000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +11605,chr22,46740210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.58000000,0.00000000,,0.19444444,79.00000000,3.49557522,0.08860759,0.00000000,5.94000000 +11606,chr22,46740244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-0.22000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.06250000,0.00000000,5.92000000 +11607,chr22,46743936,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.19148936,47.00000000,2.07964602,0.00000000,0.00000000,7.15000000 +11608,chr22,46751271,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,2.50000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.67000000 +11609,chr22,46752459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.95000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.23000000 +11610,chr22,46789938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,1.27000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.00000000,0.00000000,5.98000000 +11611,chr22,46796197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.03000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.68000000 +11612,chr22,46815938,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.56000000 +11613,chr22,46822103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.11000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.71000000 +11614,chr22,46826785,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,83.00000000,0.00000000,1.34000000,0.00000000,,0.28125000,66.00000000,2.92035398,0.03030303,0.00000000,6.15000000 +11615,chr22,46826884,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,0.12000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.91000000 +11616,chr22,46828584,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,52.00000000,0.00000000,-0.85000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.01250000,0.00000000,3.09000000 +11617,chr22,46829709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,5.14000000 +11618,chr22,46830220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,60.00000000,0.00000000,-1.12000000,0.00000000,,0.17567568,77.00000000,3.40707965,0.03896104,0.00000000,5.73000000 +11619,chr22,46830486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,5.93000000 +11620,chr22,46830903,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11621,chr22,46831222,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.16000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +11622,chr22,46831976,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.81000000,0.00000000,,0.24050633,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +11623,chr22,46834451,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +11624,chr22,46834452,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +11625,chr22,46834656,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.34000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.00000000 +11626,chr22,46835536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.24000000,0.00000000,,0.28395062,81.00000000,3.58407080,0.00000000,0.00000000,6.27000000 +11627,chr22,46836177,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.06000000 +11628,chr22,46837332,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.01098901,0.00000000,6.60000000 +11629,chr22,46838643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.35000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +11630,chr22,46838969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.37000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.36000000 +11631,chr22,46839219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.01123596,0.00000000,5.90000000 +11632,chr22,46839543,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.34000000 +11633,chr22,46839940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.01136364,0.00000000,6.83000000 +11634,chr22,46840732,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.21686747,90.00000000,3.98230088,0.07777778,0.00000000,6.04000000 +11635,chr22,46841413,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.53000000,0.00000000,,0.29069767,86.00000000,3.80530973,0.00000000,0.00000000,6.73000000 +11636,chr22,46841850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.08000000,0.00000000,,0.18367347,98.00000000,4.33628319,0.00000000,0.01010101,6.30000000 +11637,chr22,46842502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-2.59000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,7.21000000 +11638,chr22,46842529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.25000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +11639,chr22,46843245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,5.88000000 +11640,chr22,46843348,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.14000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.00000000,0.00000000,6.68000000 +11641,chr22,46843802,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.09000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,5.98000000 +11642,chr22,46844313,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.76000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +11643,chr22,46844847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.79000000,0.00000000,,0.26829268,86.00000000,3.80530973,0.03488372,0.00000000,6.03000000 +11644,chr22,46844967,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.46000000 +11645,chr22,46845011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.24000000 +11646,chr22,46845897,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.43000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,5.91000000 +11647,chr22,46845992,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +11648,chr22,46846151,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.45000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +11649,chr22,46846436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.48000000 +11650,chr22,46846756,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.23000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.58000000 +11651,chr22,46847176,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.44000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,6.56000000 +11652,chr22,46847566,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.48000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.00000000,0.00000000,5.97000000 +11653,chr22,46849062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,0.83000000,0.00000000,,0.31428571,71.00000000,3.14159292,0.01408451,0.00000000,6.55000000 +11654,chr22,46849818,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.00000000,0.00000000,6.33000000 +11655,chr22,46849939,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.19000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +11656,chr22,46851274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,0.89000000,0.00000000,,0.15686275,103.00000000,4.55752212,0.00970874,0.00000000,5.68000000 +11657,chr22,46852492,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.92000000 +11658,chr22,46852708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.21000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +11659,chr22,46853655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.63000000 +11660,chr22,46853704,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.46000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.31000000 +11661,chr22,46854224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.59000000 +11662,chr22,46856463,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-0.32000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.01282051,0.00000000,5.93000000 +11663,chr22,46874911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +11664,chr22,46944484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,2.31000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.02352941,0.00000000,6.26000000 +11665,chr22,46945349,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.94000000 +11666,chr22,46946389,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.19444444,76.00000000,3.36283186,0.02631579,0.00000000,6.22000000 +11667,chr22,46946512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.75000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +11668,chr22,46947401,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,50.00000000,0.00000000,0.07000000,0.00000000,,0.33783784,74.00000000,3.27433628,0.00000000,0.00000000,4.24000000 +11669,chr22,46947922,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.27000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.62000000 +11670,chr22,46948101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.68000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.07000000 +11671,chr22,46948313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,0.80000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.33000000 +11672,chr22,46949514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.79000000,0.00000000,,0.14583333,97.00000000,4.29203540,0.01030928,0.00000000,6.06000000 +11673,chr22,46949819,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-1.67000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +11674,chr22,46949916,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,77.00000000,0.00000000,1.07000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,5.93000000 +11675,chr22,46950213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.48000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.01098901,0.00000000,6.25000000 +11676,chr22,46950231,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.16494845,97.00000000,4.29203540,0.00000000,0.00000000,6.19000000 +11677,chr22,46950325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.21495327,109.00000000,4.82300885,0.01834862,0.00000000,6.04000000 +11678,chr22,46952143,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,2.55000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.74000000 +11679,chr22,46952789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.65000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +11680,chr22,46952938,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.86000000,0.00000000,,0.14285714,94.00000000,4.15929204,0.02127660,0.00000000,5.18000000 +11681,chr22,46955417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.01333333,0.00000000,6.55000000 +11682,chr22,46960713,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.85000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.65000000 +11683,chr22,47040806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.60000000 +11684,chr22,47041044,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.58000000 +11685,chr22,47041162,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.78000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +11686,chr22,47047835,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.84000000 +11687,chr22,47048284,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.00000000,0.00000000,6.47000000 +11688,chr22,47050727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-1.10000000,0.00000000,,0.21875000,72.00000000,3.18584071,0.11111111,0.00000000,5.92000000 +11689,chr22,47052847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.36000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,6.43000000 +11690,chr22,47054869,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,64.00000000,0.00000000,-0.61000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.00000000 +11691,chr22,47061093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.09000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-0.15000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,6.30000000 +11692,chr22,47082103,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.39000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +11693,chr22,47100119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-1.42000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,3.92000000 +11694,chr22,47101395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.91000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.58000000 +11695,chr22,47106961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.59000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.02409639,0.00000000,6.38000000 +11696,chr22,47107171,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.16250000,83.00000000,3.67256637,0.03614458,0.00000000,5.49000000 +11697,chr22,47107468,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +11698,chr22,47107688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,6.13000000 +11699,chr22,47107955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.20731707,86.00000000,3.80530973,0.04651163,0.00000000,5.72000000 +11700,chr22,47108068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.13186813,93.00000000,4.11504425,0.02150538,0.00000000,5.22000000 +11701,chr22,47108219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,1.56000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.01190476,0.00000000,6.76000000 +11702,chr22,47108309,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-1.49000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.20000000 +11703,chr22,47108386,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.68000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.69000000 +11704,chr22,47108660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.16666667,104.00000000,4.60176991,0.00961538,0.00000000,6.42000000 +11705,chr22,47109003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.23000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.44000000 +11706,chr22,47109403,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.00000000,0.00000000,6.35000000 +11707,chr22,47109618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.81000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.63000000 +11708,chr22,47109767,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.04255319,0.00000000,5.77000000 +11709,chr22,47109846,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.32000000 +11710,chr22,47110149,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.40000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,6.07000000 +11711,chr22,47111958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.22000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.16000000 +11712,chr22,47112677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.99000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.32000000 +11713,chr22,47112680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.85000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +11714,chr22,47114882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.86000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +11715,chr22,47116062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,80.00000000,0.00000000,1.46000000,0.00000000,,0.18000000,102.00000000,4.51327434,0.01960784,0.00000000,5.15000000 +11716,chr22,47119017,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-2.24000000,0.00000000,,0.52727273,57.00000000,2.52212389,0.01754386,0.00000000,4.18000000 +11717,chr22,47119589,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.51000000,0.00000000,,0.45205479,79.00000000,3.49557522,0.07594937,0.00000000,7.51000000 +11718,chr22,47122764,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11719,chr22,47123580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-0.14000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,5.33000000 +11720,chr22,47126568,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.45000000 +11721,chr22,47129293,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,1.33000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,6.35000000 +11722,chr22,47132991,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.20454545,93.00000000,4.11504425,0.04301075,0.00000000,5.99000000 +11723,chr22,47133514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.59000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +11724,chr22,47133645,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.39000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.00000000,0.00000000,6.24000000 +11725,chr22,47134396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.30000000 +11726,chr22,47135677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +11727,chr22,47136138,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.75000000 +11728,chr22,47136371,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.63000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.01098901,0.00000000,6.68000000 +11729,chr22,47136753,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.60000000,0.00000000,,0.28169014,73.00000000,3.23008850,0.02739726,0.00000000,5.82000000 +11730,chr22,47136948,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.98000000,0.00000000,,0.27118644,61.00000000,2.69911504,0.01639344,0.00000000,6.33000000 +11731,chr22,47136998,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.27777778,57.00000000,2.52212389,0.01754386,0.00000000,6.38000000 +11732,chr22,47148148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +11733,chr22,47156832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.40000000,0.00000000,,0.10526316,97.00000000,4.29203540,0.01030928,0.00000000,5.31000000 +11734,chr22,47156978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.60000000,0.00000000,,0.10810811,75.00000000,3.31858407,0.01333333,0.00000000,5.10000000 +11735,chr22,47157212,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,-0.36000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.86000000 +11736,chr22,47159325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,1.14000000,0.00000000,,0.21666667,64.00000000,2.83185841,0.04687500,0.00000000,5.65000000 +11737,chr22,47160863,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,-0.81000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,5.95000000 +11738,chr22,47162202,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.21590909,92.00000000,4.07079646,0.03260870,0.00000000,5.74000000 +11739,chr22,47162235,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,1.09000000,0.00000000,,0.20238095,91.00000000,4.02654867,0.06593407,0.00000000,5.67000000 +11740,chr22,47162334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-1.88000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.03797468,0.00000000,6.01000000 +11741,chr22,47162463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.51000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.80000000 +11742,chr22,47162538,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.69000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +11743,chr22,47163041,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.68000000 +11744,chr22,47163806,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.69000000,0.00000000,,0.24444444,94.00000000,4.15929204,0.04255319,0.00000000,6.34000000 +11745,chr22,47163905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-1.08000000,0.00000000,,0.14942529,88.00000000,3.89380531,0.01136364,0.00000000,6.07000000 +11746,chr22,47164154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.28000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.69000000 +11747,chr22,47172228,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,2.16000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.03488372,0.00000000,5.93000000 +11748,chr22,47172648,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.58000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.03030303,0.00000000,5.94000000 +11749,chr22,47172805,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,100.00000000,0.00000000,0.25000000,0.00000000,,0.31325301,83.00000000,3.67256637,0.00000000,0.00000000,7.03000000 +11750,chr22,47173189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.13698630,73.00000000,3.23008850,0.00000000,0.00000000,5.39000000 +11751,chr22,47173328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.47000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.02985075,0.00000000,6.11000000 +11752,chr22,47174901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.20000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,6.43000000 +11753,chr22,47175442,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-0.66000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,6.69000000 +11754,chr22,47175837,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.87000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +11755,chr22,47176335,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,65.00000000,0.00000000,-0.80000000,0.00000000,,0.16129032,65.00000000,2.87610619,0.04615385,0.00000000,5.67000000 +11756,chr22,47176367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.93000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,59.00000000,0.00000000,0.43000000,0.78000000,,0.09090909,50.00000000,2.21238938,0.12000000,0.00000000,2.98000000 +11757,chr22,47176556,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.38000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,2.03000000,0.00000000,,0.15942029,73.00000000,3.23008850,0.04109589,0.00000000,5.16000000 +11758,chr22,47176636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.23000000,0.00000000,,0.18461538,70.00000000,3.09734513,0.07142857,0.00000000,5.86000000 +11759,chr22,47177245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,1.24000000,0.00000000,,0.15909091,90.00000000,3.98230088,0.02222222,0.00000000,5.43000000 +11760,chr22,47177313,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.14000000 +11761,chr22,47177355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,0.60000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +11762,chr22,47177396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.00000000,0.00000000,6.42000000 +11763,chr22,47177505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.87000000,0.00000000,,0.20454545,92.00000000,4.07079646,0.04347826,0.00000000,6.32000000 +11764,chr22,47177763,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.73000000,0.00000000,,0.25000000,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +11765,chr22,47178057,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.44000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,6.22000000 +11766,chr22,47178074,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.39000000,0.00000000,,0.32857143,73.00000000,3.23008850,0.02739726,0.00000000,8.24000000 +11767,chr22,47178256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.26262626,99.00000000,4.38053097,0.00000000,0.00000000,6.73000000 +11768,chr22,47189370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.07000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.50000000 +11769,chr22,47193965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.26315789,95.00000000,4.20353982,0.00000000,0.00000000,6.73000000 +11770,chr22,47200209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.27000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +11771,chr22,47212498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,75.00000000,0.00000000,-2.08000000,0.00000000,,0.20289855,77.00000000,3.40707965,0.09090909,0.01282051,5.65000000 +11772,chr22,47212568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.63000000,7.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,74.00000000,0.00000000,-0.49000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.23076923,0.00000000,5.75000000 +11773,chr22,47212590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.99000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,75.00000000,0.00000000,1.32000000,0.00000000,,0.20754717,64.00000000,2.83185841,0.17187500,0.00000000,5.41000000 +11774,chr22,47212790,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.42000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.08333333,0.00000000,5.62000000 +11775,chr22,47213051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.35000000,1.00000000,ref,1.00000000,0.03448276,32.00000000,1.41592920,0.09375000,0.00000000,58.00000000,0.00000000,1.58000000,0.00000000,,0.24137931,69.00000000,3.05309735,0.14492754,0.00000000,4.34000000 +11776,chr22,47213084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.12000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.20289855,75.00000000,3.31858407,0.08000000,0.00000000,5.69000000 +11777,chr22,47213118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.04000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.23943662,85.00000000,3.76106195,0.15294118,0.00000000,6.17000000 +11778,chr22,47215451,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.79000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.40000000 +11779,chr22,47215743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.28750000,80.00000000,3.53982301,0.00000000,0.00000000,6.53000000 +11780,chr22,47215790,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,0.54000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.01449275,0.00000000,5.85000000 +11781,chr22,47230286,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-0.49000000,0.00000000,,0.26666667,94.00000000,4.15929204,0.04255319,0.00000000,6.21000000 +11782,chr22,47231301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,56.00000000,0.00000000,0.81000000,0.00000000,,0.29761905,89.00000000,3.93805310,0.04494382,0.00000000,2.77000000 +11783,chr22,47235271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.42000000,0.00000000,,0.28235294,90.00000000,3.98230088,0.03333333,0.00000000,5.93000000 +11784,chr22,47239341,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.39000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.03750000,0.00000000,6.56000000 +11785,chr22,47259525,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.67000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +11786,chr22,47280049,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.12000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,5.91000000 +11787,chr22,47287121,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.05000000,0.00000000,,0.15384615,94.00000000,4.15929204,0.03191489,0.00000000,4.94000000 +11788,chr22,47287326,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,1.33000000,0.00000000,,0.28735632,91.00000000,4.02654867,0.03296703,0.00000000,6.07000000 +11789,chr22,47287814,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.68000000 +11790,chr22,47288055,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +11791,chr22,47290499,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.43000000,0.00000000,,0.23333333,63.00000000,2.78761062,0.04761905,0.00000000,2.85000000 +11792,chr22,47296565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.14000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +11793,chr22,47310676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.52000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +11794,chr22,47337028,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.75000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.94000000 +11795,chr22,47342256,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.52000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +11796,chr22,47345567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.39000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.74000000 +11797,chr22,47345830,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.50000000,8.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.22033898,64.00000000,2.83185841,0.07812500,0.00000000,5.96000000 +11798,chr22,47353241,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.22000000 +11799,chr22,47354377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.50000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,5.88000000 +11800,chr22,47354974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,2.11000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.14000000 +11801,chr22,47355207,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.96000000 +11802,chr22,47359575,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.76000000 +11803,chr22,47361064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.62000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.42000000 +11804,chr22,47361564,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.59000000 +11805,chr22,47361797,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.33000000 +11806,chr22,47362540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.35000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,5.99000000 +11807,chr22,47363212,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.39000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.04761905,0.00000000,6.00000000 +11808,chr22,47363710,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,-1.73000000,0.00000000,,0.21739130,52.00000000,2.30088496,0.11538462,0.00000000,2.94000000 +11809,chr22,47364119,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.68000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.16000000 +11810,chr22,47365005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.13000000 +11811,chr22,47365008,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +11812,chr22,47367280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.05000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.65000000 +11813,chr22,47367339,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.47000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.00000000,0.00000000,6.54000000 +11814,chr22,47369979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,1.27000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +11815,chr22,47370469,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-1.92000000,0.00000000,,0.20930233,96.00000000,4.24778761,0.10416667,0.00000000,5.99000000 +11816,chr22,47374788,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.06000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.97000000 +11817,chr22,47375550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.49000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11818,chr22,47375800,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.60000000 +11819,chr22,47376055,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.82000000 +11820,chr22,47378170,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,0.00000000,0.64000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,5.48000000 +11821,chr22,47378679,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.28000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.64000000 +11822,chr22,47380231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.17000000,0.00000000,,0.28421053,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +11823,chr22,47381671,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,5.87000000 +11824,chr22,47386596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.93000000 +11825,chr22,47387537,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +11826,chr22,47387702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.09000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.52000000 +11827,chr22,47389144,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.48000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +11828,chr22,47389948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.17460317,66.00000000,2.92035398,0.04545455,0.00000000,5.34000000 +11829,chr22,47395927,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.20000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.64000000 +11830,chr22,47396302,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.90000000 +11831,chr22,47401320,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-1.95000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.22000000 +11832,chr22,47401692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +11833,chr22,47406877,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.55000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,7.12000000 +11834,chr22,47407060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.81000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,6.04000000 +11835,chr22,47407652,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.08000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +11836,chr22,47411179,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +11837,chr22,47414984,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.60000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.34000000 +11838,chr22,47415171,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.22000000,0.00000000,,0.12500000,57.00000000,2.52212389,0.00000000,0.00000000,5.20000000 +11839,chr22,47415925,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.07000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.02439024,0.00000000,6.71000000 +11840,chr22,47422191,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +11841,chr22,47423495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.00000000,0.00000000,6.84000000 +11842,chr22,47424483,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.20000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.57000000 +11843,chr22,47424918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.77000000 +11844,chr22,47424937,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,0.74000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.77000000 +11845,chr22,47427622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,2.07000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.04000000,0.00000000,5.75000000 +11846,chr22,47428546,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,39.00000000,1.72566372,0.05128205,0.00000000,71.00000000,0.00000000,-0.80000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,5.78000000 +11847,chr22,47430856,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.00000000,0.00000000,6.98000000 +11848,chr22,47433372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.08000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.39000000 +11849,chr22,47434284,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.52000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,7.05000000 +11850,chr22,47436741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.28000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,6.38000000 +11851,chr22,47436752,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.02000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.37000000 +11852,chr22,47437863,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-1.04000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.36000000 +11853,chr22,47439089,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,5.64000000 +11854,chr22,47441979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.92000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,6.06000000 +11855,chr22,47446554,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.43000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,5.95000000 +11856,chr22,47447001,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.79000000 +11857,chr22,47447199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,2.11000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.03125000,0.00000000,5.70000000 +11858,chr22,47452235,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.94000000 +11859,chr22,47461546,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.20588235,71.00000000,3.14159292,0.04225352,0.00000000,6.52000000 +11860,chr22,47461788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,73.00000000,0.00000000,-0.92000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.01315789,0.00000000,6.05000000 +11861,chr22,47461802,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.17105263,81.00000000,3.58407080,0.06172840,0.00000000,5.55000000 +11862,chr22,47461827,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18840580,74.00000000,3.27433628,0.06756757,0.00000000,6.20000000 +11863,chr22,47463749,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.55000000 +11864,chr22,47464070,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.01851852,0.00000000,6.65000000 +11865,chr22,47464145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.00000000 +11866,chr22,47464470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.76000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.39000000 +11867,chr22,47464487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.28000000 +11868,chr22,47464893,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,-1.27000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.50000000 +11869,chr22,47464930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,-2.06000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.30000000 +11870,chr22,47466495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.01123596,0.00000000,6.65000000 +11871,chr22,47466651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,1.45000000,0.00000000,,0.14634146,85.00000000,3.76106195,0.01176471,0.00000000,5.27000000 +11872,chr22,47466978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.45000000,0.00000000,,0.19266055,109.00000000,4.82300885,0.00000000,0.00000000,6.39000000 +11873,chr22,47467312,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.14000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,7.04000000 +11874,chr22,47469015,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,65.00000000,0.00000000,0.76000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,4.96000000 +11875,chr22,47471423,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.34000000 +11876,chr22,47471441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.52000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,6.05000000 +11877,chr22,47474754,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.51000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,5.97000000 +11878,chr22,47476087,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,2.19000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.54000000 +11879,chr22,47476495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.63000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,8.36000000 +11880,chr22,47476994,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +11881,chr22,47477273,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,64.00000000,0.00000000,1.66000000,0.00000000,,0.11267606,76.00000000,3.36283186,0.06578947,0.00000000,4.58000000 +11882,chr22,47478923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.59000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +11883,chr22,47482201,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.18000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.17910448,0.00000000,5.86000000 +11884,chr22,47482245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,1.69000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.02666667,0.00000000,5.83000000 +11885,chr22,47483361,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,1.89000000,0.00000000,,0.20000000,102.00000000,4.51327434,0.01960784,0.00000000,5.63000000 +11886,chr22,47483940,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,75.00000000,0.00000000,0.17000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.26086957,0.00000000,8.17000000 +11887,chr22,47486378,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.27000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.85000000 +11888,chr22,47491990,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,1.23000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.58000000 +11889,chr22,47496910,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,1.17000000,0.00000000,,0.30263158,76.00000000,3.36283186,0.00000000,0.00000000,5.92000000 +11890,chr22,47498982,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.64000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +11891,chr22,47499597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.69000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +11892,chr22,47511955,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +11893,chr22,47516431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +11894,chr22,47537441,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.63000000 +11895,chr22,47543848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,98.00000000,0.00000000,0.66000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,5.68000000 +11896,chr22,47543932,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.05000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +11897,chr22,47544679,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.88000000,0.00000000,,0.17857143,58.00000000,2.56637168,0.03448276,0.00000000,6.43000000 +11898,chr22,47545159,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,1.22000000,0.00000000,,0.25757576,68.00000000,3.00884956,0.01470588,0.00000000,3.02000000 +11899,chr22,47546863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-0.43000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.09803922,0.00000000,2.87000000 +11900,chr22,47548520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.97000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +11901,chr22,47548999,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.07000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +11902,chr22,47549212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.81000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.86000000 +11903,chr22,47549310,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.60000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +11904,chr22,47549903,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +11905,chr22,47550047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.17582418,92.00000000,4.07079646,0.00000000,0.00000000,6.22000000 +11906,chr22,47552839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.14102564,81.00000000,3.58407080,0.02469136,0.00000000,5.52000000 +11907,chr22,47557099,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,6.69000000 +11908,chr22,47571012,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.00000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.96000000 +11909,chr22,47571944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.02000000 +11910,chr22,47580784,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-2.23000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,8.73000000 +11911,chr22,47581820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.25252525,99.00000000,4.38053097,0.00000000,0.00000000,5.91000000 +11912,chr22,47590616,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.50000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,0.00000000,-0.15000000,0.00000000,,0.23076923,41.00000000,1.81415929,0.04878049,0.00000000,2.78000000 +11913,chr22,47602694,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.56000000,0.00000000,,0.15957447,94.00000000,4.15929204,0.00000000,0.00000000,5.40000000 +11914,chr22,47603022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,1.48000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.02000000 +11915,chr22,47603563,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.97000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +11916,chr22,47603579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.31000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +11917,chr22,47603581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.11000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +11918,chr22,47605084,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.01052632,0.00000000,6.52000000 +11919,chr22,47606707,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.03000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,7.09000000 +11920,chr22,47612460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.29000000,0.00000000,,0.22413793,60.00000000,2.65486726,0.01666667,0.00000000,6.41000000 +11921,chr22,47625237,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.43000000 +11922,chr22,47634739,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,71.00000000,3.14159292,0.02816901,0.00000000,6.17000000 +11923,chr22,47636440,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-0.91000000,0.00000000,,0.40000000,63.00000000,2.78761062,0.03174603,0.00000000,7.81000000 +11924,chr22,47637584,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.18000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,4.24000000 +11925,chr22,47640764,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,-2.30000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,8.89000000 +11926,chr22,47642264,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.91000000,0.00000000,,0.53333333,61.00000000,2.69911504,0.01639344,0.00000000,4.02000000 +11927,chr22,47646186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,108.00000000,0.00000000,-0.84000000,0.00000000,,0.38157895,76.00000000,3.36283186,0.00000000,0.00000000,15.05000000 +11928,chr22,47646807,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.02000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.28000000 +11929,chr22,47650140,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.66000000,0.00000000,,0.35897436,79.00000000,3.49557522,0.01265823,0.00000000,7.95000000 +11930,chr22,47652183,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,56.00000000,0.00000000,-0.96000000,0.00000000,,0.46590909,91.00000000,4.02654867,0.02197802,0.00000000,4.34000000 +11931,chr22,47653871,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.00000000,0.00000000,8.05000000 +11932,chr22,47655699,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-0.09000000,0.00000000,,0.42253521,73.00000000,3.23008850,0.01369863,0.00000000,4.31000000 +11933,chr22,47659256,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.35135135,75.00000000,3.31858407,0.01333333,0.00000000,8.22000000 +11934,chr22,47666835,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-0.42000000,0.00000000,,0.41891892,74.00000000,3.27433628,0.00000000,0.00000000,4.63000000 +11935,chr22,47672579,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,48.00000000,0.00000000,-0.42000000,0.00000000,,0.45161290,63.00000000,2.78761062,0.00000000,0.00000000,4.22000000 +11936,chr22,47674595,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.01000000,0.00000000,,0.36231884,72.00000000,3.18584071,0.04166667,0.00000000,7.96000000 +11937,chr22,47677028,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,53.00000000,0.00000000,-0.22000000,0.00000000,,0.40845070,75.00000000,3.31858407,0.05333333,0.00000000,4.53000000 +11938,chr22,47677045,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,48.00000000,0.00000000,0.06000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.04054054,0.00000000,4.75000000 +11939,chr22,47678111,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,22.00000000,0.97345133,0.00000000,0.00000000,3.00000000,0.00000000,-0.23000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,3.00000000 +11940,chr22,47689131,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.42000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,8.58000000 +11941,chr22,47698931,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.62000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.65000000 +11942,chr22,47699240,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.40740741,82.00000000,3.62831858,0.01219512,0.00000000,9.08000000 +11943,chr22,47699561,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.17000000,0.00000000,,0.61971831,72.00000000,3.18584071,0.01388889,0.00000000,7.77000000 +11944,chr22,47705689,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,54.00000000,0.00000000,0.08000000,0.00000000,,0.39682540,64.00000000,2.83185841,0.01562500,0.00000000,4.62000000 +11945,chr22,47707010,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,1.68000000,0.00000000,,0.43529412,86.00000000,3.80530973,0.01162791,0.00000000,8.75000000 +11946,chr22,47711305,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.15000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,8.03000000 +11947,chr22,47712570,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,1.11000000,0.00000000,,0.37974684,82.00000000,3.62831858,0.01219512,0.00000000,4.17000000 +11948,chr22,47714510,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-1.40000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.02531646,0.00000000,8.35000000 +11949,chr22,47715996,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.08000000,0.00000000,,0.51612903,63.00000000,2.78761062,0.01587302,0.00000000,4.42000000 +11950,chr22,47717463,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.51000000,0.00000000,,0.35211268,73.00000000,3.23008850,0.02739726,0.00000000,8.35000000 +11951,chr22,47718071,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.75000000,0.00000000,,0.48351648,92.00000000,4.07079646,0.01086957,0.00000000,8.43000000 +11952,chr22,47720217,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,31.00000000,0.00000000,-1.49000000,0.00000000,,0.41071429,61.00000000,2.69911504,0.08196721,0.00000000,3.85000000 +11953,chr22,47723674,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-2.24000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,7.06000000 +11954,chr22,47726228,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.57000000,0.00000000,,0.44444444,83.00000000,3.67256637,0.02409639,0.00000000,8.33000000 +11955,chr22,47728261,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,26.00000000,0.00000000,1.36000000,0.00000000,,0.38888889,81.00000000,3.58407080,0.09876543,0.00000000,3.40000000 +11956,chr22,47731547,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.35000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,8.41000000 +11957,chr22,47734964,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.29850746,67.00000000,2.96460177,0.00000000,0.00000000,6.76000000 +11958,chr22,47738618,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,-0.04000000,0.00000000,,0.42307692,81.00000000,3.58407080,0.03703704,0.00000000,8.33000000 +11959,chr22,47740273,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.21000000,0.00000000,,0.38961039,79.00000000,3.49557522,0.02531646,0.00000000,8.15000000 +11960,chr22,47748128,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.49090909,56.00000000,2.47787611,0.01785714,0.00000000,8.39000000 +11961,chr22,47748164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.90000000,0.00000000,,0.50980392,52.00000000,2.30088496,0.01923077,0.00000000,4.68000000 +11962,chr22,47749095,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,0.60000000,0.00000000,,0.36507937,65.00000000,2.87610619,0.01538462,0.00000000,4.36000000 +11963,chr22,47752509,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,46.00000000,0.00000000,0.05000000,0.00000000,,0.47540984,63.00000000,2.78761062,0.03174603,0.00000000,4.14000000 +11964,chr22,47758265,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-0.84000000,0.00000000,,0.53947368,77.00000000,3.40707965,0.01298701,0.00000000,6.18000000 +11965,chr22,47766709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-1.24000000,0.00000000,,0.25974026,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +11966,chr22,47768458,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.90000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.76000000 +11967,chr22,47778105,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.58000000,0.00000000,,0.45000000,61.00000000,2.69911504,0.01639344,0.00000000,7.60000000 +11968,chr22,47796883,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.43373494,86.00000000,3.80530973,0.02325581,0.00000000,8.20000000 +11969,chr22,47799946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.40000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.06000000 +11970,chr22,47799965,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.77000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +11971,chr22,47806806,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,-1.55000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,5.89000000 +11972,chr22,47809818,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.70000000,4.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,0.06000000,0.00000000,,0.55319149,50.00000000,2.21238938,0.06000000,0.00000000,4.07000000 +11973,chr22,47810696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.16000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.00000000,0.00000000,7.43000000 +11974,chr22,47810750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.86000000 +11975,chr22,47812147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-0.50000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +11976,chr22,47814436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.39000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.01190476,0.00000000,6.48000000 +11977,chr22,47814678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,1.86000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.04225352,0.00000000,5.57000000 +11978,chr22,47814720,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-1.76000000,0.00000000,,0.12903226,67.00000000,2.96460177,0.07462687,0.00000000,5.32000000 +11979,chr22,47821049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.38000000 +11980,chr22,47824188,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +11981,chr22,47833029,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.43000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.58000000 +11982,chr22,47838893,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +11983,chr22,47842070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,6.10000000 +11984,chr22,47842687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.40000000 +11985,chr22,47842910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,-2.58000000,0.00000000,,0.27272727,60.00000000,2.65486726,0.06666667,0.00000000,6.23000000 +11986,chr22,47843733,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-1.91000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.57000000 +11987,chr22,47844331,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.03571429,0.00000000,5.91000000 +11988,chr22,47844831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.81000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +11989,chr22,47845949,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.32000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,6.19000000 +11990,chr22,47846062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +11991,chr22,47846890,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.28000000 +11992,chr22,47847604,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.22000000 +11993,chr22,47847639,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,0.08000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +11994,chr22,47847689,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.34000000 +11995,chr22,47848117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.95000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11996,chr22,47848593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.60000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.59000000 +11997,chr22,47849021,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,-1.82000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,5.79000000 +11998,chr22,47849701,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.20000000 +11999,chr22,47852148,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.64000000 +12000,chr22,47852971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.55000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.38000000 +12001,chr22,47853833,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.05000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +12002,chr22,47854132,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.34000000 +12003,chr22,47854777,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-2.55000000,0.00000000,,0.33766234,78.00000000,3.45132743,0.01282051,0.00000000,8.67000000 +12004,chr22,47854832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.66000000,0.00000000,,0.36000000,78.00000000,3.45132743,0.02564103,0.00000000,8.23000000 +12005,chr22,47855875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,49.00000000,0.00000000,0.96000000,0.00000000,,0.30000000,68.00000000,3.00884956,0.07352941,0.00000000,4.43000000 +12006,chr22,47855960,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.09000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,5.62000000 +12007,chr22,47856124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12008,chr22,47857697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.12000000,0.00000000,,0.25714286,74.00000000,3.27433628,0.05405405,0.00000000,6.37000000 +12009,chr22,47857951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.89000000 +12010,chr22,47857988,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,80.00000000,0.00000000,-1.53000000,0.00000000,,0.31034483,87.00000000,3.84955752,0.00000000,0.00000000,6.61000000 +12011,chr22,47858065,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,2.00000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.19000000 +12012,chr22,47858247,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12013,chr22,47858410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.60000000 +12014,chr22,47858829,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,6.13000000 +12015,chr22,47859190,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.41000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,5.90000000 +12016,chr22,47859591,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,1.72000000,0.00000000,,0.15555556,94.00000000,4.15929204,0.03191489,0.00000000,5.05000000 +12017,chr22,47859620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.13095238,85.00000000,3.76106195,0.01176471,0.00000000,4.90000000 +12018,chr22,47860113,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +12019,chr22,47860309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.18000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.44000000 +12020,chr22,47860405,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.25000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.03529412,0.00000000,5.35000000 +12021,chr22,47860511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.18000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +12022,chr22,47860858,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.38000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,3.76000000 +12023,chr22,47860946,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,1.58000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,5.83000000 +12024,chr22,47861547,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +12025,chr22,47862190,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,1.12000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.41000000 +12026,chr22,47862840,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.61000000 +12027,chr22,47866395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,-1.21000000,0.00000000,,0.16161616,101.00000000,4.46902655,0.01980198,0.00000000,5.42000000 +12028,chr22,47867769,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.57000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.09000000 +12029,chr22,47868073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,0.21000000,0.00000000,,0.13157895,77.00000000,3.40707965,0.01298701,0.00000000,5.10000000 +12030,chr22,47869041,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.36000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +12031,chr22,47869625,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.41000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,6.61000000 +12032,chr22,47871451,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.53000000,0.00000000,,0.18478261,95.00000000,4.20353982,0.02105263,0.00000000,6.30000000 +12033,chr22,47875176,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.76000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.23000000 +12034,chr22,47916953,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.32000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +12035,chr22,47928472,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.67000000 +12036,chr22,47956691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,4.70000000 +12037,chr22,47957573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.70000000 +12038,chr22,47981754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,98.00000000,0.00000000,-1.07000000,0.00000000,,0.29411765,85.00000000,3.76106195,0.00000000,0.00000000,6.59000000 +12039,chr22,47995365,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.34375000,68.00000000,3.00884956,0.05882353,0.00000000,7.98000000 +12040,chr22,47998371,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.36000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.00000000,0.00000000,6.76000000 +12041,chr22,47998997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.71000000,0.00000000,,0.23750000,83.00000000,3.67256637,0.03614458,0.00000000,6.19000000 +12042,chr22,48004480,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.28260870,94.00000000,4.15929204,0.00000000,0.00000000,6.70000000 +12043,chr22,48011793,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.63000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,5.84000000 +12044,chr22,48013311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +12045,chr22,48014027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.61000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.00000000 +12046,chr22,48014226,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,0.61000000,0.00000000,,0.36923077,70.00000000,3.09734513,0.05714286,0.00000000,4.60000000 +12047,chr22,48014902,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-1.37000000,0.00000000,,0.14285714,63.00000000,2.78761062,0.00000000,0.00000000,6.12000000 +12048,chr22,48017685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.95000000 +12049,chr22,48021192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.16949153,60.00000000,2.65486726,0.00000000,0.00000000,6.83000000 +12050,chr22,48023882,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,0.83000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +12051,chr22,48024732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.00000000,0.00000000,,0.15094340,55.00000000,2.43362832,0.03636364,0.00000000,4.87000000 +12052,chr22,48027688,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.08000000,0.00000000,,0.14000000,103.00000000,4.55752212,0.02912621,0.00000000,5.41000000 +12053,chr22,48029150,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.01000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,7.01000000 +12054,chr22,48042672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +12055,chr22,48056600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.04000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +12056,chr22,48073553,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,1.08000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.16000000 +12057,chr22,48081307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.17000000 +12058,chr22,48081667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.22857143,75.00000000,3.31858407,0.06666667,0.00000000,5.74000000 +12059,chr22,48081823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,5.54000000 +12060,chr22,48081889,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.11000000 +12061,chr22,48082173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.25000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.76000000 +12062,chr22,48082341,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.01000000,0.00000000,,0.26829268,85.00000000,3.76106195,0.02352941,0.00000000,6.64000000 +12063,chr22,48082573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +12064,chr22,48083568,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.34000000 +12065,chr22,48085463,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.27000000,0.00000000,,0.22413793,60.00000000,2.65486726,0.03333333,0.00000000,6.24000000 +12066,chr22,48088944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.71000000,0.00000000,,0.25510204,98.00000000,4.33628319,0.00000000,0.00000000,6.72000000 +12067,chr22,48095136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,6.76000000 +12068,chr22,48099782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12069,chr22,48100886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.47000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.37000000 +12070,chr22,48103825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.42000000 +12071,chr22,48104570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.19000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +12072,chr22,48104712,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.45000000 +12073,chr22,48106271,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.63000000 +12074,chr22,48106335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,97.00000000,0.00000000,-0.74000000,0.00000000,,0.30120482,83.00000000,3.67256637,0.00000000,0.00000000,6.36000000 +12075,chr22,48107700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.37000000,0.00000000,,0.24705882,89.00000000,3.93805310,0.04494382,0.00000000,6.28000000 +12076,chr22,48108160,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,-1.60000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.80000000 +12077,chr22,48110895,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.35000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.00000000,0.00000000,6.63000000 +12078,chr22,48111075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,71.00000000,0.00000000,0.69000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,5.55000000 +12079,chr22,48111430,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.13131313,99.00000000,4.38053097,0.00000000,0.00000000,5.45000000 +12080,chr22,48111435,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.32000000,0.00000000,,0.13684211,95.00000000,4.20353982,0.00000000,0.00000000,5.20000000 +12081,chr22,48111498,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.06060606,0.00000000,69.00000000,0.00000000,-1.66000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.81000000 +12082,chr22,48111829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,-1.45000000,0.00000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,5.05000000 +12083,chr22,48113275,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.36000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.41000000 +12084,chr22,48113376,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.08000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,4.23000000 +12085,chr22,48115136,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.82000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.05000000 +12086,chr22,48115217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,-0.67000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12087,chr22,48118397,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.73000000 +12088,chr22,48118479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.28000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.04054054,0.00000000,5.96000000 +12089,chr22,48119901,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,43.00000000,0.00000000,-0.28000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,4.31000000 +12090,chr22,48121065,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.45000000 +12091,chr22,48121818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,2.81000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.27000000 +12092,chr22,48127950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.36000000,0.00000000,,0.24175824,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +12093,chr22,48129965,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.47000000,0.00000000,,0.11392405,85.00000000,3.76106195,0.04705882,0.00000000,5.33000000 +12094,chr22,48146851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.06000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +12095,chr22,48149151,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,0.96000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.48000000 +12096,chr22,48149692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.68000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.59000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,5.73000000 +12097,chr22,48155917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-1.17000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.58000000 +12098,chr22,48157892,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.56000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +12099,chr22,48188800,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.54000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.69000000 +12100,chr22,48189107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.24000000,0.00000000,,0.33333333,79.00000000,3.49557522,0.01265823,0.00000000,8.25000000 +12101,chr22,48190184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.54000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12102,chr22,48191993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.29000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.75000000 +12103,chr22,48192148,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.23863636,90.00000000,3.98230088,0.02222222,0.00000000,6.07000000 +12104,chr22,48194757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.08000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.40000000 +12105,chr22,48194758,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.08000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +12106,chr22,48195433,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.03000000,0.00000000,,0.54098361,62.00000000,2.74336283,0.00000000,0.00000000,4.05000000 +12107,chr22,48195880,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,47.00000000,0.00000000,-0.62000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,4.74000000 +12108,chr22,48198497,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.40789474,79.00000000,3.49557522,0.03797468,0.00000000,8.17000000 +12109,chr22,48200216,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,-1.42000000,0.00000000,,0.38461538,65.00000000,2.87610619,0.00000000,0.00000000,8.93000000 +12110,chr22,48207816,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.10389610,78.00000000,3.45132743,0.00000000,0.00000000,4.98000000 +12111,chr22,48207901,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.01282051,0.00000000,5.84000000 +12112,chr22,48209595,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.01315789,0.00000000,8.06000000 +12113,chr22,48210596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.01408451,0.00000000,6.35000000 +12114,chr22,48211087,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,99.00000000,0.00000000,-1.69000000,0.00000000,,0.33846154,67.00000000,2.96460177,0.02985075,0.00000000,7.97000000 +12115,chr22,48213882,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-0.59000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,8.69000000 +12116,chr22,48222630,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.95000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.87000000 +12117,chr22,48225175,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,46.00000000,0.00000000,-1.45000000,0.00000000,,0.48437500,65.00000000,2.87610619,0.01538462,0.00000000,4.19000000 +12118,chr22,48229784,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.05000000,0.00000000,,0.27368421,99.00000000,4.38053097,0.04040404,0.00000000,6.31000000 +12119,chr22,48232935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +12120,chr22,48238270,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-1.13000000,0.00000000,,0.38356164,73.00000000,3.23008850,0.00000000,0.00000000,8.12000000 +12121,chr22,48254018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.80000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.02597403,0.00000000,6.25000000 +12122,chr22,48255229,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.38000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.15000000 +12123,chr22,48257394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.31000000,0.00000000,,0.18055556,76.00000000,3.36283186,0.03947368,0.00000000,6.05000000 +12124,chr22,48257510,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.31000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.62000000 +12125,chr22,48262681,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,98.00000000,0.00000000,-1.45000000,0.00000000,,0.33802817,74.00000000,3.27433628,0.04054054,0.00000000,7.92000000 +12126,chr22,48263144,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,0.32000000,0.00000000,,0.45000000,81.00000000,3.58407080,0.01234568,0.00000000,7.88000000 +12127,chr22,48263453,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,9.00000000,0.00000000,-0.82000000,0.00000000,,0.45454545,67.00000000,2.96460177,0.01492537,0.00000000,3.03000000 +12128,chr22,48265297,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,7.02000000 +12129,chr22,48265987,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.68000000 +12130,chr22,48266726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.45000000 +12131,chr22,48276204,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,2.00000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.15000000 +12132,chr22,48290813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.95000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.99000000,0.00000000,,0.30864198,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +12133,chr22,48292312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.87000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.58000000 +12134,chr22,48292333,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.16000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +12135,chr22,48292617,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.76000000 +12136,chr22,48292690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.04000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.02985075,0.00000000,6.00000000 +12137,chr22,48292691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.43000000,0.00000000,,0.26562500,67.00000000,2.96460177,0.02985075,0.00000000,6.00000000 +12138,chr22,48293314,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.00000000,0.00000000,6.30000000 +12139,chr22,48293527,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.37000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.54000000 +12140,chr22,48293631,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.54000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.40000000 +12141,chr22,48293638,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.75000000 +12142,chr22,48293649,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,6.63000000 +12143,chr22,48294375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.39000000,0.00000000,,0.21212121,67.00000000,2.96460177,0.01492537,0.00000000,6.21000000 +12144,chr22,48294636,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.14000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.48000000 +12145,chr22,48294968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.46000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.07000000 +12146,chr22,48295341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,5.89000000 +12147,chr22,48296844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,7.17000000 +12148,chr22,48297923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.61000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.01351351,0.00000000,6.55000000 +12149,chr22,48298141,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.35211268,72.00000000,3.18584071,0.01388889,0.00000000,8.28000000 +12150,chr22,48299054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-1.55000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,6.09000000 +12151,chr22,48300885,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.07000000,0.00000000,,0.14563107,103.00000000,4.55752212,0.00000000,0.00000000,5.19000000 +12152,chr22,48303009,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,78.00000000,0.00000000,0.18000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.68000000 +12153,chr22,48303805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.18333333,63.00000000,2.78761062,0.04761905,0.00000000,6.56000000 +12154,chr22,48304000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,74.00000000,0.00000000,-0.56000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.14000000 +12155,chr22,48304411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,1.02000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.49000000 +12156,chr22,48305211,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.26000000,0.00000000,,0.20967742,66.00000000,2.92035398,0.06060606,0.00000000,6.29000000 +12157,chr22,48305218,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.10000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,6.36000000 +12158,chr22,48313142,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.68000000,0.00000000,,0.29577465,74.00000000,3.27433628,0.02702703,0.00000000,6.42000000 +12159,chr22,48314668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.08000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.92000000 +12160,chr22,48315247,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.24731183,93.00000000,4.11504425,0.00000000,0.00000000,6.51000000 +12161,chr22,48316663,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.18000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.39000000 +12162,chr22,48317739,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.01351351,0.00000000,6.93000000 +12163,chr22,48318067,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +12164,chr22,48318300,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.14666667,81.00000000,3.58407080,0.04938272,0.00000000,5.30000000 +12165,chr22,48319013,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.55000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.04285714,0.00000000,5.79000000 +12166,chr22,48320446,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.80000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.39000000,0.00000000,,0.19148936,52.00000000,2.30088496,0.09615385,0.00000000,5.88000000 +12167,chr22,48320470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.33000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,-0.58000000,0.00000000,,0.24193548,68.00000000,3.00884956,0.07352941,0.00000000,6.32000000 +12168,chr22,48320541,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.93000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.81000000 +12169,chr22,48322909,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,94.00000000,0.00000000,1.09000000,0.00000000,,0.26373626,92.00000000,4.07079646,0.01086957,0.00000000,6.37000000 +12170,chr22,48323646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,-0.02000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.14000000 +12171,chr22,48323758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.74000000 +12172,chr22,48324380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,77.00000000,0.00000000,1.70000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.99000000 +12173,chr22,48324577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.61000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.34000000 +12174,chr22,48324774,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.94000000 +12175,chr22,48325515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.21000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.02500000,0.00000000,6.11000000 +12176,chr22,48327848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.64000000 +12177,chr22,48329723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +12178,chr22,48330705,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.43000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.46000000 +12179,chr22,48331862,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,3.48000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.28000000 +12180,chr22,48332261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.42000000,9.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,37.00000000,0.00000000,1.47000000,0.00000000,,0.34328358,68.00000000,3.00884956,0.01470588,0.00000000,3.40000000 +12181,chr22,48332470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.08000000 +12182,chr22,48333376,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.10000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.32000000 +12183,chr22,48333738,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,0.93000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,5.68000000 +12184,chr22,48334257,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.83000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.00000000,0.00000000,6.01000000 +12185,chr22,48334299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.17000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.91000000 +12186,chr22,48335101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.04000000 +12187,chr22,48340184,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.59000000 +12188,chr22,48340310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.13333333,78.00000000,3.45132743,0.03846154,0.00000000,5.22000000 +12189,chr22,48341827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.29000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.73000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.68000000 +12190,chr22,48342321,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.92000000 +12191,chr22,48342651,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.31000000,0.00000000,,0.22105263,99.00000000,4.38053097,0.02020202,0.00000000,6.64000000 +12192,chr22,48343300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.00000000,0.00000000,6.65000000 +12193,chr22,48343635,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-1.16000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.39000000 +12194,chr22,48343644,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.51807229,84.00000000,3.71681416,0.01190476,0.00000000,7.72000000 +12195,chr22,48343830,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,8.34000000 +12196,chr22,48344918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.66000000,0.00000000,,0.22807018,57.00000000,2.52212389,0.00000000,0.00000000,6.43000000 +12197,chr22,48345199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.28846154,57.00000000,2.52212389,0.05263158,0.00000000,6.72000000 +12198,chr22,48345200,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,55.00000000,0.00000000,0.05000000,0.00000000,,0.37037037,57.00000000,2.52212389,0.05263158,0.00000000,4.70000000 +12199,chr22,48345498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.59000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,6.51000000 +12200,chr22,48345537,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.97000000 +12201,chr22,48345573,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.44000000,0.00000000,,0.17142857,74.00000000,3.27433628,0.05405405,0.00000000,5.91000000 +12202,chr22,48346844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.18000000,0.00000000,,0.16438356,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +12203,chr22,48346979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.09000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +12204,chr22,48347437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,5.80000000 +12205,chr22,48348532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,4.24000000 +12206,chr22,48348598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,62.00000000,0.00000000,1.80000000,0.00000000,,0.08860759,81.00000000,3.58407080,0.00000000,0.00000000,4.83000000 +12207,chr22,48348705,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-1.09000000,0.00000000,,0.10256410,79.00000000,3.49557522,0.01265823,0.00000000,5.14000000 +12208,chr22,48348799,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,1.07000000,0.00000000,,0.11864407,61.00000000,2.69911504,0.03278689,0.00000000,4.85000000 +12209,chr22,48348884,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,62.00000000,0.00000000,-0.83000000,0.00000000,,0.13461538,56.00000000,2.47787611,0.05357143,0.00000000,5.00000000 +12210,chr22,48349488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.00000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.05000000 +12211,chr22,48349529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.68000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.01639344,0.00000000,6.03000000 +12212,chr22,48349670,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.94000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.04109589,0.00000000,6.54000000 +12213,chr22,48349863,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.31000000 +12214,chr22,48349989,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.90000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.90000000 +12215,chr22,48350994,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,5.57000000 +12216,chr22,48351572,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.02000000,0.00000000,,0.21875000,68.00000000,3.00884956,0.05882353,0.00000000,5.99000000 +12217,chr22,48352107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,-0.69000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,5.51000000 +12218,chr22,48352723,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.12500000,80.00000000,3.53982301,0.00000000,0.00000000,5.26000000 +12219,chr22,48353370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.16666667,55.00000000,2.43362832,0.01818182,0.00000000,5.13000000 +12220,chr22,48354244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +12221,chr22,48355234,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.18000000 +12222,chr22,48358373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.82000000,14.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,0.68000000,0.00000000,,0.17910448,70.00000000,3.09734513,0.04285714,0.00000000,2.86000000 +12223,chr22,48360055,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,102.00000000,0.00000000,0.59000000,0.00000000,,0.38372093,86.00000000,3.80530973,0.00000000,0.00000000,13.75000000 +12224,chr22,48362269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.09000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.63000000 +12225,chr22,48362959,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-1.00000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.01408451,0.00000000,6.43000000 +12226,chr22,48363959,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.03000000 +12227,chr22,48366697,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,1.33000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.39000000 +12228,chr22,48366814,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.15853659,87.00000000,3.84955752,0.03448276,0.00000000,5.58000000 +12229,chr22,48367097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.17000000 +12230,chr22,48369430,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.41000000 +12231,chr22,48369769,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,55.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,2.78000000 +12232,chr22,48370088,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.46000000 +12233,chr22,48370335,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.63000000 +12234,chr22,48370360,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.63000000 +12235,chr22,48370979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,1.07000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,5.94000000 +12236,chr22,48370980,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,0.70000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.80000000 +12237,chr22,48371012,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.12000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.00000000,0.00000000,6.39000000 +12238,chr22,48371335,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.28813559,61.00000000,2.69911504,0.01639344,0.00000000,5.82000000 +12239,chr22,48371377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.00000000,0.00000000,5.90000000 +12240,chr22,48372384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.37000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.69000000 +12241,chr22,48374036,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.37000000,0.00000000,,0.14516129,63.00000000,2.78761062,0.01587302,0.00000000,5.22000000 +12242,chr22,48389606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-1.71000000,0.00000000,,0.11392405,80.00000000,3.53982301,0.01250000,0.00000000,5.17000000 +12243,chr22,48407438,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.34000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.80000000 +12244,chr22,48407702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.99000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.76000000 +12245,chr22,48415005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.55000000 +12246,chr22,48415713,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,1.48000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,5.98000000 +12247,chr22,48415941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,0.54000000,0.00000000,,0.08450704,72.00000000,3.18584071,0.01388889,0.00000000,5.28000000 +12248,chr22,48416040,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.70000000 +12249,chr22,48416062,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.04225352,0.00000000,5.94000000 +12250,chr22,48416134,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.47000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.34000000 +12251,chr22,48416318,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.14606742,93.00000000,4.11504425,0.03225806,0.00000000,5.33000000 +12252,chr22,48416323,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.54000000,0.00000000,,0.15909091,91.00000000,4.02654867,0.03296703,0.00000000,5.40000000 +12253,chr22,48417836,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.95000000,0.00000000,,0.30985915,73.00000000,3.23008850,0.01369863,0.00000000,7.99000000 +12254,chr22,48421060,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.61000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,5.95000000 +12255,chr22,48422209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.19672131,64.00000000,2.83185841,0.01562500,0.00000000,6.55000000 +12256,chr22,48423429,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,0.03000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,5.89000000 +12257,chr22,48423552,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.95000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.50000000 +12258,chr22,48426684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,1.00000000,0.00000000,,0.26436782,91.00000000,4.02654867,0.03296703,0.00000000,6.27000000 +12259,chr22,48431672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.60000000,0.00000000,,0.11940299,68.00000000,3.00884956,0.01470588,0.00000000,4.96000000 +12260,chr22,48431879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.14285714,57.00000000,2.52212389,0.01754386,0.00000000,4.83000000 +12261,chr22,48432197,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,1.03000000,0.00000000,,0.13559322,61.00000000,2.69911504,0.03278689,0.00000000,5.06000000 +12262,chr22,48432963,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.08000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,6.36000000 +12263,chr22,48433978,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.42000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.80000000 +12264,chr22,48434404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.93000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.00000000,0.00000000,7.18000000 +12265,chr22,48436282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-0.77000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,4.88000000 +12266,chr22,48436403,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.35000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,2.76000000 +12267,chr22,48436981,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.33000000,0.00000000,,0.45360825,99.00000000,4.38053097,0.02020202,0.00000000,8.61000000 +12268,chr22,48437092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +12269,chr22,48437141,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.28000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.87000000 +12270,chr22,48437894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.66000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12271,chr22,48438711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.56000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,5.86000000 +12272,chr22,48439653,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.34000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.87000000 +12273,chr22,48440230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.54000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.00000000,0.00000000,6.45000000 +12274,chr22,48441817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,89.00000000,0.00000000,0.43000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +12275,chr22,48442600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +12276,chr22,48447716,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.37000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,6.42000000 +12277,chr22,48462411,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.56000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +12278,chr22,48463015,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.03000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.74000000 +12279,chr22,48464180,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.73000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +12280,chr22,48464615,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,54.00000000,0.00000000,-1.09000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,4.37000000 +12281,chr22,48467961,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,33.00000000,0.00000000,0.99000000,0.00000000,,0.29268293,42.00000000,1.85840708,0.00000000,0.00000000,2.91000000 +12282,chr22,48468581,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +12283,chr22,48468866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.17647059,74.00000000,3.27433628,0.06756757,0.00000000,6.06000000 +12284,chr22,48469284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +12285,chr22,48471219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.89000000,0.00000000,,0.27272727,80.00000000,3.53982301,0.03750000,0.00000000,6.15000000 +12286,chr22,48475066,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.77000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.01408451,6.37000000 +12287,chr22,48475206,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.22000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.82000000 +12288,chr22,48475246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.79000000 +12289,chr22,48475332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,1.24000000,0.00000000,,0.24444444,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +12290,chr22,48476369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.82000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.10000000 +12291,chr22,48476428,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.44000000 +12292,chr22,48476839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.79000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.03030303,0.00000000,6.18000000 +12293,chr22,48477733,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.06666667,0.00000000,5.00000000 +12294,chr22,48479120,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.66000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.26000000 +12295,chr22,48480395,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.32000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +12296,chr22,48480475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.42000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12297,chr22,48480477,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12298,chr22,48480635,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.92000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +12299,chr22,48481115,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.31000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.26000000 +12300,chr22,48481121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.23000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.25000000,67.00000000,2.96460177,0.02985075,0.00000000,5.68000000 +12301,chr22,48481166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.07000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.71000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.45000000 +12302,chr22,48481411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.78000000,0.00000000,,0.21951220,86.00000000,3.80530973,0.04651163,0.00000000,5.82000000 +12303,chr22,48481804,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,1.36000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.47000000 +12304,chr22,48482251,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,0.73000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +12305,chr22,48483299,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,-1.36000000,0.00000000,,0.33333333,87.00000000,3.84955752,0.03448276,0.00000000,8.08000000 +12306,chr22,48483701,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,6.67000000 +12307,chr22,48483827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.37500000,75.00000000,3.31858407,0.04000000,0.00000000,7.07000000 +12308,chr22,48484359,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.27000000,0.00000000,,0.15686275,52.00000000,2.30088496,0.01923077,0.00000000,5.46000000 +12309,chr22,48484475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,30.00000000,0.00000000,-0.44000000,0.00000000,,0.32142857,34.00000000,1.50442478,0.17647059,0.00000000,3.85000000 +12310,chr22,48485761,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.45000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +12311,chr22,48485891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,0.54000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.94000000 +12312,chr22,48485960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,-0.09000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.58000000 +12313,chr22,48486489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,-0.44000000,0.00000000,,0.14666667,80.00000000,3.53982301,0.05000000,0.00000000,4.88000000 +12314,chr22,48486793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.07000000,0.00000000,,0.16981132,54.00000000,2.38938053,0.01851852,0.00000000,5.91000000 +12315,chr22,48487242,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.73000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,6.65000000 +12316,chr22,48487501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,1.13000000,0.00000000,,0.22352941,88.00000000,3.89380531,0.01136364,0.00000000,5.84000000 +12317,chr22,48487664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.59000000,0.00000000,,0.13888889,75.00000000,3.31858407,0.04000000,0.00000000,5.40000000 +12318,chr22,48487821,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.37000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,4.56000000 +12319,chr22,48488041,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.20000000,0.00000000,,0.22641509,59.00000000,2.61061947,0.10169492,0.00000000,5.98000000 +12320,chr22,48488043,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,1.40000000,0.00000000,,0.23076923,59.00000000,2.61061947,0.11864407,0.00000000,2.80000000 +12321,chr22,48488093,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.81000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.20689655,63.00000000,2.78761062,0.07936508,0.00000000,5.55000000 +12322,chr22,48488785,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.04000000,0.00000000,,0.41935484,62.00000000,2.74336283,0.00000000,0.00000000,8.91000000 +12323,chr22,48489240,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,51.00000000,0.00000000,0.24000000,0.00000000,,0.46774194,65.00000000,2.87610619,0.04615385,0.00000000,4.45000000 +12324,chr22,48489907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.02000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.64000000 +12325,chr22,48489977,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.73000000,0.00000000,,0.15189873,84.00000000,3.71681416,0.03571429,0.00000000,5.10000000 +12326,chr22,48490604,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.84000000,0.00000000,,0.24137931,62.00000000,2.74336283,0.04838710,0.00000000,6.21000000 +12327,chr22,48492539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.04000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.30000000 +12328,chr22,48493887,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.98000000,0.00000000,,0.17543860,59.00000000,2.61061947,0.03389831,0.00000000,5.89000000 +12329,chr22,48498801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.58000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +12330,chr22,48498802,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.58000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +12331,chr22,48499962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.22222222,54.00000000,2.38938053,0.00000000,0.00000000,5.85000000 +12332,chr22,48501121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,64.00000000,0.00000000,-1.76000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.08000000 +12333,chr22,48501167,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-1.23000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.39000000 +12334,chr22,48501892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.02739726,0.00000000,5.57000000 +12335,chr22,48502039,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.34000000,0.00000000,,0.27835052,98.00000000,4.33628319,0.01020408,0.00000000,6.87000000 +12336,chr22,48502711,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.28000000 +12337,chr22,48503032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.80000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +12338,chr22,48509199,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.48000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.74000000 +12339,chr22,48510414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.28000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.87000000 +12340,chr22,48510646,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,5.58000000 +12341,chr22,48511175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +12342,chr22,48511943,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,4.74000000 +12343,chr22,48512607,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.32000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,5.72000000 +12344,chr22,48512660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.92000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,6.48000000 +12345,chr22,48513157,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.24000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +12346,chr22,48513190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,-0.72000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.20000000 +12347,chr22,48513270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.03000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12348,chr22,48515665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.60000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +12349,chr22,48515703,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.03529412,0.00000000,5.29000000 +12350,chr22,48515790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.65000000,0.00000000,,0.27835052,98.00000000,4.33628319,0.01020408,0.00000000,6.56000000 +12351,chr22,48516016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,5.73000000 +12352,chr22,48517574,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.65000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.69000000 +12353,chr22,48517804,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.18556701,98.00000000,4.33628319,0.01020408,0.00000000,6.47000000 +12354,chr22,48518690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.31818182,68.00000000,3.00884956,0.02941176,0.00000000,7.62000000 +12355,chr22,48522012,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.60000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +12356,chr22,48523220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.39000000 +12357,chr22,48523914,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-1.25000000,0.00000000,,0.47272727,57.00000000,2.52212389,0.01754386,0.00000000,8.34000000 +12358,chr22,48523996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.60000000,0.00000000,,0.26506024,86.00000000,3.80530973,0.03488372,0.00000000,5.79000000 +12359,chr22,48524187,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.77000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.27000000 +12360,chr22,48524912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.69000000 +12361,chr22,48525853,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.02816901,0.00000000,5.54000000 +12362,chr22,48526013,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.69000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.01639344,0.00000000,6.11000000 +12363,chr22,48527311,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,62.00000000,0.00000000,-1.05000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.01333333,0.00000000,5.37000000 +12364,chr22,48527652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.96000000,0.00000000,,0.17283951,85.00000000,3.76106195,0.04705882,0.00000000,5.97000000 +12365,chr22,48527659,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.29000000,0.00000000,,0.23376623,82.00000000,3.62831858,0.06097561,0.00000000,6.42000000 +12366,chr22,48527963,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.97000000 +12367,chr22,48527987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.25806452,93.00000000,4.11504425,0.00000000,0.00000000,6.72000000 +12368,chr22,48528821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,0.79000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,4.23000000 +12369,chr22,48530817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.25000000 +12370,chr22,48531317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.46000000 +12371,chr22,48531323,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.20833333,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +12372,chr22,48531442,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,4.96000000 +12373,chr22,48532555,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.03000000 +12374,chr22,48533312,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.24000000,0.00000000,,0.48863636,89.00000000,3.93805310,0.01123596,0.00000000,8.59000000 +12375,chr22,48533359,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-0.78000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.02702703,0.00000000,8.20000000 +12376,chr22,48533414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,93.00000000,0.00000000,-0.77000000,0.00000000,,0.27272727,69.00000000,3.05309735,0.04347826,0.00000000,5.34000000 +12377,chr22,48533457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.39000000 +12378,chr22,48534279,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,2.09000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,5.87000000 +12379,chr22,48534593,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.48000000,0.00000000,,0.10869565,92.00000000,4.07079646,0.00000000,0.00000000,4.84000000 +12380,chr22,48539265,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.32000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,4.82000000 +12381,chr22,48541105,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.85000000 +12382,chr22,48545987,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.45000000 +12383,chr22,48550369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.52000000 +12384,chr22,48556649,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,97.00000000,0.00000000,1.54000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,5.26000000 +12385,chr22,48564597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.01162791,0.00000000,8.31000000 +12386,chr22,48564752,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.88000000,0.00000000,,0.51250000,82.00000000,3.62831858,0.02439024,0.00000000,8.32000000 +12387,chr22,48564934,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,63.00000000,0.00000000,-0.84000000,0.00000000,,0.49333333,75.00000000,3.31858407,0.00000000,0.00000000,8.00000000 +12388,chr22,48565567,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-0.77000000,0.00000000,,0.41772152,82.00000000,3.62831858,0.03658537,0.00000000,7.74000000 +12389,chr22,48566067,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,44.00000000,0.00000000,0.03000000,0.00000000,,0.50793651,65.00000000,2.87610619,0.00000000,0.00000000,3.87000000 +12390,chr22,48566757,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,38.00000000,0.00000000,1.76000000,0.00000000,,0.41379310,58.00000000,2.56637168,0.00000000,0.00000000,4.02000000 +12391,chr22,48566905,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.43076923,66.00000000,2.92035398,0.00000000,0.00000000,8.32000000 +12392,chr22,48567620,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.55384615,65.00000000,2.87610619,0.00000000,0.00000000,8.04000000 +12393,chr22,48569735,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,37.00000000,0.00000000,0.03000000,0.00000000,,0.46753247,80.00000000,3.53982301,0.03750000,0.00000000,3.78000000 +12394,chr22,48569914,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.07500000,0.00000000,43.00000000,0.00000000,-0.94000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.05555556,0.00000000,3.92000000 +12395,chr22,48570531,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.06000000 +12396,chr22,48571377,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.18181818,0.00000000,29.00000000,0.00000000,-0.50000000,0.00000000,,0.46296296,60.00000000,2.65486726,0.10000000,0.00000000,3.71000000 +12397,chr22,48571849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.78000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,7.20000000 +12398,chr22,48572258,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-1.08000000,0.00000000,,0.50684932,73.00000000,3.23008850,0.00000000,0.00000000,8.82000000 +12399,chr22,48572886,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.37777778,92.00000000,4.07079646,0.02173913,0.00000000,7.87000000 +12400,chr22,48572978,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.66000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.37000000 +12401,chr22,48579884,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.35000000 +12402,chr22,48593561,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.31000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +12403,chr22,48607282,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.40000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.45000000,0.00000000,,0.50819672,65.00000000,2.87610619,0.04615385,0.00000000,4.29000000 +12404,chr22,48607517,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.11000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.39000000,0.00000000,,0.43396226,58.00000000,2.56637168,0.08620690,0.00000000,7.43000000 +12405,chr22,48608124,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,7.67000000 +12406,chr22,48608692,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-1.06000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.02777778,0.00000000,6.17000000 +12407,chr22,48608889,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.66000000,0.00000000,,0.43076923,65.00000000,2.87610619,0.00000000,0.00000000,8.40000000 +12408,chr22,48610645,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,-2.23000000,0.00000000,,0.41176471,51.00000000,2.25663717,0.00000000,0.00000000,4.54000000 +12409,chr22,48610711,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.39743590,79.00000000,3.49557522,0.00000000,0.00000000,8.03000000 +12410,chr22,48611172,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.37878788,66.00000000,2.92035398,0.00000000,0.00000000,8.91000000 +12411,chr22,48623060,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.83000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,5.83000000 +12412,chr22,48639184,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-1.91000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.57000000 +12413,chr22,48651603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,5.97000000 +12414,chr22,48652673,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,79.00000000,0.00000000,-1.78000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.00000000,0.00000000,6.23000000 +12415,chr22,48653086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.20000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.01282051,0.00000000,5.77000000 +12416,chr22,48653192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.75000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +12417,chr22,48653535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.22222222,67.00000000,2.96460177,0.04477612,0.00000000,6.67000000 +12418,chr22,48653581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.13000000,0.00000000,,0.19444444,76.00000000,3.36283186,0.03947368,0.00000000,6.66000000 +12419,chr22,48653755,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-1.40000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.01538462,0.00000000,6.15000000 +12420,chr22,48654008,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,90.00000000,3.98230088,0.02222222,0.00000000,5.82000000 +12421,chr22,48654220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.67000000 +12422,chr22,48654475,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.07000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,6.00000000 +12423,chr22,48654560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,1.47000000,0.00000000,,0.12500000,68.00000000,3.00884956,0.05882353,0.00000000,5.17000000 +12424,chr22,48654613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-1.91000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,5.78000000 +12425,chr22,48654623,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-1.59000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,5.87000000 +12426,chr22,48654636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-2.04000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.00000000,0.00000000,6.48000000 +12427,chr22,48654732,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.28000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.03000000 +12428,chr22,48655115,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.54000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.31000000 +12429,chr22,48655373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.36000000 +12430,chr22,48655438,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.65000000,0.00000000,,0.19178082,78.00000000,3.45132743,0.06410256,0.00000000,4.58000000 +12431,chr22,48655445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.74000000,0.00000000,,0.15492958,76.00000000,3.36283186,0.06578947,0.00000000,4.30000000 +12432,chr22,48655543,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.31000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,7.09000000 +12433,chr22,48655806,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,58.00000000,0.00000000,-0.95000000,0.00000000,,0.15714286,74.00000000,3.27433628,0.05405405,0.00000000,4.40000000 +12434,chr22,48656061,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,-2.02000000,0.00000000,,0.26666667,61.00000000,2.69911504,0.01639344,0.00000000,2.99000000 +12435,chr22,48656093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.27777778,56.00000000,2.47787611,0.03571429,0.00000000,6.63000000 +12436,chr22,48656106,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.31481481,58.00000000,2.56637168,0.05172414,0.00000000,7.78000000 +12437,chr22,48656139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,1.09000000,0.00000000,,0.32812500,64.00000000,2.83185841,0.00000000,0.00000000,7.95000000 +12438,chr22,48656922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,45.00000000,0.00000000,1.00000000,0.00000000,,0.35294118,52.00000000,2.30088496,0.01923077,0.00000000,4.04000000 +12439,chr22,48657414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,0.37000000,0.00000000,,0.28235294,89.00000000,3.93805310,0.02247191,0.00000000,6.28000000 +12440,chr22,48657527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.15000000 +12441,chr22,48657624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.65000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.51000000 +12442,chr22,48657717,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.36000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +12443,chr22,48657743,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.50000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.04166667,0.00000000,5.95000000 +12444,chr22,48658690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.74000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.78000000 +12445,chr22,48659355,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.44000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,4.94000000 +12446,chr22,48659518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-0.20000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.00000000,0.00000000,8.59000000 +12447,chr22,48660226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.64000000 +12448,chr22,48660264,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.19000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.87000000 +12449,chr22,48660364,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.19000000,0.00000000,,0.09876543,81.00000000,3.58407080,0.00000000,0.00000000,5.02000000 +12450,chr22,48660853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,1.82000000,0.00000000,,0.15277778,77.00000000,3.40707965,0.05194805,0.00000000,4.95000000 +12451,chr22,48660924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,-0.74000000,0.00000000,,0.15662651,88.00000000,3.89380531,0.05681818,0.00000000,5.36000000 +12452,chr22,48660949,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.17500000,84.00000000,3.71681416,0.04761905,0.00000000,5.65000000 +12453,chr22,48661013,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.17000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.51000000 +12454,chr22,48661137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.03658537,0.00000000,4.88000000 +12455,chr22,48661292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.41000000 +12456,chr22,48661404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-1.45000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.79000000 +12457,chr22,48661467,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.06000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.39000000 +12458,chr22,48661676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.60000000 +12459,chr22,48661679,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.70000000 +12460,chr22,48662346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.89000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.33000000 +12461,chr22,48662350,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.21000000 +12462,chr22,48662421,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,6.29000000 +12463,chr22,48662466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,0.31000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.08000000 +12464,chr22,48662700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.18000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.77000000 +12465,chr22,48663108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.88000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +12466,chr22,48663270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.06000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,6.23000000 +12467,chr22,48663368,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,1.17000000,0.00000000,,0.11940299,68.00000000,3.00884956,0.01470588,0.00000000,5.57000000 +12468,chr22,48663425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.87000000 +12469,chr22,48663499,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,6.23000000 +12470,chr22,48663744,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,2.01000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.30000000 +12471,chr22,48664112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.13000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +12472,chr22,48664157,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.56000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.44000000 +12473,chr22,48664991,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,5.96000000 +12474,chr22,48665164,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.15000000,0.00000000,,0.13513514,77.00000000,3.40707965,0.03896104,0.00000000,4.98000000 +12475,chr22,48665175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +12476,chr22,48665182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +12477,chr22,48665301,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.36000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +12478,chr22,48666432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,5.39000000 +12479,chr22,48667370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,1.00000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +12480,chr22,48667531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.68000000,0.00000000,,0.30357143,56.00000000,2.47787611,0.00000000,0.00000000,6.47000000 +12481,chr22,48667700,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.13000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.38000000 +12482,chr22,48667752,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,55.57000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.15000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,5.91000000 +12483,chr22,48668714,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,55.39000000,7.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,59.00000000,0.00000000,0.02000000,0.00000000,,0.10526316,69.00000000,3.05309735,0.14492754,0.00000000,4.11000000 +12484,chr22,48668807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.08000000 +12485,chr22,48669038,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,0.00000000,1.36000000,0.00000000,,0.31147541,63.00000000,2.78761062,0.03174603,0.00000000,5.84000000 +12486,chr22,48669090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +12487,chr22,48669212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.89000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +12488,chr22,48669304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.58000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.59000000 +12489,chr22,48669369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.47000000,0.00000000,,0.26966292,89.00000000,3.93805310,0.00000000,0.00000000,6.56000000 +12490,chr22,48669422,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,2.35000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +12491,chr22,48669444,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.29000000 +12492,chr22,48669502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.61000000,0.00000000,,0.22580645,62.00000000,2.74336283,0.00000000,0.00000000,6.90000000 +12493,chr22,48669512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.36000000,0.00000000,,0.22033898,60.00000000,2.65486726,0.01666667,0.00000000,6.93000000 +12494,chr22,48669574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,2.02000000,0.00000000,,0.25000000,57.00000000,2.52212389,0.01754386,0.00000000,2.99000000 +12495,chr22,48669851,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.98000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.00000000,0.00000000,5.44000000 +12496,chr22,48671087,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.03000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.30000000 +12497,chr22,48671241,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.25000000 +12498,chr22,48671713,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.84000000,0.66000000,,0.08450704,73.00000000,3.23008850,0.02739726,0.00000000,3.90000000 +12499,chr22,48671965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.28000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.01098901,0.00000000,5.30000000 +12500,chr22,48672127,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.17000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +12501,chr22,48673108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.64000000,0.00000000,,0.23076923,68.00000000,3.00884956,0.04411765,0.00000000,6.17000000 +12502,chr22,48673123,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.40000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,5.86000000 +12503,chr22,48673516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.01851852,0.00000000,6.33000000 +12504,chr22,48673638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.05000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,6.17000000 +12505,chr22,48690669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,-1.03000000,0.00000000,,0.19753086,85.00000000,3.76106195,0.04705882,0.00000000,5.86000000 +12506,chr22,48691385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,1.77000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,5.87000000 +12507,chr22,48692308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.01176471,0.00000000,6.50000000 +12508,chr22,48692945,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.31000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.93000000 +12509,chr22,48692948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.10000000 +12510,chr22,48694118,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.91000000 +12511,chr22,48694187,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.17000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.42000000 +12512,chr22,48694496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.53000000 +12513,chr22,48695418,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.76000000 +12514,chr22,48696291,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.01369863,0.00000000,6.07000000 +12515,chr22,48696429,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.76000000,0.00000000,,0.30158730,64.00000000,2.83185841,0.01562500,0.00000000,4.92000000 +12516,chr22,48731371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.38000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.00000000,0.00000000,6.76000000 +12517,chr22,48782949,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.51000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,7.92000000 +12518,chr22,48783734,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.41558442,79.00000000,3.49557522,0.01265823,0.00000000,8.37000000 +12519,chr22,48784448,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,50.00000000,0.00000000,0.89000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,4.35000000 +12520,chr22,48785268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.36666667,61.00000000,2.69911504,0.01639344,0.00000000,8.27000000 +12521,chr22,48785275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.32000000,0.00000000,,0.38095238,65.00000000,2.87610619,0.01538462,0.00000000,8.20000000 +12522,chr22,48789249,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,33.00000000,0.00000000,0.19000000,0.00000000,,0.42592593,55.00000000,2.43362832,0.01818182,0.00000000,3.78000000 +12523,chr22,48790941,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.58000000 +12524,chr22,48792098,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.80000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.02631579,0.00000000,8.08000000 +12525,chr22,48792549,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.06000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,6.45000000 +12526,chr22,48792552,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-0.16000000,0.00000000,,0.43023256,86.00000000,3.80530973,0.00000000,0.00000000,4.65000000 +12527,chr22,48792770,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,83.00000000,0.00000000,1.01000000,0.00000000,,0.55555556,84.00000000,3.71681416,0.03571429,0.00000000,8.01000000 +12528,chr22,48793421,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.12000000,0.00000000,,0.48611111,72.00000000,3.18584071,0.00000000,0.00000000,4.07000000 +12529,chr22,48794110,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.85000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,-1.03000000,0.00000000,,0.52000000,54.00000000,2.38938053,0.07407407,0.00000000,3.82000000 +12530,chr22,48794282,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,-0.19000000,0.00000000,,0.38461538,70.00000000,3.09734513,0.07142857,0.00000000,8.50000000 +12531,chr22,48794285,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.36923077,70.00000000,3.09734513,0.05714286,0.00000000,8.50000000 +12532,chr22,48795748,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.37000000,0.00000000,,0.40298507,68.00000000,3.00884956,0.01470588,0.00000000,4.43000000 +12533,chr22,48795942,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,1.75000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,8.45000000 +12534,chr22,48796218,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,112.00000000,0.00000000,0.97000000,0.00000000,,0.37096774,65.00000000,2.87610619,0.04615385,0.00000000,12.15000000 +12535,chr22,48796351,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.48717949,79.00000000,3.49557522,0.01265823,0.00000000,4.20000000 +12536,chr22,48796429,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.81000000,0.00000000,,0.48101266,80.00000000,3.53982301,0.00000000,0.00000000,8.76000000 +12537,chr22,48796603,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.01000000,0.00000000,,0.35135135,74.00000000,3.27433628,0.00000000,0.00000000,8.57000000 +12538,chr22,48796652,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.43055556,76.00000000,3.36283186,0.05263158,0.00000000,8.43000000 +12539,chr22,48796944,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.05000000,0.00000000,,0.32051282,79.00000000,3.49557522,0.01265823,0.00000000,7.91000000 +12540,chr22,48797143,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.03000000,0.00000000,,0.42528736,88.00000000,3.89380531,0.00000000,0.00000000,8.54000000 +12541,chr22,48797239,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.29000000,0.00000000,,0.36363636,67.00000000,2.96460177,0.01492537,0.00000000,8.29000000 +12542,chr22,48797252,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,0.15000000,0.00000000,,0.38709677,64.00000000,2.83185841,0.01562500,0.00000000,4.35000000 +12543,chr22,48797447,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.28000000,0.00000000,,0.48387097,73.00000000,3.23008850,0.15068493,0.00000000,8.16000000 +12544,chr22,48797585,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.12000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.09090909,0.00000000,5.72000000 +12545,chr22,48797607,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.32000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.23000000 +12546,chr22,48799848,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.05000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,2.93000000 +12547,chr22,48800494,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,2.10000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.65000000 +12548,chr22,48800587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,2.13000000,0.00000000,,0.31168831,77.00000000,3.40707965,0.00000000,0.00000000,6.74000000 +12549,chr22,48800813,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,8.33000000 +12550,chr22,48802888,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.67000000,0.00000000,,0.29687500,67.00000000,2.96460177,0.04477612,0.00000000,6.39000000 +12551,chr22,48803238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.89000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +12552,chr22,48803620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,59.00000000,0.00000000,-0.31000000,0.00000000,,0.16923077,71.00000000,3.14159292,0.02816901,0.00000000,4.06000000 +12553,chr22,48803629,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.49000000,0.00000000,,0.32307692,70.00000000,3.09734513,0.04285714,0.00000000,8.20000000 +12554,chr22,48803741,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.79000000 +12555,chr22,48804403,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,102.00000000,0.00000000,0.34000000,0.00000000,,0.34210526,78.00000000,3.45132743,0.02564103,0.00000000,13.31000000 +12556,chr22,48804595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.95000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.83000000 +12557,chr22,48804799,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.00000000,0.00000000,5.92000000 +12558,chr22,48805640,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.26984127,65.00000000,2.87610619,0.01538462,0.00000000,6.31000000 +12559,chr22,48805892,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,100.00000000,0.00000000,-0.87000000,0.00000000,,0.31395349,86.00000000,3.80530973,0.00000000,0.00000000,7.33000000 +12560,chr22,48806632,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.29000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +12561,chr22,48807542,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.07000000,0.00000000,,0.20338983,59.00000000,2.61061947,0.00000000,0.00000000,5.53000000 +12562,chr22,48807863,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.67000000 +12563,chr22,48807867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.71000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.67000000 +12564,chr22,48807918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.07000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.02409639,0.00000000,5.56000000 +12565,chr22,48807949,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,1.94000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +12566,chr22,48808793,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.09000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.85000000 +12567,chr22,48808801,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.97000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.51000000 +12568,chr22,48809054,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +12569,chr22,48809862,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.85000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,5.80000000 +12570,chr22,48811517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,1.55000000,0.00000000,,0.21276596,48.00000000,2.12389381,0.02083333,0.00000000,3.10000000 +12571,chr22,48811521,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.18000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.72000000,0.00000000,,0.20408163,50.00000000,2.21238938,0.02000000,0.00000000,5.06000000 +12572,chr22,48812114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.50000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12573,chr22,48812320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.50000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.77000000 +12574,chr22,48813491,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.10843373,85.00000000,3.76106195,0.02352941,0.00000000,4.66000000 +12575,chr22,48814284,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.53000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,4.98000000 +12576,chr22,48814311,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.96000000,0.00000000,,0.13157895,79.00000000,3.49557522,0.03797468,0.00000000,4.89000000 +12577,chr22,48814313,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.03703704,0.00000000,6.12000000 +12578,chr22,48815246,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +12579,chr22,48819075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.10000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +12580,chr22,48819370,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.24000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,7.04000000 +12581,chr22,48820078,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-0.93000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,4.63000000 +12582,chr22,48821329,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.23636364,56.00000000,2.47787611,0.01785714,0.00000000,5.98000000 +12583,chr22,48821441,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.25000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.01428571,0.00000000,5.90000000 +12584,chr22,48822300,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,5.99000000 +12585,chr22,48822310,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.00000000,5.66000000 +12586,chr22,48822579,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.20000000,0.00000000,,0.25714286,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +12587,chr22,48822812,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.53000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +12588,chr22,48823011,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,1.90000000,0.00000000,,0.29850746,67.00000000,2.96460177,0.00000000,0.00000000,6.37000000 +12589,chr22,48823366,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.64000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.52000000 +12590,chr22,48823778,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,88.00000000,0.00000000,-1.88000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.04040404,0.00000000,4.91000000 +12591,chr22,48823779,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,49.00000000,2.16814159,0.04081633,0.00000000,84.00000000,0.00000000,-1.53000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.04040404,0.00000000,4.93000000 +12592,chr22,48823999,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.70000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +12593,chr22,48824016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.43000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12594,chr22,48824098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.76000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +12595,chr22,48824177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-1.36000000,0.00000000,,0.13043478,71.00000000,3.14159292,0.01408451,0.00000000,5.65000000 +12596,chr22,48824371,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.99000000,0.00000000,,0.24444444,94.00000000,4.15929204,0.04255319,0.00000000,6.34000000 +12597,chr22,48824578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.76000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.58000000 +12598,chr22,48824892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.72000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,7.09000000 +12599,chr22,48825117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,5.67000000 +12600,chr22,48825153,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.07000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.20000000 +12601,chr22,48825189,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,6.26000000 +12602,chr22,48825221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.76000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +12603,chr22,48825606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +12604,chr22,48825670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.72000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +12605,chr22,48825920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.27000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.35000000 +12606,chr22,48826724,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.94000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12607,chr22,48827203,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.10810811,0.00000000,5.19000000 +12608,chr22,48827871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,2.41000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.02898551,0.00000000,5.85000000 +12609,chr22,48828098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.42000000,0.00000000,,0.27692308,67.00000000,2.96460177,0.02985075,0.00000000,6.30000000 +12610,chr22,48828201,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.07000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.57000000 +12611,chr22,48831794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.05000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +12612,chr22,48836030,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.06000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,7.05000000 +12613,chr22,48837571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.22222222,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +12614,chr22,48838450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.74000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.03370787,0.00000000,6.19000000 +12615,chr22,48838548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.07000000,0.00000000,,0.32183908,87.00000000,3.84955752,0.00000000,0.00000000,6.57000000 +12616,chr22,48838877,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.27000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.01639344,0.00000000,5.60000000 +12617,chr22,48840161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.35000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +12618,chr22,48840205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,-1.39000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,5.50000000 +12619,chr22,48840295,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,0.54000000,0.00000000,,0.32835821,74.00000000,3.27433628,0.08108108,0.00000000,7.91000000 +12620,chr22,48842825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.03000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.71000000 +12621,chr22,48844549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.25000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.04938272,0.00000000,6.05000000 +12622,chr22,48845518,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.07000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +12623,chr22,48863143,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.87000000 +12624,chr22,48864371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.28205128,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +12625,chr22,48865250,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.58000000 +12626,chr22,48865467,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-1.55000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.04000000 +12627,chr22,48865764,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.24000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.31000000 +12628,chr22,48866332,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.35135135,76.00000000,3.36283186,0.01315789,0.00000000,8.29000000 +12629,chr22,48866678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,69.00000000,0.00000000,-2.99000000,0.00000000,,0.17910448,77.00000000,3.40707965,0.12987013,0.00000000,5.88000000 +12630,chr22,48866679,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,69.00000000,0.00000000,-2.73000000,0.00000000,,0.19402985,77.00000000,3.40707965,0.11688312,0.00000000,5.86000000 +12631,chr22,48868059,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.13000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,6.42000000 +12632,chr22,48868085,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.30000000 +12633,chr22,48868501,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.14000000,0.00000000,,0.44927536,72.00000000,3.18584071,0.04166667,0.00000000,4.27000000 +12634,chr22,48868734,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,-0.04000000,0.00000000,,0.43243243,75.00000000,3.31858407,0.01333333,0.00000000,3.88000000 +12635,chr22,48868762,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,28.00000000,0.00000000,0.21000000,0.00000000,,0.45454545,71.00000000,3.14159292,0.05633803,0.00000000,3.89000000 +12636,chr22,48868871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.00000000,0.00000000,5.79000000 +12637,chr22,48869387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.03846154,0.00000000,5.80000000 +12638,chr22,48870984,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.56000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.58000000 +12639,chr22,48872265,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.87000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.89000000 +12640,chr22,48872431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.16000000,0.00000000,,0.25000000,62.00000000,2.74336283,0.03225806,0.00000000,6.01000000 +12641,chr22,48872712,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,69.00000000,0.00000000,0.44000000,0.00000000,,0.18644068,75.00000000,3.31858407,0.21333333,0.00000000,5.53000000 +12642,chr22,48873110,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.02898551,0.00000000,6.16000000 +12643,chr22,48874114,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,84.00000000,0.00000000,-0.59000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.14000000 +12644,chr22,48874733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.26984127,68.00000000,3.00884956,0.07352941,0.00000000,6.33000000 +12645,chr22,48876312,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.28000000 +12646,chr22,48877046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.03000000,0.00000000,,0.12500000,91.00000000,4.02654867,0.03296703,0.00000000,5.12000000 +12647,chr22,48877992,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.08000000,0.00000000,,0.26923077,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +12648,chr22,48878137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.01000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,6.32000000 +12649,chr22,48878701,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.37000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +12650,chr22,48879191,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.67000000 +12651,chr22,48880403,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,-1.13000000,0.00000000,,0.60000000,88.00000000,3.89380531,0.03409091,0.00000000,4.81000000 +12652,chr22,48881341,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +12653,chr22,48882751,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.27000000 +12654,chr22,48882753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.67000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.25000000 +12655,chr22,48883156,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.35000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.03000000 +12656,chr22,48884400,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.45000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.54000000 +12657,chr22,48888588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,98.00000000,0.00000000,0.33000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +12658,chr22,48894821,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,-1.81000000,0.00000000,,0.37179487,79.00000000,3.49557522,0.01265823,0.00000000,8.56000000 +12659,chr22,48897397,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.19000000,0.00000000,,0.44047619,84.00000000,3.71681416,0.00000000,0.00000000,9.09000000 +12660,chr22,48899909,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.80000000,0.00000000,,0.27868852,63.00000000,2.78761062,0.03174603,0.00000000,6.04000000 +12661,chr22,48900004,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,0.42000000,0.00000000,,0.38461538,67.00000000,2.96460177,0.01492537,0.00000000,8.19000000 +12662,chr22,48900035,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.41891892,76.00000000,3.36283186,0.02631579,0.00000000,8.07000000 +12663,chr22,48901968,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.24000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.04000000,0.00000000,,0.50684932,74.00000000,3.27433628,0.00000000,0.00000000,7.87000000 +12664,chr22,48903189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,0.00000000,-0.38000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,6.43000000 +12665,chr22,48904017,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,0.41000000,0.00000000,,0.53521127,71.00000000,3.14159292,0.00000000,0.00000000,4.38000000 +12666,chr22,48905283,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,-0.74000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,4.66000000 +12667,chr22,48905551,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.92000000 +12668,chr22,48906313,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,0.50000000,0.00000000,,0.47560976,83.00000000,3.67256637,0.01204819,0.00000000,4.24000000 +12669,chr22,48906416,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.45000000,0.00000000,,0.40243902,85.00000000,3.76106195,0.02352941,0.00000000,8.00000000 +12670,chr22,48906945,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,56.00000000,0.00000000,-0.75000000,0.00000000,,0.53846154,67.00000000,2.96460177,0.02985075,0.00000000,4.80000000 +12671,chr22,48908401,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.84000000,0.00000000,,0.38709677,66.00000000,2.92035398,0.04545455,0.00000000,7.54000000 +12672,chr22,48913823,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,2.04000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +12673,chr22,48927552,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,0.57000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,5.96000000 +12674,chr22,48927715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.00000000,0.00000000,6.46000000 +12675,chr22,48929505,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.31000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +12676,chr22,48929644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,-0.95000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +12677,chr22,48929786,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.54000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,6.68000000 +12678,chr22,48929912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.99000000 +12679,chr22,48929956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.26595745,96.00000000,4.24778761,0.02083333,0.00000000,5.76000000 +12680,chr22,48931621,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-2.01000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,7.04000000 +12681,chr22,48931813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.46000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.04938272,0.00000000,6.19000000 +12682,chr22,48932118,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,7.00000000 +12683,chr22,48934911,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.07000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,5.79000000 +12684,chr22,48934964,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.46000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +12685,chr22,48935106,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.29000000 +12686,chr22,48935351,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.98000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,5.81000000 +12687,chr22,48939897,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.50000000,0.00000000,,0.27777778,95.00000000,4.20353982,0.05263158,0.00000000,6.59000000 +12688,chr22,48942051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,1.36000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.49000000 +12689,chr22,48944659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.53000000 +12690,chr22,48945571,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.97000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.03703704,0.00000000,5.73000000 +12691,chr22,48945646,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.80000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.04477612,0.00000000,6.62000000 +12692,chr22,48946220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.53000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,6.42000000 +12693,chr22,48946965,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.60000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.00000000,0.00000000,9.09000000 +12694,chr22,48947969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +12695,chr22,48948675,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,46.00000000,0.00000000,-0.31000000,0.00000000,,0.36764706,74.00000000,3.27433628,0.06756757,0.00000000,4.66000000 +12696,chr22,48949702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-1.61000000,0.00000000,,0.15000000,60.00000000,2.65486726,0.00000000,0.00000000,6.11000000 +12697,chr22,48949704,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-1.38000000,0.00000000,,0.14516129,62.00000000,2.74336283,0.00000000,0.00000000,6.18000000 +12698,chr22,48949853,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.23076923,74.00000000,3.27433628,0.12162162,0.00000000,5.76000000 +12699,chr22,48950864,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.22000000,0.00000000,,0.21126761,75.00000000,3.31858407,0.05333333,0.00000000,6.60000000 +12700,chr22,48952248,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.16000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.00000000,0.00000000,5.95000000 +12701,chr22,48952319,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,1.72000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.40000000 +12702,chr22,48952856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +12703,chr22,48953202,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.14000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +12704,chr22,48953468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.87000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.41000000 +12705,chr22,48954378,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.86000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.22000000 +12706,chr22,48954626,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,2.43000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,5.92000000 +12707,chr22,48958619,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,0.98000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,2.81000000 +12708,chr22,48959761,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.78000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.90000000,0.00000000,,0.17460317,65.00000000,2.87610619,0.03076923,0.00000000,5.72000000 +12709,chr22,48963216,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.75000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +12710,chr22,48964133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.21250000,86.00000000,3.80530973,0.06976744,0.00000000,5.89000000 +12711,chr22,48965815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.95000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.76000000 +12712,chr22,48966510,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,3.16000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.07000000 +12713,chr22,48967146,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,-0.89000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +12714,chr22,48967208,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.12000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.02000000 +12715,chr22,48967297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.05000000,0.00000000,,0.20779221,81.00000000,3.58407080,0.04938272,0.00000000,6.00000000 +12716,chr22,48967550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,95.00000000,0.00000000,0.85000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,5.89000000 +12717,chr22,48967647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.00000000,0.00000000,6.56000000 +12718,chr22,48967971,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.49000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.93000000 +12719,chr22,48968037,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.33000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +12720,chr22,48968113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.15555556,95.00000000,4.20353982,0.05263158,0.00000000,5.40000000 +12721,chr22,48968118,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.95000000,0.00000000,,0.16666667,95.00000000,4.20353982,0.05263158,0.00000000,5.43000000 +12722,chr22,48968152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.18681319,95.00000000,4.20353982,0.03157895,0.00000000,6.25000000 +12723,chr22,48968595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-2.36000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.00000000,0.00000000,6.80000000 +12724,chr22,48968750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.19000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,6.93000000 +12725,chr22,48969668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-2.12000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +12726,chr22,48973380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.28000000,0.00000000,,0.09722222,74.00000000,3.27433628,0.02702703,0.00000000,4.18000000 +12727,chr22,48973386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.10958904,75.00000000,3.31858407,0.02666667,0.00000000,5.23000000 +12728,chr22,48973455,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.78000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.26000000 +12729,chr22,48973879,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.07000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.49000000 +12730,chr22,48974181,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.31000000 +12731,chr22,48974190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.42000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,6.48000000 +12732,chr22,48974231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.32000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.78000000 +12733,chr22,48983254,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.28000000,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +12734,chr22,48993016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.97000000,0.00000000,,0.26315789,57.00000000,2.52212389,0.00000000,0.00000000,6.66000000 +12735,chr22,48993708,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,2.22000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.50000000 +12736,chr22,48994495,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.02000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +12737,chr22,48998499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,1.53000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,6.30000000 +12738,chr22,49000336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,2.12000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +12739,chr22,49000500,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,0.46000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.09000000 +12740,chr22,49000700,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.84000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.43000000 +12741,chr22,49003603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.01315789,0.00000000,6.50000000 +12742,chr22,49004572,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.51000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.98000000 +12743,chr22,49005304,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.57000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.32000000 +12744,chr22,49007219,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.03000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.39000000 +12745,chr22,49014040,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +12746,chr22,49014144,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.48000000,0.00000000,,0.23157895,97.00000000,4.29203540,0.02061856,0.00000000,6.34000000 +12747,chr22,49024669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.47000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,2.84000000 +12748,chr22,49027730,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.70000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.41000000 +12749,chr22,49039049,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.40000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.02941176,0.00000000,6.31000000 +12750,chr22,49041282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-1.16000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.19000000 +12751,chr22,49076222,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.32000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,6.63000000 +12752,chr22,49076635,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.35000000 +12753,chr22,49077408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.57000000 +12754,chr22,49077654,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.01333333,0.00000000,6.35000000 +12755,chr22,49077811,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.43000000 +12756,chr22,49077935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.26000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.29000000 +12757,chr22,49078055,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.13000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.32000000 +12758,chr22,49078059,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.82000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,2.86000000 +12759,chr22,49078419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,0.00000000,0.36000000,0.00000000,,0.31343284,70.00000000,3.09734513,0.01428571,0.00000000,8.04000000 +12760,chr22,49079282,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +12761,chr22,49079412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.12000000 +12762,chr22,49079580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.48000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,6.04000000 +12763,chr22,49085778,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,87.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.87000000 +12764,chr22,49086604,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,5.75000000 +12765,chr22,49095399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.05000000 +12766,chr22,49096166,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.15384615,82.00000000,3.62831858,0.04878049,0.00000000,5.00000000 +12767,chr22,49096517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.08163265,0.00000000,94.00000000,0.00000000,0.12000000,0.00000000,,0.24324324,79.00000000,3.49557522,0.05063291,0.00000000,5.22000000 +12768,chr22,49097060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.88000000,0.00000000,,0.15584416,77.00000000,3.40707965,0.00000000,0.00000000,5.55000000 +12769,chr22,49098455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.34000000,0.00000000,,0.15714286,71.00000000,3.14159292,0.00000000,0.00000000,6.20000000 +12770,chr22,49099037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.53000000,0.00000000,,0.21538462,65.00000000,2.87610619,0.00000000,0.00000000,6.82000000 +12771,chr22,49099765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +12772,chr22,49101950,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-1.23000000,0.00000000,,0.23728814,59.00000000,2.61061947,0.00000000,0.00000000,6.35000000 +12773,chr22,49102145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.01000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.94000000 +12774,chr22,49103500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +12775,chr22,49107353,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +12776,chr22,49109109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.59000000,2.80000000,,0.11594203,70.00000000,3.09734513,0.01428571,0.00000000,4.12000000 +12777,chr22,49112979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.91000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +12778,chr22,49113278,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,4.93000000 +12779,chr22,49113732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.39000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.04054054,0.00000000,6.61000000 +12780,chr22,49113802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.89000000 +12781,chr22,49114160,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,5.98000000 +12782,chr22,49114655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.16000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.37000000 +12783,chr22,49116073,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.37000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.00000000,0.00000000,6.67000000 +12784,chr22,49117076,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.12121212,73.00000000,3.23008850,0.09589041,0.00000000,4.66000000 +12785,chr22,49117794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.05000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.64000000 +12786,chr22,49117939,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.57000000 +12787,chr22,49119728,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.41000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,6.03000000 +12788,chr22,49122248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.20000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.17000000 +12789,chr22,49122419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,6.15000000 +12790,chr22,49122420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,1.66000000,0.00000000,,0.19696970,70.00000000,3.09734513,0.02857143,0.00000000,5.72000000 +12791,chr22,49123538,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +12792,chr22,49129548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.41000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,-0.27000000,0.00000000,,0.18867925,64.00000000,2.83185841,0.17187500,0.00000000,5.11000000 +12793,chr22,49131043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.09000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,7.05000000 +12794,chr22,49131929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,61.00000000,0.00000000,-0.31000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.00000000,0.00000000,5.81000000 +12795,chr22,49132633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.15887850,113.00000000,5.00000000,0.02654867,0.00000000,6.16000000 +12796,chr22,49133688,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.32000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.52000000 +12797,chr22,49134544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.04000000,0.00000000,,0.23376623,81.00000000,3.58407080,0.04938272,0.00000000,6.52000000 +12798,chr22,49134597,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.12000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.02409639,0.00000000,6.70000000 +12799,chr22,49134639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.10000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +12800,chr22,49134701,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.48000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,5.72000000 +12801,chr22,49134829,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.81000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +12802,chr22,49139140,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.15000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.04545455,0.00000000,6.31000000 +12803,chr22,49139264,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,-0.09000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.57000000 +12804,chr22,49139480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.60000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +12805,chr22,49139484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,1.36000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.12000000 +12806,chr22,49139737,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,63.00000000,0.00000000,-0.11000000,0.00000000,,0.13636364,66.00000000,2.92035398,0.00000000,0.00000000,5.15000000 +12807,chr22,49140049,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.30000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +12808,chr22,49140985,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.59000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.69000000 +12809,chr22,49141319,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.28000000 +12810,chr22,49142172,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,86.00000000,0.00000000,0.17000000,0.00000000,,0.27659574,99.00000000,4.38053097,0.05050505,0.00000000,5.72000000 +12811,chr22,49145797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.37000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.77000000 +12812,chr22,49146410,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.51000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +12813,chr22,49149230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.19000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.73000000,0.50000000,,0.20454545,45.00000000,1.99115044,0.02222222,0.00000000,4.13000000 +12814,chr22,49150352,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.73000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.08000000 +12815,chr22,49150527,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-1.42000000,0.00000000,,0.11111111,55.00000000,2.43362832,0.01818182,0.00000000,3.00000000 +12816,chr22,49151696,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,84.00000000,0.00000000,2.31000000,0.00000000,,0.21951220,87.00000000,3.84955752,0.05747126,0.00000000,5.81000000 +12817,chr22,49153632,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.01851852,0.00000000,5.75000000 +12818,chr22,49157557,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.11000000,0.00000000,,0.28735632,90.00000000,3.98230088,0.03333333,0.00000000,5.86000000 +12819,chr22,49157679,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.21000000,0.00000000,,0.24175824,96.00000000,4.24778761,0.02083333,0.00000000,6.22000000 +12820,chr22,49158327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.59000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.33000000 +12821,chr22,49159003,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,-1.43000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.23000000 +12822,chr22,49164361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.59000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-1.50000000,0.00000000,,0.27419355,66.00000000,2.92035398,0.04545455,0.00000000,5.59000000 +12823,chr22,49164398,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.63000000,2.00000000,ref,1.00000000,0.05555556,18.00000000,0.79646018,0.00000000,0.00000000,30.00000000,0.00000000,-0.07000000,0.00000000,,0.31481481,58.00000000,2.56637168,0.06896552,0.00000000,3.14000000 +12824,chr22,49165619,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.63000000,0.00000000,,0.26744186,88.00000000,3.89380531,0.02272727,0.00000000,6.28000000 +12825,chr22,49165945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.03000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.89000000 +12826,chr22,49171848,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.01408451,0.00000000,6.17000000 +12827,chr22,49172782,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.00000000,0.00000000,5.91000000 +12828,chr22,49173087,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.21052632,64.00000000,2.83185841,0.09375000,0.00000000,5.63000000 +12829,chr22,49174973,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +12830,chr22,49175279,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.44000000 +12831,chr22,49175817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.88000000 +12832,chr22,49175823,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,0.27000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,5.95000000 +12833,chr22,49175858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.67000000 +12834,chr22,49176010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.77000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.00000000,0.00000000,6.43000000 +12835,chr22,49176071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.50000000 +12836,chr22,49177948,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.58000000,0.00000000,,0.17592593,108.00000000,4.77876106,0.00000000,0.00000000,6.10000000 +12837,chr22,49178802,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.77000000 +12838,chr22,49179098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.25742574,102.00000000,4.51327434,0.00980392,0.00000000,6.52000000 +12839,chr22,49179141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,1.22000000,0.00000000,,0.24000000,103.00000000,4.55752212,0.00970874,0.00000000,5.93000000 +12840,chr22,49179515,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.43000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.21000000 +12841,chr22,49180016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,63.00000000,0.00000000,-1.13000000,0.00000000,,0.15189873,84.00000000,3.71681416,0.04761905,0.00000000,4.88000000 +12842,chr22,49182727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.60000000 +12843,chr22,49183683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,1.00000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.08536585,0.00000000,5.65000000 +12844,chr22,49184722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.24000000,0.00000000,,0.28571429,79.00000000,3.49557522,0.02531646,0.00000000,6.64000000 +12845,chr22,49185711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18072289,86.00000000,3.80530973,0.03488372,0.00000000,5.98000000 +12846,chr22,49186827,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.35000000 +12847,chr22,49188482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,1.25000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.01298701,0.00000000,5.80000000 +12848,chr22,49189118,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,1.26000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.62000000 +12849,chr22,49191512,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.85000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +12850,chr22,49195189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,2.14000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +12851,chr22,49247332,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.02777778,0.00000000,6.36000000 +12852,chr22,49251638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.09000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.02531646,0.00000000,6.01000000 +12853,chr22,49258223,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,1.51000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.00000000,0.00000000,5.89000000 +12854,chr22,49262566,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.76000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,5.77000000 +12855,chr22,49262630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.00000000,0.00000000,5.90000000 +12856,chr22,49263640,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.08000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.01351351,0.00000000,4.48000000 +12857,chr22,49267445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,5.81000000 +12858,chr22,49267522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,0.38000000,0.00000000,,0.24390244,86.00000000,3.80530973,0.04651163,0.00000000,5.56000000 +12859,chr22,49273999,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +12860,chr22,49275026,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,49.33000000,46.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.20754717,68.00000000,3.00884956,0.20588235,0.00000000,5.85000000 +12861,chr22,49280799,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.12000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.02816901,0.00000000,6.38000000 +12862,chr22,49284337,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.47000000,0.00000000,,0.51724138,87.00000000,3.84955752,0.00000000,0.00000000,9.20000000 +12863,chr22,49285329,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.13000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.67000000 +12864,chr22,49286149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.96000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.04000000 +12865,chr22,49286565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.30000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,5.89000000 +12866,chr22,49286620,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.25000000,99.00000000,4.38053097,0.03030303,0.00000000,5.79000000 +12867,chr22,49287381,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,5.85000000 +12868,chr22,49287426,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,91.00000000,0.00000000,-1.85000000,0.00000000,,0.35937500,66.00000000,2.92035398,0.03030303,0.00000000,8.26000000 +12869,chr22,49287979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.61000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.76000000 +12870,chr22,49288881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.82000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +12871,chr22,49289217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.67000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,5.87000000 +12872,chr22,49290512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.60000000,0.00000000,,0.12500000,92.00000000,4.07079646,0.04347826,0.00000000,5.11000000 +12873,chr22,49290733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.36000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.57000000 +12874,chr22,49290947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.16000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.44000000 +12875,chr22,49291116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.22000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +12876,chr22,49291210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,74.00000000,0.00000000,0.86000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.47000000 +12877,chr22,49291226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,1.00000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.02469136,0.00000000,5.70000000 +12878,chr22,49291284,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.12345679,85.00000000,3.76106195,0.03529412,0.00000000,3.72000000 +12879,chr22,49291316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,5.91000000 +12880,chr22,49291381,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.92000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.37000000 +12881,chr22,49291471,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,1.37000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.28000000 +12882,chr22,49291487,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.90000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.43000000 +12883,chr22,49291666,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.70000000 +12884,chr22,49291667,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.70000000 +12885,chr22,49291676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.48000000,0.00000000,,0.18032787,65.00000000,2.87610619,0.03076923,0.00000000,5.93000000 +12886,chr22,49291745,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.15094340,67.00000000,2.96460177,0.20895522,0.00000000,5.28000000 +12887,chr22,49291775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,59.00000000,0.00000000,-0.63000000,0.00000000,,0.20289855,76.00000000,3.36283186,0.09210526,0.00000000,4.04000000 +12888,chr22,49291797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.52000000 +12889,chr22,49291916,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.12987013,77.00000000,3.40707965,0.00000000,0.00000000,5.59000000 +12890,chr22,49292122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.28000000 +12891,chr22,49292225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.11000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,6.29000000 +12892,chr22,49292349,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,-1.25000000,0.00000000,,0.12790698,87.00000000,3.84955752,0.01149425,0.00000000,5.39000000 +12893,chr22,49292514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.82000000 +12894,chr22,49294819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.99000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.00000000,0.00000000,6.98000000 +12895,chr22,49295348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.06000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.62000000 +12896,chr22,49297630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.08000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.09000000 +12897,chr22,49299342,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +12898,chr22,49299846,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +12899,chr22,49300084,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-0.40000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.02439024,0.00000000,3.89000000 +12900,chr22,49300142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-1.01000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.30000000 +12901,chr22,49300155,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.04000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.01111111,0.00000000,6.28000000 +12902,chr22,49300750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +12903,chr22,49301040,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-0.67000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,5.80000000 +12904,chr22,49301132,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.78000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.66000000 +12905,chr22,49301613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.33000000 +12906,chr22,49301616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.84000000,0.00000000,,0.25757576,69.00000000,3.05309735,0.04347826,0.00000000,6.33000000 +12907,chr22,49301746,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.47000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +12908,chr22,49301923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.01086957,0.00000000,6.84000000 +12909,chr22,49302485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,1.59000000,0.00000000,,0.27160494,89.00000000,3.93805310,0.07865169,0.00000000,5.81000000 +12910,chr22,49302653,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,1.37000000,0.00000000,,0.15384615,57.00000000,2.52212389,0.08771930,0.00000000,4.96000000 +12911,chr22,49304625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.03571429,0.00000000,5.50000000 +12912,chr22,49306980,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.01000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,6.17000000 +12913,chr22,49308051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-1.44000000,0.00000000,,0.20754717,55.00000000,2.43362832,0.03636364,0.00000000,6.25000000 +12914,chr22,49308982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.96000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,7.17000000 +12915,chr22,49309085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.41000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,5.89000000 +12916,chr22,49310357,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.88000000,0.00000000,,0.21621622,112.00000000,4.95575221,0.00892857,0.00000000,6.33000000 +12917,chr22,49310363,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.17000000,0.00000000,,0.22429907,108.00000000,4.77876106,0.00925926,0.00000000,6.65000000 +12918,chr22,49316267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,74.00000000,0.00000000,-0.16000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.02500000,0.00000000,5.85000000 +12919,chr22,49318592,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-1.97000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.23000000 +12920,chr22,49319213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,77.00000000,0.00000000,-0.54000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,5.90000000 +12921,chr22,49320852,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.30000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +12922,chr22,49322140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.80000000,0.00000000,,0.28712871,102.00000000,4.51327434,0.00980392,0.00000000,6.66000000 +12923,chr22,49322439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.51000000,0.00000000,,0.25423729,59.00000000,2.61061947,0.00000000,0.00000000,6.74000000 +12924,chr22,49322837,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.53000000,0.00000000,,0.22972973,79.00000000,3.49557522,0.06329114,0.00000000,6.33000000 +12925,chr22,49322871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.22000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,6.82000000 +12926,chr22,49322931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.77000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +12927,chr22,49323339,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.02702703,0.00000000,6.37000000 +12928,chr22,49325001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.29000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.27000000 +12929,chr22,49325361,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.79000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.11000000 +12930,chr22,49325480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,-0.44000000,0.00000000,,0.10958904,75.00000000,3.31858407,0.02666667,0.00000000,5.25000000 +12931,chr22,49325493,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.02816901,0.00000000,5.55000000 +12932,chr22,49326670,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.48000000,0.00000000,,0.23076923,69.00000000,3.05309735,0.02898551,0.00000000,6.16000000 +12933,chr22,49327000,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,38.00000000,0.00000000,0.07000000,0.00000000,,0.32894737,77.00000000,3.40707965,0.01298701,0.00000000,3.56000000 +12934,chr22,49327791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +12935,chr22,49330102,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-1.26000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.65000000 +12936,chr22,49330881,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +12937,chr22,49331061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.13483146,89.00000000,3.93805310,0.00000000,0.00000000,5.81000000 +12938,chr22,49331791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.08000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.44000000 +12939,chr22,49332129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-1.06000000,0.00000000,,0.09302326,87.00000000,3.84955752,0.01149425,0.00000000,5.32000000 +12940,chr22,49332992,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,0.09000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,5.77000000 +12941,chr22,49333465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,0.36000000,0.00000000,,0.29870130,78.00000000,3.45132743,0.01282051,0.00000000,6.28000000 +12942,chr22,49334622,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.29000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.01000000 +12943,chr22,49335068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.66000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.98000000 +12944,chr22,49335372,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.27586207,89.00000000,3.93805310,0.02247191,0.00000000,6.36000000 +12945,chr22,49336097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.76000000 +12946,chr22,49336148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.81000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.00000000,0.00000000,6.58000000 +12947,chr22,49337292,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +12948,chr22,49337402,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.94000000 +12949,chr22,49338089,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +12950,chr22,49338248,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,1.69000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.65000000 +12951,chr22,49341668,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,94.00000000,0.00000000,0.20000000,0.00000000,,0.27956989,93.00000000,4.11504425,0.00000000,0.00000000,6.29000000 +12952,chr22,49343435,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-1.41000000,0.00000000,,0.18571429,78.00000000,3.45132743,0.07692308,0.00000000,6.23000000 +12953,chr22,49344191,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,5.96000000 +12954,chr22,49344459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.45000000,0.00000000,,0.15384615,65.00000000,2.87610619,0.00000000,0.00000000,5.83000000 +12955,chr22,49344821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.62000000 +12956,chr22,49345029,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.15000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.68000000 +12957,chr22,49345512,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.20588235,75.00000000,3.31858407,0.09333333,0.00000000,6.28000000 +12958,chr22,49345908,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.79000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.50000000 +12959,chr22,49346172,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,59.00000000,0.00000000,-1.56000000,0.00000000,,0.22680412,97.00000000,4.29203540,0.00000000,0.00000000,3.73000000 +12960,chr22,49346497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.82000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.02105263,0.00000000,6.34000000 +12961,chr22,49346509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +12962,chr22,49346964,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,0.73000000,0.00000000,,0.13559322,59.00000000,2.61061947,0.00000000,0.00000000,5.22000000 +12963,chr22,49347381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,0.24000000,0.00000000,,0.18571429,75.00000000,3.31858407,0.04000000,0.00000000,5.38000000 +12964,chr22,49348457,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.09000000 +12965,chr22,49348643,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.24000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,4.98000000 +12966,chr22,49348644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.69000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.01388889,0.00000000,6.68000000 +12967,chr22,49349402,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,56.00000000,0.00000000,1.17000000,0.00000000,,0.34615385,80.00000000,3.53982301,0.02500000,0.00000000,4.84000000 +12968,chr22,49349446,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.39000000,0.00000000,,0.29885057,89.00000000,3.93805310,0.02247191,0.00000000,6.03000000 +12969,chr22,49349482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.02000000 +12970,chr22,49351505,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.42000000,0.00000000,,0.50000000,102.00000000,4.51327434,0.03921569,0.00000000,8.29000000 +12971,chr22,49351534,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,0.23000000,0.00000000,,0.50943396,113.00000000,5.00000000,0.05309735,0.00000000,7.94000000 +12972,chr22,49355277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,0.57000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.05000000,0.00000000,6.27000000 +12973,chr22,49355279,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,0.57000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.05000000,0.00000000,6.27000000 +12974,chr22,49355280,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.38000000,0.00000000,,0.26315789,80.00000000,3.53982301,0.05000000,0.00000000,6.19000000 +12975,chr22,49355466,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.38000000,0.00000000,,0.30555556,79.00000000,3.49557522,0.07594937,0.00000000,6.48000000 +12976,chr22,49355494,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.24657534,80.00000000,3.53982301,0.08750000,0.00000000,5.98000000 +12977,chr22,49355775,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.53000000,0.00000000,,0.27118644,59.00000000,2.61061947,0.00000000,0.00000000,6.72000000 +12978,chr22,49357190,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,-0.42000000,0.00000000,,0.40625000,64.00000000,2.83185841,0.00000000,0.00000000,4.65000000 +12979,chr22,49357798,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.49295775,78.00000000,3.45132743,0.08974359,0.00000000,8.35000000 +12980,chr22,49361830,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,0.51000000,0.00000000,,0.38461538,78.00000000,3.45132743,0.00000000,0.00000000,8.36000000 +12981,chr22,49362381,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,116.00000000,0.00000000,1.44000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.00000000,0.00000000,13.59000000 +12982,chr22,49362628,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.24000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,8.01000000 +12983,chr22,49363017,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,107.00000000,0.00000000,-0.90000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.00000000,0.00000000,15.22000000 +12984,chr22,49363149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.53000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.37681159,69.00000000,3.05309735,0.00000000,0.00000000,8.14000000 +12985,chr22,49363169,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.35483871,64.00000000,2.83185841,0.03125000,0.00000000,7.76000000 +12986,chr22,49363384,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.45833333,98.00000000,4.33628319,0.02040816,0.00000000,8.13000000 +12987,chr22,49363688,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,0.00000000,0.22000000,0.00000000,,0.41333333,76.00000000,3.36283186,0.01315789,0.00000000,4.71000000 +12988,chr22,49364255,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.33000000,0.00000000,,0.41250000,86.00000000,3.80530973,0.06976744,0.00000000,8.29000000 +12989,chr22,49364270,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.37333333,83.00000000,3.67256637,0.09638554,0.00000000,8.35000000 +12990,chr22,49364273,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.03000000,0.00000000,,0.36000000,84.00000000,3.71681416,0.09523810,0.00000000,8.35000000 +12991,chr22,49365365,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.57000000,0.00000000,,0.45833333,98.00000000,4.33628319,0.00000000,0.00000000,8.82000000 +12992,chr22,49368145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.15000000,0.00000000,,0.24731183,97.00000000,4.29203540,0.04123711,0.00000000,6.01000000 +12993,chr22,49369243,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,-0.27000000,0.00000000,,0.43298969,98.00000000,4.33628319,0.01020408,0.00000000,8.41000000 +12994,chr22,49371481,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.39000000,0.00000000,,0.43396226,55.00000000,2.43362832,0.03636364,0.00000000,4.25000000 +12995,chr22,49371782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.20000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,5.83000000 +12996,chr22,49371877,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,6.09000000 +12997,chr22,49381692,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.19000000,0.00000000,,0.24096386,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +12998,chr22,49382323,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.70000000 +12999,chr22,49383054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.38000000,0.00000000,,0.50632911,79.00000000,3.49557522,0.00000000,0.00000000,8.71000000 +13000,chr22,49383477,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,50.00000000,0.00000000,0.84000000,0.00000000,,0.40384615,68.00000000,3.00884956,0.23529412,0.00000000,4.54000000 +13001,chr22,49386575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,45.37000000,60.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,1.14000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,5.64000000 +13002,chr22,49386909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.17000000,19.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.08000000,0.00000000,111.00000000,0.00000000,-1.92000000,0.00000000,,0.38775510,103.00000000,4.55752212,0.03883495,0.00000000,9.72000000 +13003,chr22,49387479,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,45.71000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,55.00000000,0.00000000,0.83000000,0.00000000,,0.41463415,43.00000000,1.90265487,0.04651163,0.00000000,4.84000000 +13004,chr22,49387481,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,45.38000000,44.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,44.00000000,0.00000000,0.73000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.07142857,0.02325581,3.58000000 +13005,chr22,49389500,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,0.70000000,0.00000000,,0.33707865,91.00000000,4.02654867,0.01098901,0.00000000,8.15000000 +13006,chr22,49390502,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,21.00000000,0.00000000,0.14000000,0.00000000,,0.48684211,78.00000000,3.45132743,0.01282051,0.00000000,3.96000000 +13007,chr22,49390640,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.38000000,0.00000000,,0.42857143,77.00000000,3.40707965,0.00000000,0.00000000,8.41000000 +13008,chr22,49391461,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.15000000,0.00000000,,0.46478873,73.00000000,3.23008850,0.02739726,0.00000000,8.11000000 +13009,chr22,49392843,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-1.24000000,0.00000000,,0.42391304,92.00000000,4.07079646,0.00000000,0.00000000,8.96000000 +13010,chr22,49392937,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,8.52000000 +13011,chr22,49393037,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.01000000,0.00000000,,0.34375000,66.00000000,2.92035398,0.03030303,0.00000000,8.27000000 +13012,chr22,49393176,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-1.48000000,0.00000000,,0.42222222,92.00000000,4.07079646,0.02173913,0.00000000,8.33000000 +13013,chr22,49394501,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,32.00000000,0.00000000,-1.69000000,0.00000000,,0.60377358,55.00000000,2.43362832,0.01818182,0.00000000,3.73000000 +13014,chr22,49395140,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,17.00000000,0.00000000,0.65000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,3.21000000 +13015,chr22,49397613,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.38000000,0.00000000,,0.43478261,70.00000000,3.09734513,0.01428571,0.00000000,7.67000000 +13016,chr22,49398203,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.23000000,0.00000000,,0.50793651,65.00000000,2.87610619,0.03076923,0.00000000,8.00000000 +13017,chr22,49400291,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.37931034,58.00000000,2.56637168,0.00000000,0.00000000,8.54000000 +13018,chr22,49400760,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,110.00000000,0.00000000,-0.27000000,0.00000000,,0.37634409,93.00000000,4.11504425,0.00000000,0.00000000,15.14000000 +13019,chr22,49401590,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.42708333,97.00000000,4.29203540,0.01030928,0.00000000,8.54000000 +13020,chr22,49402023,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.42105263,78.00000000,3.45132743,0.02564103,0.00000000,8.26000000 +13021,chr22,49403882,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.50000000,0.00000000,,0.46913580,82.00000000,3.62831858,0.00000000,0.00000000,8.95000000 +13022,chr22,49404362,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.50000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.53000000 +13023,chr22,49405079,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,113.00000000,0.00000000,0.27000000,0.00000000,,0.33734940,86.00000000,3.80530973,0.03488372,0.00000000,13.21000000 +13024,chr22,49405081,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,112.00000000,0.00000000,0.99000000,0.00000000,,0.34177215,83.00000000,3.67256637,0.03614458,0.00000000,13.29000000 +13025,chr22,49405119,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,119.00000000,0.00000000,-0.08000000,0.00000000,,0.40217391,92.00000000,4.07079646,0.00000000,0.00000000,12.42000000 +13026,chr22,49405170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,0.00000000,-1.59000000,0.00000000,,0.41975309,84.00000000,3.71681416,0.03571429,0.00000000,8.32000000 +13027,chr22,49405174,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.44155844,80.00000000,3.53982301,0.03750000,0.00000000,8.35000000 +13028,chr22,49405616,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06060606,38.00000000,1.68141593,0.10526316,0.00000000,48.00000000,0.00000000,-1.12000000,0.00000000,,0.50632911,86.00000000,3.80530973,0.06976744,0.00000000,4.29000000 +13029,chr22,49405749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.01587302,0.00000000,7.98000000 +13030,chr22,49405772,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.61000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,7.79000000 +13031,chr22,49405778,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.19000000,0.00000000,,0.42857143,67.00000000,2.96460177,0.05970149,0.00000000,7.95000000 +13032,chr22,49406616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.93000000 +13033,chr22,49406677,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.98000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.54000000 +13034,chr22,49406727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,58.00000000,0.00000000,0.53000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,3.56000000 +13035,chr22,49407822,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.45000000,24.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.21739130,0.00000000,39.00000000,0.00000000,-0.69000000,0.00000000,,0.38095238,49.00000000,2.16814159,0.14285714,0.00000000,4.13000000 +13036,chr22,49407832,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.68000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,48.00000000,0.00000000,0.60000000,0.00000000,,0.38095238,49.00000000,2.16814159,0.14285714,0.00000000,4.38000000 +13037,chr22,49408275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,-0.61000000,0.00000000,,0.40298507,73.00000000,3.23008850,0.04109589,0.00000000,4.53000000 +13038,chr22,49408433,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,1.21000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,8.86000000 +13039,chr22,49409209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.28070175,61.00000000,2.69911504,0.06557377,0.00000000,5.92000000 +13040,chr22,49427509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.82000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +13041,chr22,49427583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.67000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.62000000 +13042,chr22,49428795,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.38000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.23000000 +13043,chr22,49430149,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,41.00000000,0.00000000,-0.57000000,0.00000000,,0.33333333,48.00000000,2.12389381,0.00000000,0.00000000,4.14000000 +13044,chr22,49430291,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.31000000 +13045,chr22,49430296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.19672131,63.00000000,2.78761062,0.03174603,0.00000000,6.30000000 +13046,chr22,49430308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.39000000 +13047,chr22,49430508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.04000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.37000000 +13048,chr22,49430667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +13049,chr22,49430732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.68000000 +13050,chr22,49431413,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.94000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.75000000 +13051,chr22,49432301,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,0.29000000,0.00000000,,0.22033898,62.00000000,2.74336283,0.04838710,0.00000000,2.75000000 +13052,chr22,49433736,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.77000000,0.00000000,,0.32051282,81.00000000,3.58407080,0.03703704,0.00000000,7.88000000 +13053,chr22,49434711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.20408163,101.00000000,4.46902655,0.02970297,0.00000000,5.84000000 +13054,chr22,49435598,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.12000000 +13055,chr22,49435630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.22000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,6.08000000 +13056,chr22,49442279,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.77000000,0.00000000,,0.21621622,77.00000000,3.40707965,0.02597403,0.00000000,5.75000000 +13057,chr22,49443583,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.38000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.38000000 +13058,chr22,49444009,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,79.00000000,0.00000000,1.64000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.74000000 +13059,chr22,49457563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.13000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,7.09000000 +13060,chr22,49460133,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.54000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.54000000 +13061,chr22,49464038,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.67000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,7.03000000 +13062,chr22,49464931,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.81000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +13063,chr22,49464941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.61000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.14000000 +13064,chr22,49465738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.28723404,94.00000000,4.15929204,0.00000000,0.00000000,6.52000000 +13065,chr22,49469254,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.02105263,0.00000000,5.77000000 +13066,chr22,49474282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,-1.37000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.00000000,0.00000000,6.64000000 +13067,chr22,49475432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.67000000 +13068,chr22,49481194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,-0.18000000,0.00000000,,0.24137931,90.00000000,3.98230088,0.03333333,0.00000000,5.96000000 +13069,chr22,49482951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.44000000 +13070,chr22,49484644,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.75000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.02531646,0.00000000,5.93000000 +13071,chr22,49486928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.58000000,0.00000000,,0.12000000,77.00000000,3.40707965,0.02597403,0.00000000,4.05000000 +13072,chr22,49490948,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.02000000,0.00000000,,0.30645161,63.00000000,2.78761062,0.01587302,0.00000000,6.27000000 +13073,chr22,49491122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,1.12000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.01204819,0.00000000,4.74000000 +13074,chr22,49491529,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.35000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,5.97000000 +13075,chr22,49491727,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,5.08000000 +13076,chr22,49491749,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,67.00000000,0.00000000,0.57000000,0.00000000,,0.14062500,69.00000000,3.05309735,0.07246377,0.00000000,4.84000000 +13077,chr22,49491882,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.18888889,93.00000000,4.11504425,0.03225806,0.00000000,5.94000000 +13078,chr22,49492187,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.00000000,0.00000000,6.57000000 +13079,chr22,49492207,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.46000000,0.00000000,,0.20560748,109.00000000,4.82300885,0.01834862,0.00000000,6.23000000 +13080,chr22,49492248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.24175824,93.00000000,4.11504425,0.01075269,0.00000000,5.91000000 +13081,chr22,49492624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.32000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.35000000 +13082,chr22,49494570,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,49.93000000,33.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,51.00000000,0.00000000,-0.15000000,0.00000000,,0.30769231,62.00000000,2.74336283,0.11290323,0.00000000,4.35000000 +13083,chr22,49494707,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.23529412,55.00000000,2.43362832,0.05454545,0.00000000,5.90000000 +13084,chr22,49494931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.93000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,5.94000000 +13085,chr22,49495188,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.43000000 +13086,chr22,49495310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.81000000 +13087,chr22,49495437,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.62000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.67000000 +13088,chr22,49495464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.65000000,0.00000000,,0.24418605,89.00000000,3.93805310,0.03370787,0.00000000,6.31000000 +13089,chr22,49495540,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.29000000 +13090,chr22,49498109,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,70.00000000,0.00000000,-1.30000000,0.00000000,,0.16901408,77.00000000,3.40707965,0.07792208,0.00000000,5.63000000 +13091,chr22,49498667,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.49000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +13092,chr22,49500766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,-0.49000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.03703704,0.00000000,5.89000000 +13093,chr22,49506040,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.21000000,0.00000000,,0.31428571,70.00000000,3.09734513,0.00000000,0.00000000,8.16000000 +13094,chr22,49517522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,8.76000000 +13095,chr22,49517573,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,-0.39000000,0.00000000,,0.23529412,89.00000000,3.93805310,0.04494382,0.00000000,5.48000000 +13096,chr22,49518730,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,0.98000000,0.00000000,,0.11688312,78.00000000,3.45132743,0.01282051,0.00000000,5.27000000 +13097,chr22,49518733,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.32000000 +13098,chr22,49518757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.12500000,80.00000000,3.53982301,0.00000000,0.00000000,5.12000000 +13099,chr22,49519728,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,66.00000000,0.00000000,2.32000000,0.00000000,,0.26229508,65.00000000,2.87610619,0.06153846,0.00000000,5.56000000 +13100,chr22,49520334,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.28358209,70.00000000,3.09734513,0.04285714,0.00000000,6.06000000 +13101,chr22,49520530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-1.25000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.01470588,0.00000000,6.39000000 +13102,chr22,49522761,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,-0.66000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.02298851,0.00000000,6.02000000 +13103,chr22,49522884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.02000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +13104,chr22,49525168,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,6.33000000 +13105,chr22,49526000,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.12000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.02898551,0.00000000,6.00000000 +13106,chr22,49527137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +13107,chr22,49527206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,5.79000000 +13108,chr22,49527797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.10000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.50000000 +13109,chr22,49527917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +13110,chr22,49528577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,51.00000000,0.00000000,0.40000000,0.00000000,,0.26229508,78.00000000,3.45132743,0.21794872,0.00000000,2.94000000 +13111,chr22,49529611,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.11000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.87000000 +13112,chr22,49530879,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,77.00000000,0.00000000,-0.83000000,0.00000000,,0.18181818,91.00000000,4.02654867,0.03296703,0.00000000,5.22000000 +13113,chr22,49530881,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,78.00000000,0.00000000,-0.73000000,0.00000000,,0.17977528,92.00000000,4.07079646,0.03260870,0.00000000,5.22000000 +13114,chr22,49531010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.50000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.66000000 +13115,chr22,49532214,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.45000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.46000000 +13116,chr22,49534424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.09000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.01204819,0.00000000,5.72000000 +13117,chr22,49534629,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.37000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.82000000 +13118,chr22,49536806,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-1.45000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,6.20000000 +13119,chr22,49550983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +13120,chr22,49571595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.11000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +13121,chr22,49575483,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,82.00000000,0.00000000,1.31000000,0.00000000,,0.22972973,79.00000000,3.49557522,0.06329114,0.00000000,5.60000000 +13122,chr22,49600823,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.24000000 +13123,chr22,49601711,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.28000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,6.62000000 +13124,chr22,49652835,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.67000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.66000000 +13125,chr22,49751044,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.98000000,0.00000000,,0.12658228,82.00000000,3.62831858,0.03658537,0.00000000,4.76000000 +13126,chr22,49755045,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,0.66000000,0.00000000,,0.12359551,91.00000000,4.02654867,0.00000000,0.00000000,5.12000000 +13127,chr22,49765424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-1.19000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +13128,chr22,49809548,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.37000000 +13129,chr22,49814261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,38.00000000,1.68141593,0.05263158,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.14772727,91.00000000,4.02654867,0.03296703,0.00000000,4.97000000 +13130,chr22,49819175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,1.11000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,5.11000000 +13131,chr22,49843648,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,2.02000000,0.00000000,,0.24719101,93.00000000,4.11504425,0.03225806,0.00000000,5.62000000 +13132,chr22,49843718,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-1.66000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.10000000 +13133,chr22,49843864,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.49000000 +13134,chr22,49843947,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.87000000 +13135,chr22,49844733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-1.28000000,0.00000000,,0.19298246,60.00000000,2.65486726,0.05000000,0.00000000,6.11000000 +13136,chr22,49845505,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.26000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,6.00000000 +13137,chr22,49847064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.00000000,0.00000000,,0.30379747,82.00000000,3.62831858,0.02439024,0.00000000,7.31000000 +13138,chr22,49847562,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.40000000,0.00000000,,0.18627451,103.00000000,4.55752212,0.00970874,0.00000000,6.69000000 +13139,chr22,49849085,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.21839080,97.00000000,4.29203540,0.08247423,0.00000000,5.40000000 +13140,chr22,49849285,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,1.20000000,0.00000000,,0.24271845,104.00000000,4.60176991,0.00961538,0.00000000,6.54000000 +13141,chr22,49850099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,0.00000000,-0.42000000,0.00000000,,0.06410256,79.00000000,3.49557522,0.01265823,0.00000000,5.30000000 +13142,chr22,49850423,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.17000000 +13143,chr22,49850885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,1.87000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,4.80000000 +13144,chr22,49851047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.97000000 +13145,chr22,49851129,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,0.26000000,0.00000000,,0.16831683,108.00000000,4.77876106,0.06481481,0.00000000,5.80000000 +13146,chr22,49851548,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,1.40000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.00000000,0.00000000,5.44000000 +13147,chr22,49854741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.16000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.26000000 +13148,chr22,49855483,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,-1.34000000,0.00000000,,0.21428571,58.00000000,2.56637168,0.03448276,0.00000000,2.83000000 +13149,chr22,49856029,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.81000000 +13150,chr22,49856635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.24000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,0.73000000,0.00000000,,0.11764706,72.00000000,3.18584071,0.05555556,0.00000000,4.63000000 +13151,chr22,49856816,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.86000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-1.28000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.04225352,0.00000000,5.62000000 +13152,chr22,49856817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.86000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.43000000,0.00000000,,0.14925373,71.00000000,3.14159292,0.05633803,0.00000000,5.77000000 +13153,chr22,49857179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.30000000 +13154,chr22,49857701,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,1.17000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,5.53000000 +13155,chr22,49857828,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.01111111,0.00000000,6.82000000 +13156,chr22,49858056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,74.00000000,0.00000000,-0.64000000,0.00000000,,0.16216216,113.00000000,5.00000000,0.01769912,0.00000000,4.91000000 +13157,chr22,49858094,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,5.70000000 +13158,chr22,49858479,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,96.00000000,0.00000000,-0.32000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,4.85000000 +13159,chr22,49859135,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,5.91000000 +13160,chr22,49859206,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.01234568,0.00000000,5.26000000 +13161,chr22,49859453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.50000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.23000000 +13162,chr22,49859489,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.25000000 +13163,chr22,49859542,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,1.80000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.58000000 +13164,chr22,49859572,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.01219512,0.00000000,5.72000000 +13165,chr22,49860172,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.92000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +13166,chr22,49861244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,1.05000000,0.00000000,,0.14285714,78.00000000,3.45132743,0.01282051,0.00000000,5.09000000 +13167,chr22,49862224,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +13168,chr22,49862661,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,73.00000000,0.00000000,-0.96000000,0.00000000,,0.20987654,96.00000000,4.24778761,0.14583333,0.00000000,5.88000000 +13169,chr22,49863038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,5.65000000 +13170,chr22,49863090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.21000000,0.00000000,,0.21875000,98.00000000,4.33628319,0.01020408,0.00000000,6.22000000 +13171,chr22,49863237,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,58.00000000,0.00000000,1.01000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,3.60000000 +13172,chr22,49863238,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,0.63000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.14000000 +13173,chr22,49864018,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.19000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.44000000 +13174,chr22,49864531,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.36000000 +13175,chr22,49865042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.88000000,0.00000000,,0.22222222,68.00000000,3.00884956,0.07352941,0.00000000,6.21000000 +13176,chr22,49865103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.31506849,76.00000000,3.36283186,0.02631579,0.00000000,8.46000000 +13177,chr22,49865150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.35593220,59.00000000,2.61061947,0.00000000,0.00000000,8.12000000 +13178,chr22,49865219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.00000000,0.00000000,6.48000000 +13179,chr22,49865266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.26229508,62.00000000,2.74336283,0.01612903,0.00000000,6.25000000 +13180,chr22,49865504,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.41000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.82000000 +13181,chr22,49866048,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,0.12000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,5.85000000 +13182,chr22,49866336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.95000000 +13183,chr22,49866521,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,95.00000000,0.00000000,0.34000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,5.47000000 +13184,chr22,49866824,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.50000000 +13185,chr22,49866875,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.48000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +13186,chr22,49867412,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,2.81000000 +13187,chr22,49867475,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +13188,chr22,49868783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.55000000 +13189,chr22,49869354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.08000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +13190,chr22,49869722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,5.92000000 +13191,chr22,49869993,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.19000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.91000000 +13192,chr22,49870394,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.06000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.63000000 +13193,chr22,49872129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.65000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,6.59000000 +13194,chr22,49872136,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.71000000,0.00000000,,0.27083333,97.00000000,4.29203540,0.01030928,0.00000000,6.51000000 +13195,chr22,49872669,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,82.00000000,0.00000000,-0.20000000,0.00000000,,0.18181818,100.00000000,4.42477876,0.01000000,0.00000000,5.25000000 +13196,chr22,49872982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,0.22000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +13197,chr22,49873860,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,0.87000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.60000000 +13198,chr22,49874174,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,2.00000000,0.00000000,,0.10144928,70.00000000,3.09734513,0.01428571,0.00000000,5.31000000 +13199,chr22,49874366,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.14492754,72.00000000,3.18584071,0.04166667,0.00000000,5.05000000 +13200,chr22,49875444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,-0.33000000,0.00000000,,0.15116279,91.00000000,4.02654867,0.05494505,0.00000000,5.42000000 +13201,chr22,49875570,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.83000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.69000000 +13202,chr22,49875607,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.62000000,0.00000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,5.16000000 +13203,chr22,49876567,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.03000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.00000000,0.00000000,6.16000000 +13204,chr22,49876661,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,78.00000000,0.00000000,0.95000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.52000000 +13205,chr22,49876922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,1.22000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.17000000 +13206,chr22,49877136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.82000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.33000000 +13207,chr22,49877528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.31000000 +13208,chr22,49877766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.00000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.64000000 +13209,chr22,49877780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.02631579,0.00000000,6.29000000 +13210,chr22,49877812,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.50000000 +13211,chr22,49877983,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +13212,chr22,49878580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +13213,chr22,49878867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.65000000,0.00000000,,0.15789474,57.00000000,2.52212389,0.00000000,0.00000000,5.16000000 +13214,chr22,49879272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.31000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.25000000,58.00000000,2.56637168,0.10344828,0.00000000,6.60000000 +13215,chr22,49879526,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.89000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,0.00000000,1.58000000,0.00000000,,0.09090909,67.00000000,2.96460177,0.01492537,0.00000000,4.88000000 +13216,chr22,49881083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.04411765,0.00000000,5.47000000 +13217,chr22,49881103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.45000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.08000000 +13218,chr22,49881532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-2.74000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.92000000 +13219,chr22,49881677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.16470588,89.00000000,3.93805310,0.04494382,0.00000000,4.99000000 +13220,chr22,49883047,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-2.58000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,6.54000000 +13221,chr22,49883180,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,1.76000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.83000000 +13222,chr22,49883261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.28000000 +13223,chr22,49884790,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.24000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +13224,chr22,49884920,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-0.39000000,0.00000000,,0.29761905,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +13225,chr22,49884994,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.39000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.56000000 +13226,chr22,49886488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.15000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,4.76000000 +13227,chr22,49888269,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,2.63000000,0.00000000,,0.16814159,116.00000000,5.13274336,0.02586207,0.00000000,5.97000000 +13228,chr22,49888556,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-1.11000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.64000000 +13229,chr22,49888955,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-2.14000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.91000000 +13230,chr22,49889338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.41000000 +13231,chr22,49890372,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,98.00000000,0.00000000,-1.35000000,0.00000000,,0.27184466,104.00000000,4.60176991,0.00000000,0.00000000,6.01000000 +13232,chr22,49890430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,0.00000000,1.04000000,0.00000000,,0.44859813,108.00000000,4.77876106,0.00925926,0.00000000,8.00000000 +13233,chr22,49890657,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.10000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00000000,0.00000000,6.27000000 +13234,chr22,49943113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +13235,chr22,49957690,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.06000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,6.36000000 +13236,chr22,49970241,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,104.00000000,0.00000000,-1.05000000,0.00000000,,0.35294118,88.00000000,3.89380531,0.03409091,0.00000000,13.27000000 +13237,chr22,49976339,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.19000000,0.00000000,,0.47191011,89.00000000,3.93805310,0.00000000,0.00000000,7.89000000 +13238,chr22,49987735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.48000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.35000000 +13239,chr22,50001197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.37000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.21000000 +13240,chr22,50013610,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,53.00000000,0.00000000,1.51000000,0.00000000,,0.43636364,66.00000000,2.92035398,0.16666667,0.00000000,4.68000000 +13241,chr22,50029693,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,32.00000000,0.00000000,-0.35000000,0.00000000,,0.44827586,66.00000000,2.92035398,0.10606061,0.00000000,4.02000000 +13242,chr22,50030478,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,105.00000000,0.00000000,-0.19000000,0.00000000,,0.43298969,100.00000000,4.42477876,0.03000000,0.00000000,13.14000000 +13243,chr22,50031116,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05000000,21.00000000,0.92920354,0.04761905,0.00000000,29.00000000,0.00000000,-0.75000000,0.00000000,,0.44594595,79.00000000,3.49557522,0.06329114,0.00000000,3.62000000 +13244,chr22,50031149,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-0.89000000,0.00000000,,0.46428571,86.00000000,3.80530973,0.02325581,0.00000000,4.22000000 +13245,chr22,50033013,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.99000000,0.00000000,,0.45555556,92.00000000,4.07079646,0.01086957,0.00000000,4.02000000 +13246,chr22,50033039,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,1.17000000,0.00000000,,0.43209877,84.00000000,3.71681416,0.01190476,0.00000000,4.11000000 +13247,chr22,50033613,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,-0.18000000,0.00000000,,0.49411765,85.00000000,3.76106195,0.00000000,0.00000000,8.06000000 +13248,chr22,50034748,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,-0.37000000,0.00000000,,0.42647059,75.00000000,3.31858407,0.08000000,0.00000000,4.70000000 +13249,chr22,50034967,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,95.00000000,0.00000000,-0.39000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,8.32000000 +13250,chr22,50035189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.34782609,77.00000000,3.40707965,0.10389610,0.00000000,7.97000000 +13251,chr22,50035207,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,0.70000000,0.00000000,,0.14000000,77.00000000,3.40707965,0.35064935,0.00000000,4.29000000 +13252,chr22,50035215,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-1.08000000,0.00000000,,0.35714286,78.00000000,3.45132743,0.10256410,0.00000000,8.55000000 +13253,chr22,50035290,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.37313433,67.00000000,2.96460177,0.00000000,0.00000000,8.52000000 +13254,chr22,50035532,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.45000000,0.00000000,,0.41666667,73.00000000,3.23008850,0.01369863,0.00000000,8.34000000 +13255,chr22,50036428,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.43037975,82.00000000,3.62831858,0.01219512,0.00000000,4.21000000 +13256,chr22,50040399,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.62000000,0.00000000,,0.44303797,82.00000000,3.62831858,0.03658537,0.00000000,6.29000000 +13257,chr22,50040615,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,0.08000000,0.00000000,,0.33333333,75.00000000,3.31858407,0.00000000,0.00000000,8.29000000 +13258,chr22,50041427,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.59000000,0.00000000,,0.39285714,84.00000000,3.71681416,0.00000000,0.00000000,9.34000000 +13259,chr22,50041679,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,102.00000000,0.00000000,1.10000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.01123596,0.00000000,12.86000000 +13260,chr22,50042497,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.35443038,81.00000000,3.58407080,0.02469136,0.00000000,7.90000000 +13261,chr22,50043244,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.41000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,61.00000000,0.00000000,-1.59000000,0.00000000,,0.34848485,73.00000000,3.23008850,0.09589041,0.00000000,7.34000000 +13262,chr22,50043697,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.13000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.42000000,0.00000000,,0.54411765,70.00000000,3.09734513,0.02857143,0.00000000,7.47000000 +13263,chr22,50043822,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.40540541,78.00000000,3.45132743,0.05128205,0.00000000,8.06000000 +13264,chr22,50044688,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-2.01000000,0.00000000,,0.49333333,75.00000000,3.31858407,0.00000000,0.00000000,8.29000000 +13265,chr22,50045421,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,107.00000000,0.00000000,-1.65000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.00000000,0.00000000,14.07000000 +13266,chr22,50045460,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,-0.46000000,0.00000000,,0.47126437,87.00000000,3.84955752,0.00000000,0.00000000,8.93000000 +13267,chr22,50045497,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,0.00000000,0.51000000,0.00000000,,0.41463415,84.00000000,3.71681416,0.02380952,0.00000000,8.09000000 +13268,chr22,50046597,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.09000000,0.00000000,,0.35616438,75.00000000,3.31858407,0.02666667,0.00000000,7.92000000 +13269,chr22,50050566,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.31000000,0.00000000,,0.43750000,64.00000000,2.83185841,0.00000000,0.00000000,8.49000000 +13270,chr22,50052068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-1.46000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.02631579,0.00000000,4.13000000 +13271,chr22,50052434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.99000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.01219512,0.00000000,6.21000000 +13272,chr22,50053339,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.85000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.46000000 +13273,chr22,50053517,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.01149425,0.00000000,6.09000000 +13274,chr22,50053692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,86.00000000,0.00000000,-0.77000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,6.00000000 +13275,chr22,50053806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,6.21000000 +13276,chr22,50055043,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.60000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +13277,chr22,50058990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,98.00000000,0.00000000,-1.78000000,0.00000000,,0.26966292,93.00000000,4.11504425,0.04301075,0.00000000,5.49000000 +13278,chr22,50059620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.59000000 +13279,chr22,50059819,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.16842105,95.00000000,4.20353982,0.00000000,0.00000000,6.09000000 +13280,chr22,50062279,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,53.00000000,0.00000000,-0.44000000,0.00000000,,0.15873016,77.00000000,3.40707965,0.18181818,0.00000000,2.76000000 +13281,chr22,50064018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.24528302,64.00000000,2.83185841,0.17187500,0.00000000,5.58000000 +13282,chr22,50064459,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.06000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.04395604,0.00000000,2.97000000 +13283,chr22,50064907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.84000000 +13284,chr22,50066257,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-1.84000000,0.00000000,,0.20652174,95.00000000,4.20353982,0.03157895,0.00000000,6.21000000 +13285,chr22,50070292,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.94000000,0.00000000,,0.10843373,85.00000000,3.76106195,0.02352941,0.00000000,4.90000000 +13286,chr22,50070767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.78000000 +13287,chr22,50072799,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.16250000,83.00000000,3.67256637,0.01204819,0.00000000,6.41000000 +13288,chr22,50084037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.87000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.71000000 +13289,chr22,50084649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.26000000,0.00000000,,0.24074074,110.00000000,4.86725664,0.00909091,0.00000000,6.50000000 +13290,chr22,50107168,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +13291,chr22,50130092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +13292,chr22,50131022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.03703704,0.00000000,6.19000000 +13293,chr22,50140785,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.28000000,0.00000000,,0.11627907,87.00000000,3.84955752,0.00000000,0.00000000,3.90000000 +13294,chr22,50147533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.06000000,24.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,42.00000000,0.00000000,1.97000000,0.00000000,,0.32142857,29.00000000,1.28318584,0.03448276,0.00000000,3.37000000 +13295,chr22,50152896,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.83000000 +13296,chr22,50157193,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.54000000,0.00000000,,0.25000000,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +13297,chr22,50170182,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.11000000,0.00000000,,0.22727273,72.00000000,3.18584071,0.05555556,0.00000000,6.09000000 +13298,chr22,50171475,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.31000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.08974359,0.00000000,6.25000000 +13299,chr22,50171476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.19718310,77.00000000,3.40707965,0.07792208,0.00000000,6.22000000 +13300,chr22,50173486,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.94000000,0.00000000,,0.14705882,104.00000000,4.60176991,0.01923077,0.00000000,5.95000000 +13301,chr22,50173755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.91000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.00000000,0.00000000,6.33000000 +13302,chr22,50179297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,2.14000000,0.00000000,,0.22935780,110.00000000,4.86725664,0.00909091,0.00000000,6.46000000 +13303,chr22,50179554,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.19191919,102.00000000,4.51327434,0.01960784,0.00000000,6.27000000 +13304,chr22,50179849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,46.00000000,2.03539823,0.00000000,0.00000000,75.00000000,0.00000000,-0.76000000,0.00000000,,0.19047619,108.00000000,4.77876106,0.01851852,0.00000000,5.42000000 +13305,chr22,50180212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.18421053,114.00000000,5.04424779,0.00000000,0.00000000,6.46000000 +13306,chr22,50181478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.54000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.68000000 +13307,chr22,50182079,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,77.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.11458333,0.00000000,5.54000000 +13308,chr22,50183975,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.16000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.17000000 +13309,chr22,50185828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,2.04000000,0.00000000,,0.17142857,79.00000000,3.49557522,0.11392405,0.00000000,5.51000000 +13310,chr22,50186842,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,76.00000000,0.00000000,0.86000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.47000000 +13311,chr22,50187020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.05000000,0.00000000,,0.15217391,95.00000000,4.20353982,0.02105263,0.00000000,5.55000000 +13312,chr22,50188759,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,96.00000000,0.00000000,-0.42000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,5.88000000 +13313,chr22,50190567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,5.93000000 +13314,chr22,50191443,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.50000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.69000000 +13315,chr22,50192365,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.01000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.83000000 +13316,chr22,50195257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.72000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +13317,chr22,50196097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,6.19000000 +13318,chr22,50196123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,5.94000000 +13319,chr22,50199196,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,92.00000000,0.00000000,-0.32000000,0.00000000,,0.23214286,114.00000000,5.04424779,0.01754386,0.00000000,5.30000000 +13320,chr22,50199493,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.61000000,0.00000000,,0.20689655,91.00000000,4.02654867,0.03296703,0.00000000,6.35000000 +13321,chr22,50199743,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.28767123,78.00000000,3.45132743,0.06410256,0.00000000,5.76000000 +13322,chr22,50203930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.86000000,0.00000000,,0.17307692,107.00000000,4.73451327,0.02803738,0.00000000,5.35000000 +13323,chr22,50204119,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,2.09000000,0.00000000,,0.15463918,98.00000000,4.33628319,0.01020408,0.00000000,5.36000000 +13324,chr22,50206790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-1.08000000,0.00000000,,0.22340426,97.00000000,4.29203540,0.03092784,0.00000000,5.98000000 +13325,chr22,50209019,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.29000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.62000000 +13326,chr22,50210052,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,1.17000000,0.00000000,,0.27083333,98.00000000,4.33628319,0.02040816,0.00000000,6.25000000 +13327,chr22,50210868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.58000000 +13328,chr22,50213356,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,61.00000000,0.00000000,-0.11000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,4.89000000 +13329,chr22,50218683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.05000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,5.38000000 +13330,chr22,50219995,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,-0.92000000,0.00000000,,0.19047619,89.00000000,3.93805310,0.05617978,0.00000000,5.54000000 +13331,chr22,50224992,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.42000000,0.00000000,,0.16666667,89.00000000,3.93805310,0.05617978,0.00000000,5.53000000 +13332,chr22,50227794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.09000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,6.83000000 +13333,chr22,50228352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.28000000 +13334,chr22,50229136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.11000000 +13335,chr22,50237269,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,90.00000000,0.00000000,-0.60000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.96000000 +13336,chr22,50241007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.15662651,83.00000000,3.67256637,0.00000000,0.00000000,5.89000000 +13337,chr22,50244017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,1.99000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.50000000 +13338,chr22,50245883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.39000000 +13339,chr22,50258233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.45000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +13340,chr22,50261918,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-0.47000000,0.00000000,,0.22222222,87.00000000,3.84955752,0.06896552,0.00000000,5.81000000 +13341,chr22,50267952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.17000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +13342,chr22,50269093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,1.23000000,0.00000000,,0.21276596,98.00000000,4.33628319,0.04081633,0.00000000,6.29000000 +13343,chr22,50269112,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,84.00000000,0.00000000,1.91000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.51000000 +13344,chr22,50271528,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.41000000 +13345,chr22,50271920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.22680412,101.00000000,4.46902655,0.03960396,0.00000000,6.04000000 +13346,chr22,50272381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.16666667,100.00000000,4.42477876,0.03000000,0.00000000,5.89000000 +13347,chr22,50273293,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,45.00000000,0.00000000,-0.30000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,4.47000000 +13348,chr22,50277544,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.13000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.00000000,0.00000000,6.88000000 +13349,chr22,50277738,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.20588235,103.00000000,4.55752212,0.00970874,0.00000000,6.83000000 +13350,chr22,50278700,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.15789474,96.00000000,4.24778761,0.01041667,0.00000000,5.28000000 +13351,chr22,50282475,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.84000000 +13352,chr22,50283738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.00000000,0.00000000,6.38000000 +13353,chr22,50286872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,1.71000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.20000000 +13354,chr22,50287124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,72.00000000,0.00000000,2.08000000,0.00000000,,0.14117647,91.00000000,4.02654867,0.04395604,0.00000000,4.95000000 +13355,chr22,50292029,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.23000000,0.00000000,,0.39473684,79.00000000,3.49557522,0.03797468,0.00000000,8.29000000 +13356,chr22,50301560,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.26000000,0.00000000,,0.41111111,90.00000000,3.98230088,0.00000000,0.00000000,8.55000000 +13357,chr22,50308277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.84000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,6.13000000 +13358,chr22,50313100,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.27500000,84.00000000,3.71681416,0.04761905,0.00000000,5.76000000 +13359,chr22,50315299,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.02150538,0.00000000,6.08000000 +13360,chr22,50318919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,75.00000000,0.00000000,-0.13000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.63000000 +13361,chr22,50319251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,5.81000000 +13362,chr22,50320272,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.15789474,97.00000000,4.29203540,0.02061856,0.00000000,5.57000000 +13363,chr22,50320444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.74000000,0.00000000,,0.24242424,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +13364,chr22,50321053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.01204819,0.00000000,6.87000000 +13365,chr22,50321463,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,1.54000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.67000000 +13366,chr22,50327459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,-1.67000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.98000000 +13367,chr22,50362340,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,-1.02000000,0.00000000,,0.22916667,100.00000000,4.42477876,0.04000000,0.00000000,6.00000000 +13368,chr22,50383516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.91000000 +13369,chr22,50394778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.18867925,54.00000000,2.38938053,0.01851852,0.00000000,6.20000000 +13370,chr22,50396426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.20895522,77.00000000,3.40707965,0.11688312,0.00000000,5.98000000 +13371,chr22,50429870,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.60000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +13372,chr22,50430917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,0.28000000,0.00000000,,0.26744186,92.00000000,4.07079646,0.06521739,0.00000000,5.60000000 +13373,chr22,50432117,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.37000000,0.00000000,,0.37777778,93.00000000,4.11504425,0.03225806,0.00000000,8.17000000 +13374,chr22,50436185,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.06000000,0.00000000,,0.41758242,93.00000000,4.11504425,0.01075269,0.00000000,8.58000000 +13375,chr22,50436464,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.69000000,0.00000000,,0.47368421,96.00000000,4.24778761,0.01041667,0.00000000,8.56000000 +13376,chr22,50437316,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.42682927,86.00000000,3.80530973,0.03488372,0.00000000,7.62000000 +13377,chr22,50439767,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,102.00000000,0.00000000,-0.75000000,0.00000000,,0.45744681,100.00000000,4.42477876,0.06000000,0.00000000,11.53000000 +13378,chr22,50440498,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.44155844,80.00000000,3.53982301,0.03750000,0.00000000,8.09000000 +13379,chr22,50442824,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,35.00000000,0.00000000,-1.15000000,0.00000000,,0.48888889,49.00000000,2.16814159,0.08163265,0.00000000,3.84000000 +13380,chr22,50443089,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.54000000,0.00000000,,0.44615385,67.00000000,2.96460177,0.02985075,0.00000000,4.35000000 +13381,chr22,50443697,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,-0.68000000,0.00000000,,0.47619048,87.00000000,3.84955752,0.03448276,0.00000000,8.32000000 +13382,chr22,50444161,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-2.34000000,0.00000000,,0.43373494,85.00000000,3.76106195,0.00000000,0.00000000,8.92000000 +13383,chr22,50447791,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,0.00000000,0.19000000,0.00000000,,0.41379310,90.00000000,3.98230088,0.03333333,0.00000000,8.01000000 +13384,chr22,50451457,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.27000000,0.00000000,,0.37078652,89.00000000,3.93805310,0.00000000,0.00000000,8.42000000 +13385,chr22,50453986,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.50000000,75.00000000,3.31858407,0.02666667,0.00000000,8.42000000 +13386,chr22,50457029,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,93.00000000,0.00000000,-1.50000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.29000000 +13387,chr22,50457692,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.45000000,0.00000000,,0.44565217,95.00000000,4.20353982,0.03157895,0.00000000,8.07000000 +13388,chr22,50457955,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,48.00000000,0.00000000,-0.06000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,4.71000000 +13389,chr22,50458472,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.64000000,0.00000000,,0.47872340,97.00000000,4.29203540,0.03092784,0.00000000,4.72000000 +13390,chr22,50460996,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,35.00000000,0.00000000,-0.35000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,3.57000000 +13391,chr22,50461329,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.23333333,0.00000000,48.00000000,0.00000000,-1.23000000,0.00000000,,0.51470588,76.00000000,3.36283186,0.10526316,0.00000000,4.42000000 +13392,chr22,50462830,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.33000000,0.00000000,,0.42857143,77.00000000,3.40707965,0.00000000,0.00000000,8.00000000 +13393,chr22,50463802,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,0.06000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,8.09000000 +13394,chr22,50468089,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,50.00000000,0.00000000,0.11000000,0.00000000,,0.48837209,90.00000000,3.98230088,0.03333333,0.00000000,4.29000000 +13395,chr22,50468488,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.41071429,62.00000000,2.74336283,0.09677419,0.00000000,8.12000000 +13396,chr22,50468766,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.05000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.48000000 +13397,chr22,50473892,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,71.00000000,0.00000000,0.27000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.02325581,0.00000000,8.16000000 +13398,chr22,50475810,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.71000000,0.00000000,,0.49367089,79.00000000,3.49557522,0.00000000,0.00000000,8.99000000 +13399,chr22,50479977,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-2.64000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,6.19000000 +13400,chr22,50483215,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.65000000 +13401,chr22,50484115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.02000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.04597701,0.00000000,4.35000000 +13402,chr22,50485991,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.83000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.02597403,0.00000000,8.29000000 +13403,chr22,50486963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,73.00000000,0.00000000,0.55000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.37000000 +13404,chr22,50487342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +13405,chr22,50488493,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.91000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.33333333,0.00000000,27.00000000,0.00000000,-0.08000000,0.00000000,,0.36842105,52.00000000,2.30088496,0.26923077,0.00000000,3.73000000 +13406,chr22,50489013,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.46000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,33.00000000,0.00000000,-0.20000000,0.00000000,,0.42857143,52.00000000,2.30088496,0.19230769,0.00000000,3.99000000 +13407,chr22,50489527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +13408,chr22,50489990,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,81.00000000,0.00000000,-0.90000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,5.93000000 +13409,chr22,50490447,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,1.84000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,6.04000000 +13410,chr22,50490565,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-1.39000000,0.00000000,,0.45918367,103.00000000,4.55752212,0.04854369,0.00000000,8.65000000 +13411,chr22,50491152,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,100.00000000,0.00000000,-1.25000000,0.00000000,,0.44594595,77.00000000,3.40707965,0.02597403,0.00000000,7.80000000 +13412,chr22,50493057,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-0.34000000,0.00000000,,0.38202247,91.00000000,4.02654867,0.01098901,0.00000000,8.48000000 +13413,chr22,50497515,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,6.21000000 +13414,chr22,50498614,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +13415,chr22,50502104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-2.22000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.41000000 +13416,chr22,50505699,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.19801980,102.00000000,4.51327434,0.00980392,0.00000000,6.60000000 +13417,chr22,50511068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,2.56000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.46000000 +13418,chr22,50512078,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.48000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +13419,chr22,50512135,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,-0.83000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,5.66000000 +13420,chr22,50520623,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,64.00000000,0.00000000,-0.72000000,0.00000000,,0.10666667,82.00000000,3.62831858,0.07317073,0.00000000,5.04000000 +13421,chr22,50522253,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.41000000 +13422,chr22,50525476,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,80.00000000,0.00000000,-0.15000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.02247191,0.00000000,5.81000000 +13423,chr22,50525807,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-1.54000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.78000000 +13424,chr22,50528116,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,-0.84000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.00000000,0.00000000,5.92000000 +13425,chr22,50534112,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,0.77000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.00000000,0.00000000,6.36000000 +13426,chr22,50534684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.04000000 +13427,chr22,50536072,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.42000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,5.95000000 +13428,chr22,50536179,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.67000000 +13429,chr22,50536180,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.18000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.71000000 +13430,chr22,50537172,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +13431,chr22,50537216,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.51000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.70000000 +13432,chr22,50537257,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,0.98000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.03000000 +13433,chr22,50537644,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.75000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,5.73000000 +13434,chr22,50538738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.03000000,0.00000000,,0.32352941,68.00000000,3.00884956,0.00000000,0.00000000,8.99000000 +13435,chr22,50538916,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.04000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,5.83000000 +13436,chr22,50539833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.28000000 +13437,chr22,50542389,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.35000000,0.00000000,,0.17021277,96.00000000,4.24778761,0.02083333,0.00000000,5.98000000 +13438,chr22,50542556,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.20000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +13439,chr22,50543400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.70000000,0.00000000,,0.14432990,100.00000000,4.42477876,0.02000000,0.00000000,5.57000000 +13440,chr22,50543729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.53000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.04687500,0.00000000,6.61000000 +13441,chr22,50544110,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.70000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.72000000 +13442,chr22,50544557,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.06000000,0.00000000,,0.08695652,94.00000000,4.15929204,0.02127660,0.00000000,4.90000000 +13443,chr22,50545122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,6.94000000 +13444,chr22,50546840,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-1.36000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.00000000,0.00000000,6.71000000 +13445,chr22,50547303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-1.93000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.29000000 +13446,chr22,50547446,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,70.00000000,0.00000000,0.61000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +13447,chr22,50548858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.23000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.38000000 +13448,chr22,50550266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.29000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +13449,chr22,50561252,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.13000000,0.00000000,,0.21568627,103.00000000,4.55752212,0.00970874,0.00000000,6.65000000 +13450,chr22,50561917,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,36.00000000,0.00000000,-0.12000000,0.00000000,,0.19444444,40.00000000,1.76991150,0.10000000,0.00000000,2.87000000 +13451,chr22,50562962,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.14925373,73.00000000,3.23008850,0.08219178,0.00000000,4.10000000 +13452,chr22,50564122,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.89000000,0.00000000,,0.24000000,78.00000000,3.45132743,0.03846154,0.00000000,6.22000000 +13453,chr22,50564334,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.57000000 +13454,chr22,50564531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-2.58000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,7.12000000 +13455,chr22,50566731,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.54000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,5.98000000 +13456,chr22,50567230,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.04938272,0.00000000,5.72000000 +13457,chr22,50568287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.65000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.02222222,0.00000000,5.81000000 +13458,chr22,50568559,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.61000000 +13459,chr22,50569059,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,81.00000000,0.00000000,-1.87000000,0.00000000,,0.21917808,78.00000000,3.45132743,0.06410256,0.00000000,5.91000000 +13460,chr22,50570421,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +13461,chr22,50570496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +13462,chr22,50571623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.20000000,97.00000000,4.29203540,0.02061856,0.00000000,6.27000000 +13463,chr22,50571683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.24000000,0.00000000,,0.22330097,106.00000000,4.69026549,0.02830189,0.00000000,6.28000000 +13464,chr22,50572510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.86000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.68000000 +13465,chr22,50572686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.49000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,6.45000000 +13466,chr22,50572812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-1.31000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.41000000 +13467,chr22,50573504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.85000000,0.00000000,,0.14814815,86.00000000,3.80530973,0.04651163,0.00000000,4.46000000 +13468,chr22,50574643,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,1.72000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.23000000 +13469,chr22,50575035,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.88000000 +13470,chr22,50575343,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.14606742,92.00000000,4.07079646,0.03260870,0.00000000,4.97000000 +13471,chr22,50575569,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.05000000 +13472,chr22,50577128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,86.00000000,0.00000000,-0.37000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +13473,chr22,50577245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.21590909,93.00000000,4.11504425,0.05376344,0.00000000,6.26000000 +13474,chr22,50577409,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-0.31000000,0.00000000,,0.22000000,102.00000000,4.51327434,0.01960784,0.00000000,5.86000000 +13475,chr22,50577669,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-1.24000000,0.00000000,,0.25600000,130.00000000,5.75221239,0.03076923,0.00000000,5.99000000 +13476,chr22,50578867,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.32000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +13477,chr22,50578924,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,0.25000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.01030928,0.00000000,6.54000000 +13478,chr22,50578965,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,79.00000000,0.00000000,-0.98000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,5.04000000 +13479,chr22,50579047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,81.00000000,0.00000000,0.91000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,5.94000000 +13480,chr22,50579284,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.87000000 +13481,chr22,50579365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,-0.01000000,0.00000000,,0.08750000,80.00000000,3.53982301,0.00000000,0.00000000,5.52000000 +13482,chr22,50581640,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.09375000,67.00000000,2.96460177,0.04477612,0.00000000,4.72000000 +13483,chr22,50584979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,68.00000000,0.00000000,1.90000000,0.00000000,,0.16842105,98.00000000,4.33628319,0.02040816,0.00000000,5.70000000 +13484,chr22,50586113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,0.03000000,0.00000000,,0.14141414,100.00000000,4.42477876,0.01000000,0.00000000,5.68000000 +13485,chr22,50586925,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.11000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,6.45000000 +13486,chr22,50597958,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.17948718,0.00000000,82.00000000,0.00000000,-0.30000000,0.00000000,,0.24615385,76.00000000,3.36283186,0.14473684,0.00000000,5.79000000 +13487,chr22,50599940,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.26732673,103.00000000,4.55752212,0.00970874,0.00000000,6.48000000 +13488,chr22,50603603,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.35000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,6.57000000 +13489,chr22,50603605,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.57000000,0.00000000,,0.20430108,97.00000000,4.29203540,0.04123711,0.00000000,6.72000000 +13490,chr22,50606067,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.45000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.79000000 +13491,chr22,50606071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.56000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +13492,chr22,50607761,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,86.00000000,0.00000000,1.34000000,0.00000000,,0.23943662,75.00000000,3.31858407,0.04000000,0.00000000,5.61000000 +13493,chr22,50610154,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-1.96000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,5.60000000 +13494,chr22,50612909,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.10000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,3.33000000 +13495,chr22,50617090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.42000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.19753086,85.00000000,3.76106195,0.04705882,0.00000000,5.93000000 +13496,chr22,50621407,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.66000000,0.00000000,,0.20512821,83.00000000,3.67256637,0.06024096,0.00000000,6.27000000 +13497,chr22,50622024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.00000000,0.00000000,5.28000000 +13498,chr22,50623399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-1.22000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.94000000 +13499,chr22,50623623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.01515152,0.00000000,6.28000000 +13500,chr22,50624510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.03488372,0.00000000,5.87000000 +13501,chr22,50626470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.15463918,99.00000000,4.38053097,0.02020202,0.00000000,4.91000000 +13502,chr22,50627096,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,45.00000000,1.99115044,0.11111111,0.00000000,68.00000000,0.00000000,1.34000000,0.00000000,,0.16417910,76.00000000,3.36283186,0.09210526,0.00000000,5.12000000 +13503,chr22,50628109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.58000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.06666667,0.00000000,6.79000000 +13504,chr22,50632488,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.64000000 +13505,chr22,50639027,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,2.03000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +13506,chr22,50641766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.89000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +13507,chr22,50642329,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,0.30000000,0.00000000,,0.29670330,95.00000000,4.20353982,0.04210526,0.00000000,5.66000000 +13508,chr22,50644690,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.68000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.01075269,0.00000000,6.82000000 +13509,chr22,50645977,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,1.82000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.87000000 +13510,chr22,50648920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.67000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.44000000 +13511,chr22,50653486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.62000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,5.83000000 +13512,chr22,50654636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.30000000,0.00000000,,0.28813559,59.00000000,2.61061947,0.00000000,0.00000000,6.04000000 +13513,chr22,50656498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,0.69000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.31000000 +13514,chr22,50657521,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.46000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,5.60000000 +13515,chr22,50660336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.92000000,0.00000000,,0.24000000,79.00000000,3.49557522,0.05063291,0.00000000,5.73000000 +13516,chr22,50661434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.89000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.70000000 +13517,chr22,50663471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.73000000,0.00000000,,0.19090909,110.00000000,4.86725664,0.00000000,0.00000000,6.72000000 +13518,chr22,50663510,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.75000000,0.00000000,,0.19230769,104.00000000,4.60176991,0.00000000,0.00000000,6.69000000 +13519,chr22,50664167,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-1.75000000,0.00000000,,0.49295775,71.00000000,3.14159292,0.00000000,0.00000000,4.24000000 +13520,chr22,50665264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,5.87000000 +13521,chr22,50665742,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.44117647,70.00000000,3.09734513,0.01428571,0.00000000,8.37000000 +13522,chr22,50666252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.33000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.01408451,0.00000000,5.97000000 +13523,chr22,50668551,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.46000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.00000000 +13524,chr22,50669644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.44000000,0.00000000,,0.24615385,71.00000000,3.14159292,0.08450704,0.00000000,5.61000000 +13525,chr22,50670081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.65000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +13526,chr22,50670432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.74000000 +13527,chr22,50673933,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-2.32000000,0.00000000,,0.17307692,56.00000000,2.47787611,0.07142857,0.00000000,6.05000000 +13528,chr22,50677435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,-0.03000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,8.87000000 +13529,chr22,50678709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,66.00000000,0.00000000,-2.24000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.01250000,0.00000000,5.53000000 +13530,chr22,50683093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,1.23000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,5.96000000 +13531,chr22,50684165,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.20689655,60.00000000,2.65486726,0.01666667,0.00000000,6.41000000 +13532,chr22,50687700,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.41509434,56.00000000,2.47787611,0.03571429,0.00000000,8.19000000 +13533,chr22,50690220,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.14000000,0.00000000,,0.18627451,105.00000000,4.64601770,0.02857143,0.00000000,6.18000000 +13534,chr22,50690221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.18446602,106.00000000,4.69026549,0.02830189,0.00000000,6.27000000 +13535,chr22,50690896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.47000000,0.00000000,,0.21276596,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +13536,chr22,50692956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.56000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.28000000 +13537,chr22,50693308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.08000000,0.00000000,,0.17721519,82.00000000,3.62831858,0.03658537,0.00000000,6.26000000 +13538,chr22,50696565,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,6.05000000 +13539,chr22,50698166,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.15000000,0.00000000,,0.13043478,72.00000000,3.18584071,0.02777778,0.00000000,5.00000000 +13540,chr22,50698666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.91000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,6.22000000 +13541,chr22,50707711,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +13542,chr22,50714126,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.13000000,0.00000000,,0.14130435,93.00000000,4.11504425,0.00000000,0.00000000,5.89000000 +13543,chr22,50717305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.18032787,64.00000000,2.83185841,0.04687500,0.00000000,5.63000000 +13544,chr22,50719055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.20408163,102.00000000,4.51327434,0.01960784,0.00000000,6.33000000 +13545,chr22,50719683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,5.83000000 +13546,chr22,50722853,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,1.20000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.13000000 +13547,chr22,50724710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,91.00000000,0.00000000,0.65000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00990099,0.00000000,5.61000000 +13548,chr22,50733265,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,88.00000000,0.00000000,0.00000000,0.00000000,,0.21739130,97.00000000,4.29203540,0.04123711,0.00000000,5.02000000 +13549,chr22,50735620,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.50746269,69.00000000,3.05309735,0.01449275,0.00000000,8.40000000 +13550,chr22,50737198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.39000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.85000000 +13551,chr22,50739662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.84000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,6.29000000 +13552,chr22,50743558,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.26000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-2.04000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.03000000 +13553,chr22,50743971,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.67000000,20.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-1.07000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.01587302,0.00000000,5.83000000 +13554,chr22,50747800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.68000000 +13555,chr22,50747848,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.36000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +13556,chr22,50750718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.10000000,18.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.38000000,0.00000000,,0.23404255,48.00000000,2.12389381,0.02083333,0.00000000,2.87000000 +13557,chr22,50755837,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,48.13000000,32.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,38.00000000,0.00000000,-0.39000000,0.00000000,,0.29545455,44.00000000,1.94690265,0.00000000,0.00000000,2.82000000 +13558,chr22,50759174,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.76000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.99000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.12000000 +13559,chr22,50760141,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.00000000,0.00000000,,0.07142857,73.00000000,3.23008850,0.02739726,0.00000000,4.69000000 +13560,chr22,50760853,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.06000000,8.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.02000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.08000000 +13561,chr22,50771840,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.75000000,13.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.66000000,0.00000000,,0.11864407,60.00000000,2.65486726,0.00000000,0.00000000,5.92000000 +13562,chr22,50773552,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,54.50000000,18.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.16000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.75000000 +13563,chr22,50773779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,51.84000000,26.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,0.38000000,0.00000000,,0.15517241,58.00000000,2.56637168,0.00000000,0.00000000,5.30000000 +13564,chr22,50776757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.79000000,24.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,55.00000000,0.00000000,-1.43000000,0.00000000,,0.33898305,60.00000000,2.65486726,0.01666667,0.00000000,4.43000000 +13565,chr22,50778136,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,47.61000000,41.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.15000000,0.33000000,,0.19607843,51.00000000,2.25663717,0.00000000,0.00000000,5.60000000 +13566,chr22,50780578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.72000000 +13567,chr22,50783672,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.28000000,16.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.93000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,2.80000000 +13568,chr22,50784338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.22000000,19.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-1.15000000,0.00000000,,0.08928571,56.00000000,2.47787611,0.00000000,0.00000000,4.06000000 +13569,chr22,50785209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.46000000,27.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.14000000 +13570,chr22,50786519,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,39.71000000,63.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.52000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,4.00000000 +13571,chr22,50789463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.47000000,27.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.92000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,4.72000000 +13572,chr22,50790460,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,49.43000000,21.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-1.51000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.02380952,0.00000000,5.58000000 +13573,chr22,50791178,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,41.32000000,34.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.00000000,0.00000000,,0.20512821,40.00000000,1.76991150,0.02500000,0.00000000,4.53000000 +13574,chr22,50791190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,39.56000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.75000000,0.00000000,,0.18181818,35.00000000,1.54867257,0.02857143,0.00000000,2.78000000 +0,chr22,10719812,FP,T,,C,,-1.00000000,,,,,,,36.11000000,235.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.15909091,0.00000000,66.00000000,,0.60000000,6.00000000,,0.09900990,119.00000000,5.26548673,0.15126050,0.00000000,3.21000000 +1,chr22,10723639,FP,T,,C,,-1.00000000,,,,,,,36.79000000,206.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,62.00000000,,-0.71000000,0.00000000,,0.10465116,91.00000000,4.02654867,0.05494505,0.00000000,4.78000000 +2,chr22,10732184,FP,C,,G,,-1.00000000,,,,,,,52.88000000,56.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,75.00000000,,0.31000000,0.00000000,,0.02702703,301.00000000,13.31858407,0.01328904,0.00000000,4.35000000 +3,chr22,10757277,FP,C,,G,,-1.00000000,,,,,,,44.70000000,120.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,,0.08000000,0.00000000,,0.04635762,153.00000000,6.76991150,0.01307190,0.00000000,4.33000000 +4,chr22,10771748,FP,A,,G,,-1.00000000,,,,,,,51.24000000,73.00000000,ref,1.00000000,0.00000000,158.00000000,6.99115044,0.00632911,0.00000000,121.00000000,,-0.46000000,0.00000000,,0.02678571,455.00000000,20.13274336,0.01318681,0.00000000,6.93000000 +5,chr22,10773232,FP,C,,A,,-1.00000000,,,,,,,43.20000000,197.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,,0.93000000,0.00000000,,0.03816794,263.00000000,11.63716814,0.00380228,0.00000000,4.41000000 +6,chr22,11051871,FP,C,,T,,-1.00000000,,,,,,,38.48000000,266.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.01052632,0.00000000,90.00000000,,-0.67000000,8.48000000,,0.03875969,259.00000000,11.46017699,0.00386100,0.00000000,3.42000000 +7,chr22,12054090,FP,A,,T,,-1.00000000,,,,,,,37.24000000,58.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,6.00000000,,-0.10000000,0.00000000,,0.44444444,37.00000000,1.63716814,0.02702703,0.00000000,3.77000000 +8,chr22,12362232,FP,C,,G,,-1.00000000,,,,,,,36.53000000,96.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-2.16000000,0.00000000,,0.05468750,131.00000000,5.79646018,0.02290076,0.00000000,4.34000000 +9,chr22,12422486,FP,G,,A,,-1.00000000,,,,,,,56.94000000,22.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,,2.19000000,0.00000000,,0.05442177,147.00000000,6.50442478,0.00000000,0.00000000,4.44000000 +10,chr22,12422495,FP,T,,C,,-1.00000000,,,,,,,56.95000000,21.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,68.00000000,,3.30000000,0.00000000,,0.05594406,144.00000000,6.37168142,0.00000000,0.00000000,4.52000000 +11,chr22,12521645,FP,G,,T,,-1.00000000,,,,,,,54.13000000,33.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,62.00000000,,-1.17000000,2.98000000,,0.04807692,106.00000000,4.69026549,0.01886792,0.00000000,3.21000000 +12,chr22,12567591,FP,T,,C,,-1.00000000,,,,,,,46.26000000,59.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,-0.92000000,0.00000000,,0.09523810,67.00000000,2.96460177,0.05970149,0.00000000,4.82000000 +13,chr22,12596202,FP,G,,A,,-1.00000000,,,,,,,54.60000000,47.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.04687500,0.00000000,72.00000000,,-3.08000000,0.00000000,,0.03773585,163.00000000,7.21238938,0.02453988,0.00000000,3.37000000 +14,chr22,12596214,FP,A,,G,,-1.00000000,,,,,,,54.13000000,51.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,-3.30000000,0.00000000,,0.05063291,160.00000000,7.07964602,0.01250000,0.00000000,4.26000000 +15,chr22,12600117,FP,T,,A,,-1.00000000,,,,,,,52.40000000,50.00000000,ref,1.00000000,0.01587302,63.00000000,2.78761062,0.00000000,0.00000000,72.00000000,,1.37000000,0.00000000,,0.05263158,133.00000000,5.88495575,0.00000000,0.00000000,4.42000000 +16,chr22,12629774,FP,G,,A,,-1.00000000,,,,,,,53.06000000,36.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.03448276,0.00000000,64.00000000,,1.58000000,4.71000000,,0.04687500,130.00000000,5.75221239,0.00769231,0.00000000,3.40000000 +17,chr22,12703199,FP,A,,G,,-1.00000000,,,,,,,54.82000000,40.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,79.00000000,,-0.31000000,5.50000000,,0.05737705,125.00000000,5.53097345,0.02400000,0.00000000,3.05000000 +18,chr22,12703201,FP,A,,G,,-1.00000000,,,,,,,54.37000000,44.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,,-0.31000000,4.57000000,,0.05737705,125.00000000,5.53097345,0.02400000,0.00000000,3.05000000 +19,chr22,15759012,FP,T,,C,,-1.00000000,,,,,,,49.39000000,33.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,,1.39000000,0.00000000,,0.04794521,147.00000000,6.50442478,0.00680272,0.00000000,4.83000000 +20,chr22,16055685,FP,C,,T,,-1.00000000,,,,,,,58.28000000,7.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,,0.29000000,3.41000000,,0.07407407,84.00000000,3.71681416,0.02380952,0.00000000,3.49000000 +21,chr22,16156949,FP,G,,A,,-1.00000000,,,,,,,56.56000000,10.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.67000000,0.00000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,4.37000000 +22,chr22,16417778,FP,G,,A,,-1.00000000,,,,,,,53.44000000,17.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,56.00000000,,1.28000000,0.00000000,,0.06896552,92.00000000,4.07079646,0.05434783,0.00000000,2.94000000 +23,chr22,16431609,FP,C,,A,,-1.00000000,,,,,,,46.63000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,,2.70000000,0.00000000,,0.10389610,80.00000000,3.53982301,0.02500000,0.00000000,3.76000000 +24,chr22,16757562,FP,A,,G,,-1.00000000,,,,,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,63.00000000,,-1.86000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.03947368,0.00000000,4.50000000 +25,chr22,16757564,FP,G,,C,,-1.00000000,,,,,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,61.00000000,,-1.86000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.03947368,0.00000000,4.52000000 +26,chr22,16791815,FP,G,,A,,-1.00000000,,,,,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,,-0.31000000,0.00000000,,0.21153846,61.00000000,2.69911504,0.14754098,0.00000000,2.82000000 +27,chr22,19046566,FP,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,47.00000000,,1.01000000,0.00000000,,0.23684211,91.00000000,4.02654867,0.00000000,0.00000000,3.93000000 +28,chr22,19281798,FP,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.62000000,0.00000000,,0.06976744,87.00000000,3.84955752,0.01149425,0.00000000,4.87000000 +29,chr22,19661512,FP,C,,T,,-1.00000000,,,,,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,,-1.66000000,0.00000000,,0.19117647,74.00000000,3.27433628,0.06756757,0.00000000,6.20000000 +30,chr22,20333469,FP,G,,A,,-1.00000000,,,,,,,53.76000000,20.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,,-2.33000000,0.00000000,,0.07142857,84.00000000,3.71681416,0.00000000,0.00000000,5.24000000 +31,chr22,20628424,FP,C,,A,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-1.67000000,0.00000000,,0.10975610,91.00000000,4.02654867,0.09890110,0.00000000,4.75000000 +32,chr22,21566114,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,10.00000000,,-0.36000000,0.00000000,,0.48648649,37.00000000,1.63716814,0.00000000,0.00000000,3.77000000 +33,chr22,22376420,FP,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,61.00000000,,1.26000000,3.19000000,,0.06172840,84.00000000,3.71681416,0.02380952,0.00000000,3.35000000 +34,chr22,22806873,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05555556,18.00000000,0.79646018,0.00000000,0.00000000,3.00000000,,1.47000000,0.00000000,,0.40000000,25.00000000,1.10619469,0.00000000,0.00000000,3.00000000 +35,chr22,23640809,FP,T,,C,,-1.00000000,,,,,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-1.01000000,4.36000000,,0.05660377,109.00000000,4.82300885,0.02752294,0.00000000,3.97000000 +36,chr22,23641084,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-2.62000000,4.60000000,,0.09782609,93.00000000,4.11504425,0.00000000,0.00000000,4.79000000 +37,chr22,23957570,FP,C,,A,,-1.00000000,,,,,,,16.05000000,86.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.29000000,0.00000000,,0.77777778,9.00000000,0.39823009,0.00000000,0.00000000,3.00000000 +38,chr22,25517443,FP,G,,T,,-1.00000000,,,,,,,58.54000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.42000000,2.57000000,,0.09677419,95.00000000,4.20353982,0.02105263,0.00000000,3.61000000 +39,chr22,25606334,FP,C,,T,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,3.14000000,0.00000000,,0.13186813,91.00000000,4.02654867,0.00000000,0.00000000,5.03000000 +40,chr22,25607031,FP,C,,T,,-1.00000000,,,,,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,3.19000000,0.00000000,,0.06593407,92.00000000,4.07079646,0.01086957,0.00000000,4.69000000 +41,chr22,25607285,FP,A,,G,,-1.00000000,,,,,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,-1.18000000,0.00000000,,0.07446809,98.00000000,4.33628319,0.03061224,0.00000000,4.80000000 +42,chr22,26721040,FP,C,,G,,-1.00000000,,,,,,,59.37000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,,1.67000000,0.00000000,,0.14285714,62.00000000,2.74336283,0.03225806,0.00000000,5.36000000 +43,chr22,27292155,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.89000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.01098901,0.00000000,4.42000000 +44,chr22,30985452,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,1.16000000,0.00000000,,0.13636364,69.00000000,3.05309735,0.04347826,0.00000000,5.10000000 +45,chr22,32312365,FP,G,,A,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,,0.29000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.36000000 +46,chr22,32351500,FP,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,,2.25000000,0.00000000,,0.28260870,53.00000000,2.34513274,0.01886792,0.00000000,8.28000000 +47,chr22,32373281,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,,-1.70000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.04347826,0.00000000,6.26000000 +48,chr22,32426904,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,,1.61000000,0.00000000,,0.25000000,58.00000000,2.56637168,0.08620690,0.20547945,5.62000000 +49,chr22,32814141,FP,T,,A,,-1.00000000,,,,,,,59.49000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.45000000,11.00000000,,-1.69000000,0.00000000,,0.45833333,27.00000000,1.19469027,0.07407407,0.50000000,3.64000000 +50,chr22,33089391,FP,T,,C,,-1.00000000,,,,,,,57.07000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.03846154,59.00000000,,-1.18000000,0.00000000,,0.13846154,70.00000000,3.09734513,0.07142857,0.00000000,4.18000000 +51,chr22,33128732,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.50000000,28.00000000,,1.65000000,0.00000000,,0.40476190,44.00000000,1.94690265,0.02272727,0.48837209,3.22000000 +52,chr22,33350540,FP,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,,-0.78000000,0.00000000,,0.30434783,84.00000000,3.71681416,0.01190476,0.00000000,8.60000000 +53,chr22,34479799,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.52941176,13.00000000,,-2.06000000,0.00000000,,0.31818182,45.00000000,1.99115044,0.00000000,0.19642857,3.42000000 +54,chr22,36892925,FP,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.06000000,0.00000000,,0.05882353,86.00000000,3.80530973,0.01162791,0.00000000,5.43000000 +55,chr22,36932540,FP,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,1.78000000,0.00000000,,0.07476636,113.00000000,5.00000000,0.03539823,0.00000000,4.65000000 +56,chr22,40339748,FP,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,0.81000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.74000000 +57,chr22,40800388,FP,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,0.37000000,0.00000000,,0.07777778,91.00000000,4.02654867,0.01098901,0.00000000,5.20000000 +58,chr22,43144972,FP,T,,C,,-1.00000000,,,,,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,,-0.60000000,0.00000000,,0.15555556,94.00000000,4.15929204,0.04255319,0.00000000,5.69000000 +59,chr22,46227138,FP,A,,G,,-1.00000000,,,,,,,58.32000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,60.00000000,,-1.59000000,0.00000000,,0.05376344,98.00000000,4.33628319,0.04081633,0.00000000,4.98000000 +60,chr22,46841073,FP,T,,A,,-1.00000000,,,,,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,,2.15000000,0.00000000,,0.30357143,57.00000000,2.52212389,0.00000000,0.00000000,6.14000000 +61,chr22,47603985,FP,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,1.49000000,0.00000000,,0.07462687,67.00000000,2.96460177,0.00000000,0.00000000,4.16000000 +62,chr22,48440427,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,-0.41000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.00000000,0.00000000,5.65000000 +63,chr22,49299176,FP,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,56.00000000,,0.42000000,0.00000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,2.76000000 +64,chr22,49407892,FP,G,,A,,-1.00000000,,,,,,,50.37000000,22.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,60.00000000,,-2.77000000,0.00000000,,0.11666667,66.00000000,2.92035398,0.09090909,0.00000000,4.39000000 +65,chr22,50601301,FP,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,63.00000000,,-0.65000000,0.00000000,,0.05434783,94.00000000,4.15929204,0.01063830,0.00000000,5.02000000 +0,chr22,11282211,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1,chr22,11282402,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2,chr22,11344184,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +3,chr22,11363272,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +4,chr22,11371033,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +5,chr22,11547776,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +6,chr22,11557481,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +7,chr22,11568186,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +8,chr22,11590881,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +9,chr22,11705840,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +10,chr22,11803481,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +11,chr22,11844681,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +12,chr22,11918766,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +13,chr22,12055657,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +14,chr22,12210278,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +15,chr22,12217261,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +16,chr22,12351115,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +17,chr22,12351459,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +18,chr22,12366897,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +19,chr22,12392890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +20,chr22,12427462,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +21,chr22,12493547,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +22,chr22,12497260,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +23,chr22,12506883,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +24,chr22,12512621,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +25,chr22,12512628,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +26,chr22,12512692,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +27,chr22,12513036,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +28,chr22,12514982,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +29,chr22,12523167,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +30,chr22,12523414,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +31,chr22,12526443,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +32,chr22,12530336,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +33,chr22,12532390,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +34,chr22,12541581,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +35,chr22,12545158,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +36,chr22,12562833,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +37,chr22,12572402,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +38,chr22,12573957,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +39,chr22,12576226,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +40,chr22,12580696,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +41,chr22,12584428,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +42,chr22,12608473,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +43,chr22,12612117,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +44,chr22,12636371,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +45,chr22,12900575,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +46,chr22,15155549,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +47,chr22,15156775,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +48,chr22,15167174,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +49,chr22,15167186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +50,chr22,15168866,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +51,chr22,15171543,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +52,chr22,15176212,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +53,chr22,15180937,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +54,chr22,15180945,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +55,chr22,15182119,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +56,chr22,15186274,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +57,chr22,15186396,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +58,chr22,15195814,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +59,chr22,15202095,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +60,chr22,15206346,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +61,chr22,15209190,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +62,chr22,15209196,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +63,chr22,15220500,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +64,chr22,15222153,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +65,chr22,15222186,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +66,chr22,15223066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +67,chr22,15227906,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +68,chr22,15229992,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +69,chr22,15243794,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +70,chr22,15248686,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +71,chr22,15248994,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +72,chr22,15249023,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +73,chr22,15254369,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +74,chr22,15270644,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +75,chr22,15274832,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +76,chr22,15280902,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +77,chr22,15281327,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +78,chr22,15282867,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +79,chr22,15284316,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +80,chr22,15290487,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +81,chr22,15295018,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +82,chr22,15308661,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +83,chr22,15313814,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +84,chr22,15314315,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +85,chr22,15318176,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +86,chr22,15320153,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +87,chr22,15321908,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +88,chr22,15322045,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +89,chr22,15329690,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +90,chr22,15331785,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +91,chr22,15332669,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +92,chr22,15334578,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +93,chr22,15340480,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +94,chr22,15341400,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +95,chr22,15341403,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +96,chr22,15349257,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +97,chr22,15350971,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +98,chr22,15363818,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +99,chr22,15377040,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +100,chr22,15384719,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +101,chr22,15384753,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +102,chr22,15387306,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +103,chr22,15388486,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +104,chr22,15388533,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +105,chr22,15390877,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +106,chr22,15393992,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +107,chr22,15393994,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +108,chr22,15404230,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +109,chr22,15410057,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +110,chr22,15416777,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +111,chr22,15437116,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +112,chr22,15445917,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +113,chr22,15449903,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +114,chr22,15451478,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +115,chr22,15460337,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +116,chr22,15460486,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +117,chr22,15463012,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +118,chr22,15465945,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +119,chr22,15475556,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +120,chr22,15478743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +121,chr22,15486757,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +122,chr22,15492467,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +123,chr22,15496499,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +124,chr22,15500082,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +125,chr22,15501367,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +126,chr22,15504150,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +127,chr22,15523969,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +128,chr22,15529978,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +129,chr22,15531577,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +130,chr22,15535306,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +131,chr22,15537402,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +132,chr22,15537495,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +133,chr22,15538037,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +134,chr22,15544463,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +135,chr22,15557396,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +136,chr22,15564388,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +137,chr22,15590991,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +138,chr22,15599453,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +139,chr22,15616659,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +140,chr22,15619386,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +141,chr22,15627614,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +142,chr22,15636137,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +143,chr22,15636278,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +144,chr22,15636847,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +145,chr22,15644844,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +146,chr22,15680163,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +147,chr22,15696394,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +148,chr22,15733248,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +149,chr22,15758895,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +150,chr22,15830155,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +151,chr22,15835753,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +152,chr22,15876271,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +153,chr22,15876272,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +154,chr22,15879736,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +155,chr22,15896581,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +156,chr22,15900653,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +157,chr22,16041898,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +158,chr22,16061097,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +159,chr22,16066952,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +160,chr22,16112670,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +161,chr22,16115721,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +162,chr22,16129768,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +163,chr22,16133448,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +164,chr22,16136054,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +165,chr22,16158311,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +166,chr22,16184779,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +167,chr22,16184786,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +168,chr22,16185573,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +169,chr22,16185596,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +170,chr22,16186028,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +171,chr22,16186033,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +172,chr22,16186034,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +173,chr22,16186044,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +174,chr22,16186369,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +175,chr22,16186430,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +176,chr22,16187657,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +177,chr22,16187670,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +178,chr22,16187671,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +179,chr22,16187844,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +180,chr22,16187853,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +181,chr22,16187862,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +182,chr22,16188388,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +183,chr22,16188700,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +184,chr22,16188735,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +185,chr22,16188783,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +186,chr22,16188792,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +187,chr22,16188843,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +188,chr22,16189056,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +189,chr22,16189325,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +190,chr22,16189536,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +191,chr22,16201211,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +192,chr22,16237806,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +193,chr22,16238030,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +194,chr22,16238094,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +195,chr22,16250169,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +196,chr22,16255921,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +197,chr22,16257904,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +198,chr22,16257932,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +199,chr22,16257973,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +200,chr22,16257995,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +201,chr22,16258015,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +202,chr22,16258513,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +203,chr22,16260131,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +204,chr22,16260477,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +205,chr22,16260550,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +206,chr22,16260577,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +207,chr22,16260684,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +208,chr22,16260910,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +209,chr22,16261082,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +210,chr22,16266938,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +211,chr22,16269511,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +212,chr22,16269513,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +213,chr22,16278107,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +214,chr22,16278121,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +215,chr22,16278848,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +216,chr22,16278850,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +217,chr22,16279612,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +218,chr22,16344925,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +219,chr22,16344963,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +220,chr22,16344969,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +221,chr22,16345471,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +222,chr22,16354914,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +223,chr22,16355047,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +224,chr22,16356376,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +225,chr22,16356892,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +226,chr22,16357070,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +227,chr22,16359146,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +228,chr22,16359151,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +229,chr22,16374169,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +230,chr22,16374197,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +231,chr22,16374612,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +232,chr22,16378639,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +233,chr22,16380986,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +234,chr22,16381124,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +235,chr22,16381257,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +236,chr22,16381313,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +237,chr22,16381869,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +238,chr22,16387212,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +239,chr22,16387232,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +240,chr22,16387416,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +241,chr22,16387417,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +242,chr22,16387469,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +243,chr22,16392396,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +244,chr22,16392414,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +245,chr22,16402131,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +246,chr22,16402344,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +247,chr22,16402493,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +248,chr22,16402887,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +249,chr22,16403865,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +250,chr22,16404102,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +251,chr22,16407574,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +252,chr22,16409399,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +253,chr22,16412132,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +254,chr22,16417564,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +255,chr22,16437026,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +256,chr22,16585144,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +257,chr22,16619840,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +258,chr22,16678727,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +259,chr22,16683037,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +260,chr22,16688829,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +261,chr22,16688839,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +262,chr22,16706662,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +263,chr22,16706663,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +264,chr22,16738360,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +265,chr22,16740318,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +266,chr22,16743540,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +267,chr22,16743654,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +268,chr22,16767817,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +269,chr22,16769535,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +270,chr22,16769582,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +271,chr22,16769805,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +272,chr22,16771361,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +273,chr22,16774406,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +274,chr22,16785366,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +275,chr22,16787324,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +276,chr22,16887640,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +277,chr22,16887854,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +278,chr22,16894636,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +279,chr22,16896294,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +280,chr22,16898680,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +281,chr22,16898787,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +282,chr22,16899511,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +283,chr22,16903629,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +284,chr22,16905361,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +285,chr22,16906514,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +286,chr22,16926626,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +287,chr22,16929768,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +288,chr22,16935564,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +289,chr22,16997838,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +290,chr22,17117519,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +291,chr22,17120858,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +292,chr22,17123301,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +293,chr22,17125884,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +294,chr22,17147758,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +295,chr22,17185389,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +296,chr22,17219660,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +297,chr22,17219665,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +298,chr22,17237716,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +299,chr22,17253626,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +300,chr22,17254276,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +301,chr22,17302461,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +302,chr22,17308006,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +303,chr22,17309459,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +304,chr22,17309995,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +305,chr22,17325446,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +306,chr22,17328154,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +307,chr22,17329986,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +308,chr22,17428828,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +309,chr22,17466881,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +310,chr22,17521351,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +311,chr22,17524493,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +312,chr22,17525225,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +313,chr22,17529665,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +314,chr22,17532754,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +315,chr22,17532972,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +316,chr22,17533738,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +317,chr22,17534798,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +318,chr22,17549861,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +319,chr22,17552574,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +320,chr22,17565011,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +321,chr22,17565024,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +322,chr22,17565373,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +323,chr22,17599942,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +324,chr22,17627032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +325,chr22,17656232,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +326,chr22,17686246,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +327,chr22,17691595,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +328,chr22,17755525,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +329,chr22,17810210,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +330,chr22,17810285,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +331,chr22,17814830,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +332,chr22,17814831,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +333,chr22,17814928,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +334,chr22,17818927,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +335,chr22,17820117,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +336,chr22,17830906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +337,chr22,17832302,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +338,chr22,17837577,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +339,chr22,17843632,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +340,chr22,17850442,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +341,chr22,17864361,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +342,chr22,17865150,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +343,chr22,17868809,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +344,chr22,17877295,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +345,chr22,17877333,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +346,chr22,17892159,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +347,chr22,17892161,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +348,chr22,17900470,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +349,chr22,17911167,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +350,chr22,17961883,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +351,chr22,17963186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +352,chr22,17963925,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +353,chr22,17982521,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +354,chr22,17983394,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +355,chr22,17993054,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +356,chr22,17995908,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +357,chr22,18006282,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +358,chr22,18009413,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +359,chr22,18041240,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +360,chr22,18051268,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +361,chr22,18051847,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +362,chr22,18106483,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +363,chr22,18123074,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +364,chr22,18127480,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +365,chr22,18172400,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +366,chr22,18186065,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +367,chr22,18196944,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +368,chr22,18235120,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +369,chr22,18238803,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +370,chr22,18239000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +371,chr22,18343587,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +372,chr22,18346371,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +373,chr22,18346396,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +374,chr22,18358385,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +375,chr22,18368548,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +376,chr22,18368700,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +377,chr22,18368750,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +378,chr22,18369909,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +379,chr22,18370631,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +380,chr22,18371985,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +381,chr22,18373727,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +382,chr22,18381587,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +383,chr22,18493332,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +384,chr22,18509155,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +385,chr22,18513607,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +386,chr22,18514860,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +387,chr22,18530126,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +388,chr22,18622349,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +389,chr22,18624726,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +390,chr22,18625245,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +391,chr22,18637196,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +392,chr22,18710676,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +393,chr22,18728719,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +394,chr22,18730180,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +395,chr22,18730477,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +396,chr22,18737146,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +397,chr22,18738634,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +398,chr22,18748704,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +399,chr22,18775887,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +400,chr22,18776636,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +401,chr22,18780379,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +402,chr22,18781632,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +403,chr22,18787890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +404,chr22,18789871,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +405,chr22,18848572,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +406,chr22,18855350,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +407,chr22,18855445,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +408,chr22,18855795,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +409,chr22,18858136,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +410,chr22,18858575,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +411,chr22,18859221,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +412,chr22,18872375,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +413,chr22,18876362,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +414,chr22,18877633,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +415,chr22,18881633,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +416,chr22,18883352,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +417,chr22,18940813,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +418,chr22,18943456,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +419,chr22,18943553,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +420,chr22,18944023,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +421,chr22,18963201,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +422,chr22,18964723,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +423,chr22,18969616,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +424,chr22,18969863,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +425,chr22,18970080,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +426,chr22,18989905,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +427,chr22,19009052,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +428,chr22,19021359,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +429,chr22,19023845,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +430,chr22,19024340,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +431,chr22,19024358,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +432,chr22,19024998,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +433,chr22,19025342,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +434,chr22,19025589,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +435,chr22,19026284,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +436,chr22,19026770,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +437,chr22,19026841,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +438,chr22,19026846,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +439,chr22,19026951,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +440,chr22,19026995,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +441,chr22,19027032,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +442,chr22,19027451,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +443,chr22,19032132,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +444,chr22,19032568,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +445,chr22,19032803,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +446,chr22,19033903,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +447,chr22,19034662,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +448,chr22,19052644,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +449,chr22,19058419,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +450,chr22,19084177,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +451,chr22,19084569,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +452,chr22,19084970,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +453,chr22,19103573,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +454,chr22,19109160,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +455,chr22,19112300,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +456,chr22,19112301,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +457,chr22,19112304,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +458,chr22,19112307,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +459,chr22,19114038,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +460,chr22,19129374,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +461,chr22,19132032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +462,chr22,19141046,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +463,chr22,19144548,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +464,chr22,19196584,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +465,chr22,19227113,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +466,chr22,19275329,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +467,chr22,19288428,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +468,chr22,19334199,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +469,chr22,19535632,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +470,chr22,19656780,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +471,chr22,19658083,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +472,chr22,19660896,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +473,chr22,19691313,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +474,chr22,19736701,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +475,chr22,19879526,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +476,chr22,19931945,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +477,chr22,19970499,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +478,chr22,20006657,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +479,chr22,20164190,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +480,chr22,20164250,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +481,chr22,20164253,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +482,chr22,20201597,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +483,chr22,20231969,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +484,chr22,20232643,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +485,chr22,20297082,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +486,chr22,20304135,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +487,chr22,20333132,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +488,chr22,20333208,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +489,chr22,20333692,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +490,chr22,20334366,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +491,chr22,20334760,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +492,chr22,20334866,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +493,chr22,20334904,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +494,chr22,20335164,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +495,chr22,20336353,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +496,chr22,20342855,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +497,chr22,20346352,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +498,chr22,20355022,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +499,chr22,20360882,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +500,chr22,20370565,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +501,chr22,20372029,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +502,chr22,20373042,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +503,chr22,20458271,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +504,chr22,20535980,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +505,chr22,20589868,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +506,chr22,20624249,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +507,chr22,20652128,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +508,chr22,20657936,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +509,chr22,20658281,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +510,chr22,20679865,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +511,chr22,20702143,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +512,chr22,20826067,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +513,chr22,21006457,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +514,chr22,21007235,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +515,chr22,21010870,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +516,chr22,21041916,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +517,chr22,21049824,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +518,chr22,21080271,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +519,chr22,21088276,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +520,chr22,21088994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +521,chr22,21090612,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +522,chr22,21092400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +523,chr22,21094015,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +524,chr22,21094068,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +525,chr22,21094113,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +526,chr22,21094135,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +527,chr22,21097209,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +528,chr22,21097378,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +529,chr22,21097662,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +530,chr22,21103357,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +531,chr22,21113732,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +532,chr22,21122885,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +533,chr22,21123494,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +534,chr22,21123524,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +535,chr22,21135346,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +536,chr22,21135361,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +537,chr22,21139041,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +538,chr22,21142533,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +539,chr22,21150834,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +540,chr22,21152155,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +541,chr22,21156182,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +542,chr22,21159873,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +543,chr22,21160367,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +544,chr22,21160832,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +545,chr22,21160856,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +546,chr22,21164196,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +547,chr22,21164369,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +548,chr22,21164400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +549,chr22,21164546,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +550,chr22,21171345,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +551,chr22,21173414,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +552,chr22,21175288,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +553,chr22,21175505,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +554,chr22,21178272,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +555,chr22,21181521,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +556,chr22,21181596,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +557,chr22,21181878,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +558,chr22,21183445,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +559,chr22,21183872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +560,chr22,21184120,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +561,chr22,21184501,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +562,chr22,21184505,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +563,chr22,21196921,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +564,chr22,21201076,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +565,chr22,21201100,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +566,chr22,21201429,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +567,chr22,21221290,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +568,chr22,21233006,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +569,chr22,21239042,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +570,chr22,21248413,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +571,chr22,21250488,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +572,chr22,21251389,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +573,chr22,21264809,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +574,chr22,21265555,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +575,chr22,21265605,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +576,chr22,21265609,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +577,chr22,21281112,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +578,chr22,21281135,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +579,chr22,21285835,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +580,chr22,21287521,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +581,chr22,21289008,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +582,chr22,21289443,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +583,chr22,21299537,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +584,chr22,21310688,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +585,chr22,21326525,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +586,chr22,21328232,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +587,chr22,21328866,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +588,chr22,21328998,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +589,chr22,21329538,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +590,chr22,21333421,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +591,chr22,21333798,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +592,chr22,21334667,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +593,chr22,21336082,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +594,chr22,21336571,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +595,chr22,21336796,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +596,chr22,21337531,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +597,chr22,21339235,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +598,chr22,21341242,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +599,chr22,21352210,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +600,chr22,21358312,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +601,chr22,21358822,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +602,chr22,21368459,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +603,chr22,21402130,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +604,chr22,21414637,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +605,chr22,21576408,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +606,chr22,21686006,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +607,chr22,21691026,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +608,chr22,21692281,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +609,chr22,21692364,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +610,chr22,21699591,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +611,chr22,21699596,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +612,chr22,21741631,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +613,chr22,21742717,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +614,chr22,21778696,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +615,chr22,21795309,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +616,chr22,21818955,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +617,chr22,21847063,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +618,chr22,21854901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +619,chr22,21884000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +620,chr22,21885661,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +621,chr22,21893010,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +622,chr22,21912598,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +623,chr22,21913914,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +624,chr22,21930952,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +625,chr22,22102173,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +626,chr22,22102222,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +627,chr22,22108915,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +628,chr22,22109183,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +629,chr22,22117335,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +630,chr22,22135515,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +631,chr22,22137471,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +632,chr22,22143788,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +633,chr22,22144390,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +634,chr22,22144396,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +635,chr22,22144410,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +636,chr22,22147102,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +637,chr22,22150242,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +638,chr22,22150423,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +639,chr22,22154039,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +640,chr22,22159328,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +641,chr22,22159852,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +642,chr22,22161743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +643,chr22,22161755,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +644,chr22,22173173,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +645,chr22,22225910,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +646,chr22,22225921,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +647,chr22,22226055,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +648,chr22,22229859,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +649,chr22,22236679,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +650,chr22,22238631,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +651,chr22,22241403,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +652,chr22,22275243,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +653,chr22,22289434,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +654,chr22,22291124,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +655,chr22,22316463,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +656,chr22,22337538,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +657,chr22,22352714,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +658,chr22,22357928,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +659,chr22,22368981,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +660,chr22,22368996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +661,chr22,22398921,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +662,chr22,22514169,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +663,chr22,22514173,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +664,chr22,22582378,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +665,chr22,22628088,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +666,chr22,22635543,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +667,chr22,22635920,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +668,chr22,22636997,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +669,chr22,22637456,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +670,chr22,22637473,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +671,chr22,22640497,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +672,chr22,22643348,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +673,chr22,22644135,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +674,chr22,22644994,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +675,chr22,22645128,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +676,chr22,22645223,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +677,chr22,22645295,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +678,chr22,22645415,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +679,chr22,22646029,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +680,chr22,22646037,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +681,chr22,22654102,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +682,chr22,22654158,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +683,chr22,22773995,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +684,chr22,22810153,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +685,chr22,22855266,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +686,chr22,22866410,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +687,chr22,22875478,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +688,chr22,22899217,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +689,chr22,22900623,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +690,chr22,22901488,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +691,chr22,22905193,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +692,chr22,22906669,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +693,chr22,23081777,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +694,chr22,23082084,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +695,chr22,23086247,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +696,chr22,23088903,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +697,chr22,23089160,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +698,chr22,23091561,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +699,chr22,23091617,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +700,chr22,23109588,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +701,chr22,23170073,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +702,chr22,23170626,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +703,chr22,23172263,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +704,chr22,23172793,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +705,chr22,23178907,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +706,chr22,23180482,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +707,chr22,23194956,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +708,chr22,23194973,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +709,chr22,23196782,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +710,chr22,23295838,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +711,chr22,23310769,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +712,chr22,23311002,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +713,chr22,23311023,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +714,chr22,23311693,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +715,chr22,23315290,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +716,chr22,23317083,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +717,chr22,23317175,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +718,chr22,23318605,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +719,chr22,23319180,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +720,chr22,23319608,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +721,chr22,23320153,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +722,chr22,23320452,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +723,chr22,23326623,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +724,chr22,23327129,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +725,chr22,23327137,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +726,chr22,23489773,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +727,chr22,23489787,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +728,chr22,23493082,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +729,chr22,23497733,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +730,chr22,23500470,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +731,chr22,23502628,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +732,chr22,23502949,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +733,chr22,23593400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +734,chr22,23595148,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +735,chr22,23595160,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +736,chr22,23595161,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +737,chr22,23595169,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +738,chr22,23595176,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +739,chr22,23595332,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +740,chr22,23668237,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +741,chr22,23683303,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +742,chr22,23754754,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +743,chr22,23754756,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +744,chr22,23754771,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +745,chr22,23754778,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +746,chr22,23759471,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +747,chr22,23797241,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +748,chr22,23808048,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +749,chr22,23809528,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +750,chr22,23832914,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +751,chr22,23839516,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +752,chr22,23892306,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +753,chr22,23893272,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +754,chr22,24102702,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +755,chr22,24211244,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +756,chr22,24213637,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +757,chr22,24213670,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +758,chr22,24213708,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +759,chr22,24259872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +760,chr22,24259904,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +761,chr22,24261561,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +762,chr22,24424484,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +763,chr22,24615450,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +764,chr22,24626710,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +765,chr22,24647820,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +766,chr22,24652130,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +767,chr22,24652146,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +768,chr22,24671903,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +769,chr22,24671908,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +770,chr22,24699473,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +771,chr22,24704716,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +772,chr22,24704807,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +773,chr22,24711599,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +774,chr22,24713060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +775,chr22,24748709,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +776,chr22,24750681,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +777,chr22,24750718,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +778,chr22,24816896,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +779,chr22,24817476,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +780,chr22,24818157,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +781,chr22,24818443,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +782,chr22,24818528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +783,chr22,24819003,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +784,chr22,24845870,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +785,chr22,24859613,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +786,chr22,24864803,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +787,chr22,24866381,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +788,chr22,24873679,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +789,chr22,24889995,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +790,chr22,24919071,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +791,chr22,24919129,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +792,chr22,24940108,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +793,chr22,24940462,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +794,chr22,24945217,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +795,chr22,24952463,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +796,chr22,24960686,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +797,chr22,24961441,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +798,chr22,25004311,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +799,chr22,25007497,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +800,chr22,25009792,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +801,chr22,25031174,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +802,chr22,25036678,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +803,chr22,25053963,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +804,chr22,25218678,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +805,chr22,25219743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +806,chr22,25232918,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +807,chr22,25232977,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +808,chr22,25233009,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +809,chr22,25245243,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +810,chr22,25246283,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +811,chr22,25246284,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +812,chr22,25247516,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +813,chr22,25253398,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +814,chr22,25264413,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +815,chr22,25286278,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +816,chr22,25315099,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +817,chr22,25317479,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +818,chr22,25317490,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +819,chr22,25317491,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +820,chr22,25317493,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +821,chr22,25317494,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +822,chr22,25317500,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +823,chr22,25341859,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +824,chr22,25380745,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +825,chr22,25382234,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +826,chr22,25395225,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +827,chr22,25395319,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +828,chr22,25412476,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +829,chr22,25415353,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +830,chr22,25415378,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +831,chr22,25420806,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +832,chr22,25432488,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +833,chr22,25447641,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +834,chr22,25447645,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +835,chr22,25457139,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +836,chr22,25506174,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +837,chr22,25506265,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +838,chr22,25506937,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +839,chr22,25507151,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +840,chr22,25509166,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +841,chr22,25516826,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +842,chr22,25517801,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +843,chr22,25519523,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +844,chr22,25521454,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +845,chr22,25525901,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +846,chr22,25526307,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +847,chr22,25527070,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +848,chr22,25549859,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +849,chr22,25780568,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +850,chr22,25789324,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +851,chr22,25792867,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +852,chr22,25803087,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +853,chr22,25810117,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +854,chr22,25810118,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +855,chr22,25813118,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +856,chr22,25820193,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +857,chr22,25824670,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +858,chr22,25826487,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +859,chr22,25827140,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +860,chr22,25829624,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +861,chr22,25833175,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +862,chr22,25922269,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +863,chr22,26058629,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +864,chr22,26063332,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +865,chr22,26063969,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +866,chr22,26156934,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +867,chr22,26231940,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +868,chr22,26239838,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +869,chr22,26242302,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +870,chr22,26245477,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +871,chr22,26292038,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +872,chr22,26292042,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +873,chr22,26295753,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +874,chr22,26331771,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +875,chr22,26332213,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +876,chr22,26332340,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +877,chr22,26370030,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +878,chr22,26370058,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +879,chr22,26370123,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +880,chr22,26370235,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +881,chr22,26370309,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +882,chr22,26375420,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +883,chr22,26390834,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +884,chr22,26391946,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +885,chr22,26408835,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +886,chr22,26528785,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +887,chr22,26587543,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +888,chr22,26594646,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +889,chr22,26638383,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +890,chr22,26638387,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +891,chr22,26640034,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +892,chr22,26706596,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +893,chr22,26795680,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +894,chr22,26825031,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +895,chr22,26860454,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +896,chr22,26861358,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +897,chr22,26905472,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +898,chr22,26905499,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +899,chr22,26982258,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +900,chr22,26985073,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +901,chr22,26985383,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +902,chr22,27009479,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +903,chr22,27013728,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +904,chr22,27032809,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +905,chr22,27139067,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +906,chr22,27219893,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +907,chr22,27221450,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +908,chr22,27226154,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +909,chr22,27253743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +910,chr22,27261583,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +911,chr22,27266728,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +912,chr22,27274536,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +913,chr22,27274782,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +914,chr22,27284942,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +915,chr22,27337637,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +916,chr22,27350157,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +917,chr22,27354115,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +918,chr22,27355835,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +919,chr22,27359775,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +920,chr22,27373823,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +921,chr22,27405254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +922,chr22,27437791,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +923,chr22,27437957,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +924,chr22,27454910,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +925,chr22,27480792,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +926,chr22,27515661,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +927,chr22,27523048,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +928,chr22,27523818,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +929,chr22,27525495,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +930,chr22,27540619,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +931,chr22,27540910,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +932,chr22,27552123,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +933,chr22,27563791,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +934,chr22,27563793,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +935,chr22,27563880,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +936,chr22,27571494,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +937,chr22,27571502,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +938,chr22,27594454,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +939,chr22,27608990,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +940,chr22,27609121,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +941,chr22,27609758,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +942,chr22,27619753,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +943,chr22,27619782,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +944,chr22,27632236,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +945,chr22,27639812,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +946,chr22,27640705,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +947,chr22,27640883,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +948,chr22,27650044,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +949,chr22,27660378,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +950,chr22,27671920,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +951,chr22,27672362,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +952,chr22,27672448,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +953,chr22,27674586,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +954,chr22,27695984,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +955,chr22,27714323,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +956,chr22,27733113,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +957,chr22,27740745,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +958,chr22,27743025,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +959,chr22,28170936,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +960,chr22,28194287,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +961,chr22,28334888,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +962,chr22,28336935,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +963,chr22,28386199,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +964,chr22,28391959,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +965,chr22,28540045,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +966,chr22,28553483,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +967,chr22,28593518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +968,chr22,28655273,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +969,chr22,29316060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +970,chr22,29332494,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +971,chr22,29361101,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +972,chr22,29389608,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +973,chr22,29395245,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +974,chr22,29397536,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +975,chr22,29409878,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +976,chr22,29564346,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +977,chr22,29567519,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +978,chr22,29613790,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +979,chr22,29644886,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +980,chr22,29697257,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +981,chr22,29827015,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +982,chr22,29864820,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +983,chr22,29881077,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +984,chr22,29908245,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +985,chr22,30009994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +986,chr22,30143438,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +987,chr22,30147514,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +988,chr22,30158560,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +989,chr22,30404323,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +990,chr22,30431818,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +991,chr22,30460426,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +992,chr22,30468623,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +993,chr22,30534534,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +994,chr22,30563817,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +995,chr22,30598931,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +996,chr22,30624127,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +997,chr22,30631695,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +998,chr22,30633017,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +999,chr22,30633484,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1000,chr22,30636894,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1001,chr22,30668318,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1002,chr22,30674506,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1003,chr22,30675058,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1004,chr22,30675657,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1005,chr22,30682858,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1006,chr22,30698445,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1007,chr22,30700105,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1008,chr22,30707617,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1009,chr22,30708639,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1010,chr22,30729957,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1011,chr22,30730151,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1012,chr22,30773774,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1013,chr22,30799255,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1014,chr22,30814437,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1015,chr22,30855994,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1016,chr22,30872104,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1017,chr22,30923200,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1018,chr22,31000840,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1019,chr22,31011415,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1020,chr22,31016184,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1021,chr22,31018484,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1022,chr22,31027522,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1023,chr22,31027863,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1024,chr22,31034585,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1025,chr22,31034586,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1026,chr22,31034593,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1027,chr22,31054451,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1028,chr22,31100540,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1029,chr22,31129195,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1030,chr22,31162834,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1031,chr22,31163269,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1032,chr22,31174450,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1033,chr22,31175032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1034,chr22,31194222,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1035,chr22,31202381,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1036,chr22,31261322,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1037,chr22,31284557,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1038,chr22,31412841,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1039,chr22,31419357,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1040,chr22,31438837,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1041,chr22,31438953,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1042,chr22,31470511,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1043,chr22,31478808,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1044,chr22,31482897,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1045,chr22,31495214,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1046,chr22,31501199,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1047,chr22,31550296,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1048,chr22,31564103,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1049,chr22,31564173,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1050,chr22,31564314,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1051,chr22,31567470,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1052,chr22,31580592,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1053,chr22,31580833,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1054,chr22,31580853,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1055,chr22,31581354,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1056,chr22,31591541,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1057,chr22,31591564,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1058,chr22,31591720,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1059,chr22,31592592,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1060,chr22,31593027,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1061,chr22,31593151,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1062,chr22,31593199,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1063,chr22,31593802,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1064,chr22,31594514,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1065,chr22,31594852,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1066,chr22,31599358,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1067,chr22,31599967,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1068,chr22,31602822,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1069,chr22,31603860,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1070,chr22,31606896,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1071,chr22,31612214,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1072,chr22,31616672,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1073,chr22,31629579,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1074,chr22,31630145,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1075,chr22,31636953,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1076,chr22,31638806,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1077,chr22,31638889,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1078,chr22,31639264,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1079,chr22,31640346,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1080,chr22,31644396,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1081,chr22,31645540,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1082,chr22,31645658,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1083,chr22,31645667,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1084,chr22,31652628,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1085,chr22,31652669,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1086,chr22,31653034,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1087,chr22,31655671,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1088,chr22,31663988,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1089,chr22,31669821,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1090,chr22,31669996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1091,chr22,31670002,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1092,chr22,31670066,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1093,chr22,31673200,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1094,chr22,31674651,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1095,chr22,31674926,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1096,chr22,31675031,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1097,chr22,31676130,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1098,chr22,31676132,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1099,chr22,31691435,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1100,chr22,31697282,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1101,chr22,31705663,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1102,chr22,31708478,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1103,chr22,31735624,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1104,chr22,31745325,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1105,chr22,31755228,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1106,chr22,31765798,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1107,chr22,31774138,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1108,chr22,31776994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1109,chr22,31781532,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1110,chr22,31790782,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1111,chr22,31791394,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1112,chr22,31939800,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1113,chr22,32139110,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1114,chr22,32195658,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1115,chr22,32213667,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1116,chr22,32218117,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1117,chr22,32221134,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1118,chr22,32242529,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1119,chr22,32250759,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1120,chr22,32250769,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1121,chr22,32252208,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1122,chr22,32253888,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1123,chr22,32260801,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1124,chr22,32262633,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1125,chr22,32287391,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1126,chr22,32287725,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1127,chr22,32287738,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1128,chr22,32290479,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1129,chr22,32291895,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1130,chr22,32294771,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1131,chr22,32294821,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1132,chr22,32294872,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1133,chr22,32296894,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1134,chr22,32297204,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1135,chr22,32297949,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1136,chr22,32297982,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1137,chr22,32298303,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1138,chr22,32299126,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1139,chr22,32299327,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1140,chr22,32300009,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1141,chr22,32300133,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1142,chr22,32301855,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1143,chr22,32304631,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1144,chr22,32329571,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1145,chr22,32329588,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1146,chr22,32330871,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1147,chr22,32333227,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1148,chr22,32333785,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1149,chr22,32334624,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1150,chr22,32347382,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1151,chr22,32352278,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1152,chr22,32354128,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1153,chr22,32363337,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1154,chr22,32364781,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1155,chr22,32371256,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1156,chr22,32373858,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1157,chr22,32383144,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1158,chr22,32384570,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1159,chr22,32423579,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1160,chr22,32424868,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1161,chr22,32425314,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1162,chr22,32427084,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1163,chr22,32430735,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1164,chr22,32504340,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1165,chr22,32529539,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1166,chr22,32538288,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1167,chr22,32545981,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1168,chr22,32552106,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1169,chr22,32587045,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1170,chr22,32587177,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1171,chr22,32597238,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1172,chr22,32597239,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1173,chr22,32610293,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1174,chr22,32644020,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1175,chr22,32645886,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1176,chr22,32678040,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1177,chr22,32678520,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1178,chr22,32710098,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1179,chr22,32712072,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1180,chr22,32712550,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1181,chr22,32715000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1182,chr22,32725154,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1183,chr22,32726002,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1184,chr22,32739379,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1185,chr22,32741951,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1186,chr22,32773964,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1187,chr22,32778446,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1188,chr22,32785832,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1189,chr22,32832736,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1190,chr22,32833916,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1191,chr22,32835829,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1192,chr22,32845782,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1193,chr22,32872968,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1194,chr22,32944224,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1195,chr22,32951106,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1196,chr22,32961503,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1197,chr22,32963028,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1198,chr22,32976481,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1199,chr22,32977710,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1200,chr22,32984118,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1201,chr22,32986413,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1202,chr22,32995528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1203,chr22,32995658,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1204,chr22,33007559,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1205,chr22,33008998,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1206,chr22,33018241,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1207,chr22,33025841,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1208,chr22,33034025,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1209,chr22,33034247,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1210,chr22,33035565,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1211,chr22,33039490,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1212,chr22,33052098,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1213,chr22,33089388,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1214,chr22,33092072,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1215,chr22,33105301,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1216,chr22,33155579,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1217,chr22,33395717,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1218,chr22,33414901,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1219,chr22,33419463,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1220,chr22,33441144,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1221,chr22,33450148,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1222,chr22,33451705,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1223,chr22,33471758,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1224,chr22,33471763,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1225,chr22,33502185,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1226,chr22,33587433,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1227,chr22,33589329,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1228,chr22,33593345,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1229,chr22,33600216,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1230,chr22,33601390,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1231,chr22,33605907,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1232,chr22,33606745,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1233,chr22,33609239,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1234,chr22,33626630,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1235,chr22,33630318,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1236,chr22,33778355,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1237,chr22,33833896,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1238,chr22,33846847,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1239,chr22,33865655,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1240,chr22,33875701,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1241,chr22,33900757,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1242,chr22,33916966,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1243,chr22,33931287,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1244,chr22,33949741,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1245,chr22,33950795,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1246,chr22,33959051,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1247,chr22,33986982,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1248,chr22,33988589,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1249,chr22,33990131,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1250,chr22,34109914,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1251,chr22,34147776,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1252,chr22,34153830,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1253,chr22,34153948,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1254,chr22,34154916,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1255,chr22,34156075,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1256,chr22,34156115,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1257,chr22,34157284,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1258,chr22,34157614,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1259,chr22,34157713,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1260,chr22,34199251,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1261,chr22,34199445,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1262,chr22,34205093,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1263,chr22,34205125,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1264,chr22,34246434,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1265,chr22,34381638,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1266,chr22,34403271,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1267,chr22,34424374,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1268,chr22,34436532,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1269,chr22,34469257,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1270,chr22,34552553,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1271,chr22,34612785,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1272,chr22,34667647,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1273,chr22,34690552,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1274,chr22,34791204,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1275,chr22,34818715,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1276,chr22,34927969,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1277,chr22,34944047,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1278,chr22,34970138,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1279,chr22,35022552,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1280,chr22,35058779,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1281,chr22,35058813,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1282,chr22,35062911,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1283,chr22,35074867,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1284,chr22,35118780,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1285,chr22,35121901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1286,chr22,35121961,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1287,chr22,35122279,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1288,chr22,35122354,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1289,chr22,35122417,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1290,chr22,35122439,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1291,chr22,35122483,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1292,chr22,35122536,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1293,chr22,35216776,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1294,chr22,35223012,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1295,chr22,35223426,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1296,chr22,35308619,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1297,chr22,35342929,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1298,chr22,35343343,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1299,chr22,35491061,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1300,chr22,35509216,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1301,chr22,35520598,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1302,chr22,35574507,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1303,chr22,35576732,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1304,chr22,35596557,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1305,chr22,35596660,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1306,chr22,35608057,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1307,chr22,35652319,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1308,chr22,35700874,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1309,chr22,35701066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1310,chr22,36043160,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1311,chr22,36060244,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1312,chr22,36060254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1313,chr22,36098162,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1314,chr22,36113690,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1315,chr22,36121884,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1316,chr22,36122163,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1317,chr22,36238540,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1318,chr22,36266691,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1319,chr22,36303053,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1320,chr22,36304129,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1321,chr22,36355056,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1322,chr22,36366400,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1323,chr22,36366401,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1324,chr22,36391115,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1325,chr22,36393691,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1326,chr22,36403971,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1327,chr22,36405436,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1328,chr22,36428198,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1329,chr22,36428203,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1330,chr22,36434141,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1331,chr22,36443502,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1332,chr22,36443625,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1333,chr22,36443626,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1334,chr22,36443641,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1335,chr22,36443694,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1336,chr22,36445288,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1337,chr22,36447217,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1338,chr22,36459275,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1339,chr22,36467200,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1340,chr22,36471956,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1341,chr22,36474498,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1342,chr22,36486307,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1343,chr22,36487923,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1344,chr22,36532062,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1345,chr22,36589452,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1346,chr22,36610297,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1347,chr22,36610358,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1348,chr22,36611423,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1349,chr22,36799857,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1350,chr22,36800075,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1351,chr22,36827798,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1352,chr22,36830165,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1353,chr22,36964832,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1354,chr22,36966002,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1355,chr22,36966011,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1356,chr22,36966013,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1357,chr22,36966441,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1358,chr22,36966442,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1359,chr22,36966450,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1360,chr22,36966451,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1361,chr22,36966458,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1362,chr22,36966521,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1363,chr22,36966528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1364,chr22,36974291,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1365,chr22,36977479,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1366,chr22,36983505,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1367,chr22,37015662,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1368,chr22,37017566,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1369,chr22,37049628,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1370,chr22,37073152,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1371,chr22,37078481,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1372,chr22,37094651,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1373,chr22,37094652,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1374,chr22,37095782,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1375,chr22,37097823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1376,chr22,37098875,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1377,chr22,37100087,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1378,chr22,37100420,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1379,chr22,37156197,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1380,chr22,37159545,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1381,chr22,37179891,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1382,chr22,37182174,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1383,chr22,37182955,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1384,chr22,37198785,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1385,chr22,37216196,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1386,chr22,37242920,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1387,chr22,37247243,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1388,chr22,37247424,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1389,chr22,37263445,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1390,chr22,37263696,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1391,chr22,37286784,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1392,chr22,37292839,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1393,chr22,37391181,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1394,chr22,37399519,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1395,chr22,37404456,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1396,chr22,37405721,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1397,chr22,37413439,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1398,chr22,37524246,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1399,chr22,37555574,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1400,chr22,37590903,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1401,chr22,37595628,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1402,chr22,37719311,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1403,chr22,37730357,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1404,chr22,37730721,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1405,chr22,37730739,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1406,chr22,37770265,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1407,chr22,37787463,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1408,chr22,37789987,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1409,chr22,37790395,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1410,chr22,37800753,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1411,chr22,37806392,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1412,chr22,37911053,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1413,chr22,37911561,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1414,chr22,37922890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1415,chr22,37938527,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1416,chr22,37939746,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1417,chr22,38123506,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1418,chr22,38152965,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1419,chr22,38152966,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1420,chr22,38165300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1421,chr22,38165555,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1422,chr22,38165645,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1423,chr22,38171129,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1424,chr22,38171890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1425,chr22,38217300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1426,chr22,38217456,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1427,chr22,38281077,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1428,chr22,38312501,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1429,chr22,38321435,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1430,chr22,38323796,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1431,chr22,38338152,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1432,chr22,38385077,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1433,chr22,38398104,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1434,chr22,38399295,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1435,chr22,38399932,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1436,chr22,38626893,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1437,chr22,38707013,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1438,chr22,38707015,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1439,chr22,38761894,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1440,chr22,38767009,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1441,chr22,38806593,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1442,chr22,38880465,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1443,chr22,38988695,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1444,chr22,38988703,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1445,chr22,38988719,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1446,chr22,38992202,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1447,chr22,38992211,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1448,chr22,39097797,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1449,chr22,39100894,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1450,chr22,39151422,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1451,chr22,39152759,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1452,chr22,39193971,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1453,chr22,39194075,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1454,chr22,39195917,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1455,chr22,39201433,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1456,chr22,39289010,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1457,chr22,39293363,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1458,chr22,39324067,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1459,chr22,39324651,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1460,chr22,39329842,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1461,chr22,39341626,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1462,chr22,39347425,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1463,chr22,39349236,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1464,chr22,39349255,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1465,chr22,39359436,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1466,chr22,39398429,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1467,chr22,39420819,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1468,chr22,39420823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1469,chr22,39541641,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1470,chr22,39588941,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1471,chr22,39605078,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1472,chr22,39617862,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1473,chr22,39653513,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1474,chr22,39756316,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1475,chr22,39846183,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1476,chr22,39946598,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1477,chr22,40196820,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1478,chr22,40336447,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1479,chr22,40501928,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1480,chr22,40536562,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1481,chr22,40536866,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1482,chr22,40536895,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1483,chr22,40537101,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1484,chr22,40538311,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1485,chr22,40543906,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1486,chr22,40550303,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1487,chr22,40698188,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1488,chr22,40726474,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1489,chr22,40764254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1490,chr22,40821813,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1491,chr22,41038933,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1492,chr22,41059966,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1493,chr22,41200799,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1494,chr22,41378377,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1495,chr22,41565999,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1496,chr22,41566789,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1497,chr22,41572347,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1498,chr22,41594640,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1499,chr22,41737563,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1500,chr22,41785494,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1501,chr22,41791011,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1502,chr22,41796478,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1503,chr22,41815137,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1504,chr22,41831096,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1505,chr22,41855119,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1506,chr22,41864326,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1507,chr22,41985722,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1508,chr22,42024851,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1509,chr22,42061908,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1510,chr22,42102802,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1511,chr22,42140913,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1512,chr22,42141208,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1513,chr22,42161704,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1514,chr22,42225222,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1515,chr22,42392913,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1516,chr22,42430294,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1517,chr22,42441001,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1518,chr22,42447845,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1519,chr22,42454295,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1520,chr22,42467319,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1521,chr22,42470608,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1522,chr22,42474435,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1523,chr22,42491723,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1524,chr22,42838292,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1525,chr22,42902020,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1526,chr22,42982110,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1527,chr22,43014739,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1528,chr22,43021381,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1529,chr22,43032347,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1530,chr22,43059586,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1531,chr22,43075380,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1532,chr22,43079122,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1533,chr22,43079131,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1534,chr22,43079250,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1535,chr22,43079255,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1536,chr22,43079259,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1537,chr22,43107967,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1538,chr22,43153631,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1539,chr22,43153640,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1540,chr22,43153642,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1541,chr22,43153643,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1542,chr22,43153646,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1543,chr22,43193357,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1544,chr22,43204460,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1545,chr22,43204482,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1546,chr22,43214100,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1547,chr22,43249088,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1548,chr22,43249127,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1549,chr22,43281649,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1550,chr22,43308279,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1551,chr22,43312898,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1552,chr22,43409803,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1553,chr22,43445526,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1554,chr22,43463823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1555,chr22,43463827,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1556,chr22,43498072,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1557,chr22,43499641,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1558,chr22,43499686,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1559,chr22,43500035,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1560,chr22,43500107,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1561,chr22,43548509,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1562,chr22,43590901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1563,chr22,43618223,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1564,chr22,43654718,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1565,chr22,43727622,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1566,chr22,43730221,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1567,chr22,43816574,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1568,chr22,43820061,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1569,chr22,43821418,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1570,chr22,43829764,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1571,chr22,43835051,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1572,chr22,43840125,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1573,chr22,43845646,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1574,chr22,43847590,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1575,chr22,43879309,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1576,chr22,43885431,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1577,chr22,43885500,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1578,chr22,43890436,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1579,chr22,43901262,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1580,chr22,43901685,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1581,chr22,43919983,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1582,chr22,43927042,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1583,chr22,43980610,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1584,chr22,44003071,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1585,chr22,44008096,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1586,chr22,44088001,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1587,chr22,44102588,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1588,chr22,44112988,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1589,chr22,44115429,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1590,chr22,44122520,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1591,chr22,44137241,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1592,chr22,44170554,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1593,chr22,44171105,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1594,chr22,44196612,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1595,chr22,44199359,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1596,chr22,44199959,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1597,chr22,44201205,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1598,chr22,44213518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1599,chr22,44213596,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1600,chr22,44216881,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1601,chr22,44216882,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1602,chr22,44218433,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1603,chr22,44295675,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1604,chr22,44306533,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1605,chr22,44306615,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1606,chr22,44306681,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1607,chr22,44394020,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1608,chr22,44394996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1609,chr22,44500192,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1610,chr22,44507584,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1611,chr22,44507585,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1612,chr22,44536657,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1613,chr22,44537010,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1614,chr22,44539850,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1615,chr22,44539965,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1616,chr22,44539979,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1617,chr22,44578613,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1618,chr22,44578695,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1619,chr22,44579333,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1620,chr22,44579386,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1621,chr22,44583932,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1622,chr22,44605259,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1623,chr22,44607547,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1624,chr22,44611720,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1625,chr22,44614760,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1626,chr22,44619593,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1627,chr22,44653804,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1628,chr22,44653881,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1629,chr22,44654027,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1630,chr22,44666031,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1631,chr22,44666036,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1632,chr22,44666046,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1633,chr22,44667615,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1634,chr22,44688367,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1635,chr22,44753661,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1636,chr22,44753705,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1637,chr22,44753733,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1638,chr22,44753739,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1639,chr22,44755779,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1640,chr22,44755836,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1641,chr22,44755859,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1642,chr22,44756284,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1643,chr22,44763466,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1644,chr22,44821195,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1645,chr22,44821197,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1646,chr22,44821198,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1647,chr22,44821203,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1648,chr22,44821206,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1649,chr22,44827880,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1650,chr22,44835817,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1651,chr22,44836692,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1652,chr22,44846142,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1653,chr22,44855931,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1654,chr22,44857232,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1655,chr22,44857584,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1656,chr22,44857586,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1657,chr22,44857590,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1658,chr22,44857623,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1659,chr22,44858591,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1660,chr22,44858592,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1661,chr22,44858613,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1662,chr22,44858837,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1663,chr22,44859016,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1664,chr22,44859090,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1665,chr22,44859808,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1666,chr22,44860262,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1667,chr22,44860270,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1668,chr22,44860273,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1669,chr22,44860276,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1670,chr22,44924073,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1671,chr22,45098535,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1672,chr22,45228743,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1673,chr22,45244019,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1674,chr22,45244605,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1675,chr22,45251466,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1676,chr22,45251476,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1677,chr22,45251550,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1678,chr22,45258481,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1679,chr22,45855204,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1680,chr22,45861475,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1681,chr22,45899739,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1682,chr22,45917630,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1683,chr22,45918228,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1684,chr22,45924655,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1685,chr22,45924800,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1686,chr22,45924939,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1687,chr22,45925017,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1688,chr22,45952727,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1689,chr22,45953045,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1690,chr22,45953135,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1691,chr22,45954220,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1692,chr22,45981105,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1693,chr22,45981128,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1694,chr22,46058328,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1695,chr22,46060819,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1696,chr22,46122398,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1697,chr22,46126803,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1698,chr22,46130970,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1699,chr22,46145351,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1700,chr22,46207531,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1701,chr22,46207750,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1702,chr22,46242220,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1703,chr22,46263468,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1704,chr22,46274497,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1705,chr22,46274823,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1706,chr22,46277503,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1707,chr22,46453746,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1708,chr22,46470328,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1709,chr22,46485968,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1710,chr22,46490427,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1711,chr22,46507928,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1712,chr22,46524256,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1713,chr22,46550212,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1714,chr22,46565349,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1715,chr22,46567515,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1716,chr22,46586121,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1717,chr22,46587475,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1718,chr22,46588266,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1719,chr22,46588421,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1720,chr22,46589171,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1721,chr22,46589173,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1722,chr22,46589335,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1723,chr22,46591716,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1724,chr22,46604188,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1725,chr22,46615664,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1726,chr22,46635271,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1727,chr22,46644705,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1728,chr22,46658792,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1729,chr22,46715535,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1730,chr22,46716741,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1731,chr22,46719174,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1732,chr22,46720610,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1733,chr22,46761715,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1734,chr22,46854221,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1735,chr22,46946605,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1736,chr22,47096682,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1737,chr22,47115550,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1738,chr22,47115600,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1739,chr22,47124913,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1740,chr22,47127446,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1741,chr22,47162392,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1742,chr22,47176357,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1743,chr22,47176376,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1744,chr22,47211822,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1745,chr22,47211830,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1746,chr22,47211959,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1747,chr22,47211998,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1748,chr22,47212335,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1749,chr22,47212612,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1750,chr22,47212891,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1751,chr22,47212894,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1752,chr22,47212922,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1753,chr22,47233912,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1754,chr22,47236284,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1755,chr22,47343248,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1756,chr22,47350815,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1757,chr22,47357825,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1758,chr22,47363574,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1759,chr22,47367408,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1760,chr22,47367674,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1761,chr22,47379402,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1762,chr22,47380778,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1763,chr22,47381317,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1764,chr22,47385095,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1765,chr22,47385118,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1766,chr22,47389386,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1767,chr22,47423207,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1768,chr22,47446462,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1769,chr22,47562576,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1770,chr22,47603334,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1771,chr22,47607249,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1772,chr22,47808125,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1773,chr22,47847972,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1774,chr22,47851622,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1775,chr22,47857300,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1776,chr22,47860459,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1777,chr22,48028080,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1778,chr22,48080807,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1779,chr22,48080809,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1780,chr22,48080810,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1781,chr22,48081205,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1782,chr22,48099111,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1783,chr22,48104662,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1784,chr22,48114379,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1785,chr22,48115710,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1786,chr22,48120454,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1787,chr22,48182247,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1788,chr22,48256899,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1789,chr22,48257146,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1790,chr22,48307413,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1791,chr22,48313754,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1792,chr22,48320051,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1793,chr22,48331946,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1794,chr22,48338797,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1795,chr22,48347518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1796,chr22,48350225,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1797,chr22,48356195,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1798,chr22,48368066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1799,chr22,48370424,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1800,chr22,48372256,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1801,chr22,48414849,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1802,chr22,48433837,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1803,chr22,48440355,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1804,chr22,48452991,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1805,chr22,48477553,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1806,chr22,48479275,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1807,chr22,48479285,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1808,chr22,48483872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1809,chr22,48483973,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1810,chr22,48484911,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1811,chr22,48485158,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1812,chr22,48487269,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1813,chr22,48489082,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1814,chr22,48512576,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1815,chr22,48525082,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1816,chr22,48529114,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1817,chr22,48640926,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1818,chr22,48651901,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1819,chr22,48654961,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1820,chr22,48655191,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1821,chr22,48655266,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1822,chr22,48655346,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1823,chr22,48655489,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1824,chr22,48655700,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1825,chr22,48655745,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1826,chr22,48656454,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1827,chr22,48656645,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1828,chr22,48658237,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1829,chr22,48659600,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1830,chr22,48661513,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1831,chr22,48661856,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1832,chr22,48662009,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1833,chr22,48662217,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1834,chr22,48662229,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1835,chr22,48662238,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1836,chr22,48662724,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1837,chr22,48662967,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1838,chr22,48666890,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1839,chr22,48667768,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1840,chr22,48667834,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1841,chr22,48668539,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1842,chr22,48668670,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1843,chr22,48668855,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1844,chr22,48669820,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1845,chr22,48674756,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1846,chr22,48772354,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1847,chr22,48821990,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1848,chr22,48822352,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1849,chr22,48831572,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1850,chr22,48836881,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1851,chr22,48868222,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1852,chr22,48873047,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1853,chr22,48881940,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1854,chr22,48927025,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1855,chr22,48942480,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1856,chr22,48945825,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1857,chr22,48946397,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1858,chr22,48949301,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1859,chr22,48949368,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1860,chr22,48950163,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1861,chr22,48953971,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1862,chr22,48973889,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1863,chr22,48988515,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1864,chr22,48989632,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1865,chr22,49005676,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1866,chr22,49006464,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1867,chr22,49006483,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1868,chr22,49006495,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1869,chr22,49035890,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1870,chr22,49068774,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1871,chr22,49072019,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1872,chr22,49096072,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1873,chr22,49096406,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1874,chr22,49113416,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1875,chr22,49116841,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1876,chr22,49116906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1877,chr22,49116928,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1878,chr22,49119027,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1879,chr22,49149186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1880,chr22,49151951,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1881,chr22,49164485,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1882,chr22,49176142,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1883,chr22,49179247,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1884,chr22,49179261,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1885,chr22,49179337,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1886,chr22,49179863,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1887,chr22,49185510,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1888,chr22,49237330,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1889,chr22,49265501,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1890,chr22,49265502,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1891,chr22,49265508,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1892,chr22,49286459,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1893,chr22,49292062,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1894,chr22,49292242,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1895,chr22,49292245,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1896,chr22,49292253,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1897,chr22,49292258,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1898,chr22,49292419,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1899,chr22,49300826,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1900,chr22,49300909,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1901,chr22,49306314,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1902,chr22,49312567,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1903,chr22,49312842,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1904,chr22,49323502,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1905,chr22,49337733,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1906,chr22,49342433,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1907,chr22,49364520,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1908,chr22,49368640,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1909,chr22,49381815,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1910,chr22,49384335,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1911,chr22,49407774,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1912,chr22,49407775,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1913,chr22,49430061,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1914,chr22,49432298,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1915,chr22,49432305,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1916,chr22,49445285,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1917,chr22,49484784,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1918,chr22,49484806,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1919,chr22,49486995,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1920,chr22,49494405,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1921,chr22,49533318,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1922,chr22,49533525,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1923,chr22,49856649,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1924,chr22,49867403,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1925,chr22,49871004,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1926,chr22,49879380,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1927,chr22,49884187,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1928,chr22,49884235,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1929,chr22,49962320,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1930,chr22,50015646,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1931,chr22,50029397,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1932,chr22,50035202,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1933,chr22,50052027,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1934,chr22,50070243,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1935,chr22,50075138,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1936,chr22,50091421,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1937,chr22,50112060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1938,chr22,50147099,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1939,chr22,50147234,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1940,chr22,50174664,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1941,chr22,50228304,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1942,chr22,50280822,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1943,chr22,50285689,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1944,chr22,50380735,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1945,chr22,50395832,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1946,chr22,50433366,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1947,chr22,50433501,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1948,chr22,50488580,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1949,chr22,50535350,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1950,chr22,50537614,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1951,chr22,50542785,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1952,chr22,50543249,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1953,chr22,50555070,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1954,chr22,50557170,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1955,chr22,50572947,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1956,chr22,50573508,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1957,chr22,50573882,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1958,chr22,50573952,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1959,chr22,50580482,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1960,chr22,50619192,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1961,chr22,50651288,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1962,chr22,50682764,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1963,chr22,50682808,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1964,chr22,50682988,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1965,chr22,50684016,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1966,chr22,50685404,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1967,chr22,50685999,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1968,chr22,50686586,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1969,chr22,50686617,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1970,chr22,50686678,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1971,chr22,50686869,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1972,chr22,50686870,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1973,chr22,50695090,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1974,chr22,50697167,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1975,chr22,50698218,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1976,chr22,50742506,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1977,chr22,50742531,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1978,chr22,50748769,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1979,chr22,50750900,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1980,chr22,50750975,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1981,chr22,50752450,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1982,chr22,50752906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1983,chr22,50756251,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1984,chr22,50757736,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1985,chr22,50758838,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1986,chr22,50760149,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1987,chr22,50760162,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1988,chr22,50765824,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1989,chr22,50768026,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1990,chr22,50769827,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1991,chr22,50770140,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1992,chr22,50774763,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1993,chr22,50775185,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1994,chr22,50776600,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1995,chr22,50777596,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1996,chr22,50777623,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1997,chr22,50777721,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1998,chr22,50778462,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1999,chr22,50782420,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2000,chr22,50784300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2001,chr22,50787086,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2002,chr22,50792591,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2003,chr22,50792792,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2004,chr22,50794060,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +0,chr22,10673307,UNK,A,,T,,-1.00000000,,,,,,,49.33000000,7.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,0.75000000,0.00000000,,0.35135135,37.00000000,1.63716814,0.00000000,0.00000000,3.52000000 +1,chr22,10687406,UNK,A,,G,,-1.00000000,,,,,,,49.44000000,70.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-2.08000000,0.00000000,,0.06818182,132.00000000,5.84070796,0.00000000,0.00000000,5.09000000 +2,chr22,10705395,UNK,G,,T,,-1.00000000,,,,,,,45.23000000,32.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,36.00000000,,-0.55000000,0.00000000,,0.28205128,39.00000000,1.72566372,0.00000000,0.00000000,2.78000000 +3,chr22,10705819,UNK,C,,G,,-1.00000000,,,,,,,48.57000000,42.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,,0.48000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,4.93000000 +4,chr22,10705841,UNK,G,,A,,-1.00000000,,,,,,,49.21000000,41.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,,-2.16000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,4.53000000 +5,chr22,10710857,UNK,C,,T,,-1.00000000,,,,,,,55.84000000,69.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.08130081,0.00000000,101.00000000,,-0.65000000,0.00000000,,0.04590164,320.00000000,14.15929204,0.04687500,0.00000000,4.42000000 +6,chr22,10711796,UNK,T,,C,,-1.00000000,,,,,,,55.18000000,33.00000000,ref,1.00000000,0.01020408,102.00000000,4.51327434,0.01960784,0.00000000,90.00000000,,-1.53000000,0.00000000,,0.04487179,325.00000000,14.38053097,0.03076923,0.00000000,4.24000000 +7,chr22,10711931,UNK,G,,A,,-1.00000000,,,,,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.00800000,0.00000000,105.00000000,,1.22000000,0.00000000,,0.04204204,342.00000000,15.13274336,0.02339181,0.00000000,8.12000000 +8,chr22,10712873,UNK,C,,T,,-1.00000000,,,,,,,58.31000000,14.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.00000000,0.00000000,117.00000000,,-1.29000000,0.00000000,,0.02948403,409.00000000,18.09734513,0.00244499,0.00000000,7.81000000 +9,chr22,10713036,UNK,C,,T,,-1.00000000,,,,,,,58.86000000,22.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.02255639,0.00000000,109.00000000,,-1.00000000,0.00000000,,0.04705882,433.00000000,19.15929204,0.01385681,0.00000000,8.32000000 +10,chr22,10713558,UNK,G,,C,,-1.00000000,,,,,,,56.26000000,14.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.02307692,0.00000000,107.00000000,,0.84000000,0.00000000,,0.03957784,388.00000000,17.16814159,0.02319588,0.00000000,7.62000000 +11,chr22,10713648,UNK,A,,T,,-1.00000000,,,,,,,53.16000000,22.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.01626016,0.00000000,105.00000000,,-1.20000000,0.00000000,,0.03821656,318.00000000,14.07079646,0.01257862,0.00000000,6.54000000 +12,chr22,10713749,UNK,C,,T,,-1.00000000,,,,,,,57.66000000,4.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00000000,0.00000000,101.00000000,,0.48000000,0.00000000,,0.03206997,347.00000000,15.35398230,0.00864553,0.00000000,4.73000000 +13,chr22,10714557,UNK,A,,G,,-1.00000000,,,,,,,58.99000000,13.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.01550388,0.00000000,107.00000000,,-1.34000000,0.00000000,,0.02881844,348.00000000,15.39823009,0.00287356,0.00000000,8.57000000 +14,chr22,10715716,UNK,T,,A,,-1.00000000,,,,,,,57.39000000,10.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.00833333,0.00000000,104.00000000,,1.13000000,0.00000000,,0.03513514,374.00000000,16.54867257,0.01069519,0.00000000,7.86000000 +15,chr22,10716108,UNK,A,,G,,-1.00000000,,,,,,,55.74000000,22.00000000,ref,1.00000000,0.00000000,114.00000000,5.04424779,0.00000000,0.00000000,101.00000000,,-0.05000000,0.00000000,,0.03735632,351.00000000,15.53097345,0.00569801,0.00000000,4.68000000 +16,chr22,10716421,UNK,C,,T,,-1.00000000,,,,,,,59.16000000,4.00000000,ref,1.00000000,0.00000000,131.00000000,5.79646018,0.01526718,0.00000000,108.00000000,,1.18000000,0.00000000,,0.04597701,351.00000000,15.53097345,0.00854701,0.00000000,8.80000000 +17,chr22,10716450,UNK,T,,A,,-1.00000000,,,,,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.00724638,0.00000000,112.00000000,,1.14000000,0.00000000,,0.05382436,357.00000000,15.79646018,0.01120448,0.00000000,8.36000000 +18,chr22,10716825,UNK,C,,G,,-1.00000000,,,,,,,58.74000000,10.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.00000000,0.00000000,101.00000000,,0.74000000,0.00000000,,0.06371191,363.00000000,16.06194690,0.00275482,0.00000000,4.67000000 +19,chr22,10716834,UNK,T,,C,,-1.00000000,,,,,,,58.17000000,18.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.00000000,0.00000000,99.00000000,,1.83000000,0.00000000,,0.03592814,337.00000000,14.91150442,0.00890208,0.00000000,4.65000000 +20,chr22,10716932,UNK,C,,T,,-1.00000000,,,,,,,54.39000000,57.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.02222222,0.00000000,90.00000000,,-0.32000000,0.00000000,,0.04263566,267.00000000,11.81415929,0.03370787,0.00743494,4.22000000 +21,chr22,10716987,UNK,C,,A,,-1.00000000,,,,,,,56.99000000,38.00000000,ref,1.00000000,0.00000000,110.00000000,4.86725664,0.03636364,0.00000000,98.00000000,,0.09000000,0.00000000,,0.05279503,329.00000000,14.55752212,0.02127660,0.00000000,4.07000000 +22,chr22,10717011,UNK,C,,A,,-1.00000000,,,,,,,58.26000000,22.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.03960396,0.00000000,94.00000000,,1.17000000,0.00000000,,0.04968944,333.00000000,14.73451327,0.03003003,0.00000000,4.12000000 +23,chr22,10717015,UNK,A,,G,,-1.00000000,,,,,,,58.19000000,22.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.03061224,0.00000000,92.00000000,,0.51000000,0.00000000,,0.04731861,333.00000000,14.73451327,0.03603604,0.00000000,4.14000000 +24,chr22,10717490,UNK,T,,C,,-1.00000000,,,,,,,51.08000000,131.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.03076923,0.00000000,78.00000000,,1.99000000,0.00000000,,0.07594937,169.00000000,7.47787611,0.06508876,0.00000000,4.10000000 +25,chr22,10719462,UNK,C,,T,,-1.00000000,,,,,,,41.86000000,67.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,59.00000000,,-0.93000000,0.00000000,,0.08602151,104.00000000,4.60176991,0.10576923,0.00000000,3.86000000 +26,chr22,10719517,UNK,C,,T,,-1.00000000,,,,,,,40.37000000,107.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.12000000,0.00000000,,0.08888889,95.00000000,4.20353982,0.05263158,0.00000000,4.53000000 +27,chr22,10720447,UNK,C,,G,,-1.00000000,,,,,,,42.79000000,147.00000000,ref,1.00000000,0.02272727,44.00000000,1.94690265,0.00000000,0.00000000,63.00000000,,-2.30000000,0.00000000,,0.15384615,96.00000000,4.24778761,0.05208333,0.00000000,4.71000000 +28,chr22,10723655,UNK,C,,T,,-1.00000000,,,,,,,36.87000000,225.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,64.00000000,,-0.66000000,0.00000000,,0.10869565,100.00000000,4.42477876,0.08000000,0.00000000,4.99000000 +29,chr22,10725345,UNK,T,,G,,-1.00000000,,,,,,,47.68000000,91.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,63.00000000,,-0.50000000,0.00000000,,0.05154639,99.00000000,4.38053097,0.02020202,0.00000000,4.82000000 +30,chr22,10727052,UNK,G,,T,,-1.00000000,,,,,,,56.43000000,49.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.03658537,0.00000000,85.00000000,,0.04000000,0.00000000,,0.05000000,270.00000000,11.94690265,0.03703704,0.00000000,4.13000000 +31,chr22,10727123,UNK,T,,C,,-1.00000000,,,,,,,55.99000000,40.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.15625000,0.00000000,74.00000000,,1.65000000,0.00000000,,0.05714286,203.00000000,8.98230088,0.13793103,0.00000000,4.19000000 +32,chr22,10727652,UNK,C,,T,,-1.00000000,,,,,,,53.66000000,113.00000000,ref,1.00000000,0.00980392,136.00000000,6.01769912,0.25000000,0.00000000,64.00000000,,0.01000000,0.00000000,,0.04382470,309.00000000,13.67256637,0.18446602,0.00000000,4.28000000 +33,chr22,10727992,UNK,C,,T,,-1.00000000,,,,,,,56.60000000,44.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.01234568,0.00000000,86.00000000,,0.93000000,0.00000000,,0.05508475,245.00000000,10.84070796,0.03673469,0.00000000,4.25000000 +34,chr22,10728778,UNK,A,,T,,-1.00000000,,,,,,,45.12000000,139.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.13636364,0.00000000,67.00000000,,0.84000000,0.00000000,,0.07920792,130.00000000,5.75221239,0.21538462,0.00000000,4.17000000 +35,chr22,10728783,UNK,T,,A,,-1.00000000,,,,,,,45.55000000,139.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.14893617,0.00000000,68.00000000,,0.99000000,0.00000000,,0.09278351,134.00000000,5.92920354,0.25373134,0.00000000,4.12000000 +36,chr22,10729700,UNK,T,,A,,-1.00000000,,,,,,,49.78000000,149.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.03896104,0.00000000,83.00000000,,0.39000000,0.00000000,,0.05504587,232.00000000,10.26548673,0.05172414,0.00000000,4.13000000 +37,chr22,10729776,UNK,A,,G,,-1.00000000,,,,,,,55.32000000,66.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.07865169,0.00000000,87.00000000,,-0.51000000,0.00000000,,0.04048583,263.00000000,11.63716814,0.05703422,0.00000000,4.08000000 +38,chr22,10730062,UNK,G,,T,,-1.00000000,,,,,,,56.49000000,46.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.07142857,0.00000000,85.00000000,,1.08000000,0.00000000,,0.07600000,275.00000000,12.16814159,0.08727273,0.00000000,4.11000000 +39,chr22,10730513,UNK,A,,C,,-1.00000000,,,,,,,58.70000000,21.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.02325581,0.00000000,106.00000000,,0.48000000,0.00000000,,0.04285714,357.00000000,15.79646018,0.01960784,0.00000000,7.71000000 +40,chr22,10730768,UNK,C,,T,,-1.00000000,,,,,,,58.85000000,15.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.04587156,0.00000000,96.00000000,,0.33000000,0.00000000,,0.05841924,302.00000000,13.36283186,0.03311258,0.00000000,4.12000000 +41,chr22,10731134,UNK,C,,G,,-1.00000000,,,,,,,58.26000000,22.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.04629630,0.00000000,96.00000000,,0.73000000,0.00000000,,0.04747774,352.00000000,15.57522124,0.04261364,0.00000000,4.13000000 +42,chr22,10731734,UNK,A,,G,,-1.00000000,,,,,,,53.12000000,62.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.02352941,0.00000000,87.00000000,,0.49000000,0.00000000,,0.04687500,258.00000000,11.41592920,0.00775194,0.00000000,4.12000000 +43,chr22,10733082,UNK,C,,T,,-1.00000000,,,,,,,48.79000000,26.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.01111111,0.00000000,88.00000000,,-0.54000000,0.00000000,,0.03875969,265.00000000,11.72566372,0.01886792,0.00000000,4.17000000 +44,chr22,10733536,UNK,G,,C,,-1.00000000,,,,,,,44.71000000,170.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.02325581,0.00000000,88.00000000,,0.45000000,0.00000000,,0.03474903,263.00000000,11.63716814,0.01520913,0.00000000,4.31000000 +45,chr22,10734326,UNK,C,,T,,-1.00000000,,,,,,,53.65000000,84.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00751880,0.00000000,110.00000000,,-0.65000000,0.00000000,,0.04518072,340.00000000,15.04424779,0.02352941,0.00000000,6.88000000 +46,chr22,10734490,UNK,G,,A,,-1.00000000,,,,,,,48.26000000,123.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,,-0.80000000,0.00000000,,0.04887218,267.00000000,11.81415929,0.00000000,0.00000000,4.73000000 +47,chr22,10734545,UNK,C,,T,,-1.00000000,,,,,,,45.13000000,128.00000000,ref,1.00000000,0.01351351,75.00000000,3.31858407,0.01333333,0.00000000,74.00000000,,0.33000000,0.00000000,,0.09045226,200.00000000,8.84955752,0.00500000,0.00000000,4.18000000 +48,chr22,10734812,UNK,C,,A,,-1.00000000,,,,,,,50.52000000,115.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.00793651,0.00000000,106.00000000,,0.37000000,0.00000000,,0.04571429,352.00000000,15.57522124,0.00568182,0.00000000,7.40000000 +49,chr22,10735238,UNK,G,,A,,-1.00000000,,,,,,,54.17000000,77.00000000,ref,1.00000000,0.00709220,142.00000000,6.28318584,0.00704225,0.00000000,104.00000000,,1.11000000,0.00000000,,0.03587444,451.00000000,19.95575221,0.01108647,0.00000000,5.86000000 +50,chr22,10735260,UNK,C,,T,,-1.00000000,,,,,,,55.25000000,72.00000000,ref,1.00000000,0.00000000,159.00000000,7.03539823,0.00000000,0.00000000,122.00000000,,0.67000000,0.00000000,,0.02647658,497.00000000,21.99115044,0.01207243,0.00000000,8.07000000 +51,chr22,10735435,UNK,G,,A,,-1.00000000,,,,,,,54.47000000,87.00000000,ref,1.00000000,0.00000000,161.00000000,7.12389381,0.00621118,0.00000000,122.00000000,,-0.07000000,0.00000000,,0.04076739,419.00000000,18.53982301,0.00238663,0.00000000,7.09000000 +52,chr22,10736328,UNK,C,,T,,-1.00000000,,,,,,,49.50000000,101.00000000,ref,1.00000000,0.00892857,113.00000000,5.00000000,0.00884956,0.00000000,91.00000000,,1.08000000,0.00000000,,0.05704698,301.00000000,13.31858407,0.00996678,0.00000000,4.28000000 +53,chr22,10736357,UNK,G,,T,,-1.00000000,,,,,,,49.48000000,121.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,-0.32000000,0.00000000,,0.04406780,297.00000000,13.14159292,0.00673401,0.00000000,6.96000000 +54,chr22,10736400,UNK,G,,A,,-1.00000000,,,,,,,49.43000000,173.00000000,ref,1.00000000,0.00854701,136.00000000,6.01769912,0.13970588,0.00000000,65.00000000,,2.10000000,0.00000000,,0.05395683,325.00000000,14.38053097,0.14461538,0.00000000,4.09000000 +55,chr22,10736827,UNK,G,,A,,-1.00000000,,,,,,,48.36000000,152.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00847458,0.00000000,103.00000000,,-1.89000000,0.00000000,,0.03693182,358.00000000,15.84070796,0.01675978,0.00000000,6.18000000 +56,chr22,10737247,UNK,T,,A,,-1.00000000,,,,,,,46.65000000,159.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,-0.58000000,0.11000000,,0.03157895,288.00000000,12.74336283,0.01041667,0.00000000,4.06000000 +57,chr22,10737575,UNK,T,,G,,-1.00000000,,,,,,,47.50000000,186.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.01785714,0.00000000,100.00000000,,0.96000000,0.00000000,,0.05521472,330.00000000,14.60176991,0.00909091,0.00000000,4.22000000 +58,chr22,10737807,UNK,C,,A,,-1.00000000,,,,,,,53.09000000,32.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,0.38000000,0.00000000,,0.05479452,220.00000000,9.73451327,0.00454545,0.00000000,4.21000000 +59,chr22,10737960,UNK,A,,G,,-1.00000000,,,,,,,47.65000000,132.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,0.65000000,0.00000000,,0.03603604,227.00000000,10.04424779,0.01321586,0.00000000,4.29000000 +60,chr22,10738138,UNK,C,,A,,-1.00000000,,,,,,,57.38000000,36.00000000,ref,1.00000000,0.00854701,117.00000000,5.17699115,0.00000000,0.00000000,60.00000000,,-2.62000000,0.00000000,,0.02472527,367.00000000,16.23893805,0.00544959,0.00000000,4.07000000 +61,chr22,10738661,UNK,C,,T,,-1.00000000,,,,,,,53.60000000,109.00000000,ref,1.00000000,0.00000000,124.00000000,5.48672566,0.01612903,0.00000000,105.00000000,,-0.14000000,0.00000000,,0.03978780,380.00000000,16.81415929,0.00789474,0.00000000,6.76000000 +62,chr22,10738960,UNK,G,,C,,-1.00000000,,,,,,,46.53000000,201.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.01149425,0.00000000,88.00000000,,-1.05000000,0.00000000,,0.04291845,239.00000000,10.57522124,0.02092050,0.00000000,4.47000000 +63,chr22,10739121,UNK,G,,C,,-1.00000000,,,,,,,53.29000000,100.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.03703704,0.00000000,85.00000000,,0.30000000,0.00000000,,0.06741573,285.00000000,12.61061947,0.05614035,0.00000000,4.11000000 +64,chr22,10739493,UNK,T,,C,,-1.00000000,,,,,,,56.94000000,39.00000000,ref,1.00000000,0.00000000,132.00000000,5.84070796,0.00000000,0.00000000,110.00000000,,0.41000000,0.00000000,,0.04603581,397.00000000,17.56637168,0.01259446,0.00000000,8.74000000 +65,chr22,10740322,UNK,G,,A,,-1.00000000,,,,,,,48.08000000,200.00000000,ref,1.00000000,0.00806452,125.00000000,5.53097345,0.00800000,0.00000000,102.00000000,,1.70000000,0.00000000,,0.04069767,351.00000000,15.53097345,0.01709402,0.00000000,5.59000000 +66,chr22,10740527,UNK,A,,T,,-1.00000000,,,,,,,49.21000000,100.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.01941748,0.00000000,95.00000000,,-0.36000000,0.00000000,,0.04513889,292.00000000,12.92035398,0.01369863,0.00000000,4.30000000 +67,chr22,10740705,UNK,C,,T,,-1.00000000,,,,,,,50.86000000,231.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.00000000,0.00000000,116.00000000,,1.44000000,0.00000000,,0.03687636,462.00000000,20.44247788,0.00000000,0.00000000,7.46000000 +68,chr22,10741395,UNK,G,,T,,-1.00000000,,,,,,,46.79000000,181.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.04347826,0.00000000,79.00000000,,1.92000000,0.00000000,,0.06735751,194.00000000,8.58407080,0.00515464,0.00000000,4.09000000 +69,chr22,10741579,UNK,G,,A,,-1.00000000,,,,,,,51.93000000,30.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,68.00000000,,0.89000000,0.00000000,,0.05882353,131.00000000,5.79646018,0.09160305,0.00000000,3.90000000 +70,chr22,10742368,UNK,C,,T,,-1.00000000,,,,,,,55.93000000,26.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.03157895,0.00000000,91.00000000,,-0.51000000,0.00000000,,0.04528302,271.00000000,11.99115044,0.02214022,0.00000000,4.05000000 +71,chr22,10742769,UNK,A,,G,,-1.00000000,,,,,,,54.45000000,23.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.02500000,0.00000000,85.00000000,,-1.08000000,0.00000000,,0.03934426,313.00000000,13.84955752,0.02236422,0.00000000,4.29000000 +72,chr22,10746426,UNK,C,,T,,-1.00000000,,,,,,,49.11000000,49.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,0.54000000,0.00000000,,0.06569343,143.00000000,6.32743363,0.04195804,0.00000000,4.69000000 +73,chr22,10746621,UNK,C,,T,,-1.00000000,,,,,,,54.09000000,52.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.05172414,0.00000000,74.00000000,,0.33000000,0.00000000,,0.07106599,204.00000000,9.02654867,0.03431373,0.00000000,4.09000000 +74,chr22,10746925,UNK,G,,A,,-1.00000000,,,,,,,52.99000000,47.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,79.00000000,,0.31000000,0.00000000,,0.04761905,257.00000000,11.37168142,0.01945525,0.00000000,4.24000000 +75,chr22,10747864,UNK,C,,T,,-1.00000000,,,,,,,48.79000000,189.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.00000000,0.00000000,100.00000000,,0.35000000,0.00000000,,0.05337079,362.00000000,16.01769912,0.01381215,0.00000000,4.45000000 +76,chr22,10748027,UNK,G,,A,,-1.00000000,,,,,,,56.93000000,49.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00751880,0.00000000,108.00000000,,0.02000000,0.00000000,,0.02686567,339.00000000,15.00000000,0.01179941,0.00000000,8.11000000 +77,chr22,10749617,UNK,C,,T,,-1.00000000,,,,,,,53.92000000,59.00000000,ref,1.00000000,0.01041667,96.00000000,4.24778761,0.00000000,0.00000000,69.00000000,,-3.55000000,0.00000000,,0.03623188,276.00000000,12.21238938,0.00000000,0.00000000,3.51000000 +78,chr22,10749739,UNK,T,,A,,-1.00000000,,,,,,,50.22000000,172.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.00000000,0.00000000,105.00000000,,-0.42000000,0.00000000,,0.04177546,388.00000000,17.16814159,0.01030928,0.00000000,6.74000000 +79,chr22,10750122,UNK,A,,T,,-1.00000000,,,,,,,47.60000000,223.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.07368421,0.00000000,89.00000000,,1.19000000,0.00000000,,0.10344828,303.00000000,13.40707965,0.04290429,0.00000000,3.91000000 +80,chr22,10750196,UNK,C,,A,,-1.00000000,,,,,,,49.75000000,171.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,108.00000000,,1.42000000,0.00000000,,0.07105263,381.00000000,16.85840708,0.00262467,0.00000000,7.09000000 +81,chr22,10750206,UNK,A,,G,,-1.00000000,,,,,,,49.17000000,172.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,101.00000000,,0.94000000,0.00000000,,0.07754011,375.00000000,16.59292035,0.00266667,0.00000000,4.37000000 +82,chr22,10750684,UNK,G,,T,,-1.00000000,,,,,,,38.56000000,210.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,0.46000000,0.00000000,,0.10743802,122.00000000,5.39823009,0.00819672,0.00000000,4.41000000 +83,chr22,10751112,UNK,A,,T,,-1.00000000,,,,,,,38.21000000,263.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.01639344,0.00000000,77.00000000,,2.86000000,0.00000000,,0.09574468,189.00000000,8.36283186,0.00529101,0.00000000,4.30000000 +84,chr22,10751705,UNK,A,,T,,-1.00000000,,,,,,,39.78000000,235.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,0.24000000,0.00000000,,0.07096774,158.00000000,6.99115044,0.01898734,0.00000000,4.23000000 +85,chr22,10751852,UNK,G,,T,,-1.00000000,,,,,,,50.03000000,18.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.01234568,0.00000000,86.00000000,,-0.57000000,0.00000000,,0.13043478,187.00000000,8.27433628,0.01069519,0.00000000,4.65000000 +86,chr22,10751871,UNK,G,,A,,-1.00000000,,,,,,,47.22000000,21.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,79.00000000,,-0.64000000,0.00000000,,0.12500000,138.00000000,6.10619469,0.01449275,0.00000000,4.52000000 +87,chr22,10752483,UNK,A,,T,,-1.00000000,,,,,,,40.47000000,231.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,85.00000000,,0.72000000,0.00000000,,0.08225108,232.00000000,10.26548673,0.00431034,0.00000000,4.55000000 +88,chr22,10752820,UNK,C,,T,,-1.00000000,,,,,,,39.53000000,316.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-2.28000000,0.00000000,,0.08755760,220.00000000,9.73451327,0.01363636,0.00000000,4.90000000 +89,chr22,10752906,UNK,G,,T,,-1.00000000,,,,,,,41.22000000,164.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,86.00000000,,-0.57000000,6.99000000,,0.05909091,221.00000000,9.77876106,0.00452489,0.00000000,3.73000000 +90,chr22,10752930,UNK,A,,C,,-1.00000000,,,,,,,44.26000000,113.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.00000000,0.00000000,95.00000000,,1.16000000,0.00000000,,0.09782609,278.00000000,12.30088496,0.00719424,0.00000000,4.46000000 +91,chr22,10753043,UNK,A,,G,,-1.00000000,,,,,,,50.07000000,149.00000000,ref,1.00000000,0.00000000,178.00000000,7.87610619,0.00561798,0.00000000,130.00000000,,1.01000000,0.00000000,,0.03076923,459.00000000,20.30973451,0.00871460,0.00000000,7.00000000 +92,chr22,10753425,UNK,C,,T,,-1.00000000,,,,,,,48.59000000,213.00000000,ref,1.00000000,0.00847458,119.00000000,5.26548673,0.00840336,0.00000000,94.00000000,,2.88000000,0.00000000,,0.08605341,343.00000000,15.17699115,0.01749271,0.00000000,4.08000000 +93,chr22,10753489,UNK,T,,A,,-1.00000000,,,,,,,51.64000000,116.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00699301,0.00000000,62.00000000,,2.00000000,11.42000000,,0.02290076,397.00000000,17.56637168,0.00503778,0.00000000,3.26000000 +94,chr22,10753726,UNK,G,,A,,-1.00000000,,,,,,,42.40000000,296.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.01149425,0.00000000,89.00000000,,-0.30000000,0.00000000,,0.11486486,299.00000000,13.23008850,0.00668896,0.00000000,4.32000000 +95,chr22,10754290,UNK,T,,C,,-1.00000000,,,,,,,54.84000000,95.00000000,ref,1.00000000,0.00746269,140.00000000,6.19469027,0.04285714,0.00000000,88.00000000,,1.13000000,0.00000000,,0.03233831,419.00000000,18.53982301,0.04057279,0.00000000,4.26000000 +96,chr22,10754331,UNK,C,,T,,-1.00000000,,,,,,,55.53000000,89.00000000,ref,1.00000000,0.00751880,135.00000000,5.97345133,0.01481481,0.00000000,106.00000000,,0.98000000,0.00000000,,0.05641026,399.00000000,17.65486726,0.02255639,0.00000000,8.12000000 +97,chr22,10754356,UNK,C,,T,,-1.00000000,,,,,,,54.59000000,108.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.00740741,0.00000000,111.00000000,,0.66000000,0.00000000,,0.05263158,400.00000000,17.69911504,0.00250000,0.00000000,7.78000000 +98,chr22,10754431,UNK,A,,T,,-1.00000000,,,,,,,51.74000000,127.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.04081633,0.00000000,114.00000000,,-0.11000000,0.00000000,,0.06015038,415.00000000,18.36283186,0.03614458,0.00000000,6.23000000 +99,chr22,10754551,UNK,A,,G,,-1.00000000,,,,,,,53.30000000,104.00000000,ref,1.00000000,0.00000000,171.00000000,7.56637168,0.00584795,0.00000000,127.00000000,,-0.78000000,0.00000000,,0.03271984,493.00000000,21.81415929,0.00811359,0.00000000,6.85000000 +100,chr22,10754913,UNK,T,,G,,-1.00000000,,,,,,,51.06000000,121.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00735294,0.00000000,111.00000000,,-0.28000000,0.00000000,,0.03636364,387.00000000,17.12389381,0.00516796,0.00000000,6.83000000 +101,chr22,10755015,UNK,C,,G,,-1.00000000,,,,,,,46.45000000,90.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.00813008,0.00000000,105.00000000,,2.20000000,0.00000000,,0.10216718,328.00000000,14.51327434,0.01219512,0.00000000,6.87000000 +102,chr22,10755248,UNK,G,,C,,-1.00000000,,,,,,,48.53000000,148.00000000,ref,1.00000000,0.01324503,152.00000000,6.72566372,0.00657895,0.00000000,111.00000000,,-0.63000000,0.00000000,,0.04179104,338.00000000,14.95575221,0.00591716,0.00000000,6.86000000 +103,chr22,10755330,UNK,T,,C,,-1.00000000,,,,,,,47.58000000,183.00000000,ref,1.00000000,0.00000000,172.00000000,7.61061947,0.01744186,0.00000000,63.00000000,,0.54000000,5.17000000,,0.02362205,382.00000000,16.90265487,0.00261780,0.00000000,3.14000000 +104,chr22,10755667,UNK,G,,A,,-1.00000000,,,,,,,43.11000000,179.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.01162791,0.00000000,88.00000000,,0.29000000,0.00000000,,0.07177033,212.00000000,9.38053097,0.00943396,0.00000000,4.43000000 +105,chr22,10755694,UNK,C,,T,,-1.00000000,,,,,,,43.59000000,201.00000000,ref,1.00000000,0.00000000,105.00000000,4.64601770,0.01904762,0.00000000,96.00000000,,1.58000000,0.00000000,,0.05063291,242.00000000,10.70796460,0.01652893,0.00000000,4.25000000 +106,chr22,10755794,UNK,C,,T,,-1.00000000,,,,,,,45.87000000,263.00000000,ref,1.00000000,0.00000000,142.00000000,6.28318584,0.21830986,0.00000000,100.00000000,,-1.55000000,0.00000000,,0.09022556,341.00000000,15.08849558,0.21700880,0.00000000,3.96000000 +107,chr22,10755875,UNK,C,,T,,-1.00000000,,,,,,,49.41000000,154.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.05504587,0.00000000,96.00000000,,0.18000000,0.00000000,,0.05309735,349.00000000,15.44247788,0.02578797,0.00000000,4.01000000 +108,chr22,10756015,UNK,T,,C,,-1.00000000,,,,,,,43.62000000,118.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.06666667,0.00000000,58.00000000,,-0.13000000,0.00000000,,0.03246753,160.00000000,7.07964602,0.03750000,0.00000000,3.32000000 +109,chr22,10756148,UNK,A,,G,,-1.00000000,,,,,,,40.44000000,103.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,77.00000000,,1.24000000,0.00000000,,0.15555556,136.00000000,6.01769912,0.00735294,0.00000000,4.68000000 +110,chr22,10756467,UNK,C,,T,,-1.00000000,,,,,,,49.62000000,45.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,89.00000000,,4.73000000,0.00000000,,0.33333333,103.00000000,4.55752212,0.00970874,0.00000000,7.63000000 +111,chr22,10756640,UNK,C,,T,,-1.00000000,,,,,,,47.09000000,20.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-1.11000000,0.00000000,,0.07200000,128.00000000,5.66371681,0.02343750,0.00000000,5.17000000 +112,chr22,10756818,UNK,A,,T,,-1.00000000,,,,,,,50.66000000,37.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.03333333,0.00000000,76.00000000,,1.04000000,0.00000000,,0.06956522,232.00000000,10.26548673,0.00862069,0.00000000,4.21000000 +113,chr22,10756821,UNK,A,,G,,-1.00000000,,,,,,,51.01000000,38.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,77.00000000,,3.46000000,0.00000000,,0.13852814,233.00000000,10.30973451,0.00858369,0.00000000,4.24000000 +114,chr22,10756953,UNK,A,,C,,-1.00000000,,,,,,,47.85000000,94.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,75.00000000,,-2.16000000,0.00000000,,0.14925373,203.00000000,8.98230088,0.00985222,0.00000000,4.65000000 +115,chr22,10756975,UNK,C,,T,,-1.00000000,,,,,,,44.04000000,106.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-1.13000000,0.00000000,,0.09433962,161.00000000,7.12389381,0.01242236,0.00000000,4.85000000 +116,chr22,10756976,UNK,A,,G,,-1.00000000,,,,,,,43.92000000,106.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,,-2.03000000,0.00000000,,0.16560510,160.00000000,7.07964602,0.01250000,0.00000000,5.90000000 +117,chr22,10757199,UNK,T,,C,,-1.00000000,,,,,,,42.59000000,131.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,75.00000000,,0.02000000,0.00000000,,0.13939394,168.00000000,7.43362832,0.01785714,0.00000000,4.54000000 +118,chr22,10757481,UNK,G,,A,,-1.00000000,,,,,,,41.51000000,202.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.08928571,0.00000000,73.00000000,,1.41000000,0.00000000,,0.06508876,174.00000000,7.69911504,0.02873563,0.00000000,4.37000000 +119,chr22,10757924,UNK,A,,C,,-1.00000000,,,,,,,44.96000000,86.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.07017544,0.00000000,73.00000000,,-0.84000000,0.00000000,,0.06626506,172.00000000,7.61061947,0.03488372,0.00000000,4.25000000 +120,chr22,10758109,UNK,T,,C,,-1.00000000,,,,,,,54.21000000,66.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.01098901,0.00000000,90.00000000,,-0.52000000,0.00000000,,0.10069444,293.00000000,12.96460177,0.01706485,0.00000000,4.09000000 +121,chr22,10758112,UNK,T,,C,,-1.00000000,,,,,,,54.49000000,63.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.01063830,0.00000000,92.00000000,,0.71000000,0.00000000,,0.03754266,296.00000000,13.09734513,0.01013514,0.00000000,4.27000000 +122,chr22,10758363,UNK,T,,A,,-1.00000000,,,,,,,51.90000000,17.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,-1.94000000,0.00000000,,0.04166667,296.00000000,13.09734513,0.02702703,0.00000000,4.31000000 +123,chr22,10758367,UNK,T,,G,,-1.00000000,,,,,,,52.04000000,15.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.00000000,0.00000000,83.00000000,,-1.13000000,0.00000000,,0.03703704,302.00000000,13.36283186,0.01324503,0.00000000,4.84000000 +124,chr22,10758670,UNK,A,,G,,-1.00000000,,,,,,,50.35000000,30.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.01282051,0.00000000,84.00000000,,1.17000000,0.00000000,,0.11328125,259.00000000,11.46017699,0.00772201,0.00000000,4.19000000 +125,chr22,10758702,UNK,A,,G,,-1.00000000,,,,,,,53.31000000,20.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,91.00000000,,-0.21000000,0.00000000,,0.04040404,302.00000000,13.36283186,0.01655629,0.00000000,4.28000000 +126,chr22,10758769,UNK,A,,G,,-1.00000000,,,,,,,53.59000000,37.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.01041667,0.00000000,92.00000000,,1.06000000,0.00000000,,0.03797468,320.00000000,14.15929204,0.00937500,0.00000000,4.38000000 +127,chr22,10759059,UNK,G,,A,,-1.00000000,,,,,,,40.72000000,170.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.18000000,0.00000000,,0.08024691,164.00000000,7.25663717,0.01219512,0.00000000,4.75000000 +128,chr22,10759154,UNK,G,,T,,-1.00000000,,,,,,,43.83000000,154.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,2.85000000,5.31000000,,0.05181347,198.00000000,8.76106195,0.02020202,0.00000000,3.38000000 +129,chr22,10759330,UNK,A,,T,,-1.00000000,,,,,,,38.58000000,154.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,-0.98000000,0.00000000,,0.05882353,103.00000000,4.55752212,0.00970874,0.00000000,5.07000000 +130,chr22,10759565,UNK,C,,T,,-1.00000000,,,,,,,46.75000000,155.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.04411765,0.00000000,79.00000000,,0.61000000,0.00000000,,0.04060914,206.00000000,9.11504425,0.03398058,0.00000000,4.16000000 +131,chr22,10759700,UNK,G,,T,,-1.00000000,,,,,,,45.39000000,224.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,0.79000000,0.00000000,,0.08085106,241.00000000,10.66371681,0.02074689,0.00000000,4.47000000 +132,chr22,10759719,UNK,C,,G,,-1.00000000,,,,,,,48.19000000,172.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.00000000,0.00000000,87.00000000,,-1.57000000,0.00000000,,0.05098039,257.00000000,11.37168142,0.00778210,0.00000000,4.68000000 +133,chr22,10761070,UNK,A,,G,,-1.00000000,,,,,,,45.33000000,216.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,0.27000000,0.00000000,,0.06106870,266.00000000,11.76991150,0.01503759,0.00000000,4.13000000 +134,chr22,10761119,UNK,C,,T,,-1.00000000,,,,,,,46.11000000,143.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.15789474,78.00000000,,-3.21000000,0.00000000,,0.09604520,180.00000000,7.96460177,0.01111111,0.12621359,4.53000000 +135,chr22,10761383,UNK,G,,A,,-1.00000000,,,,,,,50.58000000,182.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.01769912,0.00000000,100.00000000,,1.37000000,0.00000000,,0.06140351,347.00000000,15.35398230,0.01440922,0.00000000,4.23000000 +136,chr22,10761784,UNK,T,,C,,-1.00000000,,,,,,,50.83000000,105.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.02020202,0.00000000,94.00000000,,-0.45000000,0.00000000,,0.04676259,283.00000000,12.52212389,0.01060071,0.00000000,4.62000000 +137,chr22,10761860,UNK,C,,T,,-1.00000000,,,,,,,38.28000000,175.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,2.23000000,0.00000000,,0.13385827,131.00000000,5.79646018,0.03053435,0.00000000,4.66000000 +138,chr22,10762012,UNK,A,,C,,-1.00000000,,,,,,,44.00000000,162.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,94.00000000,,0.39000000,0.00000000,,0.17085427,202.00000000,8.93805310,0.01485149,0.00000000,4.94000000 +139,chr22,10762094,UNK,G,,T,,-1.00000000,,,,,,,49.45000000,74.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,1.47000000,0.00000000,,0.10679612,210.00000000,9.29203540,0.01904762,0.00000000,4.22000000 +140,chr22,10762572,UNK,C,,T,,-1.00000000,,,,,,,40.15000000,124.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.67000000,0.00000000,,0.07784431,172.00000000,7.61061947,0.02325581,0.00000000,4.50000000 +141,chr22,10762624,UNK,G,,A,,-1.00000000,,,,,,,38.08000000,62.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.54000000,0.00000000,,0.08695652,94.00000000,4.15929204,0.02127660,0.00000000,4.03000000 +142,chr22,10762864,UNK,G,,T,,-1.00000000,,,,,,,53.58000000,113.00000000,ref,1.00000000,0.00000000,153.00000000,6.76991150,0.00000000,0.00000000,119.00000000,,-0.19000000,0.00000000,,0.06479482,463.00000000,20.48672566,0.00000000,0.00000000,7.37000000 +143,chr22,10762896,UNK,A,,G,,-1.00000000,,,,,,,55.18000000,66.00000000,ref,1.00000000,0.00000000,144.00000000,6.37168142,0.00694444,0.00000000,115.00000000,,-1.59000000,0.00000000,,0.05274725,460.00000000,20.35398230,0.00869565,0.00000000,7.28000000 +144,chr22,10762917,UNK,A,,G,,-1.00000000,,,,,,,55.05000000,64.00000000,ref,1.00000000,0.00751880,134.00000000,5.92920354,0.00746269,0.00000000,73.00000000,,-2.05000000,0.00000000,,0.03255814,431.00000000,19.07079646,0.00232019,0.00000000,4.28000000 +145,chr22,10763252,UNK,G,,T,,-1.00000000,,,,,,,46.49000000,276.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.00769231,0.00000000,108.00000000,,-2.47000000,0.00000000,,0.07821229,365.00000000,16.15044248,0.01643836,0.00000000,6.53000000 +146,chr22,10763719,UNK,T,,C,,-1.00000000,,,,,,,36.39000000,131.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,0.97000000,0.00000000,,0.09433962,106.00000000,4.69026549,0.00000000,0.00000000,4.80000000 +147,chr22,10763822,UNK,C,,G,,-1.00000000,,,,,,,48.82000000,117.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.08000000,0.00000000,81.00000000,,0.37000000,0.00000000,,0.09417040,256.00000000,11.32743363,0.12890625,0.00000000,4.07000000 +148,chr22,10763860,UNK,G,,T,,-1.00000000,,,,,,,51.82000000,93.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.05208333,0.00000000,91.00000000,,0.74000000,0.00000000,,0.09556314,303.00000000,13.40707965,0.02970297,0.00000000,4.00000000 +149,chr22,10763976,UNK,T,,C,,-1.00000000,,,,,,,49.95000000,72.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,,-1.29000000,4.10000000,,0.05789474,194.00000000,8.58407080,0.01546392,0.00000000,3.43000000 +150,chr22,10764360,UNK,G,,T,,-1.00000000,,,,,,,45.61000000,23.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,5.00000000,,-1.27000000,0.00000000,,0.32432432,39.00000000,1.72566372,0.05128205,0.00000000,3.46000000 +151,chr22,10765028,UNK,G,,T,,-1.00000000,,,,,,,44.55000000,141.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,1.56000000,0.00000000,,0.07647059,172.00000000,7.61061947,0.01162791,0.00000000,4.77000000 +152,chr22,10765330,UNK,T,,C,,-1.00000000,,,,,,,34.15000000,215.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,0.35000000,4.15000000,,0.05882353,154.00000000,6.81415929,0.00649351,0.00000000,3.74000000 +153,chr22,10765621,UNK,A,,G,,-1.00000000,,,,,,,28.74000000,236.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,1.94000000,0.00000000,,0.07843137,105.00000000,4.64601770,0.02857143,0.00000000,4.65000000 +154,chr22,10765673,UNK,A,,G,,-1.00000000,,,,,,,36.72000000,262.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,77.00000000,,-0.49000000,0.00000000,,0.03982301,236.00000000,10.44247788,0.03389831,0.00000000,4.77000000 +155,chr22,10766678,UNK,T,,G,,-1.00000000,,,,,,,40.04000000,124.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.07812500,131.00000000,5.79646018,0.01526718,0.00000000,4.39000000 +156,chr22,10766852,UNK,A,,G,,-1.00000000,,,,,,,49.10000000,62.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.00000000,0.00000000,93.00000000,,1.00000000,0.00000000,,0.07894737,232.00000000,10.26548673,0.01293103,0.00000000,4.56000000 +157,chr22,10766931,UNK,G,,A,,-1.00000000,,,,,,,51.77000000,33.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.02531646,0.00000000,84.00000000,,-0.93000000,0.00000000,,0.06341463,211.00000000,9.33628319,0.02843602,0.00000000,4.16000000 +158,chr22,10767099,UNK,G,,T,,-1.00000000,,,,,,,49.01000000,72.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.41509434,0.00000000,64.00000000,,-0.24000000,0.00000000,,0.12403101,168.00000000,7.43362832,0.22619048,0.00000000,4.29000000 +159,chr22,10767399,UNK,T,,C,,-1.00000000,,,,,,,56.99000000,29.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.01941748,0.00000000,95.00000000,,-0.70000000,0.00000000,,0.08438819,246.00000000,10.88495575,0.03252033,0.00000000,4.14000000 +160,chr22,10767544,UNK,T,,A,,-1.00000000,,,,,,,53.24000000,63.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.03260870,0.00000000,90.00000000,,-1.15000000,0.00000000,,0.03734440,252.00000000,11.15044248,0.03571429,0.00000000,4.13000000 +161,chr22,10767694,UNK,G,,A,,-1.00000000,,,,,,,58.37000000,4.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.04347826,0.00000000,77.00000000,,-0.93000000,0.00000000,,0.05847953,352.00000000,15.57522124,0.02556818,0.00000000,4.23000000 +162,chr22,10767729,UNK,T,,C,,-1.00000000,,,,,,,56.82000000,10.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.00724638,0.00000000,87.00000000,,-0.55000000,0.00000000,,0.02976190,340.00000000,15.04424779,0.00882353,0.00000000,4.26000000 +163,chr22,10768609,UNK,T,,G,,-1.00000000,,,,,,,55.22000000,4.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,103.00000000,,-1.42000000,0.00000000,,0.04105572,345.00000000,15.26548673,0.01159420,0.00000000,6.46000000 +164,chr22,10768675,UNK,A,,G,,-1.00000000,,,,,,,54.65000000,29.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02189781,0.00000000,110.00000000,,2.14000000,0.00000000,,0.10077519,392.00000000,17.34513274,0.01020408,0.00000000,7.12000000 +165,chr22,10768778,UNK,G,,A,,-1.00000000,,,,,,,53.39000000,60.00000000,ref,1.00000000,0.00000000,149.00000000,6.59292035,0.01342282,0.00000000,116.00000000,,-1.84000000,0.00000000,,0.09375000,387.00000000,17.12389381,0.00775194,0.00000000,6.99000000 +166,chr22,10769027,UNK,G,,T,,-1.00000000,,,,,,,52.64000000,68.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,85.00000000,,0.32000000,0.00000000,,0.12000000,228.00000000,10.08849558,0.01315789,0.00000000,4.61000000 +167,chr22,10769030,UNK,G,,T,,-1.00000000,,,,,,,52.60000000,68.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,84.00000000,,0.65000000,0.00000000,,0.12000000,228.00000000,10.08849558,0.01315789,0.00000000,4.61000000 +168,chr22,10769041,UNK,A,,G,,-1.00000000,,,,,,,52.85000000,64.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,0.18000000,0.00000000,,0.11261261,229.00000000,10.13274336,0.03056769,0.00000000,4.30000000 +169,chr22,10769071,UNK,T,,C,,-1.00000000,,,,,,,54.18000000,48.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,-1.60000000,0.00000000,,0.04761905,235.00000000,10.39823009,0.01702128,0.00000000,4.48000000 +170,chr22,10769175,UNK,C,,T,,-1.00000000,,,,,,,56.16000000,20.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.03418803,0.00000000,101.00000000,,-1.55000000,0.00000000,,0.09157509,278.00000000,12.30088496,0.01079137,0.00000000,4.67000000 +171,chr22,10769275,UNK,A,,T,,-1.00000000,,,,,,,51.66000000,80.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.05263158,0.00000000,90.00000000,,-0.40000000,0.00000000,,0.04938272,251.00000000,11.10619469,0.03187251,0.00000000,4.06000000 +172,chr22,10769502,UNK,G,,C,,-1.00000000,,,,,,,57.15000000,28.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.05882353,0.00000000,86.00000000,,0.57000000,0.00000000,,0.08602151,196.00000000,8.67256637,0.05102041,0.00000000,4.12000000 +173,chr22,10769814,UNK,A,,C,,-1.00000000,,,,,,,56.28000000,28.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.00000000,0.00000000,103.00000000,,1.85000000,0.00000000,,0.09836066,245.00000000,10.84070796,0.00000000,0.00000000,8.04000000 +174,chr22,10769887,UNK,C,,T,,-1.00000000,,,,,,,54.52000000,57.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.00000000,0.00000000,95.00000000,,1.03000000,0.00000000,,0.07421875,258.00000000,11.41592920,0.00775194,0.00000000,4.26000000 +175,chr22,10769949,UNK,A,,T,,-1.00000000,,,,,,,48.78000000,89.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.00000000,0.04395604,89.00000000,,-1.01000000,0.00000000,,0.05777778,228.00000000,10.08849558,0.01315789,0.02978723,4.22000000 +176,chr22,10769953,UNK,A,,T,,-1.00000000,,,,,,,47.50000000,102.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.00000000,0.00000000,87.00000000,,-0.67000000,0.00000000,,0.05963303,221.00000000,9.77876106,0.01357466,0.00000000,4.54000000 +177,chr22,10770088,UNK,G,,A,,-1.00000000,,,,,,,36.38000000,92.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.88000000,0.00000000,,0.09302326,86.00000000,3.80530973,0.00000000,0.00000000,5.13000000 +178,chr22,10770309,UNK,T,,C,,-1.00000000,,,,,,,47.43000000,124.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.01086957,0.00000000,91.00000000,,0.84000000,0.00000000,,0.04313725,257.00000000,11.37168142,0.00778210,0.00000000,4.19000000 +179,chr22,10770331,UNK,T,,C,,-1.00000000,,,,,,,45.49000000,150.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,1.91000000,0.00000000,,0.08400000,253.00000000,11.19469027,0.00395257,0.00000000,4.31000000 +180,chr22,10770449,UNK,G,,A,,-1.00000000,,,,,,,39.51000000,160.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,0.77000000,0.00000000,,0.08910891,204.00000000,9.02654867,0.00980392,0.00000000,4.89000000 +181,chr22,10770489,UNK,C,,T,,-1.00000000,,,,,,,42.12000000,88.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,82.00000000,,1.03000000,0.00000000,,0.05294118,173.00000000,7.65486726,0.01156069,0.00000000,4.43000000 +182,chr22,10770767,UNK,T,,A,,-1.00000000,,,,,,,45.78000000,105.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-0.12000000,0.00000000,,0.11013216,233.00000000,10.30973451,0.02575107,0.00000000,4.84000000 +183,chr22,10770829,UNK,C,,A,,-1.00000000,,,,,,,45.99000000,114.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.04347826,0.00000000,79.00000000,,-0.82000000,0.00000000,,0.10743802,246.00000000,10.88495575,0.01626016,0.00000000,4.33000000 +184,chr22,10770923,UNK,C,,T,,-1.00000000,,,,,,,55.96000000,40.00000000,ref,1.00000000,0.00000000,115.00000000,5.08849558,0.01739130,0.00000000,101.00000000,,0.44000000,0.00000000,,0.06250000,360.00000000,15.92920354,0.02222222,0.00000000,4.41000000 +185,chr22,10771033,UNK,T,,G,,-1.00000000,,,,,,,54.97000000,21.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.00934579,0.00000000,98.00000000,,0.51000000,0.00000000,,0.07987220,316.00000000,13.98230088,0.00949367,0.00000000,4.44000000 +186,chr22,10771080,UNK,C,,T,,-1.00000000,,,,,,,54.33000000,38.00000000,ref,1.00000000,0.00000000,121.00000000,5.35398230,0.00826446,0.00000000,104.00000000,,2.52000000,0.00000000,,0.12500000,344.00000000,15.22123894,0.02325581,0.00000000,7.10000000 +187,chr22,10771115,UNK,T,,G,,-1.00000000,,,,,,,53.53000000,53.00000000,ref,1.00000000,0.00781250,129.00000000,5.70796460,0.00775194,0.00000000,104.00000000,,0.78000000,0.00000000,,0.06976744,351.00000000,15.53097345,0.01994302,0.00000000,7.06000000 +188,chr22,10771220,UNK,A,,G,,-1.00000000,,,,,,,45.89000000,71.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,91.00000000,,-0.09000000,0.00000000,,0.06293706,288.00000000,12.74336283,0.00694444,0.00000000,4.22000000 +189,chr22,10771448,UNK,A,,G,,-1.00000000,,,,,,,50.81000000,99.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,-1.41000000,0.00000000,,0.04712042,384.00000000,16.99115044,0.00520833,0.00000000,6.78000000 +190,chr22,10771544,UNK,T,,C,,-1.00000000,,,,,,,48.65000000,127.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.01265823,0.13186813,84.00000000,,1.42000000,0.00000000,,0.09090909,332.00000000,14.69026549,0.03614458,0.09289617,3.94000000 +191,chr22,10771893,UNK,A,,G,,-1.00000000,,,,,,,50.14000000,171.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00000000,0.00000000,111.00000000,,0.14000000,0.00000000,,0.06040268,449.00000000,19.86725664,0.00445434,0.00000000,7.44000000 +192,chr22,10772330,UNK,G,,A,,-1.00000000,,,,,,,47.40000000,182.00000000,ref,1.00000000,0.00813008,124.00000000,5.48672566,0.00806452,0.00000000,102.00000000,,-1.93000000,0.00000000,,0.03773585,372.00000000,16.46017699,0.00268817,0.00000000,5.74000000 +193,chr22,10772549,UNK,G,,A,,-1.00000000,,,,,,,47.43000000,143.00000000,ref,1.00000000,0.00000000,105.00000000,4.64601770,0.00952381,0.00000000,96.00000000,,0.60000000,0.00000000,,0.03672316,363.00000000,16.06194690,0.02203857,0.00000000,4.13000000 +194,chr22,10772668,UNK,T,,C,,-1.00000000,,,,,,,54.14000000,150.00000000,ref,1.00000000,0.01098901,183.00000000,8.09734513,0.00546448,0.00000000,63.00000000,,1.50000000,0.00000000,,0.04379562,549.00000000,24.29203540,0.00182149,0.00000000,4.10000000 +195,chr22,10772724,UNK,G,,T,,-1.00000000,,,,,,,47.65000000,254.00000000,ref,1.00000000,0.00884956,113.00000000,5.00000000,0.00000000,0.00000000,69.00000000,,1.52000000,0.00000000,,0.03641457,367.00000000,16.23893805,0.02452316,0.00000000,4.21000000 +196,chr22,10772832,UNK,G,,T,,-1.00000000,,,,,,,37.94000000,206.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,72.00000000,,1.78000000,0.00000000,,0.20529801,156.00000000,6.90265487,0.03205128,0.00000000,5.01000000 +197,chr22,10772918,UNK,C,,A,,-1.00000000,,,,,,,44.10000000,208.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.06756757,0.00000000,84.00000000,,-0.23000000,0.00000000,,0.14883721,232.00000000,10.26548673,0.07327586,0.00000000,4.52000000 +198,chr22,10772937,UNK,C,,G,,-1.00000000,,,,,,,45.70000000,195.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.14864865,0.00000000,78.00000000,,0.12000000,0.00000000,,0.08920188,252.00000000,11.15044248,0.14682540,0.00000000,4.03000000 +199,chr22,10772960,UNK,T,,G,,-1.00000000,,,,,,,45.96000000,196.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.27777778,0.02702703,99.00000000,,-0.57000000,0.00000000,,0.19306931,254.00000000,11.23893805,0.20078740,0.01550388,4.39000000 +200,chr22,10773036,UNK,C,,T,,-1.00000000,,,,,,,44.44000000,243.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.07476636,0.00000000,95.00000000,,2.22000000,0.00000000,,0.10902256,298.00000000,13.18584071,0.10738255,0.00000000,4.00000000 +201,chr22,10773199,UNK,T,,C,,-1.00000000,,,,,,,44.06000000,208.00000000,ref,1.00000000,0.00000000,88.00000000,3.89380531,0.00000000,0.00000000,89.00000000,,-0.46000000,0.00000000,,0.03900709,286.00000000,12.65486726,0.01398601,0.00000000,4.67000000 +202,chr22,10773252,UNK,T,,A,,-1.00000000,,,,,,,42.77000000,193.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.00000000,0.00000000,90.00000000,,0.25000000,0.00000000,,0.05263158,269.00000000,11.90265487,0.00000000,0.00000000,4.58000000 +203,chr22,10773539,UNK,T,,C,,-1.00000000,,,,,,,54.57000000,117.00000000,ref,1.00000000,0.00000000,217.00000000,9.60176991,0.00000000,0.00000000,148.00000000,,0.31000000,0.00000000,,0.06101695,593.00000000,26.23893805,0.00505902,0.00000000,7.62000000 +204,chr22,10773601,UNK,C,,T,,-1.00000000,,,,,,,46.84000000,206.00000000,ref,1.00000000,0.00000000,142.00000000,6.28318584,0.00000000,0.00000000,114.00000000,,-0.49000000,0.00000000,,0.04694836,429.00000000,18.98230088,0.00466200,0.00000000,6.67000000 +205,chr22,10773658,UNK,G,,C,,-1.00000000,,,,,,,40.49000000,200.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.00000000,0.00000000,88.00000000,,-0.04000000,0.00000000,,0.06976744,304.00000000,13.45132743,0.00986842,0.00000000,5.04000000 +206,chr22,10773874,UNK,G,,A,,-1.00000000,,,,,,,47.33000000,144.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,73.00000000,,0.49000000,0.00000000,,0.03313253,338.00000000,14.95575221,0.01775148,0.00000000,4.21000000 +207,chr22,10774306,UNK,C,,T,,-1.00000000,,,,,,,48.17000000,53.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,82.00000000,,-3.14000000,0.00000000,,0.16666667,134.00000000,5.92920354,0.01492537,0.00000000,4.43000000 +208,chr22,10775436,UNK,C,,T,,-1.00000000,,,,,,,54.52000000,49.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.04081633,0.00000000,92.00000000,,1.29000000,0.00000000,,0.03717472,273.00000000,12.07964602,0.01098901,0.00000000,4.12000000 +209,chr22,10775595,UNK,G,,A,,-1.00000000,,,,,,,52.17000000,72.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.02542373,0.00000000,102.00000000,,-0.51000000,0.00000000,,0.03691275,313.00000000,13.84955752,0.04153355,0.00000000,5.84000000 +210,chr22,10775976,UNK,A,,T,,-1.00000000,,,,,,,57.76000000,41.00000000,ref,1.00000000,0.00000000,162.00000000,7.16814159,0.02469136,0.00000000,111.00000000,,-1.81000000,0.00000000,,0.02576112,437.00000000,19.33628319,0.02288330,0.00000000,6.89000000 +211,chr22,10776530,UNK,C,,T,,-1.00000000,,,,,,,56.52000000,38.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.07339450,0.00000000,95.00000000,,-0.90000000,0.00000000,,0.05431310,330.00000000,14.60176991,0.05151515,0.00000000,4.03000000 +212,chr22,10776754,UNK,C,,A,,-1.00000000,,,,,,,54.23000000,72.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.03000000,0.00000000,93.00000000,,-1.75000000,0.00000000,,0.04316547,288.00000000,12.74336283,0.03472222,0.00000000,4.02000000 +213,chr22,10777037,UNK,T,,C,,-1.00000000,,,,,,,51.32000000,139.00000000,ref,1.00000000,0.00000000,121.00000000,5.35398230,0.01652893,0.00000000,103.00000000,,-0.49000000,0.00000000,,0.03571429,313.00000000,13.84955752,0.01597444,0.00000000,5.71000000 +214,chr22,10777125,UNK,C,,G,,-1.00000000,,,,,,,52.06000000,128.00000000,ref,1.00000000,0.00934579,107.00000000,4.73451327,0.00000000,0.00000000,61.00000000,,-1.57000000,0.00000000,,0.03658537,333.00000000,14.73451327,0.01501502,0.00000000,4.41000000 +215,chr22,10777231,UNK,G,,A,,-1.00000000,,,,,,,59.12000000,11.00000000,ref,1.00000000,0.00000000,160.00000000,7.07964602,0.00625000,0.00000000,122.00000000,,-0.23000000,0.00000000,,0.05582524,413.00000000,18.27433628,0.00242131,0.00000000,8.57000000 +216,chr22,10777953,UNK,G,,A,,-1.00000000,,,,,,,57.98000000,6.00000000,ref,1.00000000,0.00000000,116.00000000,5.13274336,0.08620690,0.00000000,71.00000000,,-0.01000000,0.00000000,,0.03072626,373.00000000,16.50442478,0.03753351,0.00000000,4.13000000 +217,chr22,10777999,UNK,G,,A,,-1.00000000,,,,,,,58.14000000,10.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.02654867,0.00000000,100.00000000,,0.42000000,0.00000000,,0.03921569,375.00000000,16.59292035,0.04800000,0.00000000,4.21000000 +218,chr22,10778627,UNK,A,,C,,-1.00000000,,,,,,,56.79000000,8.00000000,ref,1.00000000,0.00000000,83.00000000,3.67256637,0.14457831,0.00000000,79.00000000,,-1.50000000,0.00000000,,0.04017857,262.00000000,11.59292035,0.14503817,0.00000000,4.30000000 +219,chr22,10779486,UNK,G,,T,,-1.00000000,,,,,,,54.48000000,76.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,0.58000000,0.00000000,,0.04278075,380.00000000,16.81415929,0.01578947,0.00000000,8.03000000 +220,chr22,10779557,UNK,T,,A,,-1.00000000,,,,,,,52.52000000,74.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.04687500,0.49206349,77.00000000,,-0.93000000,0.00000000,,0.09444444,190.00000000,8.40707965,0.05263158,0.51030928,3.96000000 +221,chr22,10779796,UNK,C,,T,,-1.00000000,,,,,,,59.76000000,5.00000000,ref,1.00000000,0.00000000,167.00000000,7.38938053,0.04191617,0.00000000,122.00000000,,2.04000000,0.00000000,,0.03764706,437.00000000,19.33628319,0.02745995,0.00000000,7.99000000 +222,chr22,10779963,UNK,T,,C,,-1.00000000,,,,,,,52.12000000,119.00000000,ref,1.00000000,0.00000000,127.00000000,5.61946903,0.01574803,0.00000000,59.00000000,,-0.25000000,0.00000000,,0.02465753,373.00000000,16.50442478,0.02144772,0.00000000,3.15000000 +223,chr22,10780626,UNK,A,,G,,-1.00000000,,,,,,,58.46000000,8.00000000,ref,1.00000000,0.00000000,209.00000000,9.24778761,0.00000000,0.00000000,144.00000000,,-1.54000000,0.00000000,,0.02968460,542.00000000,23.98230088,0.00553506,0.00000000,8.53000000 +224,chr22,10780643,UNK,A,,T,,-1.00000000,,,,,,,58.50000000,7.00000000,ref,1.00000000,0.00000000,205.00000000,9.07079646,0.00000000,0.00000000,92.00000000,,0.93000000,0.00000000,,0.02037037,545.00000000,24.11504425,0.00917431,0.00000000,4.60000000 +225,chr22,10780779,UNK,A,,G,,-1.00000000,,,,,,,58.56000000,22.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.00917431,0.00000000,61.00000000,,-0.70000000,0.00000000,,0.04105572,352.00000000,15.57522124,0.01988636,0.00000000,3.97000000 +226,chr22,10781151,UNK,T,,A,,-1.00000000,,,,,,,57.48000000,41.00000000,ref,1.00000000,0.00000000,110.00000000,4.86725664,0.04545455,0.00000000,58.00000000,,0.46000000,0.00000000,,0.02678571,346.00000000,15.30973451,0.02890173,0.00000000,3.68000000 +227,chr22,10781209,UNK,A,,G,,-1.00000000,,,,,,,56.75000000,46.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.04040404,0.00000000,93.00000000,,1.32000000,0.00000000,,0.03649635,284.00000000,12.56637168,0.03521127,0.00000000,4.20000000 +228,chr22,10781239,UNK,C,,T,,-1.00000000,,,,,,,58.38000000,22.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.04040404,0.00000000,68.00000000,,0.14000000,0.00000000,,0.03296703,285.00000000,12.61061947,0.04210526,0.00000000,4.27000000 +229,chr22,10781548,UNK,C,,T,,-1.00000000,,,,,,,56.37000000,35.00000000,ref,1.00000000,0.01851852,75.00000000,3.31858407,0.28000000,0.00000000,58.00000000,,0.02000000,0.00000000,,0.06756757,211.00000000,9.33628319,0.29383886,0.00000000,3.48000000 +230,chr22,10781725,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,134.00000000,5.92920354,0.01492537,0.00000000,110.00000000,,-1.32000000,0.00000000,,0.03559871,315.00000000,13.93805310,0.01904762,0.00000000,8.59000000 +231,chr22,10781774,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,128.00000000,5.66371681,0.00781250,0.00000000,107.00000000,,-1.02000000,0.00000000,,0.04885993,312.00000000,13.80530973,0.01282051,0.00000000,8.72000000 +232,chr22,10782123,UNK,G,,T,,-1.00000000,,,,,,,59.41000000,5.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,103.00000000,,-0.98000000,0.00000000,,0.03488372,357.00000000,15.79646018,0.03641457,0.00000000,7.17000000 +233,chr22,10782131,UNK,G,,A,,-1.00000000,,,,,,,59.42000000,5.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.00813008,0.00000000,105.00000000,,-1.20000000,0.00000000,,0.03801170,360.00000000,15.92920354,0.04444444,0.00000000,7.80000000 +234,chr22,10782763,UNK,C,,G,,-1.00000000,,,,,,,59.89000000,2.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02189781,0.00000000,111.00000000,,0.36000000,0.00000000,,0.03037975,405.00000000,17.92035398,0.02469136,0.00000000,8.58000000 +235,chr22,10783006,UNK,G,,A,,-1.00000000,,,,,,,58.49000000,5.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.16964286,0.00000000,92.00000000,,-1.02000000,0.00000000,,0.06250000,345.00000000,15.26548673,0.16231884,0.00000000,4.06000000 +236,chr22,10783174,UNK,C,,G,,-1.00000000,,,,,,,59.90000000,2.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00699301,0.00000000,114.00000000,,1.10000000,0.00000000,,0.03211009,441.00000000,19.51327434,0.01133787,0.00000000,8.93000000 +237,chr22,10783325,UNK,G,,A,,-1.00000000,,,,,,,56.44000000,38.00000000,ref,1.00000000,0.01075269,95.00000000,4.20353982,0.02105263,0.00000000,88.00000000,,0.60000000,0.00000000,,0.05405405,300.00000000,13.27433628,0.01000000,0.00000000,4.27000000 +238,chr22,10783386,UNK,C,,T,,-1.00000000,,,,,,,55.75000000,39.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,79.00000000,,-0.17000000,0.43000000,,0.03831418,264.00000000,11.68141593,0.01136364,0.00000000,3.86000000 +239,chr22,10783443,UNK,C,,G,,-1.00000000,,,,,,,56.79000000,40.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.01098901,0.00000000,81.00000000,,0.06000000,0.00000000,,0.03435115,263.00000000,11.63716814,0.00380228,0.00000000,4.41000000 +240,chr22,10783450,UNK,G,,A,,-1.00000000,,,,,,,56.51000000,44.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.00000000,0.00000000,90.00000000,,-0.99000000,0.00000000,,0.03846154,261.00000000,11.54867257,0.00383142,0.00000000,4.76000000 +241,chr22,10783899,UNK,C,,G,,-1.00000000,,,,,,,50.34000000,122.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.00000000,0.00000000,89.00000000,,-0.85000000,0.00000000,,0.04700855,237.00000000,10.48672566,0.01265823,0.00000000,4.66000000 +242,chr22,10783929,UNK,A,,G,,-1.00000000,,,,,,,49.19000000,120.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,-0.62000000,0.00000000,,0.05769231,213.00000000,9.42477876,0.02347418,0.00000000,4.14000000 +243,chr22,10783965,UNK,C,,T,,-1.00000000,,,,,,,48.78000000,110.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.55000000,0.00000000,,0.04255319,192.00000000,8.49557522,0.02083333,0.00000000,4.42000000 +244,chr22,10784237,UNK,G,,A,,-1.00000000,,,,,,,50.99000000,67.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-0.04000000,2.25000000,,0.05172414,178.00000000,7.87610619,0.01685393,0.00000000,3.31000000 +245,chr22,10784348,UNK,C,,T,,-1.00000000,,,,,,,56.52000000,22.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,1.04000000,0.00000000,,0.05072464,140.00000000,6.19469027,0.01428571,0.00000000,4.65000000 +246,chr22,10840390,UNK,T,,C,,-1.00000000,,,,,,,27.67000000,48.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,-0.70000000,0.00000000,,0.05376344,93.00000000,4.11504425,0.00000000,0.00000000,5.18000000 +247,chr22,10849590,UNK,C,,T,,-1.00000000,,,,,,,18.66000000,61.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-0.40000000,0.00000000,,0.37931034,29.00000000,1.28318584,0.00000000,0.00000000,3.60000000 +248,chr22,10851003,UNK,T,,C,,-1.00000000,,,,,,,38.51000000,29.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,,-1.30000000,0.00000000,,0.17857143,58.00000000,2.56637168,0.03448276,0.00000000,6.08000000 +249,chr22,10924895,UNK,G,,A,,-1.00000000,,,,,,,48.44000000,53.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.98000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,5.69000000 +250,chr22,10925869,UNK,C,,A,,-1.00000000,,,,,,,40.15000000,129.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-0.58000000,0.00000000,,0.10526316,77.00000000,3.40707965,0.01298701,0.00000000,5.37000000 +251,chr22,10925872,UNK,T,,C,,-1.00000000,,,,,,,39.98000000,126.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,-1.18000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.67000000 +252,chr22,10926443,UNK,G,,A,,-1.00000000,,,,,,,47.71000000,124.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.12195122,166.00000000,7.34513274,0.01204819,0.00000000,4.74000000 +253,chr22,10926973,UNK,G,,A,,-1.00000000,,,,,,,49.14000000,104.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.88000000,0.00000000,,0.08974359,157.00000000,6.94690265,0.00636943,0.00000000,4.44000000 +254,chr22,10927415,UNK,C,,A,,-1.00000000,,,,,,,54.75000000,39.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,1.10000000,0.00000000,,0.10067114,152.00000000,6.72566372,0.01315789,0.00000000,4.24000000 +255,chr22,10928192,UNK,T,,C,,-1.00000000,,,,,,,55.82000000,25.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,64.00000000,,1.47000000,2.25000000,,0.05882353,115.00000000,5.08849558,0.11304348,0.00000000,3.15000000 +256,chr22,10928952,UNK,C,,T,,-1.00000000,,,,,,,54.51000000,42.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-1.08000000,0.00000000,,0.10416667,144.00000000,6.37168142,0.00000000,0.00000000,4.66000000 +257,chr22,10930855,UNK,C,,T,,-1.00000000,,,,,,,56.62000000,16.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.05000000,0.00000000,,0.08247423,97.00000000,4.29203540,0.00000000,0.00000000,4.87000000 +258,chr22,10930921,UNK,G,,C,,-1.00000000,,,,,,,51.72000000,37.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.10000000,0.00000000,,0.10975610,84.00000000,3.71681416,0.02380952,0.00000000,4.04000000 +259,chr22,10931180,UNK,C,,T,,-1.00000000,,,,,,,53.76000000,33.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.56000000,0.00000000,,0.07142857,98.00000000,4.33628319,0.00000000,0.00000000,4.94000000 +260,chr22,10931978,UNK,T,,C,,-1.00000000,,,,,,,59.02000000,6.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-1.32000000,0.00000000,,0.10569106,124.00000000,5.48672566,0.00806452,0.00000000,4.52000000 +261,chr22,10932119,UNK,T,,C,,-1.00000000,,,,,,,52.02000000,39.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-1.59000000,0.00000000,,0.05952381,85.00000000,3.76106195,0.00000000,0.00000000,5.25000000 +262,chr22,10933175,UNK,T,,A,,-1.00000000,,,,,,,57.69000000,14.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,72.00000000,,0.68000000,0.00000000,,0.06779661,120.00000000,5.30973451,0.01666667,0.00000000,4.35000000 +263,chr22,10933256,UNK,G,,C,,-1.00000000,,,,,,,58.18000000,11.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,,0.29000000,0.00000000,,0.15966387,120.00000000,5.30973451,0.00833333,0.00000000,4.97000000 +264,chr22,10933486,UNK,G,,T,,-1.00000000,,,,,,,58.41000000,8.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,-1.13000000,0.00000000,,0.13114754,123.00000000,5.44247788,0.00813008,0.00000000,4.84000000 +265,chr22,10933610,UNK,G,,A,,-1.00000000,,,,,,,57.30000000,16.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,1.13000000,0.00000000,,0.08800000,129.00000000,5.70796460,0.02325581,0.00000000,4.24000000 +266,chr22,10934988,UNK,A,,G,,-1.00000000,,,,,,,58.30000000,13.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-1.01000000,0.00000000,,0.11042945,165.00000000,7.30088496,0.01212121,0.00000000,4.94000000 +267,chr22,10935009,UNK,A,,G,,-1.00000000,,,,,,,57.31000000,23.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,0.17000000,0.00000000,,0.12568306,184.00000000,8.14159292,0.00543478,0.00000000,4.47000000 +268,chr22,10936543,UNK,G,,C,,-1.00000000,,,,,,,40.01000000,268.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.68000000,0.00000000,,0.09259259,169.00000000,7.47787611,0.03550296,0.00000000,4.42000000 +269,chr22,10936587,UNK,G,,A,,-1.00000000,,,,,,,42.67000000,219.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-0.35000000,0.00000000,,0.08333333,174.00000000,7.69911504,0.03448276,0.00000000,4.27000000 +270,chr22,10940416,UNK,G,,A,,-1.00000000,,,,,,,47.16000000,117.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,78.00000000,,0.66000000,0.00000000,,0.15172414,146.00000000,6.46017699,0.00684932,0.00000000,4.59000000 +271,chr22,10941812,UNK,A,,G,,-1.00000000,,,,,,,52.92000000,57.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,72.00000000,,-0.11000000,0.00000000,,0.07975460,166.00000000,7.34513274,0.01807229,0.00000000,4.22000000 +272,chr22,10943465,UNK,C,,T,,-1.00000000,,,,,,,56.09000000,25.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,,0.26000000,0.00000000,,0.09448819,128.00000000,5.66371681,0.00781250,0.00000000,4.43000000 +273,chr22,10943532,UNK,A,,T,,-1.00000000,,,,,,,51.64000000,64.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-0.29000000,0.00000000,,0.07407407,135.00000000,5.97345133,0.00000000,0.00000000,4.88000000 +274,chr22,10944100,UNK,C,,T,,-1.00000000,,,,,,,50.97000000,73.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,66.00000000,,0.95000000,2.75000000,,0.06081081,148.00000000,6.54867257,0.00000000,0.00000000,3.30000000 +275,chr22,10944101,UNK,A,,G,,-1.00000000,,,,,,,50.90000000,73.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,63.00000000,,0.76000000,1.56000000,,0.06164384,147.00000000,6.50442478,0.00000000,0.00000000,3.27000000 +276,chr22,10944123,UNK,C,,T,,-1.00000000,,,,,,,48.52000000,95.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,,-0.68000000,0.00000000,,0.10218978,138.00000000,6.10619469,0.00724638,0.00000000,4.59000000 +277,chr22,10945812,UNK,C,,A,,-1.00000000,,,,,,,51.72000000,68.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,79.00000000,,-0.97000000,0.00000000,,0.09285714,141.00000000,6.23893805,0.00709220,0.00000000,4.71000000 +278,chr22,10947205,UNK,A,,G,,-1.00000000,,,,,,,47.85000000,87.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.19000000,0.00000000,,0.09482759,116.00000000,5.13274336,0.00000000,0.00000000,4.91000000 +279,chr22,10947209,UNK,C,,T,,-1.00000000,,,,,,,48.99000000,77.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.70000000,0.00000000,,0.08547009,118.00000000,5.22123894,0.00847458,0.00000000,4.92000000 +280,chr22,10948560,UNK,C,,T,,-1.00000000,,,,,,,57.96000000,5.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,74.00000000,,-0.98000000,0.00000000,,0.04316547,141.00000000,6.23893805,0.01418440,0.00000000,4.47000000 +281,chr22,10949265,UNK,A,,C,,-1.00000000,,,,,,,58.11000000,13.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,79.00000000,,1.30000000,0.00000000,,0.12500000,162.00000000,7.16814159,0.00617284,0.00000000,4.42000000 +282,chr22,10951383,UNK,T,,C,,-1.00000000,,,,,,,55.70000000,28.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,-0.23000000,0.00000000,,0.09774436,136.00000000,6.01769912,0.00735294,0.00000000,4.25000000 +283,chr22,10951601,UNK,G,,T,,-1.00000000,,,,,,,58.87000000,6.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-1.52000000,0.00000000,,0.11564626,150.00000000,6.63716814,0.02000000,0.00000000,4.61000000 +284,chr22,10951650,UNK,A,,T,,-1.00000000,,,,,,,58.91000000,5.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,75.00000000,,1.19000000,0.00000000,,0.10791367,143.00000000,6.32743363,0.02797203,0.00000000,4.55000000 +285,chr22,10952050,UNK,A,,G,,-1.00000000,,,,,,,54.04000000,33.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,74.00000000,,1.19000000,0.00000000,,0.15277778,144.00000000,6.37168142,0.00000000,0.00000000,4.78000000 +286,chr22,10953186,UNK,G,,T,,-1.00000000,,,,,,,56.84000000,23.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-0.37000000,0.00000000,,0.08666667,152.00000000,6.72566372,0.00657895,0.00000000,4.69000000 +287,chr22,10954089,UNK,A,,T,,-1.00000000,,,,,,,53.99000000,44.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.07843137,156.00000000,6.90265487,0.01282051,0.00000000,4.63000000 +288,chr22,10955734,UNK,A,,G,,-1.00000000,,,,,,,58.87000000,8.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.13207547,0.00000000,70.00000000,,0.42000000,0.00000000,,0.11805556,153.00000000,6.76991150,0.05882353,0.00000000,4.26000000 +289,chr22,10956714,UNK,G,,A,,-1.00000000,,,,,,,56.83000000,15.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.22000000,0.00000000,,0.05844156,154.00000000,6.81415929,0.00000000,0.00000000,5.04000000 +290,chr22,10962127,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.62000000,0.00000000,,0.10447761,138.00000000,6.10619469,0.02173913,0.00000000,4.88000000 +291,chr22,10962142,UNK,C,,T,,-1.00000000,,,,,,,58.87000000,2.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,80.00000000,,0.09000000,0.00000000,,0.17266187,141.00000000,6.23893805,0.01418440,0.00000000,5.54000000 +292,chr22,10963915,UNK,C,,T,,-1.00000000,,,,,,,52.17000000,17.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,71.00000000,,2.31000000,0.00000000,,0.14400000,127.00000000,5.61946903,0.01574803,0.00000000,4.46000000 +293,chr22,10963918,UNK,T,,G,,-1.00000000,,,,,,,52.65000000,15.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,,2.40000000,0.00000000,,0.14173228,129.00000000,5.70796460,0.01550388,0.00000000,4.46000000 +294,chr22,10963919,UNK,C,,T,,-1.00000000,,,,,,,52.65000000,15.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,,2.44000000,0.00000000,,0.14062500,131.00000000,5.79646018,0.02290076,0.00000000,4.59000000 +295,chr22,10964074,UNK,A,,T,,-1.00000000,,,,,,,59.45000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.09868421,153.00000000,6.76991150,0.00653595,0.00000000,4.47000000 +296,chr22,10964426,UNK,T,,C,,-1.00000000,,,,,,,52.94000000,72.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,70.00000000,,-2.58000000,0.00000000,,0.07035176,202.00000000,8.93805310,0.00495050,0.00000000,4.46000000 +297,chr22,10964432,UNK,C,,T,,-1.00000000,,,,,,,52.37000000,76.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,73.00000000,,-3.31000000,0.00000000,,0.04687500,198.00000000,8.76106195,0.03030303,0.00000000,4.25000000 +298,chr22,10964447,UNK,C,,A,,-1.00000000,,,,,,,51.15000000,86.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,72.00000000,,-3.83000000,0.00000000,,0.10204082,197.00000000,8.71681416,0.00507614,0.00000000,4.33000000 +299,chr22,10964548,UNK,A,,C,,-1.00000000,,,,,,,50.60000000,73.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.00000000,0.00000000,81.00000000,,-1.01000000,0.00000000,,0.08074534,165.00000000,7.30088496,0.02424242,0.00000000,4.44000000 +300,chr22,10966111,UNK,A,,G,,-1.00000000,,,,,,,56.91000000,24.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,73.00000000,,1.73000000,0.00000000,,0.07947020,156.00000000,6.90265487,0.01923077,0.00000000,4.36000000 +301,chr22,10966309,UNK,A,,T,,-1.00000000,,,,,,,54.60000000,29.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,,-0.86000000,0.00000000,,0.14141414,99.00000000,4.38053097,0.00000000,0.00000000,5.88000000 +302,chr22,10966383,UNK,C,,A,,-1.00000000,,,,,,,58.46000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-0.05000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,4.19000000 +303,chr22,11023082,UNK,C,,T,,-1.00000000,,,,,,,47.62000000,46.00000000,ref,1.00000000,0.00000000,202.00000000,8.93805310,0.01485149,0.00000000,99.00000000,,0.15000000,0.00000000,,0.02100162,624.00000000,27.61061947,0.00801282,0.00000000,4.08000000 +304,chr22,11023583,UNK,T,,C,,-1.00000000,,,,,,,26.25000000,271.00000000,ref,1.00000000,0.02083333,49.00000000,2.16814159,0.02040816,0.07547170,68.00000000,,0.88000000,0.00000000,,0.07936508,132.00000000,5.84070796,0.04545455,0.04347826,3.98000000 +305,chr22,11024175,UNK,G,,A,,-1.00000000,,,,,,,27.34000000,295.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,78.00000000,,1.65000000,0.00000000,,0.06918239,159.00000000,7.03539823,0.00000000,0.00000000,4.56000000 +306,chr22,11024376,UNK,C,,T,,-1.00000000,,,,,,,27.86000000,250.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.03000000,0.00000000,,0.06818182,90.00000000,3.98230088,0.02222222,0.00000000,4.72000000 +307,chr22,11025632,UNK,G,,A,,-1.00000000,,,,,,,48.46000000,96.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.07017544,0.00000000,73.00000000,,1.46000000,0.00000000,,0.07382550,156.00000000,6.90265487,0.03846154,0.00000000,4.07000000 +308,chr22,11025896,UNK,G,,A,,-1.00000000,,,,,,,40.74000000,202.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.07692308,0.00000000,77.00000000,,-0.03000000,0.00000000,,0.08433735,177.00000000,7.83185841,0.06214689,0.00000000,4.19000000 +309,chr22,11026348,UNK,T,,C,,-1.00000000,,,,,,,48.98000000,228.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.01438849,0.00000000,100.00000000,,1.18000000,0.00000000,,0.02631579,398.00000000,17.61061947,0.02763819,0.00000000,4.12000000 +310,chr22,11027126,UNK,G,,A,,-1.00000000,,,,,,,53.16000000,81.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.01626016,0.00000000,105.00000000,,0.30000000,0.00000000,,0.05921053,309.00000000,13.67256637,0.01618123,0.00000000,7.05000000 +311,chr22,11027237,UNK,G,,T,,-1.00000000,,,,,,,55.35000000,38.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.01960784,0.00000000,95.00000000,,-1.46000000,0.00000000,,0.06000000,261.00000000,11.54867257,0.04214559,0.00000000,4.37000000 +312,chr22,11029762,UNK,G,,A,,-1.00000000,,,,,,,55.31000000,36.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00735294,0.00000000,111.00000000,,0.84000000,0.00000000,,0.04303797,402.00000000,17.78761062,0.01492537,0.00000000,7.64000000 +313,chr22,11029788,UNK,C,,A,,-1.00000000,,,,,,,53.65000000,51.00000000,ref,1.00000000,0.00000000,114.00000000,5.04424779,0.01754386,0.00000000,100.00000000,,0.87000000,0.00000000,,0.03468208,358.00000000,15.84070796,0.02513966,0.00000000,4.29000000 +314,chr22,11029879,UNK,G,,C,,-1.00000000,,,,,,,47.23000000,130.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.01219512,0.00000000,86.00000000,,-1.85000000,0.00000000,,0.03717472,272.00000000,12.03539823,0.01102941,0.00000000,4.52000000 +315,chr22,11030127,UNK,C,,T,,-1.00000000,,,,,,,53.75000000,67.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.01587302,0.00000000,105.00000000,,0.13000000,0.00000000,,0.03053435,395.00000000,17.47787611,0.00506329,0.00000000,7.43000000 +316,chr22,11030398,UNK,G,,A,,-1.00000000,,,,,,,54.08000000,99.00000000,ref,1.00000000,0.00000000,165.00000000,7.30088496,0.02424242,0.00000000,123.00000000,,0.07000000,0.00000000,,0.04640371,435.00000000,19.24778761,0.00919540,0.00000000,7.32000000 +317,chr22,11030432,UNK,A,,G,,-1.00000000,,,,,,,55.95000000,77.00000000,ref,1.00000000,0.00000000,183.00000000,8.09734513,0.01639344,0.00000000,132.00000000,,-0.51000000,0.00000000,,0.03586498,479.00000000,21.19469027,0.00835073,0.00000000,7.88000000 +318,chr22,11030618,UNK,T,,A,,-1.00000000,,,,,,,55.31000000,49.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.14814815,0.00000000,91.00000000,,0.41000000,0.00000000,,0.05223881,303.00000000,13.40707965,0.11551155,0.00000000,3.96000000 +319,chr22,11030807,UNK,C,,T,,-1.00000000,,,,,,,55.80000000,42.00000000,ref,1.00000000,0.00000000,119.00000000,5.26548673,0.05042017,0.00000000,61.00000000,,-1.27000000,0.00000000,,0.02797203,326.00000000,14.42477876,0.11656442,0.00000000,4.04000000 +320,chr22,11031059,UNK,C,,G,,-1.00000000,,,,,,,58.13000000,22.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.04347826,0.00000000,89.00000000,,-1.49000000,0.00000000,,0.05755396,289.00000000,12.78761062,0.03806228,0.00000000,4.31000000 +321,chr22,11031246,UNK,T,,C,,-1.00000000,,,,,,,54.43000000,39.00000000,ref,1.00000000,0.01449275,69.00000000,3.05309735,0.00000000,0.00000000,77.00000000,,-1.02000000,3.98000000,,0.04926108,206.00000000,9.11504425,0.01456311,0.00000000,3.49000000 +322,chr22,11031248,UNK,C,,T,,-1.00000000,,,,,,,54.11000000,41.00000000,ref,1.00000000,0.01470588,68.00000000,3.00884956,0.00000000,0.00000000,63.00000000,,-0.62000000,3.67000000,,0.04500000,203.00000000,8.98230088,0.01477833,0.00000000,3.58000000 +323,chr22,11032567,UNK,T,,A,,-1.00000000,,,,,,,53.29000000,63.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.06060606,0.00000000,78.00000000,,0.15000000,0.00000000,,0.06632653,206.00000000,9.11504425,0.04368932,0.00000000,4.17000000 +324,chr22,11033041,UNK,A,,C,,-1.00000000,,,,,,,46.49000000,186.00000000,ref,1.00000000,0.01298701,78.00000000,3.45132743,0.01282051,0.00000000,75.00000000,,0.76000000,0.00000000,,0.06896552,236.00000000,10.44247788,0.01271186,0.00000000,4.33000000 +325,chr22,11034417,UNK,C,,T,,-1.00000000,,,,,,,51.41000000,121.00000000,ref,1.00000000,0.00862069,118.00000000,5.22123894,0.01694915,0.00000000,86.00000000,,-0.08000000,0.00000000,,0.04529617,290.00000000,12.83185841,0.01034483,0.00000000,4.29000000 +326,chr22,11034784,UNK,C,,T,,-1.00000000,,,,,,,56.95000000,31.00000000,ref,1.00000000,0.00000000,194.00000000,8.58407080,0.00000000,0.00000000,109.00000000,,-0.47000000,0.00000000,,0.02400000,504.00000000,22.30088496,0.00793651,0.00000000,8.20000000 +327,chr22,11034964,UNK,C,,T,,-1.00000000,,,,,,,55.74000000,104.00000000,ref,1.00000000,0.00000000,165.00000000,7.30088496,0.00000000,0.00000000,125.00000000,,1.52000000,0.00000000,,0.03339882,512.00000000,22.65486726,0.00390625,0.00000000,8.41000000 +328,chr22,11035002,UNK,C,,T,,-1.00000000,,,,,,,55.71000000,96.00000000,ref,1.00000000,0.00000000,174.00000000,7.69911504,0.00574713,0.00000000,128.00000000,,-1.16000000,0.00000000,,0.03100775,521.00000000,23.05309735,0.00959693,0.00000000,7.42000000 +329,chr22,11035107,UNK,C,,T,,-1.00000000,,,,,,,58.63000000,20.00000000,ref,1.00000000,0.00555556,186.00000000,8.23008850,0.03225806,0.00000000,95.00000000,,-1.30000000,0.00000000,,0.04373757,520.00000000,23.00884956,0.02884615,0.00000000,4.10000000 +330,chr22,11035785,UNK,C,,A,,-1.00000000,,,,,,,53.08000000,91.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.04854369,0.00000000,94.00000000,,-0.20000000,0.00000000,,0.06225681,271.00000000,11.99115044,0.05166052,0.00000000,4.05000000 +331,chr22,11036413,UNK,C,,T,,-1.00000000,,,,,,,56.53000000,39.00000000,ref,1.00000000,0.01234568,88.00000000,3.89380531,0.06818182,0.00000000,59.00000000,,-1.83000000,0.00000000,,0.04273504,245.00000000,10.84070796,0.04489796,0.00000000,3.38000000 +332,chr22,11036762,UNK,G,,A,,-1.00000000,,,,,,,56.22000000,29.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.05000000,0.00000000,78.00000000,,0.17000000,0.00000000,,0.04776119,345.00000000,15.26548673,0.02608696,0.00000000,4.14000000 +333,chr22,11036998,UNK,C,,T,,-1.00000000,,,,,,,57.99000000,25.00000000,ref,1.00000000,0.00000000,174.00000000,7.69911504,0.00574713,0.00000000,128.00000000,,2.00000000,0.00000000,,0.04250000,404.00000000,17.87610619,0.00990099,0.00000000,8.15000000 +334,chr22,11037133,UNK,C,,G,,-1.00000000,,,,,,,55.70000000,40.00000000,ref,1.00000000,0.00000000,155.00000000,6.85840708,0.03225806,0.00000000,117.00000000,,0.61000000,0.00000000,,0.04938272,422.00000000,18.67256637,0.04028436,0.00000000,7.62000000 +335,chr22,11037660,UNK,G,,A,,-1.00000000,,,,,,,51.66000000,79.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.11458333,0.00000000,72.00000000,,-0.65000000,4.57000000,,0.04089219,294.00000000,13.00884956,0.08503401,0.00000000,2.81000000 +336,chr22,11037902,UNK,C,,T,,-1.00000000,,,,,,,58.42000000,35.00000000,ref,1.00000000,0.00000000,163.00000000,7.21238938,0.08588957,0.00000000,96.00000000,,-1.27000000,0.00000000,,0.03652968,482.00000000,21.32743363,0.09128631,0.00000000,4.23000000 +337,chr22,11037905,UNK,G,,A,,-1.00000000,,,,,,,58.42000000,35.00000000,ref,1.00000000,0.00000000,166.00000000,7.34513274,0.08433735,0.00000000,119.00000000,,-1.52000000,0.00000000,,0.03488372,478.00000000,21.15044248,0.10041841,0.00000000,7.16000000 +338,chr22,11038030,UNK,G,,A,,-1.00000000,,,,,,,55.94000000,55.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.05839416,0.00000000,108.00000000,,-1.09000000,0.00000000,,0.04672897,339.00000000,15.00000000,0.04129794,0.00000000,7.07000000 +339,chr22,11038241,UNK,C,,T,,-1.00000000,,,,,,,50.07000000,65.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.01010101,0.00000000,94.00000000,,0.37000000,0.00000000,,0.03649635,279.00000000,12.34513274,0.01433692,0.00000000,4.20000000 +340,chr22,11038294,UNK,C,,T,,-1.00000000,,,,,,,53.61000000,28.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,94.00000000,,-0.99000000,0.00000000,,0.05357143,287.00000000,12.69911504,0.02439024,0.00000000,4.60000000 +341,chr22,11038417,UNK,G,,C,,-1.00000000,,,,,,,57.96000000,13.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00000000,0.00000000,103.00000000,,1.82000000,0.00000000,,0.07792208,314.00000000,13.89380531,0.01592357,0.00000000,7.98000000 +342,chr22,11038491,UNK,T,,C,,-1.00000000,,,,,,,56.60000000,30.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.01538462,0.00000000,108.00000000,,1.14000000,0.00000000,,0.05671642,341.00000000,15.08849558,0.01466276,0.00000000,8.37000000 +343,chr22,11038522,UNK,T,,C,,-1.00000000,,,,,,,55.78000000,35.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.02400000,0.00000000,105.00000000,,-0.03000000,0.00000000,,0.03351955,364.00000000,16.10619469,0.01648352,0.00000000,6.78000000 +344,chr22,11038570,UNK,T,,G,,-1.00000000,,,,,,,53.63000000,45.00000000,ref,1.00000000,0.00729927,140.00000000,6.19469027,0.01428571,0.00000000,108.00000000,,-0.12000000,0.00000000,,0.05154639,393.00000000,17.38938053,0.00763359,0.00000000,7.16000000 +345,chr22,11038585,UNK,C,,T,,-1.00000000,,,,,,,53.48000000,45.00000000,ref,1.00000000,0.00775194,134.00000000,5.92920354,0.02238806,0.00000000,105.00000000,,1.32000000,0.00000000,,0.02894737,387.00000000,17.12389381,0.01550388,0.00000000,6.27000000 +346,chr22,11038599,UNK,G,,C,,-1.00000000,,,,,,,53.37000000,42.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.03846154,0.00000000,89.00000000,,2.06000000,0.00000000,,0.02762431,368.00000000,16.28318584,0.01630435,0.00000000,3.97000000 +347,chr22,11038857,UNK,G,,A,,-1.00000000,,,,,,,57.90000000,6.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.01123596,0.00000000,89.00000000,,2.25000000,0.00000000,,0.05371901,250.00000000,11.06194690,0.03200000,0.00000000,4.16000000 +348,chr22,11038950,UNK,A,,G,,-1.00000000,,,,,,,57.61000000,10.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.01481481,0.00000000,110.00000000,,-1.94000000,0.00000000,,0.02808989,366.00000000,16.19469027,0.02732240,0.00000000,7.60000000 +349,chr22,11039013,UNK,A,,T,,-1.00000000,,,,,,,56.40000000,50.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.00740741,0.00000000,110.00000000,,0.86000000,0.00000000,,0.02857143,388.00000000,17.16814159,0.00773196,0.00000000,8.19000000 +350,chr22,11039046,UNK,T,,C,,-1.00000000,,,,,,,56.66000000,53.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.04273504,0.00000000,75.00000000,,0.77000000,1.09000000,,0.02747253,373.00000000,16.50442478,0.02144772,0.00000000,2.94000000 +351,chr22,11039261,UNK,G,,A,,-1.00000000,,,,,,,55.31000000,39.00000000,ref,1.00000000,0.01075269,94.00000000,4.15929204,0.01063830,0.00000000,82.00000000,,0.47000000,0.00000000,,0.11023622,259.00000000,11.46017699,0.01930502,0.00000000,4.16000000 +352,chr22,11039519,UNK,G,,T,,-1.00000000,,,,,,,55.37000000,34.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.05000000,0.00000000,84.00000000,,0.45000000,0.00000000,,0.06896552,212.00000000,9.38053097,0.04245283,0.00000000,4.09000000 +353,chr22,11039578,UNK,G,,T,,-1.00000000,,,,,,,53.94000000,48.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.10389610,0.00000000,81.00000000,,-0.41000000,0.00000000,,0.05294118,183.00000000,8.09734513,0.07103825,0.00000000,4.11000000 +354,chr22,11039656,UNK,T,,C,,-1.00000000,,,,,,,49.81000000,103.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.15789474,0.00000000,78.00000000,,-0.57000000,0.00000000,,0.05405405,204.00000000,9.02654867,0.08823529,0.00000000,4.36000000 +355,chr22,11040277,UNK,G,,A,,-1.00000000,,,,,,,49.11000000,189.00000000,ref,1.00000000,0.00806452,127.00000000,5.61946903,0.02362205,0.00000000,69.00000000,,-0.52000000,0.00000000,,0.04359673,370.00000000,16.37168142,0.00810811,0.00000000,4.28000000 +356,chr22,11040466,UNK,A,,T,,-1.00000000,,,,,,,46.98000000,196.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,70.00000000,,-0.76000000,12.38000000,,0.03212851,252.00000000,11.15044248,0.00793651,0.00000000,3.44000000 +357,chr22,11040873,UNK,G,,A,,-1.00000000,,,,,,,51.01000000,63.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.21153846,0.00000000,68.00000000,,2.37000000,0.00000000,,0.07017544,144.00000000,6.37168142,0.20833333,0.00000000,4.09000000 +358,chr22,11041041,UNK,G,,C,,-1.00000000,,,,,,,56.81000000,23.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,-0.87000000,3.99000000,,0.04635762,166.00000000,7.34513274,0.09036145,0.00000000,3.00000000 +359,chr22,11042146,UNK,A,,T,,-1.00000000,,,,,,,56.41000000,50.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,112.00000000,,-0.78000000,0.00000000,,0.03386005,445.00000000,19.69026549,0.00449438,0.00000000,7.97000000 +360,chr22,11042152,UNK,C,,T,,-1.00000000,,,,,,,56.43000000,49.00000000,ref,1.00000000,0.00746269,134.00000000,5.92920354,0.00000000,0.00000000,93.00000000,,0.14000000,0.00000000,,0.02974828,439.00000000,19.42477876,0.00455581,0.00000000,4.23000000 +361,chr22,11042294,UNK,G,,A,,-1.00000000,,,,,,,54.20000000,56.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.01851852,0.00000000,98.00000000,,0.78000000,0.00000000,,0.03133903,354.00000000,15.66371681,0.00564972,0.00000000,4.10000000 +362,chr22,11042300,UNK,C,,T,,-1.00000000,,,,,,,54.08000000,56.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.01851852,0.00000000,98.00000000,,-0.44000000,0.00000000,,0.04249292,355.00000000,15.70796460,0.00563380,0.00000000,4.19000000 +363,chr22,11043522,UNK,A,,C,,-1.00000000,,,,,,,54.70000000,96.00000000,ref,1.00000000,0.00000000,184.00000000,8.14159292,0.00543478,0.00000000,133.00000000,,-0.58000000,0.00000000,,0.03418803,475.00000000,21.01769912,0.01263158,0.00000000,6.93000000 +364,chr22,11044321,UNK,C,,A,,-1.00000000,,,,,,,34.09000000,386.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.01020408,0.00000000,88.00000000,,0.69000000,0.00000000,,0.03802281,266.00000000,11.76991150,0.00751880,0.00000000,4.53000000 +365,chr22,11045199,UNK,A,,G,,-1.00000000,,,,,,,31.56000000,302.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,94.00000000,,0.96000000,0.00000000,,0.03937008,256.00000000,11.32743363,0.00390625,0.00000000,4.44000000 +366,chr22,11045223,UNK,C,,A,,-1.00000000,,,,,,,31.25000000,260.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,60.00000000,,0.23000000,0.00000000,,0.04739336,213.00000000,9.42477876,0.00938967,0.00000000,4.72000000 +367,chr22,11046802,UNK,C,,T,,-1.00000000,,,,,,,38.42000000,130.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-0.57000000,2.57000000,,0.06194690,114.00000000,5.04424779,0.00877193,0.00000000,4.14000000 +368,chr22,11047453,UNK,C,,T,,-1.00000000,,,,,,,48.64000000,79.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.78000000,0.00000000,,0.04310345,236.00000000,10.44247788,0.01271186,0.00000000,4.80000000 +369,chr22,11047458,UNK,C,,T,,-1.00000000,,,,,,,49.13000000,73.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,80.00000000,,-0.34000000,0.00000000,,0.04641350,240.00000000,10.61946903,0.01250000,0.00000000,4.84000000 +370,chr22,11047837,UNK,A,,T,,-1.00000000,,,,,,,44.93000000,90.00000000,ref,1.00000000,0.01754386,57.00000000,2.52212389,0.00000000,0.00000000,66.00000000,,-0.65000000,0.00000000,,0.05154639,195.00000000,8.62831858,0.00000000,0.00000000,5.11000000 +371,chr22,11048270,UNK,C,,T,,-1.00000000,,,,,,,37.62000000,121.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.12195122,0.00000000,66.00000000,,1.42000000,0.00000000,,0.11320755,114.00000000,5.04424779,0.07017544,0.00000000,4.41000000 +372,chr22,11048487,UNK,C,,T,,-1.00000000,,,,,,,40.05000000,129.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,74.00000000,,-0.46000000,0.00000000,,0.14685315,145.00000000,6.41592920,0.01379310,0.00000000,4.72000000 +373,chr22,11049100,UNK,T,,C,,-1.00000000,,,,,,,45.95000000,157.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.09574468,0.00000000,88.00000000,,2.05000000,0.00000000,,0.05462185,261.00000000,11.54867257,0.08429119,0.00000000,4.07000000 +374,chr22,11049572,UNK,G,,A,,-1.00000000,,,,,,,45.08000000,84.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.07407407,0.00000000,72.00000000,,-1.27000000,3.42000000,,0.04938272,170.00000000,7.52212389,0.04117647,0.00000000,3.00000000 +375,chr22,11049723,UNK,A,,T,,-1.00000000,,,,,,,54.23000000,41.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,62.00000000,,0.62000000,0.00000000,,0.04455446,208.00000000,9.20353982,0.01923077,0.00000000,4.06000000 +376,chr22,11049748,UNK,A,,G,,-1.00000000,,,,,,,52.76000000,37.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.21000000,0.41000000,,0.04624277,175.00000000,7.74336283,0.01142857,0.00000000,3.97000000 +377,chr22,11049752,UNK,A,,G,,-1.00000000,,,,,,,52.30000000,38.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,71.00000000,,-0.95000000,0.20000000,,0.04678363,173.00000000,7.65486726,0.01156069,0.00000000,4.15000000 +378,chr22,11050791,UNK,T,,A,,-1.00000000,,,,,,,36.25000000,266.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,67.00000000,,1.38000000,0.00000000,,0.03550296,178.00000000,7.87610619,0.04494382,0.00000000,4.27000000 +379,chr22,11050941,UNK,A,,G,,-1.00000000,,,,,,,36.49000000,260.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,77.00000000,,-1.36000000,0.00000000,,0.08176101,166.00000000,7.34513274,0.04216867,0.00000000,4.45000000 +380,chr22,11051820,UNK,G,,A,,-1.00000000,,,,,,,36.84000000,239.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.00000000,0.00000000,62.00000000,,-0.60000000,2.86000000,,0.04000000,201.00000000,8.89380531,0.00497512,0.00000000,3.40000000 +381,chr22,11052252,UNK,C,,T,,-1.00000000,,,,,,,41.57000000,216.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.08602151,0.00000000,88.00000000,,1.37000000,0.00000000,,0.06153846,273.00000000,12.07964602,0.04761905,0.00000000,4.18000000 +382,chr22,11052308,UNK,C,,T,,-1.00000000,,,,,,,39.87000000,182.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.00000000,0.00000000,70.00000000,,0.72000000,0.00000000,,0.03396226,266.00000000,11.76991150,0.00375940,0.00000000,4.52000000 +383,chr22,11052360,UNK,C,,T,,-1.00000000,,,,,,,35.83000000,141.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.00000000,0.00000000,81.00000000,,0.05000000,0.00000000,,0.06185567,198.00000000,8.76106195,0.02020202,0.00000000,4.46000000 +384,chr22,11052524,UNK,C,,T,,-1.00000000,,,,,,,44.41000000,56.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,68.00000000,,-2.38000000,0.00000000,,0.08029197,139.00000000,6.15044248,0.00719424,0.00000000,4.49000000 +385,chr22,11052743,UNK,T,,C,,-1.00000000,,,,,,,38.87000000,181.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.01980198,0.00000000,94.00000000,,1.47000000,0.00000000,,0.04150943,267.00000000,11.81415929,0.00749064,0.00000000,4.31000000 +386,chr22,11053704,UNK,G,,A,,-1.00000000,,,,,,,46.16000000,201.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00000000,0.00000000,103.00000000,,-0.58000000,0.00000000,,0.04095563,296.00000000,13.09734513,0.00675676,0.00000000,6.80000000 +387,chr22,11053779,UNK,G,,T,,-1.00000000,,,,,,,49.38000000,123.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.01587302,0.00000000,106.00000000,,0.48000000,0.00000000,,0.05119454,299.00000000,13.23008850,0.02006689,0.00000000,7.17000000 +388,chr22,11053899,UNK,T,,A,,-1.00000000,,,,,,,46.72000000,139.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,84.00000000,,1.98000000,0.00000000,,0.05797101,208.00000000,9.20353982,0.00480769,0.00000000,4.33000000 +389,chr22,11053924,UNK,T,,C,,-1.00000000,,,,,,,46.37000000,135.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,61.00000000,,-0.16000000,0.00000000,,0.03846154,209.00000000,9.24778761,0.00478469,0.00000000,4.35000000 +390,chr22,11054103,UNK,T,,C,,-1.00000000,,,,,,,45.75000000,174.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.02105263,0.00000000,92.00000000,,1.22000000,0.00000000,,0.05394191,243.00000000,10.75221239,0.00823045,0.00000000,4.13000000 +391,chr22,11054992,UNK,T,,C,,-1.00000000,,,,,,,45.48000000,74.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,-1.16000000,0.00000000,,0.06250000,162.00000000,7.16814159,0.01234568,0.00000000,4.46000000 +392,chr22,11054996,UNK,G,,T,,-1.00000000,,,,,,,45.76000000,73.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,-1.36000000,0.00000000,,0.06875000,162.00000000,7.16814159,0.01234568,0.00000000,4.45000000 +393,chr22,11055092,UNK,G,,A,,-1.00000000,,,,,,,52.14000000,35.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.06000000,0.00000000,71.00000000,,-2.00000000,0.00000000,,0.08450704,149.00000000,6.59292035,0.04697987,0.00000000,4.21000000 +394,chr22,11055485,UNK,C,,T,,-1.00000000,,,,,,,55.12000000,26.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.13235294,0.00000000,76.00000000,,-0.99000000,0.00000000,,0.06726457,241.00000000,10.66371681,0.07468880,0.00000000,4.11000000 +395,chr22,11055761,UNK,G,,T,,-1.00000000,,,,,,,58.02000000,47.00000000,ref,1.00000000,0.00000000,189.00000000,8.36283186,0.02116402,0.00000000,133.00000000,,-0.18000000,0.00000000,,0.06130268,530.00000000,23.45132743,0.01509434,0.00000000,7.36000000 +396,chr22,11056177,UNK,C,,T,,-1.00000000,,,,,,,56.94000000,35.00000000,ref,1.00000000,0.00000000,164.00000000,7.25663717,0.01829268,0.00000000,123.00000000,,1.25000000,0.00000000,,0.04339250,518.00000000,22.92035398,0.01930502,0.00000000,8.24000000 +397,chr22,11056427,UNK,G,,T,,-1.00000000,,,,,,,57.62000000,40.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02919708,0.00000000,110.00000000,,0.02000000,0.00000000,,0.07591623,389.00000000,17.21238938,0.01799486,0.00000000,7.64000000 +398,chr22,11056481,UNK,G,,A,,-1.00000000,,,,,,,58.61000000,27.00000000,ref,1.00000000,0.00694444,148.00000000,6.54867257,0.02702703,0.00000000,73.00000000,,1.45000000,0.00000000,,0.02813299,401.00000000,17.74336283,0.01745636,0.00000000,4.29000000 +399,chr22,11056810,UNK,A,,G,,-1.00000000,,,,,,,57.15000000,58.00000000,ref,1.00000000,0.00000000,154.00000000,6.81415929,0.01948052,0.00000000,118.00000000,,1.97000000,0.00000000,,0.05773672,442.00000000,19.55752212,0.00904977,0.00000000,8.03000000 +400,chr22,11056969,UNK,C,,T,,-1.00000000,,,,,,,58.26000000,26.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,-0.56000000,0.00000000,,0.06501548,327.00000000,14.46902655,0.01223242,0.00000000,4.38000000 +401,chr22,11056986,UNK,G,,A,,-1.00000000,,,,,,,58.00000000,30.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.01030928,0.00000000,93.00000000,,0.01000000,0.00000000,,0.05246914,326.00000000,14.42477876,0.00306748,0.00000000,4.35000000 +402,chr22,11057039,UNK,T,,A,,-1.00000000,,,,,,,57.99000000,31.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.03225806,0.00000000,90.00000000,,0.22000000,0.00000000,,0.05671642,339.00000000,15.00000000,0.01179941,0.00000000,4.26000000 +403,chr22,11057058,UNK,G,,A,,-1.00000000,,,,,,,58.18000000,29.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.02061856,0.00000000,93.00000000,,-0.83000000,0.00000000,,0.03428571,352.00000000,15.57522124,0.00000000,0.00000000,4.86000000 +404,chr22,11057109,UNK,C,,T,,-1.00000000,,,,,,,57.03000000,47.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.03061224,0.00000000,93.00000000,,-1.53000000,0.00000000,,0.03746398,350.00000000,15.48672566,0.00571429,0.00000000,4.38000000 +405,chr22,11057168,UNK,C,,G,,-1.00000000,,,,,,,57.74000000,40.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.04098361,0.00000000,103.00000000,,-1.17000000,0.00000000,,0.05555556,421.00000000,18.62831858,0.01662708,0.00000000,6.77000000 +406,chr22,11057309,UNK,C,,A,,-1.00000000,,,,,,,57.01000000,33.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.02941176,0.00000000,94.00000000,,0.79000000,0.00000000,,0.04923077,334.00000000,14.77876106,0.02694611,0.00000000,4.15000000 +407,chr22,11057381,UNK,G,,A,,-1.00000000,,,,,,,53.72000000,71.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.01298701,0.00000000,84.00000000,,0.96000000,0.00000000,,0.07203390,245.00000000,10.84070796,0.03673469,0.00000000,4.22000000 +408,chr22,11057451,UNK,C,,T,,-1.00000000,,,,,,,55.44000000,55.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.02702703,0.00000000,82.00000000,,1.02000000,0.00000000,,0.04150943,269.00000000,11.90265487,0.01486989,0.00000000,4.18000000 +409,chr22,11057692,UNK,C,,T,,-1.00000000,,,,,,,52.55000000,57.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.10869565,0.00000000,68.00000000,,-0.56000000,0.00000000,,0.07100592,176.00000000,7.78761062,0.03977273,0.00000000,4.31000000 +410,chr22,11057860,UNK,A,,T,,-1.00000000,,,,,,,54.15000000,46.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.50000000,0.00000000,65.00000000,,0.44000000,0.00000000,,0.20202020,156.00000000,6.90265487,0.36538462,0.00000000,4.76000000 +411,chr22,11058039,UNK,C,,T,,-1.00000000,,,,,,,53.76000000,49.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,72.00000000,,-2.75000000,0.00000000,,0.03680982,167.00000000,7.38938053,0.02395210,0.00000000,4.27000000 +412,chr22,11058342,UNK,C,,T,,-1.00000000,,,,,,,51.45000000,46.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.22500000,0.00000000,66.00000000,,1.17000000,0.00000000,,0.14130435,124.00000000,5.48672566,0.25806452,0.00000000,4.66000000 +413,chr22,11058640,UNK,C,,T,,-1.00000000,,,,,,,55.15000000,45.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,-1.59000000,0.00000000,,0.09130435,235.00000000,10.39823009,0.02127660,0.00000000,4.35000000 +414,chr22,11058837,UNK,G,,T,,-1.00000000,,,,,,,52.87000000,23.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,,0.31000000,0.00000000,,0.09890110,96.00000000,4.24778761,0.05208333,0.00000000,4.46000000 +415,chr22,11059168,UNK,C,,T,,-1.00000000,,,,,,,51.87000000,56.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,-0.69000000,0.00000000,,0.04545455,245.00000000,10.84070796,0.01224490,0.00000000,4.73000000 +416,chr22,11059194,UNK,G,,A,,-1.00000000,,,,,,,51.98000000,47.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,-1.22000000,0.00000000,,0.08225108,233.00000000,10.30973451,0.00858369,0.00000000,4.31000000 +417,chr22,11059367,UNK,C,,A,,-1.00000000,,,,,,,58.73000000,13.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,93.00000000,,-0.66000000,0.00000000,,0.04135338,269.00000000,11.90265487,0.01115242,0.00000000,4.67000000 +418,chr22,11059377,UNK,C,,T,,-1.00000000,,,,,,,58.87000000,9.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.00000000,0.00000000,92.00000000,,0.30000000,0.00000000,,0.04214559,264.00000000,11.68141593,0.01136364,0.00000000,4.68000000 +419,chr22,11059390,UNK,G,,A,,-1.00000000,,,,,,,58.89000000,8.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.00000000,0.00000000,94.00000000,,-0.42000000,0.00000000,,0.04814815,272.00000000,12.03539823,0.00735294,0.00000000,4.58000000 +420,chr22,11059852,UNK,G,,C,,-1.00000000,,,,,,,53.14000000,22.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-1.66000000,0.00000000,,0.09803922,208.00000000,9.20353982,0.01442308,0.00000000,4.76000000 +421,chr22,11059935,UNK,A,,T,,-1.00000000,,,,,,,52.84000000,38.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.20454545,81.00000000,,1.43000000,0.00000000,,0.06422018,219.00000000,9.69026549,0.00456621,0.12749004,4.17000000 +422,chr22,11060003,UNK,T,,C,,-1.00000000,,,,,,,53.92000000,42.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,81.00000000,,1.13000000,0.00000000,,0.07870370,217.00000000,9.60176991,0.00460829,0.00000000,4.36000000 +423,chr22,11060125,UNK,A,,T,,-1.00000000,,,,,,,53.03000000,45.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.00000000,0.00000000,84.00000000,,-1.54000000,0.00000000,,0.04326923,210.00000000,9.29203540,0.00952381,0.00000000,4.73000000 +424,chr22,11060151,UNK,A,,G,,-1.00000000,,,,,,,54.17000000,35.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-1.13000000,0.00000000,,0.05687204,217.00000000,9.60176991,0.02764977,0.00000000,4.34000000 +425,chr22,11060153,UNK,A,,T,,-1.00000000,,,,,,,54.26000000,35.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,85.00000000,,-0.86000000,0.00000000,,0.05660377,218.00000000,9.64601770,0.02752294,0.00000000,4.39000000 +426,chr22,11060202,UNK,A,,T,,-1.00000000,,,,,,,57.92000000,9.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00943396,0.00000000,97.00000000,,0.30000000,0.00000000,,0.09132420,220.00000000,9.73451327,0.00454545,0.06779661,4.28000000 +427,chr22,11060571,UNK,A,,G,,-1.00000000,,,,,,,50.48000000,90.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.00000000,0.00000000,93.00000000,,0.98000000,0.00000000,,0.06439394,264.00000000,11.68141593,0.00000000,0.00000000,4.35000000 +428,chr22,11060657,UNK,C,,T,,-1.00000000,,,,,,,54.27000000,74.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.01600000,0.00000000,105.00000000,,0.61000000,12.11000000,,0.03287671,372.00000000,16.46017699,0.01612903,0.00000000,3.95000000 +429,chr22,11060931,UNK,C,,T,,-1.00000000,,,,,,,52.03000000,78.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,2.15000000,0.00000000,,0.03787879,269.00000000,11.90265487,0.01486989,0.00000000,4.18000000 +430,chr22,11061155,UNK,A,,G,,-1.00000000,,,,,,,56.54000000,60.00000000,ref,1.00000000,0.00000000,170.00000000,7.52212389,0.00588235,0.00000000,126.00000000,,-1.23000000,0.00000000,,0.03539823,459.00000000,20.30973451,0.01307190,0.00000000,8.28000000 +431,chr22,11061291,UNK,G,,A,,-1.00000000,,,,,,,57.04000000,35.00000000,ref,1.00000000,0.00000000,162.00000000,7.16814159,0.01234568,0.00000000,122.00000000,,0.28000000,0.00000000,,0.03243243,378.00000000,16.72566372,0.02116402,0.00000000,8.19000000 +432,chr22,11062043,UNK,C,,T,,-1.00000000,,,,,,,47.21000000,211.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00000000,0.00000000,110.00000000,,0.63000000,0.00000000,,0.04909561,389.00000000,17.21238938,0.00514139,0.00000000,7.87000000 +433,chr22,11062138,UNK,G,,A,,-1.00000000,,,,,,,49.10000000,126.00000000,ref,1.00000000,0.00000000,140.00000000,6.19469027,0.00000000,0.00000000,113.00000000,,0.61000000,0.00000000,,0.03448276,378.00000000,16.72566372,0.00264550,0.00000000,7.40000000 +434,chr22,11062373,UNK,A,,C,,-1.00000000,,,,,,,48.66000000,195.00000000,ref,1.00000000,0.00000000,128.00000000,5.66371681,0.00781250,0.00000000,107.00000000,,-0.61000000,0.00000000,,0.04054054,372.00000000,16.46017699,0.00537634,0.00000000,6.78000000 +435,chr22,11062503,UNK,G,,A,,-1.00000000,,,,,,,49.21000000,84.00000000,ref,1.00000000,0.00000000,111.00000000,4.91150442,0.00000000,0.00000000,100.00000000,,-0.87000000,0.00000000,,0.03548387,313.00000000,13.84955752,0.00319489,0.00000000,4.49000000 +436,chr22,11062763,UNK,G,,A,,-1.00000000,,,,,,,55.26000000,52.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.02500000,0.00000000,103.00000000,,0.48000000,0.00000000,,0.05142857,356.00000000,15.75221239,0.01685393,0.00000000,6.59000000 +437,chr22,11062963,UNK,C,,T,,-1.00000000,,,,,,,48.33000000,86.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.00917431,0.00000000,99.00000000,,0.25000000,0.00000000,,0.05000000,302.00000000,13.36283186,0.00662252,0.00000000,4.15000000 +438,chr22,11063400,UNK,T,,C,,-1.00000000,,,,,,,51.36000000,80.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.01265823,0.00000000,85.00000000,,0.01000000,0.00000000,,0.04918033,248.00000000,10.97345133,0.01209677,0.00000000,4.37000000 +439,chr22,11063692,UNK,A,,T,,-1.00000000,,,,,,,50.90000000,117.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.02803738,0.00000000,96.00000000,,0.13000000,0.00000000,,0.03416149,323.00000000,14.29203540,0.00309598,0.00000000,4.05000000 +440,chr22,11063761,UNK,A,,T,,-1.00000000,,,,,,,48.81000000,226.00000000,ref,1.00000000,0.00000000,115.00000000,5.08849558,0.00000000,0.00000000,78.00000000,,-0.67000000,0.00000000,,0.02932551,345.00000000,15.26548673,0.01159420,0.00000000,4.64000000 +441,chr22,11064235,UNK,G,,A,,-1.00000000,,,,,,,43.17000000,259.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.04411765,0.00000000,79.00000000,,0.73000000,0.00000000,,0.06046512,219.00000000,9.69026549,0.01826484,0.00000000,4.32000000 +442,chr22,11064908,UNK,G,,C,,-1.00000000,,,,,,,50.46000000,62.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,68.00000000,,0.41000000,0.00000000,,0.03954802,185.00000000,8.18584071,0.04324324,0.00000000,4.06000000 +443,chr22,11065052,UNK,T,,G,,-1.00000000,,,,,,,53.97000000,28.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,1.62000000,0.00000000,,0.08870968,134.00000000,5.92920354,0.06716418,0.00000000,4.31000000 +444,chr22,11065257,UNK,C,,A,,-1.00000000,,,,,,,53.75000000,48.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.12765957,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.07189542,183.00000000,8.09734513,0.16393443,0.00000000,4.43000000 +445,chr22,11066065,UNK,C,,A,,-1.00000000,,,,,,,54.48000000,71.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.00000000,0.00000000,91.00000000,,-1.11000000,6.93000000,,0.02807018,290.00000000,12.83185841,0.01724138,0.00000000,3.20000000 +446,chr22,11066399,UNK,G,,A,,-1.00000000,,,,,,,54.34000000,47.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,-0.20000000,0.00000000,,0.03543307,263.00000000,11.63716814,0.03041825,0.00000000,4.16000000 +447,chr22,11066406,UNK,G,,A,,-1.00000000,,,,,,,54.47000000,43.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.02631579,0.00000000,83.00000000,,0.87000000,0.00000000,,0.05158730,257.00000000,11.37168142,0.01945525,0.00000000,4.27000000 +448,chr22,11066443,UNK,C,,T,,-1.00000000,,,,,,,56.57000000,22.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.05063291,0.00000000,83.00000000,,-1.12000000,0.00000000,,0.04255319,247.00000000,10.92920354,0.04453441,0.00000000,4.19000000 +449,chr22,11066463,UNK,G,,A,,-1.00000000,,,,,,,57.63000000,15.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.16304348,0.00000000,84.00000000,,-0.12000000,0.00000000,,0.03913043,261.00000000,11.54867257,0.11877395,0.00000000,4.15000000 +450,chr22,11066669,UNK,G,,A,,-1.00000000,,,,,,,57.94000000,34.00000000,ref,1.00000000,0.00000000,141.00000000,6.23893805,0.07801418,0.00000000,109.00000000,,-0.77000000,0.00000000,,0.04594595,388.00000000,17.16814159,0.04639175,0.00000000,7.36000000 +451,chr22,11066704,UNK,G,,A,,-1.00000000,,,,,,,57.51000000,17.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.03278689,0.00000000,75.00000000,,0.60000000,0.00000000,,0.02416918,339.00000000,15.00000000,0.02064897,0.00000000,4.13000000 +452,chr22,11067170,UNK,T,,A,,-1.00000000,,,,,,,59.56000000,3.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.12820513,0.00000000,80.00000000,,-1.86000000,0.00000000,,0.05309735,252.00000000,11.15044248,0.08333333,0.00000000,4.12000000 +453,chr22,11067594,UNK,C,,G,,-1.00000000,,,,,,,51.84000000,140.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.04901961,0.00000000,94.00000000,,0.12000000,0.00000000,,0.05154639,310.00000000,13.71681416,0.06129032,0.00000000,4.01000000 +454,chr22,11067630,UNK,G,,T,,-1.00000000,,,,,,,52.38000000,131.00000000,ref,1.00000000,0.00980392,110.00000000,4.86725664,0.07272727,0.00000000,78.00000000,,2.35000000,0.00000000,,0.03333333,316.00000000,13.98230088,0.05063291,0.00000000,4.12000000 +455,chr22,11067808,UNK,G,,A,,-1.00000000,,,,,,,54.43000000,74.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.02803738,0.00000000,97.00000000,,1.32000000,0.00000000,,0.05230769,328.00000000,14.51327434,0.00914634,0.00000000,4.18000000 +456,chr22,11067921,UNK,C,,T,,-1.00000000,,,,,,,51.08000000,133.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.02173913,0.00000000,90.00000000,,0.35000000,0.00000000,,0.05970149,278.00000000,12.30088496,0.03597122,0.00000000,4.10000000 +457,chr22,11068107,UNK,T,,C,,-1.00000000,,,,,,,54.23000000,115.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.02222222,0.00000000,109.00000000,,-0.93000000,0.00000000,,0.03532609,377.00000000,16.68141593,0.02387268,0.00000000,6.67000000 +458,chr22,11068220,UNK,C,,T,,-1.00000000,,,,,,,53.21000000,84.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.03370787,0.00000000,89.00000000,,0.80000000,0.00000000,,0.04296875,268.00000000,11.85840708,0.04477612,0.00000000,3.97000000 +459,chr22,11068277,UNK,G,,A,,-1.00000000,,,,,,,49.81000000,100.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,0.36000000,0.00000000,,0.04568528,203.00000000,8.98230088,0.02955665,0.00000000,4.40000000 +460,chr22,11068381,UNK,G,,C,,-1.00000000,,,,,,,53.71000000,62.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,82.00000000,,-1.04000000,0.00000000,,0.06167401,231.00000000,10.22123894,0.01731602,0.00000000,4.49000000 +461,chr22,11211611,UNK,A,,G,,-1.00000000,,,,,,,56.31000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,,2.34000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.03750000,0.00000000,5.44000000 +462,chr22,11212130,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.45000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,7.39000000 +463,chr22,11212240,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,,0.07000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.25000000 +464,chr22,11217672,UNK,G,,T,,-1.00000000,,,,,,,57.68000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,,-0.25000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,5.86000000 +465,chr22,11219527,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,,-0.80000000,0.00000000,,0.35897436,80.00000000,3.53982301,0.01250000,0.00000000,4.49000000 +466,chr22,11245758,UNK,G,,C,,-1.00000000,,,,,,,47.53000000,38.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,-1.94000000,0.00000000,,0.27906977,43.00000000,1.90265487,0.00000000,0.00000000,4.64000000 +467,chr22,11252890,UNK,G,,T,,-1.00000000,,,,,,,55.35000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,,-0.17000000,0.38000000,,0.28260870,46.00000000,2.03539823,0.00000000,0.00000000,4.44000000 +468,chr22,11253469,UNK,G,,T,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,,-0.16000000,2.60000000,,0.11666667,63.00000000,2.78761062,0.04761905,0.00000000,3.52000000 +469,chr22,11253680,UNK,C,,T,,-1.00000000,,,,,,,51.59000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,,-0.55000000,0.00000000,,0.13333333,47.00000000,2.07964602,0.04255319,0.00000000,2.85000000 +470,chr22,11260133,UNK,C,,T,,-1.00000000,,,,,,,28.56000000,33.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,7.00000000,,0.10000000,0.00000000,,0.36363636,22.00000000,0.97345133,0.00000000,0.00000000,3.77000000 +471,chr22,11284558,UNK,A,,G,,-1.00000000,,,,,,,53.74000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,56.00000000,,0.05000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,2.81000000 +472,chr22,11285755,UNK,G,,A,,-1.00000000,,,,,,,57.30000000,7.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,1.14000000,0.00000000,,0.07792208,157.00000000,6.94690265,0.00636943,0.00000000,4.52000000 +473,chr22,11286064,UNK,T,,A,,-1.00000000,,,,,,,57.74000000,12.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.67000000,0.00000000,,0.07299270,138.00000000,6.10619469,0.00724638,0.00000000,4.62000000 +474,chr22,11286066,UNK,T,,C,,-1.00000000,,,,,,,58.04000000,10.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,71.00000000,,-0.88000000,0.00000000,,0.07352941,138.00000000,6.10619469,0.00724638,0.00000000,4.60000000 +475,chr22,11287704,UNK,C,,T,,-1.00000000,,,,,,,59.76000000,2.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,1.44000000,0.00000000,,0.08522727,178.00000000,7.87610619,0.01123596,0.00000000,4.66000000 +476,chr22,11288215,UNK,G,,A,,-1.00000000,,,,,,,57.52000000,17.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.05000000,0.00000000,75.00000000,,0.46000000,0.00000000,,0.07462687,137.00000000,6.06194690,0.01459854,0.00000000,4.42000000 +477,chr22,11288543,UNK,G,,A,,-1.00000000,,,,,,,59.06000000,6.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,0.52000000,0.00000000,,0.11450382,133.00000000,5.88495575,0.01503759,0.00000000,4.62000000 +478,chr22,11290091,UNK,A,,G,,-1.00000000,,,,,,,54.69000000,30.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,,-0.51000000,0.00000000,,0.14285714,122.00000000,5.39823009,0.02459016,0.00000000,5.51000000 +479,chr22,11292383,UNK,T,,C,,-1.00000000,,,,,,,50.12000000,58.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,,-0.12000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.01041667,0.00000000,5.75000000 +480,chr22,11294083,UNK,G,,A,,-1.00000000,,,,,,,58.36000000,9.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-1.63000000,0.00000000,,0.08695652,116.00000000,5.13274336,0.00862069,0.00000000,5.24000000 +481,chr22,11296572,UNK,T,,A,,-1.00000000,,,,,,,41.02000000,79.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,,0.32000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.16000000 +482,chr22,11296606,UNK,T,,A,,-1.00000000,,,,,,,42.10000000,78.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,1.46000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.46000000 +483,chr22,11297222,UNK,A,,T,,-1.00000000,,,,,,,51.91000000,66.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.43000000,0.00000000,,0.07407407,138.00000000,6.10619469,0.02173913,0.00000000,4.46000000 +484,chr22,11299917,UNK,G,,A,,-1.00000000,,,,,,,59.61000000,3.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.93000000,0.00000000,,0.10967742,158.00000000,6.99115044,0.01898734,0.00000000,4.54000000 +485,chr22,11300047,UNK,C,,T,,-1.00000000,,,,,,,58.96000000,7.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.54000000,0.00000000,,0.10144928,140.00000000,6.19469027,0.01428571,0.00000000,4.52000000 +486,chr22,11305320,UNK,T,,C,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.04000000,0.00000000,,0.11851852,137.00000000,6.06194690,0.01459854,0.00000000,5.27000000 +487,chr22,11309096,UNK,G,,A,,-1.00000000,,,,,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,,0.97000000,0.00000000,,0.14285714,81.00000000,3.58407080,0.04938272,0.00000000,5.29000000 +488,chr22,11314264,UNK,T,,A,,-1.00000000,,,,,,,58.50000000,10.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,0.67000000,0.00000000,,0.11764706,156.00000000,6.90265487,0.00641026,0.00000000,4.38000000 +489,chr22,11319296,UNK,G,,A,,-1.00000000,,,,,,,49.77000000,70.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,63.00000000,,0.62000000,0.03000000,,0.06603774,108.00000000,4.77876106,0.01851852,0.00000000,3.99000000 +490,chr22,11323340,UNK,A,,T,,-1.00000000,,,,,,,50.40000000,32.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-2.30000000,0.00000000,,0.10784314,105.00000000,4.64601770,0.00952381,0.00000000,5.38000000 +491,chr22,11323725,UNK,G,,A,,-1.00000000,,,,,,,59.26000000,5.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,0.87000000,0.00000000,,0.09154930,144.00000000,6.37168142,0.00694444,0.00000000,4.42000000 +492,chr22,11325906,UNK,C,,T,,-1.00000000,,,,,,,59.55000000,3.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.55000000,0.00000000,,0.12413793,147.00000000,6.50442478,0.00000000,0.00000000,4.93000000 +493,chr22,11326096,UNK,G,,A,,-1.00000000,,,,,,,59.83000000,1.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,75.00000000,,0.13000000,0.00000000,,0.10389610,155.00000000,6.85840708,0.00645161,0.00000000,4.26000000 +494,chr22,11326494,UNK,C,,T,,-1.00000000,,,,,,,58.73000000,7.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,81.00000000,,-0.77000000,0.00000000,,0.12972973,190.00000000,8.40707965,0.01578947,0.00000000,4.46000000 +495,chr22,11328606,UNK,G,,C,,-1.00000000,,,,,,,56.55000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,-0.50000000,0.00000000,,0.09523810,127.00000000,5.61946903,0.00787402,0.00000000,4.99000000 +496,chr22,11330555,UNK,C,,T,,-1.00000000,,,,,,,48.45000000,96.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-1.00000000,0.00000000,,0.10317460,127.00000000,5.61946903,0.00787402,0.00000000,4.44000000 +497,chr22,11331923,UNK,C,,T,,-1.00000000,,,,,,,52.04000000,57.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.03921569,0.00000000,72.00000000,,-0.25000000,0.00000000,,0.10344828,118.00000000,5.22123894,0.01694915,0.00000000,4.23000000 +498,chr22,11334340,UNK,G,,A,,-1.00000000,,,,,,,49.52000000,81.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.54000000,0.00000000,,0.08527132,129.00000000,5.70796460,0.00000000,0.00000000,4.55000000 +499,chr22,11334448,UNK,G,,A,,-1.00000000,,,,,,,49.83000000,54.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.14000000,0.00000000,,0.11627907,87.00000000,3.84955752,0.01149425,0.00000000,5.36000000 +500,chr22,11334701,UNK,G,,A,,-1.00000000,,,,,,,44.17000000,60.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,0.66000000,0.00000000,,0.12244898,49.00000000,2.16814159,0.00000000,0.00000000,2.88000000 +501,chr22,11336934,UNK,C,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,85.00000000,,-1.72000000,0.00000000,,0.16101695,119.00000000,5.26548673,0.00840336,0.00000000,4.73000000 +502,chr22,11339207,UNK,A,,G,,-1.00000000,,,,,,,50.92000000,89.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,0.38000000,0.00000000,,0.12138728,180.00000000,7.96460177,0.03888889,0.00000000,4.08000000 +503,chr22,11339998,UNK,G,,C,,-1.00000000,,,,,,,54.67000000,37.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-1.54000000,0.00000000,,0.10666667,151.00000000,6.68141593,0.00662252,0.00000000,4.73000000 +504,chr22,11340321,UNK,G,,A,,-1.00000000,,,,,,,44.06000000,172.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-0.06000000,0.00000000,,0.11842105,154.00000000,6.81415929,0.01298701,0.00000000,4.79000000 +505,chr22,11340940,UNK,A,,C,,-1.00000000,,,,,,,49.15000000,84.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.45000000,0.00000000,,0.11409396,150.00000000,6.63716814,0.00666667,0.00000000,4.43000000 +506,chr22,11341016,UNK,T,,C,,-1.00000000,,,,,,,49.77000000,90.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.62000000,0.00000000,,0.12025316,158.00000000,6.99115044,0.00000000,0.00000000,4.56000000 +507,chr22,11341750,UNK,A,,T,,-1.00000000,,,,,,,50.83000000,82.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-1.62000000,0.00000000,,0.10638298,147.00000000,6.50442478,0.02040816,0.00000000,4.22000000 +508,chr22,11342195,UNK,C,,A,,-1.00000000,,,,,,,56.06000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,-0.50000000,0.00000000,,0.09219858,141.00000000,6.23893805,0.00000000,0.00000000,5.19000000 +509,chr22,11343222,UNK,A,,G,,-1.00000000,,,,,,,58.11000000,13.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,1.07000000,0.00000000,,0.12500000,153.00000000,6.76991150,0.00653595,0.00000000,4.96000000 +510,chr22,11344153,UNK,A,,G,,-1.00000000,,,,,,,49.24000000,60.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.98000000,0.00000000,,0.07777778,90.00000000,3.98230088,0.00000000,0.00000000,4.54000000 +511,chr22,11346273,UNK,G,,A,,-1.00000000,,,,,,,57.05000000,19.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,0.15000000,0.00000000,,0.08000000,126.00000000,5.57522124,0.00793651,0.00000000,4.32000000 +512,chr22,11349696,UNK,C,,T,,-1.00000000,,,,,,,54.72000000,34.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,68.00000000,,-0.42000000,0.00000000,,0.09448819,130.00000000,5.75221239,0.02307692,0.00000000,4.78000000 +513,chr22,11349984,UNK,G,,A,,-1.00000000,,,,,,,51.02000000,54.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,64.00000000,,1.75000000,0.00000000,,0.08163265,105.00000000,4.64601770,0.06666667,0.00000000,4.48000000 +514,chr22,11351225,UNK,A,,G,,-1.00000000,,,,,,,48.40000000,110.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,0.49000000,0.00000000,,0.06756757,152.00000000,6.72566372,0.02631579,0.00000000,4.49000000 +515,chr22,11352449,UNK,C,,A,,-1.00000000,,,,,,,51.68000000,56.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,77.00000000,,-1.02000000,0.00000000,,0.13103448,147.00000000,6.50442478,0.01360544,0.00000000,4.76000000 +516,chr22,11352931,UNK,C,,T,,-1.00000000,,,,,,,51.25000000,74.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,77.00000000,,0.77000000,0.00000000,,0.13750000,164.00000000,7.25663717,0.02439024,0.00000000,4.35000000 +517,chr22,11353473,UNK,G,,A,,-1.00000000,,,,,,,57.66000000,17.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,,0.63000000,0.00000000,,0.10738255,151.00000000,6.68141593,0.00000000,0.00000000,4.38000000 +518,chr22,11353666,UNK,T,,G,,-1.00000000,,,,,,,50.82000000,78.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.05769231,0.00000000,72.00000000,,-0.37000000,0.00000000,,0.10563380,146.00000000,6.46017699,0.02739726,0.00000000,4.39000000 +519,chr22,11356454,UNK,A,,T,,-1.00000000,,,,,,,58.03000000,10.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.06250000,0.00000000,70.00000000,,0.96000000,0.00000000,,0.08620690,121.00000000,5.35398230,0.04132231,0.00000000,4.26000000 +520,chr22,11356846,UNK,T,,C,,-1.00000000,,,,,,,53.69000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,1.35000000,0.00000000,,0.13000000,101.00000000,4.46902655,0.00990099,0.00000000,4.73000000 +521,chr22,11356847,UNK,G,,A,,-1.00000000,,,,,,,53.65000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,1.01000000,0.00000000,,0.13265306,100.00000000,4.42477876,0.01000000,0.00000000,4.89000000 +522,chr22,11357093,UNK,G,,A,,-1.00000000,,,,,,,40.80000000,156.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,66.00000000,,0.60000000,3.19000000,,0.06382979,96.00000000,4.24778761,0.02083333,0.00000000,3.54000000 +523,chr22,11358023,UNK,A,,G,,-1.00000000,,,,,,,59.51000000,4.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,-0.93000000,0.00000000,,0.05988024,169.00000000,7.47787611,0.00591716,0.00000000,4.84000000 +524,chr22,11358030,UNK,T,,C,,-1.00000000,,,,,,,59.50000000,4.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,-0.68000000,0.00000000,,0.05487805,165.00000000,7.30088496,0.00606061,0.00000000,4.43000000 +525,chr22,11358081,UNK,T,,C,,-1.00000000,,,,,,,59.36000000,5.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.01315789,0.00000000,83.00000000,,0.11000000,0.00000000,,0.06711409,151.00000000,6.68141593,0.00662252,0.00000000,4.42000000 +526,chr22,11359729,UNK,G,,A,,-1.00000000,,,,,,,48.19000000,62.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,74.00000000,,-1.07000000,0.00000000,,0.14166667,121.00000000,5.35398230,0.00826446,0.00000000,5.07000000 +527,chr22,11360386,UNK,A,,T,,-1.00000000,,,,,,,47.22000000,65.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,63.00000000,,0.81000000,0.00000000,,0.07865169,89.00000000,3.93805310,0.00000000,0.00000000,4.53000000 +528,chr22,11360571,UNK,C,,A,,-1.00000000,,,,,,,56.92000000,15.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,60.00000000,,0.83000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.21000000 +529,chr22,11361352,UNK,C,,T,,-1.00000000,,,,,,,58.31000000,9.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,,0.06000000,0.00000000,,0.17460317,128.00000000,5.66371681,0.01562500,0.00000000,5.87000000 +530,chr22,11361695,UNK,T,,G,,-1.00000000,,,,,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,0.04000000,0.00000000,,0.13157895,152.00000000,6.72566372,0.00000000,0.00000000,4.71000000 +531,chr22,11362370,UNK,C,,T,,-1.00000000,,,,,,,55.41000000,33.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,74.00000000,,0.39000000,0.00000000,,0.13669065,140.00000000,6.19469027,0.00714286,0.00000000,4.28000000 +532,chr22,11362680,UNK,T,,C,,-1.00000000,,,,,,,57.87000000,13.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,84.00000000,,0.95000000,0.00000000,,0.16981132,160.00000000,7.07964602,0.00625000,0.00000000,4.79000000 +533,chr22,11362772,UNK,G,,A,,-1.00000000,,,,,,,55.54000000,27.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,-0.88000000,0.00000000,,0.11643836,147.00000000,6.50442478,0.00680272,0.00000000,4.39000000 +534,chr22,11363627,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,5.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,,-1.28000000,0.00000000,,0.11594203,140.00000000,6.19469027,0.00714286,0.00000000,4.32000000 +535,chr22,11365336,UNK,G,,A,,-1.00000000,,,,,,,56.29000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,76.00000000,,0.80000000,0.00000000,,0.13071895,158.00000000,6.99115044,0.02531646,0.00000000,4.42000000 +536,chr22,11367852,UNK,T,,A,,-1.00000000,,,,,,,59.34000000,5.00000000,ref,1.00000000,0.01818182,57.00000000,2.52212389,0.01754386,0.00000000,71.00000000,,-0.29000000,0.00000000,,0.12269939,165.00000000,7.30088496,0.00606061,0.00000000,4.29000000 +537,chr22,11373740,UNK,A,,T,,-1.00000000,,,,,,,59.17000000,5.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,68.00000000,,0.92000000,0.00000000,,0.12000000,138.00000000,6.10619469,0.09420290,0.00000000,4.39000000 +538,chr22,11375315,UNK,A,,T,,-1.00000000,,,,,,,59.34000000,4.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,-0.89000000,0.00000000,,0.11594203,140.00000000,6.19469027,0.01428571,0.00000000,4.35000000 +539,chr22,11375669,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,0.40000000,0.00000000,,0.08219178,147.00000000,6.50442478,0.00680272,0.00000000,4.78000000 +540,chr22,11376773,UNK,C,,T,,-1.00000000,,,,,,,56.12000000,31.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,0.63000000,0.00000000,,0.09554140,158.00000000,6.99115044,0.00632911,0.00000000,4.49000000 +541,chr22,11441800,UNK,A,,G,,-1.00000000,,,,,,,54.54000000,8.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,14.00000000,,-0.68000000,0.00000000,,0.48000000,27.00000000,1.19469027,0.07407407,0.00000000,3.94000000 +542,chr22,11446692,UNK,T,,A,,-1.00000000,,,,,,,50.04000000,14.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,6.00000000,,0.28000000,0.00000000,,0.47619048,22.00000000,0.97345133,0.04545455,0.00000000,3.95000000 +543,chr22,11466863,UNK,C,,A,,-1.00000000,,,,,,,49.87000000,11.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,6.00000000,,-0.89000000,0.00000000,,0.47826087,23.00000000,1.01769912,0.00000000,0.00000000,3.72000000 +544,chr22,11491704,UNK,C,,T,,-1.00000000,,,,,,,50.65000000,3.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,23.00000000,,0.26000000,0.00000000,,0.35897436,40.00000000,1.76991150,0.02500000,0.00000000,3.68000000 +545,chr22,11495656,UNK,C,,T,,-1.00000000,,,,,,,43.92000000,15.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,25.00000000,,1.20000000,0.00000000,,0.40909091,23.00000000,1.01769912,0.04347826,0.00000000,3.83000000 +546,chr22,11547945,UNK,G,,C,,-1.00000000,,,,,,,57.41000000,18.00000000,ref,1.00000000,0.02083333,49.00000000,2.16814159,0.02040816,0.00000000,68.00000000,,-0.33000000,0.00000000,,0.12781955,135.00000000,5.97345133,0.01481481,0.00000000,4.36000000 +547,chr22,11550038,UNK,C,,T,,-1.00000000,,,,,,,56.83000000,16.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-0.56000000,0.00000000,,0.07476636,110.00000000,4.86725664,0.01818182,0.00000000,5.13000000 +548,chr22,11550502,UNK,G,,A,,-1.00000000,,,,,,,51.90000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,0.51000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,4.62000000 +549,chr22,11551841,UNK,A,,G,,-1.00000000,,,,,,,48.99000000,85.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,65.00000000,,-0.99000000,0.00000000,,0.05384615,133.00000000,5.88495575,0.01503759,0.00000000,4.97000000 +550,chr22,11552235,UNK,A,,G,,-1.00000000,,,,,,,57.51000000,16.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,-0.01000000,0.00000000,,0.07586207,146.00000000,6.46017699,0.00684932,0.00000000,4.72000000 +551,chr22,11560391,UNK,G,,A,,-1.00000000,,,,,,,39.48000000,42.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.84000000,0.04000000,,0.08064516,63.00000000,2.78761062,0.01587302,0.00000000,4.30000000 +552,chr22,11566682,UNK,G,,T,,-1.00000000,,,,,,,47.03000000,118.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,-1.11000000,0.00000000,,0.10400000,127.00000000,5.61946903,0.01574803,0.00000000,4.32000000 +553,chr22,11572558,UNK,T,,C,,-1.00000000,,,,,,,58.03000000,14.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,1.64000000,0.00000000,,0.07692308,146.00000000,6.46017699,0.01369863,0.00000000,4.38000000 +554,chr22,11573437,UNK,G,,T,,-1.00000000,,,,,,,58.68000000,8.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,-1.24000000,0.00000000,,0.09090909,135.00000000,5.97345133,0.01481481,0.00000000,4.29000000 +555,chr22,11574213,UNK,G,,A,,-1.00000000,,,,,,,59.30000000,4.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,78.00000000,,-0.74000000,0.00000000,,0.09150327,155.00000000,6.85840708,0.01290323,0.00000000,4.66000000 +556,chr22,11574273,UNK,C,,G,,-1.00000000,,,,,,,59.22000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,1.05000000,0.00000000,,0.08955224,137.00000000,6.06194690,0.02189781,0.00000000,4.52000000 +557,chr22,11574466,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.04918033,0.00000000,75.00000000,,-0.44000000,0.00000000,,0.11976048,175.00000000,7.74336283,0.03428571,0.00000000,4.28000000 +558,chr22,11577011,UNK,C,,T,,-1.00000000,,,,,,,57.90000000,14.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.02857143,0.00000000,81.00000000,,0.43000000,0.00000000,,0.13245033,157.00000000,6.94690265,0.03184713,0.00000000,4.44000000 +559,chr22,11578032,UNK,T,,A,,-1.00000000,,,,,,,55.13000000,35.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,61.00000000,,0.98000000,0.00000000,,0.05035971,141.00000000,6.23893805,0.00000000,0.00000000,4.37000000 +560,chr22,11580389,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,77.00000000,,-1.15000000,0.00000000,,0.14814815,163.00000000,7.21238938,0.00000000,0.00000000,4.76000000 +561,chr22,11581530,UNK,T,,C,,-1.00000000,,,,,,,42.63000000,104.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.47000000,0.00000000,,0.09722222,74.00000000,3.27433628,0.02702703,0.00000000,4.45000000 +562,chr22,11583509,UNK,A,,G,,-1.00000000,,,,,,,55.06000000,31.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,67.00000000,,0.40000000,0.00000000,,0.09448819,130.00000000,5.75221239,0.01538462,0.00000000,4.78000000 +563,chr22,11583567,UNK,G,,A,,-1.00000000,,,,,,,55.57000000,32.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,76.00000000,,0.07000000,0.00000000,,0.12500000,137.00000000,6.06194690,0.00729927,0.00000000,4.14000000 +564,chr22,11583978,UNK,C,,T,,-1.00000000,,,,,,,56.24000000,30.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,77.00000000,,-0.52000000,0.00000000,,0.13375796,159.00000000,7.03539823,0.01257862,0.00000000,4.74000000 +565,chr22,11584411,UNK,T,,C,,-1.00000000,,,,,,,47.50000000,78.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-0.68000000,0.00000000,,0.13186813,93.00000000,4.11504425,0.01075269,0.00000000,5.79000000 +566,chr22,11584833,UNK,G,,T,,-1.00000000,,,,,,,51.56000000,49.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-2.29000000,0.00000000,,0.09375000,98.00000000,4.33628319,0.02040816,0.00000000,4.74000000 +567,chr22,11592205,UNK,A,,C,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.01886792,54.00000000,2.38938053,0.01851852,0.00000000,64.00000000,,-0.36000000,0.00000000,,0.11278195,135.00000000,5.97345133,0.01481481,0.00000000,4.09000000 +568,chr22,11592272,UNK,G,,A,,-1.00000000,,,,,,,58.67000000,8.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,73.00000000,,-0.83000000,0.00000000,,0.12800000,125.00000000,5.53097345,0.00000000,0.00000000,4.93000000 +569,chr22,11593289,UNK,G,,C,,-1.00000000,,,,,,,56.59000000,20.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.69000000,0.00000000,,0.06363636,110.00000000,4.86725664,0.00000000,0.00000000,4.91000000 +570,chr22,11594045,UNK,C,,T,,-1.00000000,,,,,,,58.82000000,8.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,73.00000000,,-0.43000000,0.00000000,,0.14285714,150.00000000,6.63716814,0.02000000,0.00000000,4.56000000 +571,chr22,11594172,UNK,T,,C,,-1.00000000,,,,,,,59.19000000,6.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,0.23000000,0.00000000,,0.11464968,160.00000000,7.07964602,0.01250000,0.00000000,4.39000000 +572,chr22,11596107,UNK,T,,C,,-1.00000000,,,,,,,57.89000000,11.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.41000000,0.00000000,,0.07741935,157.00000000,6.94690265,0.01273885,0.00000000,4.67000000 +573,chr22,11597443,UNK,G,,T,,-1.00000000,,,,,,,58.00000000,11.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,70.00000000,,0.61000000,0.00000000,,0.08333333,107.00000000,4.73451327,0.10280374,0.00000000,4.51000000 +574,chr22,11598582,UNK,G,,A,,-1.00000000,,,,,,,59.73000000,2.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,76.00000000,,-0.72000000,0.00000000,,0.06622517,160.00000000,7.07964602,0.05000000,0.00000000,4.18000000 +575,chr22,11598665,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,1.86000000,0.00000000,,0.06617647,138.00000000,6.10619469,0.01449275,0.00000000,4.83000000 +576,chr22,11598809,UNK,G,,A,,-1.00000000,,,,,,,59.68000000,2.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-0.17000000,0.00000000,,0.12195122,126.00000000,5.57522124,0.01587302,0.00000000,4.22000000 +577,chr22,11600165,UNK,G,,A,,-1.00000000,,,,,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-0.41000000,0.00000000,,0.12295082,129.00000000,5.70796460,0.05426357,0.00000000,4.84000000 +578,chr22,11602719,UNK,G,,A,,-1.00000000,,,,,,,58.00000000,10.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-1.72000000,0.00000000,,0.10062893,159.00000000,7.03539823,0.00000000,0.00000000,4.57000000 +579,chr22,11603486,UNK,A,,G,,-1.00000000,,,,,,,57.73000000,13.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-1.39000000,0.00000000,,0.11188811,147.00000000,6.50442478,0.02721088,0.00000000,4.43000000 +580,chr22,11603813,UNK,C,,T,,-1.00000000,,,,,,,59.37000000,4.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.06250000,128.00000000,5.66371681,0.00000000,0.00000000,4.89000000 +581,chr22,11606207,UNK,G,,A,,-1.00000000,,,,,,,59.12000000,6.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,2.32000000,0.00000000,,0.10489510,144.00000000,6.37168142,0.00694444,0.00000000,4.24000000 +582,chr22,11607351,UNK,G,,A,,-1.00000000,,,,,,,58.88000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,75.00000000,,-0.12000000,0.00000000,,0.16176471,137.00000000,6.06194690,0.00729927,0.00000000,5.32000000 +583,chr22,11608990,UNK,A,,C,,-1.00000000,,,,,,,56.78000000,16.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,65.00000000,,0.03000000,0.00000000,,0.06611570,123.00000000,5.44247788,0.01626016,0.00000000,4.93000000 +584,chr22,11609306,UNK,T,,C,,-1.00000000,,,,,,,57.27000000,16.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.10000000,0.00000000,,0.08035714,112.00000000,4.95575221,0.00000000,0.00000000,4.58000000 +585,chr22,11610157,UNK,G,,C,,-1.00000000,,,,,,,54.10000000,46.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,0.26000000,0.00000000,,0.07284768,153.00000000,6.76991150,0.01307190,0.00000000,4.35000000 +586,chr22,11610236,UNK,G,,A,,-1.00000000,,,,,,,55.28000000,36.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.03000000,0.00000000,,0.08843537,150.00000000,6.63716814,0.01333333,0.00000000,4.41000000 +587,chr22,11612389,UNK,T,,A,,-1.00000000,,,,,,,56.72000000,14.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.26000000,66.00000000,,0.54000000,0.00000000,,0.11764706,90.00000000,3.98230088,0.04444444,0.15887850,4.49000000 +588,chr22,11613447,UNK,T,,G,,-1.00000000,,,,,,,58.77000000,3.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,78.00000000,,-0.31000000,0.00000000,,0.14482759,148.00000000,6.54867257,0.02027027,0.00000000,4.46000000 +589,chr22,11618098,UNK,G,,A,,-1.00000000,,,,,,,59.83000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,71.00000000,,-1.13000000,0.00000000,,0.10596026,153.00000000,6.76991150,0.01307190,0.00000000,4.56000000 +590,chr22,11618309,UNK,G,,C,,-1.00000000,,,,,,,59.63000000,3.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,73.00000000,,-0.27000000,0.00000000,,0.12359551,180.00000000,7.96460177,0.01111111,0.00000000,4.35000000 +591,chr22,11621243,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,73.00000000,,0.83000000,0.00000000,,0.07874016,131.00000000,5.79646018,0.03053435,0.00000000,4.36000000 +592,chr22,11621418,UNK,C,,T,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,73.00000000,,-1.50000000,0.00000000,,0.09774436,133.00000000,5.88495575,0.00000000,0.00000000,4.92000000 +593,chr22,11622336,UNK,T,,C,,-1.00000000,,,,,,,58.94000000,5.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.05660377,0.00000000,65.00000000,,1.24000000,0.00000000,,0.13157895,156.00000000,6.90265487,0.01923077,0.00000000,4.46000000 +594,chr22,11623345,UNK,A,,T,,-1.00000000,,,,,,,57.41000000,22.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,79.00000000,,1.23000000,0.00000000,,0.07647059,171.00000000,7.56637168,0.00000000,0.00000000,4.47000000 +595,chr22,11625121,UNK,G,,T,,-1.00000000,,,,,,,59.57000000,3.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,-0.79000000,0.00000000,,0.08219178,148.00000000,6.54867257,0.01351351,0.00000000,4.81000000 +596,chr22,11628169,UNK,C,,T,,-1.00000000,,,,,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,75.00000000,,1.46000000,0.00000000,,0.13664596,164.00000000,7.25663717,0.01219512,0.00000000,5.02000000 +597,chr22,11628290,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,-2.88000000,0.00000000,,0.12258065,162.00000000,7.16814159,0.03703704,0.00000000,4.53000000 +598,chr22,11628430,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,75.00000000,,0.83000000,0.00000000,,0.12258065,158.00000000,6.99115044,0.01898734,0.00000000,4.64000000 +599,chr22,11629135,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,0.28000000,0.00000000,,0.07534247,147.00000000,6.50442478,0.00680272,0.00000000,4.69000000 +600,chr22,11629284,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.54000000,0.00000000,,0.10204082,148.00000000,6.54867257,0.00675676,0.00000000,4.55000000 +601,chr22,11629495,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,68.00000000,,0.22000000,0.00000000,,0.09022556,135.00000000,5.97345133,0.01481481,0.00000000,4.54000000 +602,chr22,11630240,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,,-0.41000000,0.00000000,,0.11956522,188.00000000,8.31858407,0.01595745,0.00000000,4.17000000 +603,chr22,11630250,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,0.08000000,0.00000000,,0.12021858,184.00000000,8.14159292,0.00543478,0.00000000,4.65000000 +604,chr22,11695103,UNK,G,,T,,-1.00000000,,,,,,,20.77000000,80.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,0.53000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.25000000 +605,chr22,11786977,UNK,T,,G,,-1.00000000,,,,,,,43.31000000,20.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,1.50000000,0.21000000,,0.33333333,18.00000000,0.79646018,0.00000000,0.00000000,2.78000000 +606,chr22,11787480,UNK,G,,A,,-1.00000000,,,,,,,57.45000000,3.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,-0.74000000,0.00000000,,0.50000000,26.00000000,1.15044248,0.00000000,0.00000000,3.62000000 +607,chr22,11818949,UNK,G,,T,,-1.00000000,,,,,,,54.85000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,55.00000000,,-0.15000000,0.00000000,,0.29729730,40.00000000,1.76991150,0.07500000,0.00000000,2.99000000 +608,chr22,11874918,UNK,C,,T,,-1.00000000,,,,,,,35.19000000,21.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,7.00000000,,-3.06000000,0.00000000,,0.42424242,33.00000000,1.46017699,0.00000000,0.00000000,3.42000000 +609,chr22,11886244,UNK,C,,T,,-1.00000000,,,,,,,39.00000000,18.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,19.00000000,,2.47000000,0.00000000,,0.30769231,26.00000000,1.15044248,0.00000000,0.00000000,2.75000000 +610,chr22,11900826,UNK,G,,A,,-1.00000000,,,,,,,43.97000000,20.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,15.00000000,,-0.29000000,0.00000000,,0.41666667,36.00000000,1.59292035,0.00000000,0.00000000,3.72000000 +611,chr22,11924293,UNK,G,,T,,-1.00000000,,,,,,,21.51000000,131.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,,0.44000000,0.00000000,,0.46666667,31.00000000,1.37168142,0.03225806,0.00000000,3.95000000 +612,chr22,11925062,UNK,A,,G,,-1.00000000,,,,,,,28.22000000,129.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,12.00000000,,2.10000000,0.00000000,,0.33333333,33.00000000,1.46017699,0.00000000,0.00000000,3.45000000 +613,chr22,11928010,UNK,T,,A,,-1.00000000,,,,,,,37.71000000,95.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.61000000,0.00000000,,0.08080808,99.00000000,4.38053097,0.00000000,0.00000000,5.29000000 +614,chr22,11928012,UNK,C,,G,,-1.00000000,,,,,,,37.51000000,95.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,0.89000000,0.00000000,,0.07142857,98.00000000,4.33628319,0.00000000,0.00000000,4.75000000 +615,chr22,11928079,UNK,G,,T,,-1.00000000,,,,,,,40.41000000,65.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.88000000,2.15000000,,0.10924370,119.00000000,5.26548673,0.00000000,0.00000000,4.29000000 +616,chr22,11928354,UNK,G,,A,,-1.00000000,,,,,,,40.31000000,110.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.36000000,0.00000000,,0.37962963,111.00000000,4.91150442,0.02702703,0.00000000,7.07000000 +617,chr22,11928355,UNK,C,,T,,-1.00000000,,,,,,,40.22000000,111.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.23000000,0.00000000,,0.38317757,110.00000000,4.86725664,0.02727273,0.00000000,7.07000000 +618,chr22,11928523,UNK,A,,G,,-1.00000000,,,,,,,39.37000000,172.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,3.19000000,0.00000000,,0.12972973,188.00000000,8.31858407,0.00531915,0.00000000,4.69000000 +619,chr22,11928639,UNK,G,,C,,-1.00000000,,,,,,,35.28000000,150.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,1.49000000,0.00000000,,0.04255319,142.00000000,6.28318584,0.00704225,0.00000000,4.72000000 +620,chr22,11928721,UNK,G,,T,,-1.00000000,,,,,,,32.41000000,181.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.69000000,0.00000000,,0.11818182,115.00000000,5.08849558,0.04347826,0.00000000,5.08000000 +621,chr22,11928724,UNK,G,,A,,-1.00000000,,,,,,,32.56000000,181.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.50000000,0.00000000,,0.11711712,116.00000000,5.13274336,0.04310345,0.00000000,5.07000000 +622,chr22,11928766,UNK,T,,C,,-1.00000000,,,,,,,33.13000000,217.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.50000000,14.97000000,,0.14062500,129.00000000,5.70796460,0.00775194,0.00000000,4.24000000 +623,chr22,11928825,UNK,A,,C,,-1.00000000,,,,,,,35.05000000,183.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,1.06000000,5.73000000,,0.07142857,127.00000000,5.61946903,0.00787402,0.00000000,3.80000000 +624,chr22,11928856,UNK,C,,G,,-1.00000000,,,,,,,34.96000000,156.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.22000000,3.52000000,,0.06730769,106.00000000,4.69026549,0.01886792,0.00000000,3.68000000 +625,chr22,11928947,UNK,C,,T,,-1.00000000,,,,,,,34.08000000,97.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-1.54000000,0.00000000,,0.17045455,90.00000000,3.98230088,0.01111111,0.00000000,6.67000000 +626,chr22,11930246,UNK,T,,C,,-1.00000000,,,,,,,28.47000000,196.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,,-0.14000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,2.87000000 +627,chr22,11938821,UNK,G,,A,,-1.00000000,,,,,,,42.84000000,30.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,15.00000000,,1.43000000,0.00000000,,0.33333333,33.00000000,1.46017699,0.00000000,0.00000000,3.38000000 +628,chr22,11942840,UNK,T,,C,,-1.00000000,,,,,,,52.10000000,18.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,18.00000000,,0.79000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,3.64000000 +629,chr22,11943184,UNK,A,,T,,-1.00000000,,,,,,,45.82000000,47.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,19.00000000,,0.34000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,3.75000000 +630,chr22,11943227,UNK,A,,C,,-1.00000000,,,,,,,42.58000000,50.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,26.00000000,,0.99000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,3.04000000 +631,chr22,11943694,UNK,A,,G,,-1.00000000,,,,,,,49.10000000,22.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.68000000,0.00000000,,0.44736842,40.00000000,1.76991150,0.05000000,0.00000000,3.00000000 +632,chr22,11943739,UNK,C,,T,,-1.00000000,,,,,,,53.12000000,17.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,5.00000000,,0.56000000,0.00000000,,0.46296296,54.00000000,2.38938053,0.00000000,0.00000000,3.70000000 +633,chr22,11943742,UNK,G,,T,,-1.00000000,,,,,,,53.12000000,17.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.10000000,0.00000000,8.00000000,,0.32000000,0.00000000,,0.45283019,53.00000000,2.34513274,0.00000000,0.00000000,3.70000000 +634,chr22,11949999,UNK,C,,A,,-1.00000000,,,,,,,43.05000000,36.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,25.00000000,,0.28000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,3.08000000 +635,chr22,11951431,UNK,T,,C,,-1.00000000,,,,,,,36.99000000,53.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,0.08000000,0.00000000,,0.40000000,26.00000000,1.15044248,0.03846154,0.00000000,3.86000000 +636,chr22,11952256,UNK,G,,A,,-1.00000000,,,,,,,52.50000000,13.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,22.00000000,,-2.53000000,0.00000000,,0.33333333,42.00000000,1.85840708,0.00000000,0.00000000,3.38000000 +637,chr22,11964147,UNK,G,,A,,-1.00000000,,,,,,,50.91000000,14.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,0.09000000,0.00000000,,0.60714286,28.00000000,1.23893805,0.00000000,0.00000000,3.69000000 +638,chr22,12037690,UNK,T,,C,,-1.00000000,,,,,,,37.49000000,145.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.62000000,0.00000000,,0.06306306,113.00000000,5.00000000,0.00000000,0.00000000,5.27000000 +639,chr22,12090879,UNK,G,,T,,-1.00000000,,,,,,,17.82000000,56.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.71000000,0.00000000,,0.57142857,7.00000000,0.30973451,0.00000000,0.00000000,3.77000000 +640,chr22,12111513,UNK,C,,A,,-1.00000000,,,,,,,42.04000000,24.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,1.09000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.54000000 +641,chr22,12155798,UNK,A,,G,,-1.00000000,,,,,,,36.59000000,103.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.82000000,0.00000000,,0.06666667,77.00000000,3.40707965,0.02597403,0.00000000,3.90000000 +642,chr22,12165757,UNK,T,,C,,-1.00000000,,,,,,,36.38000000,43.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,5.00000000,,-2.17000000,0.00000000,,0.37500000,16.00000000,0.70796460,0.00000000,0.00000000,3.22000000 +643,chr22,12184957,UNK,G,,A,,-1.00000000,,,,,,,21.50000000,78.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,,-1.29000000,0.00000000,,0.33333333,10.00000000,0.44247788,0.10000000,0.00000000,3.71000000 +644,chr22,12190800,UNK,C,,T,,-1.00000000,,,,,,,53.49000000,58.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,0.59000000,0.00000000,,0.07821229,182.00000000,8.05309735,0.01098901,0.00000000,4.62000000 +645,chr22,12190873,UNK,T,,C,,-1.00000000,,,,,,,53.19000000,62.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-0.10000000,0.00000000,,0.08287293,185.00000000,8.18584071,0.02162162,0.00000000,4.36000000 +646,chr22,12191023,UNK,C,,T,,-1.00000000,,,,,,,47.27000000,76.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,2.45000000,0.00000000,,0.10852713,129.00000000,5.70796460,0.00000000,0.00000000,4.51000000 +647,chr22,12191117,UNK,G,,C,,-1.00000000,,,,,,,48.90000000,81.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,64.00000000,,0.57000000,0.00000000,,0.03676471,137.00000000,6.06194690,0.00729927,0.00000000,4.62000000 +648,chr22,12191222,UNK,C,,T,,-1.00000000,,,,,,,56.73000000,24.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.00000000,0.00000000,82.00000000,,-1.14000000,0.00000000,,0.05116279,216.00000000,9.55752212,0.00462963,0.00000000,4.71000000 +649,chr22,12191323,UNK,A,,G,,-1.00000000,,,,,,,58.37000000,13.00000000,ref,1.00000000,0.01052632,97.00000000,4.29203540,0.02061856,0.00000000,89.00000000,,2.07000000,0.00000000,,0.04529617,289.00000000,12.78761062,0.00346021,0.00000000,4.23000000 +650,chr22,12191337,UNK,G,,A,,-1.00000000,,,,,,,58.58000000,14.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.01086957,0.00000000,91.00000000,,-0.38000000,0.00000000,,0.05369128,299.00000000,13.23008850,0.00334448,0.00000000,4.40000000 +651,chr22,12191396,UNK,G,,A,,-1.00000000,,,,,,,53.30000000,52.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,0.26000000,0.00000000,,0.10407240,221.00000000,9.77876106,0.00000000,0.00000000,4.39000000 +652,chr22,12191934,UNK,G,,T,,-1.00000000,,,,,,,38.44000000,185.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,-0.82000000,0.00000000,,0.08928571,114.00000000,5.04424779,0.01754386,0.00000000,4.90000000 +653,chr22,12192408,UNK,C,,G,,-1.00000000,,,,,,,46.51000000,84.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.85000000,0.00000000,,0.08490566,106.00000000,4.69026549,0.00000000,0.00000000,4.51000000 +654,chr22,12192561,UNK,C,,T,,-1.00000000,,,,,,,51.74000000,55.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-2.38000000,0.00000000,,0.11515152,165.00000000,7.30088496,0.00000000,0.00000000,4.69000000 +655,chr22,12192659,UNK,T,,C,,-1.00000000,,,,,,,51.99000000,85.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,80.00000000,,1.21000000,0.00000000,,0.12272727,222.00000000,9.82300885,0.00900901,0.00000000,4.63000000 +656,chr22,12192751,UNK,G,,A,,-1.00000000,,,,,,,53.04000000,67.00000000,ref,1.00000000,0.01388889,73.00000000,3.23008850,0.01369863,0.00000000,78.00000000,,0.95000000,0.00000000,,0.05084746,180.00000000,7.96460177,0.01666667,0.00000000,4.29000000 +657,chr22,12192979,UNK,C,,A,,-1.00000000,,,,,,,49.75000000,107.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,,-1.24000000,0.00000000,,0.05780347,178.00000000,7.87610619,0.02247191,0.00000000,4.34000000 +658,chr22,12193115,UNK,C,,T,,-1.00000000,,,,,,,57.52000000,32.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.00000000,0.00000000,100.00000000,,-2.35000000,0.00000000,,0.05384615,260.00000000,11.50442478,0.00000000,0.00000000,4.73000000 +659,chr22,12193391,UNK,T,,G,,-1.00000000,,,,,,,41.95000000,158.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.06542056,108.00000000,4.77876106,0.00925926,0.00000000,4.59000000 +660,chr22,12193593,UNK,A,,G,,-1.00000000,,,,,,,43.81000000,126.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-0.40000000,3.62000000,,0.07894737,117.00000000,5.17699115,0.02564103,0.00000000,3.75000000 +661,chr22,12194041,UNK,A,,T,,-1.00000000,,,,,,,45.64000000,74.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,,-4.86000000,0.00000000,,0.15957447,95.00000000,4.20353982,0.01052632,0.00000000,4.29000000 +662,chr22,12194185,UNK,T,,A,,-1.00000000,,,,,,,43.50000000,126.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-1.01000000,0.00000000,,0.05511811,128.00000000,5.66371681,0.00781250,0.00775194,4.57000000 +663,chr22,12197539,UNK,C,,T,,-1.00000000,,,,,,,36.36000000,144.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.12000000,2.79000000,,0.09836066,62.00000000,2.74336283,0.01612903,0.00000000,3.50000000 +664,chr22,12198602,UNK,G,,A,,-1.00000000,,,,,,,39.07000000,132.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,0.92000000,2.43000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,3.77000000 +665,chr22,12198947,UNK,T,,C,,-1.00000000,,,,,,,47.80000000,98.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,0.79000000,0.00000000,,0.08000000,126.00000000,5.57522124,0.00793651,0.00000000,4.60000000 +666,chr22,12201764,UNK,C,,T,,-1.00000000,,,,,,,48.62000000,61.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.88000000,0.00000000,,0.11340206,97.00000000,4.29203540,0.00000000,0.00000000,4.86000000 +667,chr22,12202165,UNK,C,,T,,-1.00000000,,,,,,,55.15000000,25.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.00000000,0.00000000,82.00000000,,-1.65000000,0.00000000,,0.05464481,184.00000000,8.14159292,0.00543478,0.00000000,4.75000000 +668,chr22,12202218,UNK,G,,T,,-1.00000000,,,,,,,55.64000000,32.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,110.00000000,,2.94000000,0.00000000,,0.19170984,195.00000000,8.62831858,0.00512821,0.00000000,9.02000000 +669,chr22,12202576,UNK,A,,C,,-1.00000000,,,,,,,44.91000000,86.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,68.00000000,,1.20000000,4.12000000,,0.05600000,126.00000000,5.57522124,0.00793651,0.00000000,3.42000000 +670,chr22,12202590,UNK,T,,C,,-1.00000000,,,,,,,44.89000000,88.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.09000000,3.94000000,,0.04958678,121.00000000,5.35398230,0.00000000,0.00000000,3.75000000 +671,chr22,12205064,UNK,A,,G,,-1.00000000,,,,,,,49.37000000,61.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,0.76000000,0.00000000,,0.08219178,147.00000000,6.50442478,0.00000000,0.00000000,4.29000000 +672,chr22,12205136,UNK,A,,T,,-1.00000000,,,,,,,50.39000000,44.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-0.66000000,0.00000000,,0.08208955,134.00000000,5.92920354,0.00000000,0.00000000,4.89000000 +673,chr22,12205542,UNK,A,,G,,-1.00000000,,,,,,,55.73000000,33.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.01010101,0.00000000,94.00000000,,0.75000000,0.00000000,,0.08333333,206.00000000,9.11504425,0.00970874,0.00000000,4.28000000 +674,chr22,12205558,UNK,G,,A,,-1.00000000,,,,,,,54.96000000,36.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.01000000,0.00000000,93.00000000,,0.31000000,0.00000000,,0.07772021,195.00000000,8.62831858,0.01025641,0.00000000,4.24000000 +675,chr22,12205570,UNK,A,,G,,-1.00000000,,,,,,,54.08000000,41.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,1.31000000,0.00000000,,0.04519774,180.00000000,7.96460177,0.00555556,0.00000000,4.17000000 +676,chr22,12205671,UNK,G,,T,,-1.00000000,,,,,,,51.90000000,36.00000000,ref,1.00000000,0.01369863,73.00000000,3.23008850,0.00000000,0.00000000,73.00000000,,-0.81000000,0.00000000,,0.05333333,154.00000000,6.81415929,0.01948052,0.00000000,4.65000000 +677,chr22,12205707,UNK,A,,T,,-1.00000000,,,,,,,51.88000000,32.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,-0.07000000,0.00000000,,0.04347826,141.00000000,6.23893805,0.01418440,0.00000000,4.50000000 +678,chr22,12205808,UNK,A,,G,,-1.00000000,,,,,,,51.79000000,26.00000000,ref,1.00000000,0.01724138,59.00000000,2.61061947,0.00000000,0.00000000,66.00000000,,0.68000000,0.00000000,,0.05298013,157.00000000,6.94690265,0.00636943,0.00000000,4.33000000 +679,chr22,12205849,UNK,A,,T,,-1.00000000,,,,,,,52.61000000,27.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,3.25000000,0.00000000,,0.11176471,173.00000000,7.65486726,0.01734104,0.00000000,4.07000000 +680,chr22,12205876,UNK,C,,T,,-1.00000000,,,,,,,53.37000000,28.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.00000000,0.00000000,80.00000000,,2.61000000,0.00000000,,0.08284024,174.00000000,7.69911504,0.02873563,0.00000000,4.58000000 +681,chr22,12205902,UNK,A,,C,,-1.00000000,,,,,,,53.80000000,31.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,2.44000000,0.00000000,,0.06626506,172.00000000,7.61061947,0.03488372,0.00000000,4.43000000 +682,chr22,12205931,UNK,T,,C,,-1.00000000,,,,,,,53.69000000,35.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.02500000,0.00000000,58.00000000,,1.57000000,0.00000000,,0.04848485,167.00000000,7.38938053,0.01197605,0.00000000,3.39000000 +683,chr22,12206342,UNK,T,,C,,-1.00000000,,,,,,,48.93000000,42.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-1.30000000,0.00000000,,0.05769231,105.00000000,4.64601770,0.00000000,0.00000000,4.45000000 +684,chr22,12206707,UNK,G,,T,,-1.00000000,,,,,,,46.30000000,70.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,,0.06000000,0.00000000,,0.06818182,88.00000000,3.89380531,0.00000000,0.00000000,4.54000000 +685,chr22,12206854,UNK,C,,T,,-1.00000000,,,,,,,48.59000000,53.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.62000000,0.00000000,,0.11818182,110.00000000,4.86725664,0.00000000,0.00000000,5.54000000 +686,chr22,12207014,UNK,G,,C,,-1.00000000,,,,,,,55.97000000,10.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,66.00000000,,2.33000000,0.00000000,,0.05555556,112.00000000,4.95575221,0.03571429,0.00000000,4.59000000 +687,chr22,12207315,UNK,G,,T,,-1.00000000,,,,,,,50.42000000,63.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.51000000,0.00000000,,0.12162162,148.00000000,6.54867257,0.00000000,0.00000000,4.51000000 +688,chr22,12208227,UNK,T,,C,,-1.00000000,,,,,,,53.78000000,52.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,90.00000000,,1.40000000,0.00000000,,0.18181818,166.00000000,7.34513274,0.00602410,0.00000000,4.42000000 +689,chr22,12208295,UNK,T,,C,,-1.00000000,,,,,,,55.04000000,47.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,85.00000000,,0.05000000,0.00000000,,0.15053763,188.00000000,8.31858407,0.01063830,0.00000000,4.46000000 +690,chr22,12208302,UNK,A,,C,,-1.00000000,,,,,,,54.86000000,48.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-1.07000000,0.00000000,,0.08333333,183.00000000,8.09734513,0.01639344,0.00000000,4.29000000 +691,chr22,12208311,UNK,T,,C,,-1.00000000,,,,,,,54.11000000,54.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.03225806,0.00000000,77.00000000,,-0.97000000,0.00000000,,0.06250000,178.00000000,7.87610619,0.01123596,0.00000000,3.88000000 +692,chr22,12209146,UNK,C,,T,,-1.00000000,,,,,,,42.51000000,83.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,,-0.69000000,0.00000000,,0.09230769,66.00000000,2.92035398,0.01515152,0.00000000,3.91000000 +693,chr22,12211088,UNK,G,,C,,-1.00000000,,,,,,,42.94000000,51.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.79000000,0.00000000,,0.10416667,48.00000000,2.12389381,0.00000000,0.00000000,4.87000000 +694,chr22,12211450,UNK,C,,T,,-1.00000000,,,,,,,40.99000000,69.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,0.84000000,0.00000000,,0.12000000,50.00000000,2.21238938,0.00000000,0.00000000,4.90000000 +695,chr22,12211638,UNK,G,,A,,-1.00000000,,,,,,,43.27000000,73.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-1.29000000,5.75000000,,0.11764706,68.00000000,3.00884956,0.00000000,0.00000000,4.69000000 +696,chr22,12212313,UNK,A,,C,,-1.00000000,,,,,,,41.79000000,84.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,2.66000000,0.00000000,,0.10714286,58.00000000,2.56637168,0.03448276,0.00000000,4.56000000 +697,chr22,12212646,UNK,T,,A,,-1.00000000,,,,,,,45.23000000,62.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,58.00000000,,-0.84000000,0.00000000,,0.06666667,76.00000000,3.36283186,0.01315789,0.00000000,3.54000000 +698,chr22,12212707,UNK,G,,T,,-1.00000000,,,,,,,40.54000000,76.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,1.38000000,0.00000000,,0.12307692,66.00000000,2.92035398,0.01515152,0.00000000,4.86000000 +699,chr22,12277136,UNK,T,,A,,-1.00000000,,,,,,,27.87000000,78.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,0.87000000,0.25000000,,0.11111111,45.00000000,1.99115044,0.00000000,0.00000000,4.01000000 +700,chr22,12278260,UNK,T,,C,,-1.00000000,,,,,,,48.20000000,30.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,,0.00000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.95000000 +701,chr22,12280181,UNK,G,,A,,-1.00000000,,,,,,,43.99000000,79.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,0.06000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.09000000 +702,chr22,12283107,UNK,C,,T,,-1.00000000,,,,,,,32.33000000,60.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.41000000,0.00000000,,0.10000000,40.00000000,1.76991150,0.00000000,0.00000000,2.78000000 +703,chr22,12284831,UNK,T,,C,,-1.00000000,,,,,,,37.29000000,87.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,-0.80000000,0.00000000,,0.08139535,87.00000000,3.84955752,0.01149425,0.00000000,5.21000000 +704,chr22,12284976,UNK,T,,C,,-1.00000000,,,,,,,31.71000000,136.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,,-1.39000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.30000000 +705,chr22,12292584,UNK,C,,T,,-1.00000000,,,,,,,31.29000000,102.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,,-0.11000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.35000000 +706,chr22,12292687,UNK,C,,T,,-1.00000000,,,,,,,31.80000000,85.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,,2.60000000,5.10000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,3.39000000 +707,chr22,12295546,UNK,A,,G,,-1.00000000,,,,,,,33.70000000,99.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,1.28000000,2.56000000,,0.08163265,98.00000000,4.33628319,0.00000000,0.00000000,3.80000000 +708,chr22,12295691,UNK,G,,A,,-1.00000000,,,,,,,33.74000000,196.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.88000000,0.00000000,,0.04424779,115.00000000,5.08849558,0.00869565,0.00000000,4.96000000 +709,chr22,12296536,UNK,T,,A,,-1.00000000,,,,,,,23.34000000,59.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,,-1.40000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.07000000 +710,chr22,12296556,UNK,A,,G,,-1.00000000,,,,,,,23.11000000,63.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,11.00000000,,-0.35000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.12000000 +711,chr22,12298910,UNK,G,,A,,-1.00000000,,,,,,,37.54000000,86.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,0.21000000,0.00000000,,0.26000000,50.00000000,2.21238938,0.00000000,0.00000000,6.53000000 +712,chr22,12305180,UNK,C,,T,,-1.00000000,,,,,,,26.48000000,109.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,-0.51000000,0.00000000,,0.18604651,43.00000000,1.90265487,0.00000000,0.00000000,6.93000000 +713,chr22,12306073,UNK,C,,A,,-1.00000000,,,,,,,24.03000000,300.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,1.79000000,0.00000000,,0.07843137,103.00000000,4.55752212,0.00000000,0.00000000,4.62000000 +714,chr22,12306248,UNK,A,,T,,-1.00000000,,,,,,,32.57000000,202.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,60.00000000,,1.32000000,0.00000000,,0.05172414,175.00000000,7.74336283,0.00571429,0.00000000,4.27000000 +715,chr22,12306747,UNK,G,,A,,-1.00000000,,,,,,,28.01000000,179.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,,1.56000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,4.57000000 +716,chr22,12307205,UNK,A,,C,,-1.00000000,,,,,,,41.56000000,28.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-2.28000000,0.00000000,,0.05208333,96.00000000,4.24778761,0.00000000,0.00000000,4.52000000 +717,chr22,12308066,UNK,G,,A,,-1.00000000,,,,,,,33.00000000,337.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,68.00000000,,2.11000000,0.00000000,,0.09756098,130.00000000,5.75221239,0.04615385,0.00000000,4.27000000 +718,chr22,12309147,UNK,G,,A,,-1.00000000,,,,,,,37.31000000,119.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-1.24000000,0.00000000,,0.07894737,114.00000000,5.04424779,0.00000000,0.00000000,5.30000000 +719,chr22,12310378,UNK,A,,G,,-1.00000000,,,,,,,27.36000000,138.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,62.00000000,,-1.91000000,0.37000000,,0.07216495,98.00000000,4.33628319,0.00000000,0.00000000,4.01000000 +720,chr22,12312420,UNK,C,,T,,-1.00000000,,,,,,,27.39000000,212.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.13000000,0.00000000,,0.12371134,98.00000000,4.33628319,0.01020408,0.00000000,5.30000000 +721,chr22,12313607,UNK,T,,C,,-1.00000000,,,,,,,30.14000000,125.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-0.37000000,0.00000000,,0.07317073,82.00000000,3.62831858,0.00000000,0.00000000,5.47000000 +722,chr22,12322090,UNK,G,,C,,-1.00000000,,,,,,,29.15000000,210.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,1.01000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.02000000 +723,chr22,12322467,UNK,G,,A,,-1.00000000,,,,,,,34.39000000,97.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.45000000,0.00000000,,0.07058824,87.00000000,3.84955752,0.02298851,0.00000000,4.00000000 +724,chr22,12328231,UNK,T,,C,,-1.00000000,,,,,,,31.79000000,134.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,61.00000000,,-0.77000000,1.73000000,,0.07500000,85.00000000,3.76106195,0.05882353,0.00000000,3.23000000 +725,chr22,12333729,UNK,C,,A,,-1.00000000,,,,,,,37.46000000,41.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,,0.12000000,0.00000000,,0.18032787,61.00000000,2.69911504,0.00000000,0.00000000,4.59000000 +726,chr22,12338443,UNK,A,,G,,-1.00000000,,,,,,,24.97000000,120.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-1.14000000,0.00000000,,0.11111111,46.00000000,2.03539823,0.02173913,0.00000000,2.81000000 +727,chr22,12340011,UNK,C,,A,,-1.00000000,,,,,,,44.62000000,57.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.66000000,0.00000000,,0.13194444,144.00000000,6.37168142,0.00000000,0.00000000,4.99000000 +728,chr22,12340069,UNK,C,,T,,-1.00000000,,,,,,,38.65000000,84.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.02000000,0.00000000,,0.07826087,115.00000000,5.08849558,0.00000000,0.00000000,4.53000000 +729,chr22,12340339,UNK,G,,C,,-1.00000000,,,,,,,35.07000000,75.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,0.34000000,2.57000000,,0.07500000,80.00000000,3.53982301,0.00000000,0.00000000,3.49000000 +730,chr22,12340468,UNK,C,,A,,-1.00000000,,,,,,,35.38000000,68.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.29000000,0.00000000,,0.07594937,79.00000000,3.49557522,0.00000000,0.00000000,4.05000000 +731,chr22,12340807,UNK,G,,A,,-1.00000000,,,,,,,40.28000000,116.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.93000000,0.00000000,,0.08080808,101.00000000,4.46902655,0.01980198,0.00000000,5.00000000 +732,chr22,12340829,UNK,C,,A,,-1.00000000,,,,,,,41.15000000,99.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.00000000,0.00000000,,0.09090909,99.00000000,4.38053097,0.00000000,0.00000000,5.20000000 +733,chr22,12341604,UNK,A,,G,,-1.00000000,,,,,,,43.33000000,62.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,0.64000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.04000000 +734,chr22,12342025,UNK,G,,A,,-1.00000000,,,,,,,39.23000000,63.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,0.92000000,0.00000000,,0.26190476,44.00000000,1.94690265,0.04545455,0.00000000,6.38000000 +735,chr22,12343593,UNK,G,,A,,-1.00000000,,,,,,,37.94000000,93.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.12000000,0.00000000,,0.08474576,60.00000000,2.65486726,0.01666667,0.00000000,4.03000000 +736,chr22,12346825,UNK,C,,A,,-1.00000000,,,,,,,44.77000000,42.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.70000000,0.00000000,,0.10112360,90.00000000,3.98230088,0.01111111,0.00000000,5.36000000 +737,chr22,12350088,UNK,C,,T,,-1.00000000,,,,,,,43.11000000,155.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.28000000,0.00000000,,0.07526882,189.00000000,8.36283186,0.01058201,0.00000000,4.77000000 +738,chr22,12350098,UNK,A,,C,,-1.00000000,,,,,,,42.88000000,147.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.90000000,0.00000000,,0.04188482,193.00000000,8.53982301,0.00518135,0.00000000,4.65000000 +739,chr22,12351530,UNK,A,,T,,-1.00000000,,,,,,,30.27000000,180.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,61.00000000,,1.42000000,12.16000000,,0.07407407,82.00000000,3.62831858,0.01219512,0.00000000,3.91000000 +740,chr22,12352788,UNK,C,,T,,-1.00000000,,,,,,,39.61000000,69.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-1.25000000,0.00000000,,0.04861111,145.00000000,6.41592920,0.00689655,0.00000000,4.24000000 +741,chr22,12354322,UNK,G,,A,,-1.00000000,,,,,,,30.94000000,155.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,0.01000000,0.00000000,,0.06870229,131.00000000,5.79646018,0.00000000,0.00000000,4.75000000 +742,chr22,12355061,UNK,G,,T,,-1.00000000,,,,,,,33.65000000,111.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,0.02000000,0.00000000,,0.07627119,118.00000000,5.22123894,0.00000000,0.00000000,4.96000000 +743,chr22,12355795,UNK,T,,C,,-1.00000000,,,,,,,37.05000000,206.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-0.85000000,0.00000000,,0.06060606,132.00000000,5.84070796,0.00000000,0.00000000,4.78000000 +744,chr22,12355910,UNK,G,,C,,-1.00000000,,,,,,,46.22000000,102.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,1.06000000,0.00000000,,0.04060914,197.00000000,8.71681416,0.00000000,0.00000000,4.40000000 +745,chr22,12356181,UNK,G,,T,,-1.00000000,,,,,,,28.96000000,204.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.44000000,0.00000000,,0.09876543,82.00000000,3.62831858,0.01219512,0.00000000,4.97000000 +746,chr22,12356352,UNK,G,,C,,-1.00000000,,,,,,,32.40000000,111.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,,0.76000000,0.00000000,,0.11702128,94.00000000,4.15929204,0.00000000,0.00000000,4.79000000 +747,chr22,12359727,UNK,A,,G,,-1.00000000,,,,,,,36.87000000,55.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,0.89000000,0.00000000,,0.04895105,144.00000000,6.37168142,0.00694444,0.00000000,4.27000000 +748,chr22,12361548,UNK,A,,G,,-1.00000000,,,,,,,33.44000000,63.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.19000000,0.00000000,,0.06382979,95.00000000,4.20353982,0.01052632,0.00000000,5.34000000 +749,chr22,12362651,UNK,T,,A,,-1.00000000,,,,,,,50.41000000,70.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.17000000,5.93000000,,0.06451613,125.00000000,5.53097345,0.00800000,0.00000000,3.56000000 +750,chr22,12362706,UNK,C,,A,,-1.00000000,,,,,,,46.43000000,77.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.02000000,3.99000000,,0.07954545,89.00000000,3.93805310,0.01123596,0.00000000,4.27000000 +751,chr22,12362736,UNK,A,,T,,-1.00000000,,,,,,,40.39000000,94.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,58.00000000,,-0.18000000,4.20000000,,0.06578947,76.00000000,3.36283186,0.00000000,0.00000000,3.41000000 +752,chr22,12365721,UNK,G,,A,,-1.00000000,,,,,,,40.80000000,79.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.48000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,2.79000000 +753,chr22,12368831,UNK,A,,G,,-1.00000000,,,,,,,30.24000000,191.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,,1.67000000,0.00000000,,0.12087912,95.00000000,4.20353982,0.03157895,0.00000000,4.77000000 +754,chr22,12368887,UNK,G,,A,,-1.00000000,,,,,,,34.20000000,187.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.02000000,0.00000000,,0.04800000,125.00000000,5.53097345,0.00000000,0.00000000,5.30000000 +755,chr22,12370288,UNK,G,,A,,-1.00000000,,,,,,,40.21000000,167.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,64.00000000,,0.66000000,0.00000000,,0.14035088,121.00000000,5.35398230,0.05785124,0.06201550,4.71000000 +756,chr22,12370521,UNK,T,,G,,-1.00000000,,,,,,,58.36000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,,0.03000000,0.00000000,,0.06451613,64.00000000,2.83185841,0.03125000,0.00000000,3.14000000 +757,chr22,12370581,UNK,T,,C,,-1.00000000,,,,,,,57.81000000,7.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-0.15000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.77000000 +758,chr22,12370642,UNK,C,,T,,-1.00000000,,,,,,,58.69000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.38000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,4.88000000 +759,chr22,12370649,UNK,T,,A,,-1.00000000,,,,,,,58.53000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,59.00000000,,0.66000000,0.00000000,,0.10465116,88.00000000,3.89380531,0.01136364,0.00000000,3.81000000 +760,chr22,12370677,UNK,C,,T,,-1.00000000,,,,,,,55.17000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,63.00000000,,-2.00000000,0.00000000,,0.24096386,93.00000000,4.11504425,0.10752688,0.00000000,5.77000000 +761,chr22,12370713,UNK,T,,G,,-1.00000000,,,,,,,57.12000000,14.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.55102041,0.00000000,58.00000000,,0.99000000,0.00000000,,0.07865169,144.00000000,6.37168142,0.37500000,0.00000000,3.53000000 +762,chr22,12370797,UNK,C,,T,,-1.00000000,,,,,,,52.97000000,71.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.43000000,0.00000000,,0.05445545,203.00000000,8.98230088,0.00492611,0.00000000,4.43000000 +763,chr22,12372131,UNK,G,,A,,-1.00000000,,,,,,,40.24000000,87.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,0.14000000,0.00000000,,0.05333333,150.00000000,6.63716814,0.00000000,0.00000000,4.66000000 +764,chr22,12373646,UNK,C,,T,,-1.00000000,,,,,,,31.23000000,194.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.73000000,0.00000000,,0.06481481,109.00000000,4.82300885,0.00917431,0.00000000,4.72000000 +765,chr22,12374311,UNK,C,,T,,-1.00000000,,,,,,,37.94000000,134.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,0.49000000,0.00000000,,0.07291667,97.00000000,4.29203540,0.01030928,0.00000000,4.70000000 +766,chr22,12375197,UNK,A,,T,,-1.00000000,,,,,,,55.38000000,24.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,,0.91000000,0.00000000,,0.13043478,116.00000000,5.13274336,0.00862069,0.00000000,4.51000000 +767,chr22,12376032,UNK,C,,T,,-1.00000000,,,,,,,45.38000000,77.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,0.06000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.77000000 +768,chr22,12376204,UNK,G,,C,,-1.00000000,,,,,,,49.08000000,45.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.13000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,4.02000000 +769,chr22,12380460,UNK,T,,C,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,80.00000000,,0.85000000,0.00000000,,0.15333333,151.00000000,6.68141593,0.00662252,0.00000000,4.73000000 +770,chr22,12381843,UNK,G,,T,,-1.00000000,,,,,,,54.68000000,29.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,69.00000000,,-0.07000000,0.00000000,,0.07526882,94.00000000,4.15929204,0.01063830,0.00000000,4.62000000 +771,chr22,12383779,UNK,C,,G,,-1.00000000,,,,,,,55.28000000,23.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,75.00000000,,0.71000000,0.00000000,,0.16260163,124.00000000,5.48672566,0.00806452,0.00000000,4.66000000 +772,chr22,12384568,UNK,C,,T,,-1.00000000,,,,,,,58.74000000,8.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,0.16000000,0.00000000,,0.13669065,140.00000000,6.19469027,0.00000000,0.00000000,5.01000000 +773,chr22,12385317,UNK,A,,C,,-1.00000000,,,,,,,54.91000000,26.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.58000000,0.00000000,,0.12121212,132.00000000,5.84070796,0.00000000,0.00000000,4.64000000 +774,chr22,12386609,UNK,A,,C,,-1.00000000,,,,,,,50.71000000,64.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.11000000,0.00000000,,0.09917355,121.00000000,5.35398230,0.00000000,0.00000000,5.28000000 +775,chr22,12390133,UNK,G,,T,,-1.00000000,,,,,,,51.51000000,46.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,,0.25000000,0.00000000,,0.16304348,92.00000000,4.07079646,0.00000000,0.00000000,5.27000000 +776,chr22,12390378,UNK,A,,T,,-1.00000000,,,,,,,46.13000000,110.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-0.73000000,0.00000000,,0.08333333,121.00000000,5.35398230,0.00826446,0.00000000,5.39000000 +777,chr22,12391530,UNK,A,,G,,-1.00000000,,,,,,,58.08000000,12.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,,0.12000000,0.00000000,,0.13669065,139.00000000,6.15044248,0.00000000,0.00000000,5.32000000 +778,chr22,12393826,UNK,A,,G,,-1.00000000,,,,,,,59.54000000,3.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,,2.05000000,0.00000000,,0.10948905,138.00000000,6.10619469,0.00000000,0.00000000,4.60000000 +779,chr22,12395998,UNK,C,,T,,-1.00000000,,,,,,,57.69000000,16.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,80.00000000,,0.17000000,0.00000000,,0.14285714,135.00000000,5.97345133,0.01481481,0.00000000,4.48000000 +780,chr22,12397047,UNK,C,,A,,-1.00000000,,,,,,,57.40000000,18.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,-1.17000000,0.00000000,,0.09420290,139.00000000,6.15044248,0.00719424,0.00000000,4.82000000 +781,chr22,12397500,UNK,A,,G,,-1.00000000,,,,,,,59.05000000,4.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.96000000,0.00000000,,0.10344828,148.00000000,6.54867257,0.02027027,0.00000000,4.64000000 +782,chr22,12398822,UNK,G,,A,,-1.00000000,,,,,,,55.28000000,20.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.19000000,0.00000000,,0.07692308,131.00000000,5.79646018,0.00000000,0.00000000,4.94000000 +783,chr22,12399124,UNK,G,,T,,-1.00000000,,,,,,,53.55000000,20.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,,-0.28000000,0.00000000,,0.08333333,121.00000000,5.35398230,0.00826446,0.00000000,4.97000000 +784,chr22,12399358,UNK,G,,A,,-1.00000000,,,,,,,54.42000000,37.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-0.77000000,0.00000000,,0.08661417,128.00000000,5.66371681,0.00781250,0.00000000,4.56000000 +785,chr22,12402171,UNK,G,,A,,-1.00000000,,,,,,,57.45000000,19.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,1.40000000,0.00000000,,0.11801242,161.00000000,7.12389381,0.00000000,0.00000000,4.60000000 +786,chr22,12402289,UNK,G,,A,,-1.00000000,,,,,,,58.18000000,13.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,-0.47000000,0.00000000,,0.09090909,155.00000000,6.85840708,0.00645161,0.00000000,4.55000000 +787,chr22,12402402,UNK,G,,A,,-1.00000000,,,,,,,56.34000000,26.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,-0.28000000,0.00000000,,0.08275862,145.00000000,6.41592920,0.00000000,0.00000000,4.66000000 +788,chr22,12403160,UNK,G,,T,,-1.00000000,,,,,,,52.19000000,58.00000000,ref,1.00000000,0.01851852,55.00000000,2.43362832,0.01818182,0.00000000,70.00000000,,1.81000000,0.00000000,,0.08870968,127.00000000,5.61946903,0.02362205,0.00000000,4.21000000 +789,chr22,12403453,UNK,G,,T,,-1.00000000,,,,,,,55.40000000,32.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,70.00000000,,0.64000000,0.00000000,,0.09923664,135.00000000,5.97345133,0.02962963,0.00000000,4.24000000 +790,chr22,12404045,UNK,G,,A,,-1.00000000,,,,,,,54.55000000,42.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,,1.78000000,0.00000000,,0.10294118,137.00000000,6.06194690,0.00729927,0.00000000,4.19000000 +791,chr22,12407643,UNK,G,,A,,-1.00000000,,,,,,,57.99000000,13.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,67.00000000,,0.75000000,0.00000000,,0.12328767,147.00000000,6.50442478,0.00680272,0.00000000,4.58000000 +792,chr22,12408343,UNK,C,,T,,-1.00000000,,,,,,,55.52000000,26.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,72.00000000,,0.47000000,0.00000000,,0.07017544,116.00000000,5.13274336,0.01724138,0.00000000,4.26000000 +793,chr22,12410475,UNK,A,,T,,-1.00000000,,,,,,,56.99000000,19.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,82.00000000,,-1.21000000,0.00000000,,0.16911765,136.00000000,6.01769912,0.00000000,0.00000000,5.66000000 +794,chr22,12413560,UNK,C,,T,,-1.00000000,,,,,,,47.59000000,55.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,0.10000000,0.00000000,,0.14285714,100.00000000,4.42477876,0.01000000,0.00000000,5.65000000 +795,chr22,12421917,UNK,T,,C,,-1.00000000,,,,,,,54.91000000,26.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,74.00000000,,-1.83000000,0.00000000,,0.13392857,116.00000000,5.13274336,0.01724138,0.00000000,4.94000000 +796,chr22,12421942,UNK,T,,C,,-1.00000000,,,,,,,55.14000000,28.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-1.84000000,0.00000000,,0.11475410,131.00000000,5.79646018,0.06870229,0.00000000,4.08000000 +797,chr22,12422463,UNK,G,,A,,-1.00000000,,,,,,,56.59000000,28.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,72.00000000,,1.37000000,0.00000000,,0.05917160,171.00000000,7.56637168,0.01169591,0.00000000,4.31000000 +798,chr22,12422685,UNK,G,,A,,-1.00000000,,,,,,,58.08000000,11.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,69.00000000,,-0.03000000,0.00000000,,0.14388489,140.00000000,6.19469027,0.00714286,0.00000000,5.42000000 +799,chr22,12426285,UNK,G,,A,,-1.00000000,,,,,,,49.59000000,71.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,,-0.18000000,0.00000000,,0.16528926,121.00000000,5.35398230,0.00000000,0.00000000,6.16000000 +800,chr22,12430644,UNK,C,,T,,-1.00000000,,,,,,,36.31000000,193.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.46000000,10.46000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,4.00000000 +801,chr22,12430687,UNK,C,,T,,-1.00000000,,,,,,,38.99000000,148.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,,1.43000000,10.54000000,,0.07142857,85.00000000,3.76106195,0.01176471,0.00000000,3.56000000 +802,chr22,12430888,UNK,G,,T,,-1.00000000,,,,,,,45.16000000,87.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,,-0.51000000,0.00000000,,0.13953488,129.00000000,5.70796460,0.00000000,0.00000000,6.20000000 +803,chr22,12432207,UNK,C,,T,,-1.00000000,,,,,,,51.33000000,32.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,,-0.80000000,0.00000000,,0.10000000,74.00000000,3.27433628,0.02702703,0.00000000,5.13000000 +804,chr22,12435678,UNK,C,,A,,-1.00000000,,,,,,,57.65000000,11.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,73.00000000,,0.90000000,0.00000000,,0.15833333,122.00000000,5.39823009,0.01639344,0.00000000,4.76000000 +805,chr22,12436475,UNK,G,,T,,-1.00000000,,,,,,,53.92000000,40.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-0.68000000,0.00000000,,0.09523810,126.00000000,5.57522124,0.00000000,0.00000000,4.80000000 +806,chr22,12489382,UNK,T,,A,,-1.00000000,,,,,,,55.88000000,31.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00943396,0.00000000,97.00000000,,-0.89000000,0.00000000,,0.04411765,276.00000000,12.21238938,0.01086957,0.00000000,4.32000000 +807,chr22,12489597,UNK,G,,A,,-1.00000000,,,,,,,56.92000000,25.00000000,ref,1.00000000,0.01030928,98.00000000,4.33628319,0.01020408,0.00000000,90.00000000,,-1.59000000,0.00000000,,0.03448276,261.00000000,11.54867257,0.00000000,0.00000000,4.78000000 +808,chr22,12490220,UNK,G,,A,,-1.00000000,,,,,,,55.79000000,31.00000000,ref,1.00000000,0.00917431,110.00000000,4.86725664,0.00909091,0.00000000,95.00000000,,-1.32000000,15.74000000,,0.03611111,362.00000000,16.01769912,0.00552486,0.00000000,3.13000000 +809,chr22,12490526,UNK,G,,T,,-1.00000000,,,,,,,40.74000000,105.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,,-1.61000000,0.00000000,,0.05161290,157.00000000,6.94690265,0.01273885,0.00000000,4.77000000 +810,chr22,12490937,UNK,A,,T,,-1.00000000,,,,,,,35.78000000,134.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.43000000,0.00000000,,0.05035971,140.00000000,6.19469027,0.00714286,0.00000000,4.37000000 +811,chr22,12493532,UNK,G,,T,,-1.00000000,,,,,,,28.63000000,128.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,31.00000000,,-0.03000000,0.00000000,,0.32432432,39.00000000,1.72566372,0.05128205,0.00000000,3.60000000 +812,chr22,12500203,UNK,A,,T,,-1.00000000,,,,,,,33.78000000,123.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,2.63000000,0.00000000,,0.07228916,83.00000000,3.67256637,0.00000000,0.00000000,4.64000000 +813,chr22,12504312,UNK,G,,A,,-1.00000000,,,,,,,29.47000000,110.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.31000000,0.00000000,,0.07500000,85.00000000,3.76106195,0.05882353,0.00000000,4.77000000 +814,chr22,12504818,UNK,C,,T,,-1.00000000,,,,,,,52.78000000,111.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.02830189,0.00000000,96.00000000,,0.98000000,0.00000000,,0.08928571,289.00000000,12.78761062,0.03114187,0.00000000,4.06000000 +815,chr22,12504863,UNK,T,,C,,-1.00000000,,,,,,,55.00000000,77.00000000,ref,1.00000000,0.00917431,112.00000000,4.95575221,0.02678571,0.00000000,89.00000000,,-1.43000000,0.00000000,,0.03300330,305.00000000,13.49557522,0.00327869,0.00000000,4.22000000 +816,chr22,12504897,UNK,G,,A,,-1.00000000,,,,,,,54.41000000,49.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.01041667,0.00000000,93.00000000,,-0.46000000,0.00000000,,0.07037037,270.00000000,11.94690265,0.00000000,0.00000000,4.52000000 +817,chr22,12504900,UNK,T,,A,,-1.00000000,,,,,,,54.44000000,46.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.01063830,0.00000000,92.00000000,,-0.09000000,0.00000000,,0.04942966,265.00000000,11.72566372,0.00000000,0.00000000,4.65000000 +818,chr22,12504954,UNK,A,,G,,-1.00000000,,,,,,,46.88000000,57.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,75.00000000,,1.13000000,0.00000000,,0.04395604,183.00000000,8.09734513,0.00546448,0.00000000,4.17000000 +819,chr22,12505017,UNK,A,,G,,-1.00000000,,,,,,,40.14000000,75.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,-0.25000000,2.78000000,,0.05303030,133.00000000,5.88495575,0.00751880,0.00000000,3.76000000 +820,chr22,12511494,UNK,A,,G,,-1.00000000,,,,,,,40.05000000,74.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.71000000,0.00000000,,0.08441558,156.00000000,6.90265487,0.00641026,0.00000000,4.60000000 +821,chr22,12513412,UNK,T,,C,,-1.00000000,,,,,,,38.81000000,117.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.48000000,0.00000000,,0.10000000,90.00000000,3.98230088,0.00000000,0.00000000,5.01000000 +822,chr22,12516877,UNK,G,,T,,-1.00000000,,,,,,,51.49000000,33.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.55000000,0.00000000,,0.05263158,115.00000000,5.08849558,0.00869565,0.00000000,4.57000000 +823,chr22,12517082,UNK,G,,A,,-1.00000000,,,,,,,42.14000000,66.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,1.04000000,0.00000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,4.90000000 +824,chr22,12517287,UNK,G,,T,,-1.00000000,,,,,,,43.12000000,50.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.99000000,0.00000000,,0.06329114,79.00000000,3.49557522,0.00000000,0.00000000,5.12000000 +825,chr22,12517449,UNK,A,,C,,-1.00000000,,,,,,,42.81000000,59.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.27000000,0.00000000,,0.07526882,95.00000000,4.20353982,0.01052632,0.00000000,5.10000000 +826,chr22,12517721,UNK,A,,G,,-1.00000000,,,,,,,39.45000000,24.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,,0.23000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.01219512,0.00000000,5.49000000 +827,chr22,12517730,UNK,T,,G,,-1.00000000,,,,,,,39.19000000,27.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.72000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.08000000 +828,chr22,12518173,UNK,T,,C,,-1.00000000,,,,,,,38.02000000,56.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,0.05000000,0.00000000,,0.09900990,101.00000000,4.46902655,0.00000000,0.00000000,4.20000000 +829,chr22,12518407,UNK,T,,C,,-1.00000000,,,,,,,28.24000000,63.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.12000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,2.76000000 +830,chr22,12518614,UNK,A,,G,,-1.00000000,,,,,,,42.44000000,47.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.40000000,0.00000000,,0.04800000,125.00000000,5.53097345,0.00000000,0.00000000,5.34000000 +831,chr22,12518620,UNK,C,,T,,-1.00000000,,,,,,,42.75000000,46.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-1.20000000,0.00000000,,0.04687500,128.00000000,5.66371681,0.00000000,0.00000000,5.31000000 +832,chr22,12518637,UNK,T,,A,,-1.00000000,,,,,,,42.06000000,44.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-1.43000000,0.00000000,,0.05833333,120.00000000,5.30973451,0.00000000,0.00000000,5.41000000 +833,chr22,12518690,UNK,T,,C,,-1.00000000,,,,,,,37.56000000,52.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.98000000,0.00000000,,0.08433735,84.00000000,3.71681416,0.01190476,0.00000000,4.79000000 +834,chr22,12521874,UNK,T,,C,,-1.00000000,,,,,,,54.58000000,30.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.54000000,0.00000000,,0.05217391,116.00000000,5.13274336,0.00000000,0.00000000,4.73000000 +835,chr22,12521952,UNK,A,,G,,-1.00000000,,,,,,,52.52000000,28.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-1.39000000,0.00000000,,0.05504587,109.00000000,4.82300885,0.00000000,0.00000000,5.27000000 +836,chr22,12521976,UNK,C,,G,,-1.00000000,,,,,,,51.30000000,31.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.95000000,0.00000000,,0.05042017,121.00000000,5.35398230,0.00000000,0.00000000,5.32000000 +837,chr22,12525241,UNK,G,,T,,-1.00000000,,,,,,,44.45000000,45.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,62.00000000,,-0.79000000,0.00000000,,0.04761905,105.00000000,4.64601770,0.00000000,0.00000000,5.11000000 +838,chr22,12528393,UNK,A,,C,,-1.00000000,,,,,,,27.79000000,144.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-0.62000000,0.00000000,,0.07017544,116.00000000,5.13274336,0.01724138,0.00000000,4.95000000 +839,chr22,12541173,UNK,G,,C,,-1.00000000,,,,,,,40.76000000,71.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,1.05000000,0.00000000,,0.04878049,123.00000000,5.44247788,0.00000000,0.00000000,4.68000000 +840,chr22,12541845,UNK,C,,T,,-1.00000000,,,,,,,29.67000000,77.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.56000000,0.00000000,,0.07142857,71.00000000,3.14159292,0.01408451,0.00000000,3.94000000 +841,chr22,12549084,UNK,A,,G,,-1.00000000,,,,,,,45.63000000,98.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,77.00000000,,0.47000000,0.00000000,,0.03636364,166.00000000,7.34513274,0.00602410,0.00000000,4.41000000 +842,chr22,12553544,UNK,G,,T,,-1.00000000,,,,,,,38.38000000,103.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,,0.24000000,0.00000000,,0.08045977,178.00000000,7.87610619,0.01685393,0.00000000,4.39000000 +843,chr22,12553958,UNK,C,,T,,-1.00000000,,,,,,,33.36000000,190.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,,0.38000000,0.00000000,,0.09027778,144.00000000,6.37168142,0.00000000,0.00000000,4.64000000 +844,chr22,12554078,UNK,G,,A,,-1.00000000,,,,,,,33.42000000,139.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.05000000,0.00000000,,0.04724409,127.00000000,5.61946903,0.00000000,0.00000000,5.53000000 +845,chr22,12556752,UNK,C,,G,,-1.00000000,,,,,,,48.70000000,29.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,2.12000000,0.00000000,,0.09836066,65.00000000,2.87610619,0.04615385,0.02985075,2.90000000 +846,chr22,12557578,UNK,T,,G,,-1.00000000,,,,,,,43.49000000,104.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,64.00000000,,1.25000000,4.08000000,,0.04494382,179.00000000,7.92035398,0.00558659,0.00000000,3.72000000 +847,chr22,12557627,UNK,T,,C,,-1.00000000,,,,,,,42.29000000,182.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-2.19000000,0.00000000,,0.05235602,192.00000000,8.49557522,0.00520833,0.00000000,4.65000000 +848,chr22,12568012,UNK,G,,T,,-1.00000000,,,,,,,46.35000000,50.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,1.43000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,4.46000000 +849,chr22,12568014,UNK,T,,G,,-1.00000000,,,,,,,46.45000000,49.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,1.47000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,4.46000000 +850,chr22,12569057,UNK,C,,A,,-1.00000000,,,,,,,35.43000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,,-0.07000000,0.00000000,,0.10204082,51.00000000,2.25663717,0.03921569,0.00000000,2.79000000 +851,chr22,12569058,UNK,A,,C,,-1.00000000,,,,,,,35.30000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,,0.10000000,0.00000000,,0.10638298,49.00000000,2.16814159,0.04081633,0.00000000,2.85000000 +852,chr22,12583254,UNK,T,,G,,-1.00000000,,,,,,,40.21000000,80.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,,-0.62000000,2.47000000,,0.06779661,62.00000000,2.74336283,0.03225806,0.00000000,3.37000000 +853,chr22,12583268,UNK,C,,T,,-1.00000000,,,,,,,42.79000000,69.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,64.00000000,,-0.16000000,0.56000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,4.06000000 +854,chr22,12585264,UNK,G,,A,,-1.00000000,,,,,,,24.82000000,196.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-0.31000000,0.54000000,,0.12500000,49.00000000,2.16814159,0.02040816,0.00000000,3.68000000 +855,chr22,12585296,UNK,T,,C,,-1.00000000,,,,,,,24.88000000,210.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,2.16000000,0.00000000,,0.12000000,54.00000000,2.38938053,0.05555556,0.00000000,2.95000000 +856,chr22,12588144,UNK,T,,C,,-1.00000000,,,,,,,34.17000000,82.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.22000000,4.39000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,4.38000000 +857,chr22,12588361,UNK,A,,T,,-1.00000000,,,,,,,27.41000000,107.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,1.44000000,0.00000000,,0.16000000,52.00000000,2.30088496,0.03846154,0.00000000,2.77000000 +858,chr22,12588371,UNK,C,,T,,-1.00000000,,,,,,,29.18000000,104.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,,1.78000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,4.50000000 +859,chr22,12590483,UNK,A,,T,,-1.00000000,,,,,,,56.01000000,31.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.05000000,0.00000000,,0.06060606,168.00000000,7.43362832,0.01190476,0.00000000,4.31000000 +860,chr22,12590906,UNK,C,,G,,-1.00000000,,,,,,,57.66000000,14.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-0.24000000,0.00000000,,0.06666667,155.00000000,6.85840708,0.02580645,0.00000000,4.19000000 +861,chr22,12593609,UNK,A,,T,,-1.00000000,,,,,,,47.15000000,164.00000000,ref,1.00000000,0.01162791,86.00000000,3.80530973,0.00000000,0.00000000,85.00000000,,1.80000000,0.00000000,,0.06796117,210.00000000,9.29203540,0.01428571,0.00000000,4.54000000 +862,chr22,12594185,UNK,T,,A,,-1.00000000,,,,,,,45.55000000,116.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,76.00000000,,-1.06000000,0.00000000,,0.07857143,144.00000000,6.37168142,0.02777778,0.00000000,4.38000000 +863,chr22,12597131,UNK,A,,C,,-1.00000000,,,,,,,44.51000000,202.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.02439024,0.00000000,86.00000000,,1.79000000,0.00000000,,0.09813084,217.00000000,9.60176991,0.00921659,0.00000000,4.34000000 +864,chr22,12598404,UNK,T,,C,,-1.00000000,,,,,,,52.57000000,50.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,-0.35000000,0.00000000,,0.11111111,156.00000000,6.90265487,0.01923077,0.00000000,4.54000000 +865,chr22,12600168,UNK,T,,C,,-1.00000000,,,,,,,53.71000000,39.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,63.00000000,,3.07000000,0.00000000,,0.05468750,130.00000000,5.75221239,0.01538462,0.00000000,4.35000000 +866,chr22,12607873,UNK,C,,T,,-1.00000000,,,,,,,54.11000000,51.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.01515152,0.00000000,79.00000000,,-0.51000000,0.00000000,,0.10526316,154.00000000,6.81415929,0.01298701,0.00000000,4.45000000 +867,chr22,12608682,UNK,A,,T,,-1.00000000,,,,,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,0.46000000,0.00000000,,0.07438017,122.00000000,5.39823009,0.00819672,0.00000000,4.62000000 +868,chr22,12609499,UNK,G,,A,,-1.00000000,,,,,,,47.52000000,107.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.90000000,0.00000000,,0.07746479,144.00000000,6.37168142,0.01388889,0.00000000,4.58000000 +869,chr22,12614723,UNK,T,,G,,-1.00000000,,,,,,,59.32000000,4.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,71.00000000,,-0.24000000,0.00000000,,0.05833333,124.00000000,5.48672566,0.03225806,0.00000000,4.39000000 +870,chr22,12624159,UNK,T,,A,,-1.00000000,,,,,,,59.60000000,3.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,75.00000000,,0.18000000,0.00000000,,0.14457831,171.00000000,7.56637168,0.02923977,0.00000000,4.48000000 +871,chr22,12624454,UNK,C,,T,,-1.00000000,,,,,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-1.33000000,0.00000000,,0.10179641,167.00000000,7.38938053,0.00000000,0.00000000,4.96000000 +872,chr22,12625037,UNK,G,,A,,-1.00000000,,,,,,,57.06000000,18.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.05882353,0.00000000,73.00000000,,0.24000000,0.00000000,,0.14035088,119.00000000,5.26548673,0.04201681,0.00000000,4.41000000 +873,chr22,12625260,UNK,G,,A,,-1.00000000,,,,,,,54.77000000,27.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,0.73000000,0.00000000,,0.06349206,127.00000000,5.61946903,0.00787402,0.00000000,4.33000000 +874,chr22,12627958,UNK,A,,G,,-1.00000000,,,,,,,52.05000000,47.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.87000000,0.00000000,,0.10489510,144.00000000,6.37168142,0.00694444,0.00000000,4.33000000 +875,chr22,12628853,UNK,C,,A,,-1.00000000,,,,,,,54.37000000,38.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.01176471,0.00000000,88.00000000,,-0.77000000,0.00000000,,0.04545455,227.00000000,10.04424779,0.03083700,0.00000000,4.18000000 +876,chr22,12632406,UNK,C,,G,,-1.00000000,,,,,,,54.64000000,35.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,1.54000000,0.00000000,,0.04878049,125.00000000,5.53097345,0.01600000,0.00000000,4.52000000 +877,chr22,12632573,UNK,T,,G,,-1.00000000,,,,,,,57.36000000,18.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,71.00000000,,0.25000000,0.00000000,,0.08029197,140.00000000,6.19469027,0.02142857,0.00000000,4.27000000 +878,chr22,12633600,UNK,C,,T,,-1.00000000,,,,,,,55.87000000,29.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,73.00000000,,1.38000000,0.00000000,,0.08955224,135.00000000,5.97345133,0.00740741,0.00000000,4.44000000 +879,chr22,12635566,UNK,A,,C,,-1.00000000,,,,,,,52.69000000,55.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.07142857,0.00000000,73.00000000,,-2.33000000,0.00000000,,0.11538462,141.00000000,6.23893805,0.07801418,0.00000000,4.19000000 +880,chr22,12636590,UNK,G,,T,,-1.00000000,,,,,,,46.88000000,127.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,75.00000000,,0.17000000,0.00000000,,0.14482759,149.00000000,6.59292035,0.02013423,0.00000000,4.37000000 +881,chr22,12638111,UNK,G,,A,,-1.00000000,,,,,,,53.72000000,41.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,,-1.18000000,0.00000000,,0.09027778,144.00000000,6.37168142,0.00000000,0.00000000,5.01000000 +882,chr22,12638586,UNK,G,,A,,-1.00000000,,,,,,,58.25000000,10.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,-0.93000000,0.00000000,,0.09322034,120.00000000,5.30973451,0.01666667,0.00000000,4.89000000 +883,chr22,12694871,UNK,C,,G,,-1.00000000,,,,,,,40.35000000,165.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,1.56000000,0.67000000,,0.07000000,101.00000000,4.46902655,0.00990099,0.00000000,3.69000000 +884,chr22,12700847,UNK,G,,C,,-1.00000000,,,,,,,53.56000000,37.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,71.00000000,,-1.59000000,0.00000000,,0.13402062,103.00000000,4.55752212,0.05825243,0.00000000,4.36000000 +885,chr22,12702071,UNK,A,,C,,-1.00000000,,,,,,,44.27000000,77.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.28000000,0.00000000,,0.09836066,61.00000000,2.69911504,0.00000000,0.00000000,5.14000000 +886,chr22,12702461,UNK,C,,G,,-1.00000000,,,,,,,55.96000000,29.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,60.00000000,,0.45000000,6.05000000,,0.03875969,130.00000000,5.75221239,0.00769231,0.00000000,3.50000000 +887,chr22,12703728,UNK,A,,C,,-1.00000000,,,,,,,51.02000000,62.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.05769231,0.00000000,72.00000000,,0.75000000,0.00000000,,0.05000000,123.00000000,5.44247788,0.02439024,0.00000000,4.16000000 +888,chr22,12703788,UNK,A,,G,,-1.00000000,,,,,,,51.63000000,61.00000000,ref,1.00000000,0.01886792,53.00000000,2.34513274,0.00000000,0.00000000,70.00000000,,0.73000000,0.00000000,,0.06428571,140.00000000,6.19469027,0.00000000,0.00000000,4.48000000 +889,chr22,12707828,UNK,T,,C,,-1.00000000,,,,,,,46.92000000,104.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,0.11000000,0.00000000,,0.06722689,121.00000000,5.35398230,0.01652893,0.00000000,4.43000000 +890,chr22,12709709,UNK,C,,T,,-1.00000000,,,,,,,54.19000000,19.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,,-0.48000000,0.00000000,,0.10476190,106.00000000,4.69026549,0.00943396,0.00000000,4.85000000 +891,chr22,12721790,UNK,C,,A,,-1.00000000,,,,,,,39.25000000,114.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,2.21000000,1.98000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,3.45000000 +892,chr22,12722082,UNK,A,,G,,-1.00000000,,,,,,,41.72000000,102.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.78000000,0.00000000,,0.10144928,70.00000000,3.09734513,0.00000000,0.00000000,4.89000000 +893,chr22,12722105,UNK,G,,A,,-1.00000000,,,,,,,40.07000000,109.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,-0.16000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.93000000 +894,chr22,12722185,UNK,T,,G,,-1.00000000,,,,,,,45.35000000,62.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.09000000,0.00000000,,0.12307692,69.00000000,3.05309735,0.04347826,0.00000000,4.60000000 +895,chr22,12722493,UNK,C,,T,,-1.00000000,,,,,,,43.14000000,81.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-3.08000000,1.31000000,,0.07812500,64.00000000,2.83185841,0.00000000,0.00000000,3.67000000 +896,chr22,12725122,UNK,A,,C,,-1.00000000,,,,,,,50.23000000,35.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,28.00000000,,-0.82000000,0.00000000,,0.37333333,75.00000000,3.31858407,0.00000000,0.00000000,3.57000000 +897,chr22,12725303,UNK,A,,C,,-1.00000000,,,,,,,51.40000000,28.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,,-0.77000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,3.06000000 +898,chr22,12725385,UNK,C,,G,,-1.00000000,,,,,,,55.36000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,,-0.03000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.04225352,0.00000000,5.24000000 +899,chr22,12782390,UNK,G,,A,,-1.00000000,,,,,,,20.51000000,104.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.95000000,0.00000000,,0.42105263,19.00000000,0.84070796,0.00000000,0.00000000,3.00000000 +900,chr22,12783858,UNK,G,,A,,-1.00000000,,,,,,,37.84000000,52.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,-1.95000000,0.00000000,,0.66666667,28.00000000,1.23893805,0.03571429,0.00000000,3.92000000 +901,chr22,12790005,UNK,G,,A,,-1.00000000,,,,,,,46.69000000,25.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,19.00000000,,-1.14000000,0.00000000,,0.40000000,26.00000000,1.15044248,0.03846154,0.00000000,3.77000000 +902,chr22,12801469,UNK,G,,A,,-1.00000000,,,,,,,43.39000000,72.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-1.22000000,0.00000000,,0.13114754,61.00000000,2.69911504,0.00000000,0.00000000,5.85000000 +903,chr22,12878128,UNK,G,,A,,-1.00000000,,,,,,,13.82000000,180.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.24000000,0.00000000,,0.47058824,17.00000000,0.75221239,0.00000000,0.00000000,3.00000000 +904,chr22,15173656,UNK,C,,T,,-1.00000000,,,,,,,36.76000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,,-0.73000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,2.99000000 +905,chr22,15242235,UNK,A,,G,,-1.00000000,,,,,,,43.37000000,14.00000000,ref,1.00000000,0.00000000,1.00000000,0.04424779,0.00000000,0.00000000,3.00000000,,-1.06000000,0.00000000,,0.92000000,26.00000000,1.15044248,0.00000000,0.00000000,3.00000000 +906,chr22,15254828,UNK,G,,A,,-1.00000000,,,,,,,26.60000000,29.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,40.00000000,,0.60000000,0.00000000,,0.20833333,25.00000000,1.10619469,0.04000000,0.00000000,2.80000000 +907,chr22,15313464,UNK,C,,T,,-1.00000000,,,,,,,45.94000000,29.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,,-0.51000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +908,chr22,15315914,UNK,T,,C,,-1.00000000,,,,,,,54.78000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-1.91000000,0.00000000,,0.10000000,51.00000000,2.25663717,0.00000000,0.00000000,5.37000000 +909,chr22,15367036,UNK,G,,A,,-1.00000000,,,,,,,25.44000000,13.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.00000000,0.00000000,,0.46666667,15.00000000,0.66371681,0.00000000,0.00000000,3.00000000 +910,chr22,15381123,UNK,T,,C,,-1.00000000,,,,,,,38.61000000,2.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,12.00000000,,-1.13000000,0.00000000,,0.32142857,28.00000000,1.23893805,0.00000000,0.00000000,3.36000000 +911,chr22,15435739,UNK,T,,C,,-1.00000000,,,,,,,29.27000000,18.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,6.00000000,,-2.49000000,0.00000000,,0.39130435,23.00000000,1.01769912,0.00000000,0.00000000,3.36000000 +912,chr22,15438176,UNK,T,,G,,-1.00000000,,,,,,,54.96000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,,-1.45000000,0.00000000,,0.13924051,79.00000000,3.49557522,0.00000000,0.00000000,5.83000000 +913,chr22,15531982,UNK,G,,C,,-1.00000000,,,,,,,32.08000000,79.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-1.21000000,0.00000000,,0.07792208,77.00000000,3.40707965,0.00000000,0.00000000,5.27000000 +914,chr22,15543001,UNK,G,,A,,-1.00000000,,,,,,,58.22000000,8.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,0.86000000,0.00000000,,0.11409396,151.00000000,6.68141593,0.01324503,0.00000000,4.37000000 +915,chr22,15550120,UNK,A,,G,,-1.00000000,,,,,,,28.12000000,37.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,-1.12000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +916,chr22,15552826,UNK,C,,T,,-1.00000000,,,,,,,44.08000000,36.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,1.40000000,0.00000000,,0.12030075,133.00000000,5.88495575,0.00000000,0.00000000,4.67000000 +917,chr22,15553080,UNK,T,,C,,-1.00000000,,,,,,,40.88000000,42.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-0.81000000,0.00000000,,0.06250000,82.00000000,3.62831858,0.02439024,0.00000000,4.82000000 +918,chr22,15553928,UNK,G,,A,,-1.00000000,,,,,,,34.98000000,87.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.73000000,0.00000000,,0.06557377,124.00000000,5.48672566,0.01612903,0.00000000,4.48000000 +919,chr22,15557710,UNK,A,,G,,-1.00000000,,,,,,,40.52000000,47.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,68.00000000,,-0.52000000,0.00000000,,0.06603774,106.00000000,4.69026549,0.00000000,0.00000000,4.93000000 +920,chr22,15565712,UNK,C,,T,,-1.00000000,,,,,,,38.74000000,66.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,-0.39000000,0.00000000,,0.05806452,155.00000000,6.85840708,0.00000000,0.00000000,5.20000000 +921,chr22,15565727,UNK,G,,A,,-1.00000000,,,,,,,39.24000000,57.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,1.15000000,0.00000000,,0.05555556,163.00000000,7.21238938,0.00613497,0.00000000,4.52000000 +922,chr22,15574223,UNK,C,,A,,-1.00000000,,,,,,,38.83000000,71.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,2.76000000,2.36000000,,0.06250000,80.00000000,3.53982301,0.00000000,0.00000000,3.82000000 +923,chr22,15578571,UNK,C,,T,,-1.00000000,,,,,,,35.04000000,55.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,1.84000000,0.00000000,,0.06315789,95.00000000,4.20353982,0.00000000,0.00000000,4.91000000 +924,chr22,15579692,UNK,A,,C,,-1.00000000,,,,,,,32.12000000,43.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,2.20000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,4.75000000 +925,chr22,15580626,UNK,A,,G,,-1.00000000,,,,,,,38.44000000,79.00000000,ref,1.00000000,0.01369863,74.00000000,3.27433628,0.01351351,0.00000000,79.00000000,,-1.72000000,0.00000000,,0.07096774,155.00000000,6.85840708,0.00000000,0.00000000,4.64000000 +926,chr22,15598933,UNK,A,,G,,-1.00000000,,,,,,,29.35000000,62.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.39000000,0.00000000,,0.11764706,68.00000000,3.00884956,0.00000000,0.00000000,4.03000000 +927,chr22,15599768,UNK,C,,T,,-1.00000000,,,,,,,37.30000000,37.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,2.31000000,0.00000000,,0.10344828,89.00000000,3.93805310,0.02247191,0.00000000,4.82000000 +928,chr22,15600147,UNK,C,,T,,-1.00000000,,,,,,,45.93000000,56.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,92.00000000,,-0.41000000,0.00000000,,0.16931217,189.00000000,8.36283186,0.00000000,0.00000000,5.19000000 +929,chr22,15609294,UNK,A,,T,,-1.00000000,,,,,,,31.11000000,60.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,1.96000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.33000000 +930,chr22,15609476,UNK,C,,T,,-1.00000000,,,,,,,48.35000000,17.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,3.38000000,0.00000000,,0.11000000,100.00000000,4.42477876,0.00000000,0.00000000,4.25000000 +931,chr22,15611699,UNK,G,,A,,-1.00000000,,,,,,,37.80000000,43.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,,-1.99000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.60000000 +932,chr22,15613019,UNK,T,,C,,-1.00000000,,,,,,,55.03000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-2.65000000,0.00000000,,0.09900990,102.00000000,4.51327434,0.00980392,0.00000000,5.17000000 +933,chr22,15613473,UNK,A,,G,,-1.00000000,,,,,,,49.41000000,26.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,,1.23000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.07000000 +934,chr22,15614002,UNK,G,,A,,-1.00000000,,,,,,,47.23000000,24.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-2.10000000,0.00000000,,0.09638554,84.00000000,3.71681416,0.01190476,0.00000000,5.57000000 +935,chr22,15615027,UNK,T,,G,,-1.00000000,,,,,,,44.68000000,35.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,,-1.68000000,7.09000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,4.74000000 +936,chr22,15617425,UNK,A,,C,,-1.00000000,,,,,,,51.71000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-1.18000000,0.00000000,,0.10416667,97.00000000,4.29203540,0.01030928,0.00000000,5.15000000 +937,chr22,15617912,UNK,A,,G,,-1.00000000,,,,,,,41.29000000,44.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,,0.92000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.08000000 +938,chr22,15624548,UNK,T,,C,,-1.00000000,,,,,,,39.98000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,,1.51000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.43000000 +939,chr22,15626386,UNK,C,,T,,-1.00000000,,,,,,,56.63000000,25.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,85.00000000,,-0.50000000,0.00000000,,0.16176471,210.00000000,9.29203540,0.02380952,0.00000000,4.75000000 +940,chr22,15626463,UNK,C,,T,,-1.00000000,,,,,,,57.11000000,27.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,72.00000000,,-0.33000000,0.00000000,,0.04854369,208.00000000,9.20353982,0.00480769,0.00000000,4.39000000 +941,chr22,15628709,UNK,G,,A,,-1.00000000,,,,,,,53.88000000,38.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,82.00000000,,-1.25000000,0.00000000,,0.07389163,207.00000000,9.15929204,0.00483092,0.00000000,4.46000000 +942,chr22,15628909,UNK,T,,G,,-1.00000000,,,,,,,48.33000000,26.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,72.00000000,,0.92000000,5.93000000,,0.06134969,164.00000000,7.25663717,0.00609756,0.00000000,3.32000000 +943,chr22,15628964,UNK,C,,A,,-1.00000000,,,,,,,48.24000000,31.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,-0.77000000,0.00000000,,0.05208333,192.00000000,8.49557522,0.00000000,0.00000000,4.71000000 +944,chr22,15630202,UNK,G,,A,,-1.00000000,,,,,,,45.63000000,66.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-1.63000000,1.51000000,,0.04316547,141.00000000,6.23893805,0.00709220,0.00000000,3.66000000 +945,chr22,15630520,UNK,C,,T,,-1.00000000,,,,,,,53.07000000,40.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,-0.75000000,0.00000000,,0.12264151,214.00000000,9.46902655,0.00934579,0.00000000,4.29000000 +946,chr22,15630573,UNK,C,,T,,-1.00000000,,,,,,,47.48000000,96.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.76000000,2.09000000,,0.03240741,219.00000000,9.69026549,0.01369863,0.00000000,3.45000000 +947,chr22,15630629,UNK,C,,T,,-1.00000000,,,,,,,45.45000000,139.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-1.23000000,0.00000000,,0.13488372,219.00000000,9.69026549,0.01369863,0.00000000,4.96000000 +948,chr22,15630971,UNK,G,,A,,-1.00000000,,,,,,,45.60000000,30.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,0.02000000,0.00000000,,0.10828025,157.00000000,6.94690265,0.00000000,0.00000000,4.49000000 +949,chr22,15631483,UNK,T,,C,,-1.00000000,,,,,,,57.27000000,13.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,99.00000000,,-0.12000000,0.00000000,,0.18918919,186.00000000,8.23008850,0.00000000,0.00000000,5.56000000 +950,chr22,15631580,UNK,T,,A,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,85.00000000,,-0.13000000,0.00000000,,0.07981221,215.00000000,9.51327434,0.00000000,0.00000000,4.96000000 +951,chr22,15631918,UNK,A,,G,,-1.00000000,,,,,,,58.20000000,4.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,81.00000000,,0.47000000,0.00000000,,0.19277108,168.00000000,7.43362832,0.00595238,0.00000000,5.23000000 +952,chr22,15632260,UNK,T,,G,,-1.00000000,,,,,,,52.63000000,16.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,88.00000000,,0.67000000,0.00000000,,0.15168539,180.00000000,7.96460177,0.01111111,0.00000000,4.90000000 +953,chr22,15633538,UNK,T,,G,,-1.00000000,,,,,,,55.65000000,17.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,63.00000000,,0.20000000,0.00000000,,0.11666667,180.00000000,7.96460177,0.00000000,0.00000000,4.43000000 +954,chr22,15633946,UNK,A,,G,,-1.00000000,,,,,,,54.48000000,14.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.88000000,0.00000000,,0.08602151,94.00000000,4.15929204,0.01063830,0.00000000,4.99000000 +955,chr22,15634107,UNK,T,,C,,-1.00000000,,,,,,,58.51000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-2.35000000,0.00000000,,0.10000000,90.00000000,3.98230088,0.00000000,0.00000000,5.50000000 +956,chr22,15634165,UNK,C,,T,,-1.00000000,,,,,,,56.01000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.56000000,0.00000000,,0.09000000,100.00000000,4.42477876,0.00000000,0.00000000,5.76000000 +957,chr22,15634214,UNK,A,,G,,-1.00000000,,,,,,,52.01000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,1.39000000,0.00000000,,0.09000000,102.00000000,4.51327434,0.00980392,0.00000000,4.97000000 +958,chr22,15635104,UNK,C,,A,,-1.00000000,,,,,,,37.97000000,78.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-0.44000000,0.00000000,,0.08633094,141.00000000,6.23893805,0.01418440,0.00000000,4.62000000 +959,chr22,15635355,UNK,C,,T,,-1.00000000,,,,,,,34.10000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-0.36000000,0.00000000,,0.07142857,86.00000000,3.80530973,0.01162791,0.00000000,5.09000000 +960,chr22,15640729,UNK,C,,T,,-1.00000000,,,,,,,39.31000000,40.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.89000000,0.00000000,,0.12068966,117.00000000,5.17699115,0.00854701,0.00000000,5.36000000 +961,chr22,15646691,UNK,C,,G,,-1.00000000,,,,,,,35.94000000,55.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,62.00000000,,0.96000000,0.00000000,,0.04687500,128.00000000,5.66371681,0.00000000,0.00000000,4.23000000 +962,chr22,15655412,UNK,C,,T,,-1.00000000,,,,,,,12.11000000,93.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,5.00000000,,0.34000000,0.00000000,,0.33333333,12.00000000,0.53097345,0.00000000,0.00000000,3.53000000 +963,chr22,15659457,UNK,C,,T,,-1.00000000,,,,,,,28.04000000,58.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,1.35000000,2.03000000,,0.09333333,75.00000000,3.31858407,0.00000000,0.00000000,3.86000000 +964,chr22,15662729,UNK,G,,A,,-1.00000000,,,,,,,34.46000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,,-0.96000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,4.38000000 +965,chr22,15675075,UNK,C,,G,,-1.00000000,,,,,,,31.11000000,45.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,,-0.76000000,0.00000000,,0.16666667,48.00000000,2.12389381,0.00000000,0.00000000,5.91000000 +966,chr22,15675381,UNK,A,,G,,-1.00000000,,,,,,,36.73000000,78.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,,1.54000000,6.25000000,,0.14634146,86.00000000,3.80530973,0.04651163,0.00000000,3.74000000 +967,chr22,15675678,UNK,G,,A,,-1.00000000,,,,,,,34.43000000,58.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,2.19000000,0.00000000,,0.13207547,54.00000000,2.38938053,0.01851852,0.00000000,4.86000000 +968,chr22,15675886,UNK,T,,G,,-1.00000000,,,,,,,27.03000000,114.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,,-1.66000000,0.00000000,,0.18518519,54.00000000,2.38938053,0.00000000,0.00000000,5.92000000 +969,chr22,15678375,UNK,G,,A,,-1.00000000,,,,,,,38.42000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,2.05000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,4.72000000 +970,chr22,15681117,UNK,T,,C,,-1.00000000,,,,,,,41.58000000,88.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,2.28000000,0.00000000,,0.10344828,90.00000000,3.98230088,0.03333333,0.00000000,4.23000000 +971,chr22,15681383,UNK,T,,C,,-1.00000000,,,,,,,31.61000000,62.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.59000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.01369863,0.00000000,5.90000000 +972,chr22,15682040,UNK,C,,G,,-1.00000000,,,,,,,21.54000000,65.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,,-1.69000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.01694915,0.00000000,5.77000000 +973,chr22,15682988,UNK,G,,A,,-1.00000000,,,,,,,26.13000000,58.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,,2.64000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.03000000 +974,chr22,15683831,UNK,G,,A,,-1.00000000,,,,,,,28.41000000,92.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,69.00000000,,-0.08000000,0.00000000,,0.10924370,123.00000000,5.44247788,0.02439024,0.00000000,4.37000000 +975,chr22,15683836,UNK,T,,C,,-1.00000000,,,,,,,28.63000000,92.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,69.00000000,,0.73000000,0.00000000,,0.10655738,126.00000000,5.57522124,0.02380952,0.00000000,4.31000000 +976,chr22,15683921,UNK,T,,C,,-1.00000000,,,,,,,26.89000000,59.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,,-0.61000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,5.91000000 +977,chr22,15685799,UNK,A,,G,,-1.00000000,,,,,,,36.02000000,63.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,-0.84000000,3.37000000,,0.11666667,61.00000000,2.69911504,0.01639344,0.00000000,3.52000000 +978,chr22,15686059,UNK,C,,G,,-1.00000000,,,,,,,36.97000000,53.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,,-1.06000000,0.00000000,,0.13414634,82.00000000,3.62831858,0.00000000,0.00000000,5.66000000 +979,chr22,15686551,UNK,A,,G,,-1.00000000,,,,,,,30.79000000,64.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,,1.60000000,1.77000000,,0.27906977,46.00000000,2.03539823,0.06521739,0.00000000,4.42000000 +980,chr22,15687222,UNK,C,,T,,-1.00000000,,,,,,,40.19000000,40.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,0.60000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.02000000 +981,chr22,15687259,UNK,C,,T,,-1.00000000,,,,,,,41.02000000,41.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,,1.54000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.20000000 +982,chr22,15687322,UNK,C,,T,,-1.00000000,,,,,,,41.38000000,41.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.15000000,0.00000000,,0.12087912,91.00000000,4.02654867,0.00000000,0.00000000,4.95000000 +983,chr22,15687389,UNK,G,,A,,-1.00000000,,,,,,,37.59000000,48.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,1.66000000,0.00000000,,0.09375000,64.00000000,2.83185841,0.00000000,0.00000000,4.43000000 +984,chr22,15687864,UNK,T,,C,,-1.00000000,,,,,,,57.34000000,9.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,71.00000000,,0.35000000,0.00000000,,0.05154639,100.00000000,4.42477876,0.03000000,0.00000000,4.52000000 +985,chr22,15687869,UNK,C,,T,,-1.00000000,,,,,,,57.10000000,10.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,68.00000000,,0.98000000,0.00000000,,0.05102041,101.00000000,4.46902655,0.01980198,0.00000000,4.31000000 +986,chr22,15687911,UNK,G,,T,,-1.00000000,,,,,,,56.72000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,61.00000000,,0.96000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.02197802,0.00000000,4.83000000 +987,chr22,15688154,UNK,T,,G,,-1.00000000,,,,,,,49.61000000,35.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.11111111,0.00000000,79.00000000,,-2.53000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,4.94000000 +988,chr22,15688259,UNK,T,,C,,-1.00000000,,,,,,,55.65000000,8.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.86000000,0.00000000,,0.06382979,98.00000000,4.33628319,0.03061224,0.00000000,4.35000000 +989,chr22,15688290,UNK,A,,G,,-1.00000000,,,,,,,56.75000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,,1.49000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.00000000,0.00000000,5.53000000 +990,chr22,15688733,UNK,T,,C,,-1.00000000,,,,,,,45.57000000,35.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,,-1.80000000,0.00000000,,0.12328767,81.00000000,3.58407080,0.08641975,0.00000000,4.96000000 +991,chr22,15688736,UNK,C,,T,,-1.00000000,,,,,,,45.29000000,35.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-2.33000000,0.00000000,,0.12857143,77.00000000,3.40707965,0.09090909,0.00000000,4.91000000 +992,chr22,15688755,UNK,T,,G,,-1.00000000,,,,,,,43.46000000,38.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-1.56000000,0.00000000,,0.19047619,71.00000000,3.14159292,0.08450704,0.00000000,6.45000000 +993,chr22,15688985,UNK,A,,G,,-1.00000000,,,,,,,46.44000000,42.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,,0.09000000,4.60000000,,0.14444444,92.00000000,4.07079646,0.01086957,0.00000000,4.02000000 +994,chr22,15689030,UNK,T,,C,,-1.00000000,,,,,,,45.44000000,54.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,,0.37000000,0.00000000,,0.15000000,102.00000000,4.51327434,0.00980392,0.00000000,5.06000000 +995,chr22,15689224,UNK,A,,C,,-1.00000000,,,,,,,52.15000000,13.00000000,ref,1.00000000,0.04545455,24.00000000,1.06194690,0.08333333,0.00000000,9.00000000,,-0.82000000,0.00000000,,0.36986301,77.00000000,3.40707965,0.05194805,0.00000000,3.41000000 +996,chr22,15689247,UNK,A,,C,,-1.00000000,,,,,,,50.10000000,24.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,63.00000000,,1.27000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,5.30000000 +997,chr22,15689259,UNK,A,,T,,-1.00000000,,,,,,,49.38000000,32.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,,0.56000000,0.00000000,,0.10810811,79.00000000,3.49557522,0.05063291,0.00000000,4.47000000 +998,chr22,15689393,UNK,C,,T,,-1.00000000,,,,,,,51.26000000,75.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.05063291,0.00000000,61.00000000,,-0.58000000,0.00000000,,0.04137931,155.00000000,6.85840708,0.06451613,0.00000000,4.20000000 +999,chr22,15689526,UNK,G,,T,,-1.00000000,,,,,,,52.43000000,36.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.05263158,0.00000000,74.00000000,,-0.98000000,0.00000000,,0.12727273,170.00000000,7.52212389,0.02941176,0.00000000,4.26000000 +1000,chr22,15689763,UNK,A,,G,,-1.00000000,,,,,,,51.55000000,41.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,96.00000000,,0.40000000,0.00000000,,0.20869565,127.00000000,5.61946903,0.07874016,0.00000000,4.64000000 +1001,chr22,15691121,UNK,A,,G,,-1.00000000,,,,,,,49.66000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,70.00000000,,3.21000000,0.00000000,,0.13861386,101.00000000,4.46902655,0.00000000,0.00000000,4.89000000 +1002,chr22,15691498,UNK,C,,G,,-1.00000000,,,,,,,55.34000000,11.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.26666667,0.00000000,65.00000000,,-0.04000000,0.00000000,,0.12500000,104.00000000,4.60176991,0.23076923,0.00000000,4.39000000 +1003,chr22,15691521,UNK,G,,C,,-1.00000000,,,,,,,53.76000000,13.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.14634146,0.00000000,66.00000000,,-0.76000000,0.00000000,,0.12857143,91.00000000,4.02654867,0.23076923,0.00000000,4.74000000 +1004,chr22,15691554,UNK,T,,C,,-1.00000000,,,,,,,49.85000000,20.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,-2.00000000,0.00000000,,0.11627907,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +1005,chr22,15691724,UNK,T,,C,,-1.00000000,,,,,,,45.48000000,33.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,-0.99000000,0.00000000,,0.10389610,80.00000000,3.53982301,0.02500000,0.00000000,4.94000000 +1006,chr22,15691966,UNK,C,,T,,-1.00000000,,,,,,,51.75000000,41.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.05882353,0.00000000,70.00000000,,0.82000000,0.00000000,,0.10416667,96.00000000,4.24778761,0.00000000,0.00000000,4.33000000 +1007,chr22,15692207,UNK,A,,G,,-1.00000000,,,,,,,46.05000000,25.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-2.04000000,0.00000000,,0.14000000,50.00000000,2.21238938,0.00000000,0.00000000,4.44000000 +1008,chr22,15692274,UNK,T,,G,,-1.00000000,,,,,,,45.47000000,29.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,,-0.46000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.61000000 +1009,chr22,15698813,UNK,T,,C,,-1.00000000,,,,,,,37.94000000,46.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,0.08000000,0.00000000,,0.09219858,143.00000000,6.32743363,0.01398601,0.00000000,4.57000000 +1010,chr22,15699861,UNK,A,,G,,-1.00000000,,,,,,,38.61000000,44.00000000,ref,1.00000000,0.02272727,46.00000000,2.03539823,0.00000000,0.00000000,60.00000000,,0.96000000,0.00000000,,0.07865169,98.00000000,4.33628319,0.08163265,0.00000000,4.40000000 +1011,chr22,15700111,UNK,G,,A,,-1.00000000,,,,,,,31.09000000,85.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,,-0.24000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +1012,chr22,15705820,UNK,T,,C,,-1.00000000,,,,,,,25.34000000,66.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.41000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.00000000,0.00000000,2.84000000 +1013,chr22,15706082,UNK,A,,G,,-1.00000000,,,,,,,28.66000000,96.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.09000000,0.00000000,,0.11538462,104.00000000,4.60176991,0.00000000,0.00000000,4.88000000 +1014,chr22,15710271,UNK,G,,A,,-1.00000000,,,,,,,38.58000000,48.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,114.00000000,,1.19000000,0.00000000,,0.20111732,181.00000000,8.00884956,0.00552486,0.00000000,9.24000000 +1015,chr22,15710527,UNK,C,,T,,-1.00000000,,,,,,,41.88000000,57.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,82.00000000,,-0.51000000,0.00000000,,0.15757576,166.00000000,7.34513274,0.00602410,0.00000000,4.99000000 +1016,chr22,15711741,UNK,T,,C,,-1.00000000,,,,,,,31.61000000,44.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,44.00000000,,-1.13000000,0.00000000,,0.35632184,87.00000000,3.84955752,0.00000000,0.00000000,3.93000000 +1017,chr22,15713484,UNK,T,,A,,-1.00000000,,,,,,,38.68000000,78.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,88.00000000,,-0.14000000,0.00000000,,0.16312057,143.00000000,6.32743363,0.00000000,0.00000000,5.58000000 +1018,chr22,15714151,UNK,G,,A,,-1.00000000,,,,,,,41.76000000,42.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,71.00000000,,0.68000000,6.51000000,,0.12745098,102.00000000,4.51327434,0.00000000,0.00000000,3.73000000 +1019,chr22,15718951,UNK,A,,G,,-1.00000000,,,,,,,27.90000000,65.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,,1.96000000,0.00000000,,0.12048193,84.00000000,3.71681416,0.01190476,0.00000000,4.75000000 +1020,chr22,15718985,UNK,A,,C,,-1.00000000,,,,,,,28.45000000,60.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,,0.34000000,2.43000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,4.11000000 +1021,chr22,15719409,UNK,A,,G,,-1.00000000,,,,,,,29.47000000,56.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,,0.35000000,0.00000000,,0.17543860,114.00000000,5.04424779,0.00000000,0.00000000,5.90000000 +1022,chr22,15719417,UNK,T,,G,,-1.00000000,,,,,,,28.60000000,55.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,0.45000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.67000000 +1023,chr22,15721705,UNK,C,,T,,-1.00000000,,,,,,,32.81000000,65.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,1.43000000,0.99000000,,0.08333333,109.00000000,4.82300885,0.00917431,0.00000000,3.74000000 +1024,chr22,15730051,UNK,C,,G,,-1.00000000,,,,,,,40.01000000,33.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,68.00000000,,1.84000000,2.03000000,,0.09782609,93.00000000,4.11504425,0.01075269,0.00000000,3.84000000 +1025,chr22,15734687,UNK,C,,A,,-1.00000000,,,,,,,37.00000000,64.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,,0.97000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +1026,chr22,15738454,UNK,C,,T,,-1.00000000,,,,,,,40.79000000,78.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.27000000,0.00000000,,0.10101010,100.00000000,4.42477876,0.00000000,0.00000000,5.24000000 +1027,chr22,15738750,UNK,C,,T,,-1.00000000,,,,,,,29.08000000,74.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-1.00000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.00000000 +1028,chr22,15740408,UNK,G,,C,,-1.00000000,,,,,,,38.39000000,50.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.10000000,0.00000000,,0.05185185,135.00000000,5.97345133,0.00000000,0.00000000,5.06000000 +1029,chr22,15740437,UNK,A,,G,,-1.00000000,,,,,,,36.74000000,50.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-1.58000000,0.00000000,,0.08823529,103.00000000,4.55752212,0.00970874,0.00000000,5.36000000 +1030,chr22,15740682,UNK,C,,T,,-1.00000000,,,,,,,39.20000000,25.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,2.39000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,4.88000000 +1031,chr22,15745364,UNK,T,,C,,-1.00000000,,,,,,,31.86000000,42.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,0.04000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.08000000 +1032,chr22,15746296,UNK,C,,T,,-1.00000000,,,,,,,50.20000000,34.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-0.37000000,0.00000000,,0.06666667,107.00000000,4.73451327,0.01869159,0.00000000,4.79000000 +1033,chr22,15747068,UNK,C,,T,,-1.00000000,,,,,,,42.31000000,22.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.66000000,0.00000000,,0.05128205,118.00000000,5.22123894,0.00847458,0.00000000,5.09000000 +1034,chr22,15747433,UNK,C,,G,,-1.00000000,,,,,,,32.76000000,31.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.38000000,0.00000000,,0.08641975,81.00000000,3.58407080,0.00000000,0.00000000,4.65000000 +1035,chr22,15747438,UNK,T,,G,,-1.00000000,,,,,,,32.24000000,31.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-1.00000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.08000000 +1036,chr22,15747881,UNK,A,,G,,-1.00000000,,,,,,,36.34000000,18.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.18000000,0.00000000,,0.12500000,89.00000000,3.93805310,0.01123596,0.00000000,5.14000000 +1037,chr22,15749619,UNK,G,,T,,-1.00000000,,,,,,,55.48000000,22.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-0.53000000,0.00000000,,0.11538462,182.00000000,8.05309735,0.00000000,0.00000000,4.69000000 +1038,chr22,15749693,UNK,G,,A,,-1.00000000,,,,,,,54.97000000,17.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.00000000,0.00000000,,0.05625000,161.00000000,7.12389381,0.00621118,0.00000000,4.25000000 +1039,chr22,15749754,UNK,G,,A,,-1.00000000,,,,,,,51.97000000,35.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-1.22000000,0.00000000,,0.10000000,174.00000000,7.69911504,0.02298851,0.00000000,4.32000000 +1040,chr22,15749780,UNK,A,,G,,-1.00000000,,,,,,,52.24000000,36.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,71.00000000,,-0.49000000,0.00000000,,0.03846154,186.00000000,8.23008850,0.02150538,0.00000000,4.24000000 +1041,chr22,15749799,UNK,C,,G,,-1.00000000,,,,,,,53.43000000,30.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,-0.22000000,0.00000000,,0.05978261,186.00000000,8.23008850,0.01075269,0.00000000,4.41000000 +1042,chr22,15749911,UNK,A,,G,,-1.00000000,,,,,,,51.24000000,52.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.38000000,0.00000000,,0.09523810,151.00000000,6.68141593,0.02649007,0.00000000,4.94000000 +1043,chr22,15749986,UNK,A,,G,,-1.00000000,,,,,,,44.69000000,80.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,1.73000000,0.00000000,,0.10810811,121.00000000,5.35398230,0.08264463,0.00000000,4.09000000 +1044,chr22,15750118,UNK,G,,C,,-1.00000000,,,,,,,49.62000000,60.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,67.00000000,,-0.49000000,3.08000000,,0.09649123,117.00000000,5.17699115,0.02564103,0.00000000,3.47000000 +1045,chr22,15755488,UNK,G,,A,,-1.00000000,,,,,,,38.23000000,26.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.16000000,0.00000000,,0.10256410,118.00000000,5.22123894,0.00847458,0.00000000,4.67000000 +1046,chr22,15757827,UNK,A,,G,,-1.00000000,,,,,,,45.12000000,33.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.04000000,0.00000000,,0.11666667,180.00000000,7.96460177,0.00000000,0.00000000,4.32000000 +1047,chr22,15758331,UNK,T,,G,,-1.00000000,,,,,,,36.15000000,45.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,,-2.55000000,0.00000000,,0.13846154,69.00000000,3.05309735,0.05797101,0.00000000,5.74000000 +1048,chr22,15759009,UNK,T,,A,,-1.00000000,,,,,,,49.44000000,32.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-0.45000000,0.00000000,,0.04666667,150.00000000,6.63716814,0.00000000,0.00000000,5.42000000 +1049,chr22,15761005,UNK,G,,A,,-1.00000000,,,,,,,36.00000000,57.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.60000000,0.00000000,,0.12264151,106.00000000,4.69026549,0.00000000,0.00000000,5.46000000 +1050,chr22,15761580,UNK,C,,T,,-1.00000000,,,,,,,43.31000000,33.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,,-1.20000000,0.00000000,,0.21656051,157.00000000,6.94690265,0.00000000,0.00000000,6.68000000 +1051,chr22,15761892,UNK,C,,T,,-1.00000000,,,,,,,38.26000000,38.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.46000000,1.94000000,,0.08737864,104.00000000,4.60176991,0.00961538,0.00000000,3.29000000 +1052,chr22,15763787,UNK,T,,A,,-1.00000000,,,,,,,38.44000000,46.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.01219512,0.00000000,86.00000000,,-0.80000000,0.00000000,,0.04245283,212.00000000,9.38053097,0.00000000,0.00000000,4.88000000 +1053,chr22,15764390,UNK,T,,A,,-1.00000000,,,,,,,36.43000000,47.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.03076923,0.00000000,79.00000000,,0.11000000,0.00000000,,0.13750000,162.00000000,7.16814159,0.01234568,0.00000000,4.74000000 +1054,chr22,15764435,UNK,G,,T,,-1.00000000,,,,,,,40.50000000,47.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.02469136,0.00000000,85.00000000,,-1.08000000,0.00000000,,0.04464286,225.00000000,9.95575221,0.00444444,0.00000000,4.41000000 +1055,chr22,15764726,UNK,T,,C,,-1.00000000,,,,,,,38.28000000,98.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.03448276,0.00000000,65.00000000,,0.76000000,9.96000000,,0.04761905,173.00000000,7.65486726,0.01156069,0.00000000,3.51000000 +1056,chr22,15765231,UNK,G,,A,,-1.00000000,,,,,,,27.89000000,24.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,18.00000000,,-0.97000000,0.00000000,,0.33333333,30.00000000,1.32743363,0.00000000,0.00000000,3.50000000 +1057,chr22,15769196,UNK,G,,A,,-1.00000000,,,,,,,43.27000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.44000000,3.10000000,,0.06896552,87.00000000,3.84955752,0.00000000,0.00000000,3.61000000 +1058,chr22,15771595,UNK,G,,A,,-1.00000000,,,,,,,48.37000000,24.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,,-0.48000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,5.92000000 +1059,chr22,15773139,UNK,G,,C,,-1.00000000,,,,,,,44.24000000,20.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.72000000,0.00000000,,0.07964602,115.00000000,5.08849558,0.00869565,0.00000000,4.09000000 +1060,chr22,15773359,UNK,C,,T,,-1.00000000,,,,,,,43.20000000,54.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.62000000,0.00000000,,0.16981132,108.00000000,4.77876106,0.01851852,0.00000000,5.69000000 +1061,chr22,15773361,UNK,A,,G,,-1.00000000,,,,,,,42.65000000,59.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.79000000,0.00000000,,0.17142857,107.00000000,4.73451327,0.00934579,0.00000000,6.09000000 +1062,chr22,15773493,UNK,C,,T,,-1.00000000,,,,,,,36.51000000,35.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,0.25000000,0.00000000,,0.12328767,73.00000000,3.23008850,0.00000000,0.00000000,4.86000000 +1063,chr22,15776069,UNK,G,,A,,-1.00000000,,,,,,,45.78000000,30.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,,-1.02000000,0.00000000,,0.13761468,111.00000000,4.91150442,0.01801802,0.00000000,5.38000000 +1064,chr22,15785585,UNK,C,,G,,-1.00000000,,,,,,,52.08000000,47.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,-0.04000000,0.00000000,,0.07391304,232.00000000,10.26548673,0.00862069,0.00000000,4.28000000 +1065,chr22,15785904,UNK,A,,G,,-1.00000000,,,,,,,55.36000000,31.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.01250000,0.00000000,85.00000000,,-0.45000000,0.00000000,,0.05923345,290.00000000,12.83185841,0.00689655,0.00000000,4.35000000 +1066,chr22,15787908,UNK,C,,A,,-1.00000000,,,,,,,45.96000000,75.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,0.38000000,0.00000000,,0.06790123,164.00000000,7.25663717,0.01219512,0.00000000,4.32000000 +1067,chr22,15787997,UNK,C,,T,,-1.00000000,,,,,,,42.71000000,76.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,0.77000000,0.00000000,,0.05095541,158.00000000,6.99115044,0.00632911,0.00000000,4.45000000 +1068,chr22,15795706,UNK,G,,C,,-1.00000000,,,,,,,26.78000000,118.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,0.26000000,0.00000000,,0.08536585,83.00000000,3.67256637,0.01204819,0.00000000,4.76000000 +1069,chr22,15803480,UNK,A,,T,,-1.00000000,,,,,,,36.19000000,84.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,,-1.09000000,0.00000000,,0.10810811,111.00000000,4.91150442,0.00000000,0.00000000,5.37000000 +1070,chr22,15803759,UNK,A,,G,,-1.00000000,,,,,,,24.42000000,72.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,,0.40000000,0.00000000,,0.09615385,53.00000000,2.34513274,0.01886792,0.00000000,3.93000000 +1071,chr22,15804516,UNK,G,,A,,-1.00000000,,,,,,,32.75000000,56.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,60.00000000,,1.11000000,0.00000000,,0.10937500,67.00000000,2.96460177,0.04477612,0.00000000,4.54000000 +1072,chr22,15810989,UNK,C,,A,,-1.00000000,,,,,,,28.81000000,78.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,0.73000000,0.00000000,,0.12121212,69.00000000,3.05309735,0.04347826,0.00000000,4.64000000 +1073,chr22,15815547,UNK,T,,C,,-1.00000000,,,,,,,19.28000000,97.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.56000000,0.00000000,,0.16129032,31.00000000,1.37168142,0.00000000,0.00000000,2.83000000 +1074,chr22,15817495,UNK,A,,C,,-1.00000000,,,,,,,36.78000000,73.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,,-1.80000000,0.00000000,,0.24000000,100.00000000,4.42477876,0.00000000,0.00000000,6.58000000 +1075,chr22,15820136,UNK,G,,C,,-1.00000000,,,,,,,29.65000000,86.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,31.00000000,,2.47000000,0.00000000,,0.34666667,76.00000000,3.36283186,0.01315789,0.00000000,3.73000000 +1076,chr22,15825678,UNK,A,,C,,-1.00000000,,,,,,,49.76000000,48.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.85000000,0.00000000,,0.11194030,134.00000000,5.92920354,0.00000000,0.00000000,4.86000000 +1077,chr22,15826181,UNK,G,,A,,-1.00000000,,,,,,,38.36000000,51.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,0.48000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.15000000 +1078,chr22,15826825,UNK,G,,A,,-1.00000000,,,,,,,30.36000000,49.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,0.37000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.47000000 +1079,chr22,15827212,UNK,A,,T,,-1.00000000,,,,,,,40.55000000,41.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,1.16000000,0.00000000,,0.07801418,141.00000000,6.23893805,0.00000000,0.00000000,5.05000000 +1080,chr22,15827616,UNK,T,,C,,-1.00000000,,,,,,,46.87000000,28.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,1.45000000,4.15000000,,0.06481481,109.00000000,4.82300885,0.00917431,0.00000000,3.95000000 +1081,chr22,15828000,UNK,G,,A,,-1.00000000,,,,,,,53.00000000,19.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-0.54000000,0.00000000,,0.04800000,127.00000000,5.61946903,0.01574803,0.00000000,5.11000000 +1082,chr22,15829641,UNK,T,,C,,-1.00000000,,,,,,,44.48000000,76.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,,1.12000000,0.00000000,,0.17266187,142.00000000,6.28318584,0.02112676,0.00000000,5.21000000 +1083,chr22,15832451,UNK,C,,G,,-1.00000000,,,,,,,45.82000000,49.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,,-1.84000000,0.00000000,,0.25581395,130.00000000,5.75221239,0.00769231,0.00000000,6.15000000 +1084,chr22,15832482,UNK,T,,G,,-1.00000000,,,,,,,46.23000000,45.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,,0.66000000,0.00000000,,0.25196850,128.00000000,5.66371681,0.00781250,0.00000000,5.84000000 +1085,chr22,15834750,UNK,C,,A,,-1.00000000,,,,,,,44.17000000,47.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,0.39000000,0.00000000,,0.09042553,190.00000000,8.40707965,0.01052632,0.00000000,4.76000000 +1086,chr22,15835026,UNK,A,,C,,-1.00000000,,,,,,,39.10000000,36.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,,0.82000000,0.00000000,,0.21698113,106.00000000,4.69026549,0.00000000,0.00000000,5.55000000 +1087,chr22,15835216,UNK,A,,C,,-1.00000000,,,,,,,45.10000000,34.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.00000000,0.00000000,83.00000000,,-0.08000000,0.00000000,,0.04932735,225.00000000,9.95575221,0.00888889,0.00000000,4.56000000 +1088,chr22,15835961,UNK,C,,T,,-1.00000000,,,,,,,54.46000000,20.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.01111111,0.00000000,90.00000000,,-0.31000000,0.00000000,,0.13229572,260.00000000,11.50442478,0.00769231,0.00000000,4.29000000 +1089,chr22,15837946,UNK,C,,T,,-1.00000000,,,,,,,36.36000000,118.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,60.00000000,,-0.59000000,1.40000000,,0.06122449,102.00000000,4.51327434,0.03921569,0.00000000,3.40000000 +1090,chr22,15837947,UNK,T,,C,,-1.00000000,,,,,,,35.99000000,118.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.04878049,65.00000000,,-1.13000000,0.00000000,,0.06315789,100.00000000,4.42477876,0.04000000,0.01960784,4.55000000 +1091,chr22,15841154,UNK,A,,G,,-1.00000000,,,,,,,54.52000000,32.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.03125000,0.00000000,91.00000000,,2.30000000,0.00000000,,0.04508197,249.00000000,11.01769912,0.02008032,0.00000000,4.03000000 +1092,chr22,15841848,UNK,G,,A,,-1.00000000,,,,,,,44.69000000,40.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,85.00000000,,-0.37000000,0.00000000,,0.16568047,169.00000000,7.47787611,0.00000000,0.00000000,5.34000000 +1093,chr22,15845585,UNK,T,,C,,-1.00000000,,,,,,,28.10000000,63.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,1.30000000,0.00000000,,0.06060606,99.00000000,4.38053097,0.00000000,0.00000000,4.61000000 +1094,chr22,15845991,UNK,C,,T,,-1.00000000,,,,,,,34.94000000,57.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-3.18000000,0.00000000,,0.05405405,112.00000000,4.95575221,0.00892857,0.00000000,4.96000000 +1095,chr22,15854439,UNK,T,,G,,-1.00000000,,,,,,,39.98000000,66.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,,2.86000000,0.00000000,,0.06666667,139.00000000,6.15044248,0.02158273,0.00000000,4.48000000 +1096,chr22,15856110,UNK,A,,G,,-1.00000000,,,,,,,22.99000000,69.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,0.19000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.05333333,0.00000000,5.84000000 +1097,chr22,15859828,UNK,G,,T,,-1.00000000,,,,,,,23.65000000,90.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,,2.36000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,4.49000000 +1098,chr22,15861907,UNK,C,,A,,-1.00000000,,,,,,,51.12000000,60.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.02127660,0.00000000,91.00000000,,0.33000000,5.55000000,,0.04067797,298.00000000,13.18584071,0.01006711,0.00000000,3.05000000 +1099,chr22,15862081,UNK,C,,A,,-1.00000000,,,,,,,53.91000000,30.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,89.00000000,,-0.16000000,0.00000000,,0.15116279,260.00000000,11.50442478,0.00769231,0.00000000,4.65000000 +1100,chr22,15862202,UNK,G,,A,,-1.00000000,,,,,,,57.58000000,18.00000000,ref,1.00000000,0.00000000,83.00000000,3.67256637,0.00000000,0.00000000,87.00000000,,3.74000000,0.00000000,,0.06949807,261.00000000,11.54867257,0.00766284,0.00000000,4.37000000 +1101,chr22,15863020,UNK,C,,T,,-1.00000000,,,,,,,44.40000000,54.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,69.00000000,,0.50000000,0.00000000,,0.07194245,154.00000000,6.81415929,0.09740260,0.00000000,4.24000000 +1102,chr22,15863050,UNK,T,,A,,-1.00000000,,,,,,,48.04000000,39.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.11627907,0.06521739,67.00000000,,1.99000000,0.00000000,,0.09322034,129.00000000,5.70796460,0.08527132,0.11034483,4.29000000 +1103,chr22,15863468,UNK,A,,G,,-1.00000000,,,,,,,49.15000000,38.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,95.00000000,,0.96000000,0.00000000,,0.16931217,190.00000000,8.40707965,0.00526316,0.00000000,4.72000000 +1104,chr22,15863626,UNK,C,,T,,-1.00000000,,,,,,,42.79000000,67.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,78.00000000,,0.74000000,0.00000000,,0.20312500,130.00000000,5.75221239,0.01538462,0.00000000,5.11000000 +1105,chr22,15864591,UNK,A,,T,,-1.00000000,,,,,,,21.55000000,57.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,4.00000000,,0.86000000,1.16000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,2.82000000 +1106,chr22,15865013,UNK,T,,C,,-1.00000000,,,,,,,32.67000000,59.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,64.00000000,,-1.47000000,0.00000000,,0.06666667,91.00000000,4.02654867,0.01098901,0.00000000,5.23000000 +1107,chr22,15865035,UNK,A,,T,,-1.00000000,,,,,,,33.14000000,55.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-1.07000000,0.00000000,,0.07142857,100.00000000,4.42477876,0.02000000,0.00000000,4.88000000 +1108,chr22,15871594,UNK,T,,G,,-1.00000000,,,,,,,35.30000000,35.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.23000000,1.72000000,,0.09523810,106.00000000,4.69026549,0.00943396,0.00000000,4.08000000 +1109,chr22,15871632,UNK,T,,C,,-1.00000000,,,,,,,38.87000000,33.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,0.41000000,0.00000000,,0.05555556,128.00000000,5.66371681,0.00781250,0.00000000,4.55000000 +1110,chr22,15872732,UNK,G,,A,,-1.00000000,,,,,,,28.05000000,80.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,3.32000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,2.96000000 +1111,chr22,15874061,UNK,T,,C,,-1.00000000,,,,,,,32.71000000,75.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-1.00000000,0.00000000,,0.06329114,158.00000000,6.99115044,0.00000000,0.00000000,4.61000000 +1112,chr22,15874158,UNK,C,,A,,-1.00000000,,,,,,,36.25000000,61.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,-1.17000000,0.00000000,,0.05581395,215.00000000,9.51327434,0.00000000,0.00000000,5.02000000 +1113,chr22,15874184,UNK,C,,T,,-1.00000000,,,,,,,33.00000000,70.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.84000000,0.00000000,,0.12025316,158.00000000,6.99115044,0.00000000,0.00000000,4.45000000 +1114,chr22,15876183,UNK,G,,A,,-1.00000000,,,,,,,29.88000000,98.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-0.19000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.51000000 +1115,chr22,15880429,UNK,T,,C,,-1.00000000,,,,,,,39.41000000,25.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,-1.11000000,0.00000000,,0.10909091,57.00000000,2.52212389,0.03508772,0.00000000,4.99000000 +1116,chr22,15890135,UNK,A,,G,,-1.00000000,,,,,,,22.13000000,71.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,6.00000000,,-1.13000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.00000000,0.00000000,3.44000000 +1117,chr22,15900711,UNK,C,,T,,-1.00000000,,,,,,,21.08000000,63.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.29411765,22.00000000,,-1.00000000,0.00000000,,0.36111111,36.00000000,1.59292035,0.00000000,0.20000000,3.43000000 +1118,chr22,15908583,UNK,G,,A,,-1.00000000,,,,,,,42.08000000,35.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,44.00000000,,-1.84000000,0.00000000,,0.33333333,67.00000000,2.96460177,0.01492537,0.00000000,3.95000000 +1119,chr22,15911090,UNK,A,,G,,-1.00000000,,,,,,,31.23000000,91.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,0.48000000,0.00000000,,0.15384615,52.00000000,2.30088496,0.00000000,0.00000000,5.40000000 +1120,chr22,15911973,UNK,A,,G,,-1.00000000,,,,,,,32.77000000,47.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,1.54000000,0.00000000,,0.18867925,54.00000000,2.38938053,0.00000000,0.00000000,5.51000000 +1121,chr22,15949015,UNK,A,,G,,-1.00000000,,,,,,,36.74000000,30.00000000,ref,1.00000000,0.00000000,1.00000000,0.04424779,0.00000000,0.00000000,3.00000000,,-0.76000000,0.00000000,,0.93750000,16.00000000,0.70796460,0.00000000,0.00000000,3.00000000 +1122,chr22,16056671,UNK,T,,A,,-1.00000000,,,,,,,58.66000000,7.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.16363636,0.00000000,70.00000000,,-1.44000000,0.00000000,,0.04724409,168.00000000,7.43362832,0.24404762,0.00000000,4.35000000 +1123,chr22,16129926,UNK,A,,G,,-1.00000000,,,,,,,58.20000000,5.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,11.00000000,,-0.36000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.11111111,0.00000000,3.37000000 +1124,chr22,16157870,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,,-0.44000000,0.00000000,,0.42857143,59.00000000,2.61061947,0.05084746,0.00000000,6.22000000 +1125,chr22,16157871,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,,-0.04000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,7.50000000 +1126,chr22,16184368,UNK,A,,C,,-1.00000000,,,,,,,51.02000000,28.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,35.00000000,,1.91000000,0.00000000,,0.39215686,51.00000000,2.25663717,0.00000000,0.00000000,3.41000000 +1127,chr22,16184370,UNK,T,,C,,-1.00000000,,,,,,,50.92000000,28.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,39.00000000,,-2.42000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,3.50000000 +1128,chr22,16184390,UNK,C,,G,,-1.00000000,,,,,,,51.38000000,28.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,51.00000000,,1.22000000,0.00000000,,0.41666667,50.00000000,2.21238938,0.04000000,0.00000000,4.35000000 +1129,chr22,16184424,UNK,T,,C,,-1.00000000,,,,,,,50.94000000,31.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,,-0.71000000,0.00000000,,0.25581395,51.00000000,2.25663717,0.11764706,0.00000000,6.44000000 +1130,chr22,16184464,UNK,G,,A,,-1.00000000,,,,,,,53.40000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,24.00000000,,-0.47000000,0.00000000,,0.35849057,54.00000000,2.38938053,0.01851852,0.00000000,3.10000000 +1131,chr22,16207970,UNK,T,,C,,-1.00000000,,,,,,,58.38000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,,0.73000000,0.00000000,,0.38805970,69.00000000,3.05309735,0.02898551,0.00000000,7.84000000 +1132,chr22,16208000,UNK,A,,T,,-1.00000000,,,,,,,58.17000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,1.18000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.01298701,0.00000000,8.10000000 +1133,chr22,16234136,UNK,G,,C,,-1.00000000,,,,,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,62.00000000,,-2.10000000,0.00000000,,0.09523810,60.00000000,2.65486726,0.30000000,0.00000000,4.56000000 +1134,chr22,16234143,UNK,G,,T,,-1.00000000,,,,,,,58.32000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,,-2.98000000,0.00000000,,0.13636364,62.00000000,2.74336283,0.29032258,0.00000000,5.33000000 +1135,chr22,16251190,UNK,T,,A,,-1.00000000,,,,,,,56.82000000,10.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,0.34000000,0.00000000,,0.36363636,59.00000000,2.61061947,0.05084746,0.00000000,7.34000000 +1136,chr22,16251200,UNK,T,,C,,-1.00000000,,,,,,,56.86000000,10.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,,1.60000000,0.00000000,,0.09756098,60.00000000,2.65486726,0.31666667,0.00000000,3.68000000 +1137,chr22,16251214,UNK,T,,C,,-1.00000000,,,,,,,56.89000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,,-0.70000000,0.00000000,,0.38333333,63.00000000,2.78761062,0.04761905,0.00000000,4.33000000 +1138,chr22,16251215,UNK,G,,T,,-1.00000000,,,,,,,56.98000000,10.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,,-0.64000000,0.00000000,,0.35483871,65.00000000,2.87610619,0.04615385,0.00000000,6.19000000 +1139,chr22,16270844,UNK,G,,A,,-1.00000000,,,,,,,58.14000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,,-1.01000000,0.00000000,,0.34920635,65.00000000,2.87610619,0.03076923,0.00000000,8.22000000 +1140,chr22,16270847,UNK,G,,C,,-1.00000000,,,,,,,58.12000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,,-0.79000000,0.00000000,,0.34920635,64.00000000,2.83185841,0.01562500,0.00000000,8.15000000 +1141,chr22,16345129,UNK,G,,A,,-1.00000000,,,,,,,39.81000000,20.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-2.08000000,0.00000000,,0.52380952,23.00000000,1.01769912,0.08695652,0.00000000,3.00000000 +1142,chr22,16345154,UNK,T,,C,,-1.00000000,,,,,,,44.67000000,19.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,,-0.83000000,0.00000000,,0.55555556,28.00000000,1.23893805,0.03571429,0.00000000,3.91000000 +1143,chr22,16350941,UNK,G,,A,,-1.00000000,,,,,,,18.73000000,81.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.53000000,0.00000000,,0.50000000,6.00000000,0.26548673,0.00000000,0.00000000,3.67000000 +1144,chr22,16354427,UNK,G,,A,,-1.00000000,,,,,,,30.25000000,14.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.38000000,0.00000000,,0.41666667,12.00000000,0.53097345,0.00000000,0.00000000,3.47000000 +1145,chr22,16354465,UNK,A,,T,,-1.00000000,,,,,,,28.32000000,18.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-1.89000000,0.00000000,,0.36363636,11.00000000,0.48672566,0.00000000,0.00000000,3.23000000 +1146,chr22,16361136,UNK,G,,A,,-1.00000000,,,,,,,26.63000000,65.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,6.00000000,,0.37000000,0.00000000,,0.38461538,14.00000000,0.61946903,0.07142857,0.00000000,3.83000000 +1147,chr22,16362588,UNK,T,,C,,-1.00000000,,,,,,,30.37000000,5.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,0.77000000,1.00000000,,0.25000000,9.00000000,0.39823009,0.00000000,0.00000000,2.78000000 +1148,chr22,16381395,UNK,T,,G,,-1.00000000,,,,,,,22.17000000,16.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.73000000,0.00000000,,0.54545455,11.00000000,0.48672566,0.00000000,0.00000000,3.00000000 +1149,chr22,16386789,UNK,C,,T,,-1.00000000,,,,,,,57.86000000,4.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.15384615,0.00000000,14.00000000,,-0.72000000,0.00000000,,0.54545455,40.00000000,1.76991150,0.17500000,0.00000000,3.81000000 +1150,chr22,16407695,UNK,C,,T,,-1.00000000,,,,,,,47.21000000,62.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,61.00000000,,0.25000000,0.00000000,,0.05319149,94.00000000,4.15929204,0.00000000,0.00000000,4.57000000 +1151,chr22,16409545,UNK,T,,C,,-1.00000000,,,,,,,53.50000000,29.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,69.00000000,,3.20000000,0.00000000,,0.04166667,120.00000000,5.30973451,0.00000000,0.00000000,3.28000000 +1152,chr22,16413470,UNK,C,,T,,-1.00000000,,,,,,,51.53000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,16.00000000,,1.03000000,0.00000000,,0.42647059,70.00000000,3.09734513,0.02857143,0.00000000,3.08000000 +1153,chr22,16417585,UNK,T,,C,,-1.00000000,,,,,,,52.49000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,0.88000000,0.00000000,,0.13043478,71.00000000,3.14159292,0.02816901,0.00000000,4.57000000 +1154,chr22,16418209,UNK,A,,T,,-1.00000000,,,,,,,53.44000000,51.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.39682540,0.00000000,101.00000000,,2.08000000,0.00000000,,0.39175258,143.00000000,6.32743363,0.32167832,0.00000000,6.10000000 +1155,chr22,16420298,UNK,A,,G,,-1.00000000,,,,,,,49.35000000,50.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,93.00000000,,-0.10000000,0.00000000,,0.23529412,121.00000000,5.35398230,0.01652893,0.00000000,5.49000000 +1156,chr22,16420322,UNK,C,,G,,-1.00000000,,,,,,,49.03000000,48.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,,-1.86000000,0.00000000,,0.25423729,121.00000000,5.35398230,0.02479339,0.00000000,6.00000000 +1157,chr22,16420858,UNK,G,,A,,-1.00000000,,,,,,,53.76000000,21.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,0.61000000,0.00000000,,0.05479452,149.00000000,6.59292035,0.01342282,0.00000000,4.62000000 +1158,chr22,16457052,UNK,G,,T,,-1.00000000,,,,,,,52.48000000,39.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,59.00000000,,2.85000000,0.00000000,,0.09433962,107.00000000,4.73451327,0.00934579,0.00000000,3.93000000 +1159,chr22,16457235,UNK,G,,A,,-1.00000000,,,,,,,55.50000000,16.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,64.00000000,,-1.43000000,0.00000000,,0.05263158,115.00000000,5.08849558,0.00869565,0.00000000,5.00000000 +1160,chr22,16473885,UNK,T,,G,,-1.00000000,,,,,,,40.52000000,84.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.59000000,0.00000000,,0.09589041,74.00000000,3.27433628,0.01351351,0.00000000,4.92000000 +1161,chr22,16569887,UNK,T,,A,,-1.00000000,,,,,,,57.58000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,,-1.40000000,0.00000000,,0.28571429,57.00000000,2.52212389,0.01754386,0.00000000,6.25000000 +1162,chr22,16886058,UNK,C,,T,,-1.00000000,,,,,,,40.07000000,49.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,26.00000000,,-0.60000000,0.00000000,,0.32000000,28.00000000,1.23893805,0.03571429,0.00000000,3.67000000 +1163,chr22,16897517,UNK,A,,T,,-1.00000000,,,,,,,44.49000000,67.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,,-2.05000000,0.00000000,,0.43939394,66.00000000,2.92035398,0.00000000,0.00000000,4.01000000 +1164,chr22,16911571,UNK,T,,C,,-1.00000000,,,,,,,45.47000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,,-1.30000000,7.55000000,,0.22916667,49.00000000,2.16814159,0.02040816,0.00000000,4.37000000 +1165,chr22,16911594,UNK,C,,T,,-1.00000000,,,,,,,45.42000000,52.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,,0.71000000,7.70000000,,0.22448980,49.00000000,2.16814159,0.00000000,0.00000000,3.56000000 +1166,chr22,16911632,UNK,G,,A,,-1.00000000,,,,,,,45.28000000,59.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,,1.77000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,5.61000000 +1167,chr22,16911753,UNK,G,,T,,-1.00000000,,,,,,,51.20000000,47.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,-2.71000000,0.00000000,,0.12820513,82.00000000,3.62831858,0.04878049,0.01204819,5.08000000 +1168,chr22,16911912,UNK,A,,G,,-1.00000000,,,,,,,50.38000000,42.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.65000000,2.78000000,,0.07142857,73.00000000,3.23008850,0.04109589,0.00000000,3.17000000 +1169,chr22,17094693,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.50000000,0.00000000,3.00000000,,-0.22000000,0.00000000,,0.33333333,25.00000000,1.10619469,0.16000000,0.03846154,3.00000000 +1170,chr22,17253675,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.03846154,64.00000000,,-1.37000000,0.00000000,,0.23188406,77.00000000,3.40707965,0.10389610,0.00000000,5.56000000 +1171,chr22,17327028,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,,-1.36000000,0.00000000,,0.12307692,67.00000000,2.96460177,0.02985075,0.00000000,5.02000000 +1172,chr22,17327032,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,-0.86000000,0.00000000,,0.10447761,69.00000000,3.05309735,0.02898551,0.00000000,4.94000000 +1173,chr22,17422721,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,,0.77000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.03571429,0.00000000,5.24000000 +1174,chr22,17469610,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.60000000,20.00000000,,0.87000000,0.00000000,,0.36538462,57.00000000,2.52212389,0.08771930,0.32142857,3.75000000 +1175,chr22,17519297,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,,0.37000000,0.00000000,,0.19354839,74.00000000,3.27433628,0.16216216,0.00000000,5.67000000 +1176,chr22,17564877,UNK,C,,T,,-1.00000000,,,,,,,59.22000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,41.00000000,,-1.09000000,0.00000000,,0.33333333,53.00000000,2.34513274,0.09433962,0.00000000,4.13000000 +1177,chr22,17616045,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,66.00000000,,0.43000000,0.00000000,,0.15555556,47.00000000,2.07964602,0.02127660,0.00000000,5.34000000 +1178,chr22,17629818,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,,0.46000000,0.00000000,,0.18518519,87.00000000,3.84955752,0.06896552,0.01136364,5.76000000 +1179,chr22,17722382,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,,-0.35000000,0.00000000,,0.13114754,66.00000000,2.92035398,0.07575758,0.00000000,4.36000000 +1180,chr22,17722421,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,,-0.28000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.01298701,3.13000000 +1181,chr22,17733015,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.39024390,70.00000000,,2.02000000,0.00000000,,0.26000000,52.00000000,2.30088496,0.01923077,0.30666667,6.01000000 +1182,chr22,17866613,UNK,C,,T,,-1.00000000,,,,,,,59.82000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.23000000,0.00000000,,0.12328767,76.00000000,3.36283186,0.03947368,0.00000000,5.11000000 +1183,chr22,17957726,UNK,A,,G,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,,-0.02000000,0.00000000,,0.18461538,71.00000000,3.14159292,0.08450704,0.00000000,5.87000000 +1184,chr22,17976559,UNK,G,,A,,-1.00000000,,,,,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,65.00000000,,0.67000000,0.00000000,,0.18181818,58.00000000,2.56637168,0.05172414,0.00000000,5.31000000 +1185,chr22,17985123,UNK,C,,G,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,,-1.37000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +1186,chr22,17985124,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,,-1.64000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.01333333,0.00000000,6.60000000 +1187,chr22,17985125,UNK,G,,C,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,,-1.10000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.66000000 +1188,chr22,18184837,UNK,C,,A,,-1.00000000,,,,,,,36.67000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,,0.45000000,0.42000000,,0.11904762,42.00000000,1.85840708,0.00000000,0.00000000,4.15000000 +1189,chr22,18184920,UNK,T,,C,,-1.00000000,,,,,,,43.55000000,21.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,,-1.57000000,0.00000000,,0.20000000,57.00000000,2.52212389,0.03508772,0.00000000,6.23000000 +1190,chr22,18186371,UNK,G,,C,,-1.00000000,,,,,,,57.23000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,,1.00000000,0.00000000,,0.09333333,78.00000000,3.45132743,0.03846154,0.00000000,4.26000000 +1191,chr22,18187539,UNK,G,,A,,-1.00000000,,,,,,,41.58000000,23.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,,0.03000000,2.23000000,,0.15151515,33.00000000,1.46017699,0.00000000,0.00000000,4.55000000 +1192,chr22,18504406,UNK,G,,C,,-1.00000000,,,,,,,29.40000000,10.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.00000000,3.00000000,,-1.37000000,0.00000000,,0.41176471,18.00000000,0.79646018,0.05555556,0.00000000,3.00000000 +1193,chr22,18727756,UNK,C,,T,,-1.00000000,,,,,,,32.80000000,46.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,1.45000000,0.00000000,,0.10869565,46.00000000,2.03539823,0.00000000,0.00000000,4.52000000 +1194,chr22,18727816,UNK,T,,C,,-1.00000000,,,,,,,40.27000000,52.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.37000000,0.00000000,,0.10588235,85.00000000,3.76106195,0.00000000,0.00000000,5.66000000 +1195,chr22,18727820,UNK,G,,C,,-1.00000000,,,,,,,41.23000000,50.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,2.18000000,0.00000000,,0.12359551,89.00000000,3.93805310,0.00000000,0.00000000,4.86000000 +1196,chr22,18727874,UNK,A,,G,,-1.00000000,,,,,,,42.12000000,53.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,61.00000000,,-0.03000000,2.78000000,,0.04761905,105.00000000,4.64601770,0.00000000,0.00000000,3.95000000 +1197,chr22,18727966,UNK,T,,C,,-1.00000000,,,,,,,31.98000000,64.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,-0.80000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.91000000 +1198,chr22,18727967,UNK,C,,T,,-1.00000000,,,,,,,31.45000000,65.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.60000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.91000000 +1199,chr22,18728438,UNK,A,,T,,-1.00000000,,,,,,,39.44000000,36.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,10.00000000,,1.43000000,0.00000000,,0.36111111,38.00000000,1.68141593,0.05263158,0.00000000,3.82000000 +1200,chr22,18731000,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,11.00000000,,-0.95000000,0.00000000,,0.51851852,29.00000000,1.28318584,0.06896552,0.03333333,3.91000000 +1201,chr22,18731491,UNK,G,,A,,-1.00000000,,,,,,,55.68000000,4.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,-0.13000000,0.00000000,,0.34615385,28.00000000,1.23893805,0.07142857,0.00000000,3.00000000 +1202,chr22,18731501,UNK,A,,C,,-1.00000000,,,,,,,56.40000000,4.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.12000000,0.00000000,,0.32142857,30.00000000,1.32743363,0.06666667,0.00000000,3.00000000 +1203,chr22,18732985,UNK,G,,A,,-1.00000000,,,,,,,55.42000000,4.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.84000000,0.00000000,,0.32000000,25.00000000,1.10619469,0.00000000,0.00000000,3.00000000 +1204,chr22,18733923,UNK,T,,A,,-1.00000000,,,,,,,31.15000000,49.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,1.52000000,0.84000000,,0.37500000,16.00000000,0.70796460,0.00000000,0.00000000,2.85000000 +1205,chr22,18735703,UNK,G,,A,,-1.00000000,,,,,,,27.25000000,93.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,,1.06000000,0.00000000,,0.06451613,125.00000000,5.53097345,0.00000000,0.00000000,4.70000000 +1206,chr22,18739975,UNK,T,,C,,-1.00000000,,,,,,,54.88000000,6.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,15.00000000,,-0.87000000,0.00000000,,0.37142857,35.00000000,1.54867257,0.00000000,0.00000000,3.60000000 +1207,chr22,18740297,UNK,C,,G,,-1.00000000,,,,,,,58.99000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,44.00000000,,1.82000000,0.00000000,,0.35897436,39.00000000,1.72566372,0.00000000,0.00000000,3.94000000 +1208,chr22,18741008,UNK,A,,G,,-1.00000000,,,,,,,51.86000000,7.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,,0.15000000,0.00000000,,0.33333333,21.00000000,0.92920354,0.00000000,0.00000000,3.59000000 +1209,chr22,18775780,UNK,A,,G,,-1.00000000,,,,,,,23.88000000,31.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,1.03000000,0.00000000,,0.35714286,28.00000000,1.23893805,0.00000000,0.00000000,3.00000000 +1210,chr22,18851208,UNK,G,,T,,-1.00000000,,,,,,,14.94000000,40.00000000,ref,1.00000000,0.00000000,3.00000000,0.13274336,0.00000000,0.00000000,4.00000000,,0.00000000,0.00000000,,1.00000000,3.00000000,0.13274336,0.00000000,0.00000000,3.60000000 +1211,chr22,18892010,UNK,G,,A,,-1.00000000,,,,,,,49.89000000,11.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,14.00000000,,-1.11000000,0.00000000,,0.29629630,31.00000000,1.37168142,0.09677419,0.00000000,3.29000000 +1212,chr22,19024531,UNK,T,,G,,-1.00000000,,,,,,,55.08000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,54.00000000,,1.05000000,0.00000000,,0.26415094,54.00000000,2.38938053,0.01851852,0.00000000,2.82000000 +1213,chr22,19026796,UNK,G,,A,,-1.00000000,,,,,,,42.52000000,25.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,4.00000000,,-0.44000000,1.84000000,,0.45161290,31.00000000,1.37168142,0.00000000,0.00000000,2.91000000 +1214,chr22,19027050,UNK,C,,T,,-1.00000000,,,,,,,54.19000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,,2.52000000,0.00000000,,0.32692308,55.00000000,2.43362832,0.01818182,0.00000000,6.31000000 +1215,chr22,19027066,UNK,A,,G,,-1.00000000,,,,,,,55.45000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.40000000,0.00000000,,0.13793103,58.00000000,2.56637168,0.00000000,0.00000000,5.88000000 +1216,chr22,19027067,UNK,C,,T,,-1.00000000,,,,,,,55.80000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-1.28000000,0.00000000,,0.13559322,59.00000000,2.61061947,0.00000000,0.00000000,5.88000000 +1217,chr22,19027077,UNK,C,,T,,-1.00000000,,,,,,,56.39000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.94000000,0.00000000,,0.10526316,57.00000000,2.52212389,0.00000000,0.00000000,4.63000000 +1218,chr22,19027100,UNK,C,,T,,-1.00000000,,,,,,,58.19000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,,-0.58000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.03225806,0.00000000,6.05000000 +1219,chr22,19062759,UNK,A,,G,,-1.00000000,,,,,,,57.86000000,7.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.04000000,63.00000000,,0.51000000,0.00000000,,0.17187500,67.00000000,2.96460177,0.04477612,0.00000000,5.44000000 +1220,chr22,19062779,UNK,A,,T,,-1.00000000,,,,,,,58.13000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,,-0.28000000,0.00000000,,0.15151515,76.00000000,3.36283186,0.10526316,0.00000000,5.89000000 +1221,chr22,19072890,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,,0.36000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.91000000 +1222,chr22,19072899,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,0.37000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.89000000 +1223,chr22,19082064,UNK,G,,T,,-1.00000000,,,,,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,,0.61000000,0.00000000,,0.18840580,76.00000000,3.36283186,0.09210526,0.00000000,5.58000000 +1224,chr22,19082067,UNK,T,,G,,-1.00000000,,,,,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,,-0.07000000,0.00000000,,0.19402985,75.00000000,3.31858407,0.10666667,0.00000000,6.29000000 +1225,chr22,19096597,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,0.15000000,0.00000000,,0.13265306,105.00000000,4.64601770,0.06666667,0.00000000,4.79000000 +1226,chr22,19096598,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,,1.65000000,0.00000000,,0.36082474,105.00000000,4.64601770,0.07619048,0.00000000,8.15000000 +1227,chr22,19096604,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,,1.34000000,0.00000000,,0.33695652,101.00000000,4.46902655,0.08910891,0.00000000,7.63000000 +1228,chr22,19096626,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,,1.24000000,0.00000000,,0.18279570,102.00000000,4.51327434,0.08823529,0.00000000,5.97000000 +1229,chr22,19096633,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,,1.53000000,0.00000000,,0.18478261,99.00000000,4.38053097,0.07070707,0.00000000,6.37000000 +1230,chr22,19096895,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,,1.77000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.02597403,5.89000000 +1231,chr22,19096898,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,,-0.07000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.37000000 +1232,chr22,19111860,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,48.00000000,2.12389381,0.04166667,0.00000000,74.00000000,,1.39000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.24719101,5.32000000 +1233,chr22,19114152,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05128205,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,,-1.94000000,0.00000000,,0.23469388,112.00000000,4.95575221,0.12500000,0.00000000,5.91000000 +1234,chr22,19122240,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.00000000,0.00000000,49.00000000,,0.15000000,0.00000000,,0.38181818,58.00000000,2.56637168,0.05172414,0.14705882,3.98000000 +1235,chr22,19122251,UNK,A,,G,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,,0.29000000,0.00000000,,0.47761194,71.00000000,3.14159292,0.05633803,0.00000000,4.32000000 +1236,chr22,19230090,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,33.00000000,1.46017699,0.36363636,0.00000000,12.00000000,,-3.94000000,0.00000000,,0.35294118,88.00000000,3.89380531,0.22727273,0.00000000,3.09000000 +1237,chr22,19230094,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.77142857,0.00000000,6.00000000,,-5.74000000,0.00000000,,0.53333333,88.00000000,3.89380531,0.47727273,0.00000000,3.18000000 +1238,chr22,20333511,UNK,A,,T,,-1.00000000,,,,,,,48.53000000,32.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,,-1.24000000,0.00000000,,0.11235955,90.00000000,3.98230088,0.01111111,0.00000000,5.10000000 +1239,chr22,20334056,UNK,G,,A,,-1.00000000,,,,,,,37.96000000,30.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,1.55000000,0.00000000,,0.29230769,65.00000000,2.87610619,0.00000000,0.00000000,6.03000000 +1240,chr22,20338634,UNK,A,,G,,-1.00000000,,,,,,,55.22000000,52.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.00000000,0.00000000,83.00000000,,-2.67000000,10.58000000,,0.04405286,229.00000000,10.13274336,0.00436681,0.00000000,3.15000000 +1241,chr22,20342199,UNK,A,,G,,-1.00000000,,,,,,,41.86000000,61.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.72000000,0.00000000,,0.06060606,135.00000000,5.97345133,0.01481481,0.00000000,5.05000000 +1242,chr22,20354938,UNK,G,,A,,-1.00000000,,,,,,,40.08000000,46.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.14285714,0.48148148,20.00000000,,0.65000000,0.00000000,,0.38095238,25.00000000,1.10619469,0.16000000,0.47916667,3.70000000 +1243,chr22,20596974,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,,0.73000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.43000000 +1244,chr22,20684271,UNK,T,,C,,-1.00000000,,,,,,,46.53000000,30.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,62.00000000,,0.47000000,0.50000000,,0.06849315,78.00000000,3.45132743,0.05128205,0.00000000,3.41000000 +1245,chr22,20695038,UNK,T,,A,,-1.00000000,,,,,,,47.57000000,17.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-1.04000000,0.00000000,,0.07317073,86.00000000,3.80530973,0.02325581,0.00000000,4.88000000 +1246,chr22,21077621,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,58.00000000,,-0.57000000,0.00000000,,0.15873016,74.00000000,3.27433628,0.13513514,0.00000000,4.68000000 +1247,chr22,21122990,UNK,T,,C,,-1.00000000,,,,,,,32.03000000,42.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.53000000,0.00000000,,0.10638298,48.00000000,2.12389381,0.00000000,0.00000000,5.23000000 +1248,chr22,21123062,UNK,C,,T,,-1.00000000,,,,,,,31.87000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,0.92000000,0.00000000,,0.11764706,51.00000000,2.25663717,0.00000000,0.00000000,5.12000000 +1249,chr22,21131954,UNK,T,,C,,-1.00000000,,,,,,,20.85000000,59.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,10.00000000,,0.84000000,0.00000000,,0.33333333,18.00000000,0.79646018,0.00000000,0.00000000,3.61000000 +1250,chr22,21148236,UNK,G,,A,,-1.00000000,,,,,,,33.92000000,15.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-1.73000000,0.00000000,,0.42105263,20.00000000,0.88495575,0.05000000,0.00000000,3.00000000 +1251,chr22,21157678,UNK,G,,A,,-1.00000000,,,,,,,34.92000000,27.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,0.39000000,0.00000000,,0.46428571,30.00000000,1.32743363,0.06666667,0.00000000,3.87000000 +1252,chr22,21158186,UNK,A,,G,,-1.00000000,,,,,,,34.98000000,23.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.50000000,0.00000000,,0.07216495,97.00000000,4.29203540,0.00000000,0.00000000,4.73000000 +1253,chr22,21164481,UNK,C,,A,,-1.00000000,,,,,,,43.69000000,36.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-0.31000000,0.77000000,,0.09090909,44.00000000,1.94690265,0.00000000,0.00000000,2.79000000 +1254,chr22,21191155,UNK,C,,T,,-1.00000000,,,,,,,22.18000000,43.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,-0.87000000,0.00000000,,0.47058824,17.00000000,0.75221239,0.00000000,0.00000000,3.57000000 +1255,chr22,21194719,UNK,T,,C,,-1.00000000,,,,,,,35.66000000,17.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,,-0.15000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.52000000 +1256,chr22,21227948,UNK,G,,A,,-1.00000000,,,,,,,39.56000000,46.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.18181818,0.00000000,15.00000000,,-0.90000000,0.00000000,,0.32000000,28.00000000,1.23893805,0.10714286,0.00000000,3.11000000 +1257,chr22,21229104,UNK,C,,T,,-1.00000000,,,,,,,24.64000000,25.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,-0.75000000,0.00000000,,0.41379310,29.00000000,1.28318584,0.00000000,0.00000000,3.67000000 +1258,chr22,21247740,UNK,G,,A,,-1.00000000,,,,,,,8.76000000,50.00000000,ref,1.00000000,0.00000000,3.00000000,0.13274336,0.00000000,0.00000000,3.00000000,,0.00000000,0.00000000,,1.00000000,2.00000000,0.08849558,0.00000000,0.00000000,3.00000000 +1259,chr22,21275585,UNK,A,,G,,-1.00000000,,,,,,,30.94000000,67.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,,0.32000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.01136364,0.00000000,6.18000000 +1260,chr22,21278309,UNK,G,,A,,-1.00000000,,,,,,,21.24000000,21.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,7.00000000,,-1.01000000,0.00000000,,0.45833333,26.00000000,1.15044248,0.07692308,0.00000000,4.00000000 +1261,chr22,21281249,UNK,C,,G,,-1.00000000,,,,,,,46.85000000,13.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,8.00000000,,-1.54000000,0.84000000,,0.41666667,13.00000000,0.57522124,0.07692308,0.00000000,2.80000000 +1262,chr22,21281300,UNK,A,,G,,-1.00000000,,,,,,,51.93000000,6.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,0.60000000,0.16000000,,0.35294118,18.00000000,0.79646018,0.05555556,0.00000000,2.84000000 +1263,chr22,21317433,UNK,A,,T,,-1.00000000,,,,,,,36.33000000,31.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,,3.40000000,0.00000000,,0.26315789,39.00000000,1.72566372,0.02564103,0.00000000,5.62000000 +1264,chr22,21321992,UNK,T,,C,,-1.00000000,,,,,,,16.21000000,52.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.32000000,0.00000000,,0.38461538,13.00000000,0.57522124,0.00000000,0.00000000,3.41000000 +1265,chr22,21327720,UNK,C,,G,,-1.00000000,,,,,,,52.78000000,11.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.14285714,0.00000000,23.00000000,,-2.73000000,0.00000000,,0.34285714,38.00000000,1.68141593,0.07894737,0.00000000,3.56000000 +1266,chr22,21327862,UNK,T,,C,,-1.00000000,,,,,,,53.57000000,14.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,,0.97000000,0.00000000,,0.59090909,33.00000000,1.46017699,0.33333333,0.34000000,3.88000000 +1267,chr22,21327886,UNK,A,,G,,-1.00000000,,,,,,,57.17000000,8.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,,-0.66000000,0.00000000,,0.35294118,62.00000000,2.74336283,0.17741935,0.00000000,4.44000000 +1268,chr22,21328222,UNK,A,,G,,-1.00000000,,,,,,,45.85000000,26.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,32.00000000,,2.20000000,0.00000000,,0.35000000,41.00000000,1.81415929,0.02439024,0.00000000,3.54000000 +1269,chr22,21328669,UNK,A,,T,,-1.00000000,,,,,,,51.03000000,15.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,26.00000000,,1.17000000,0.00000000,,0.34545455,57.00000000,2.52212389,0.03508772,0.00000000,3.61000000 +1270,chr22,21656416,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,1.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.27272727,0.47619048,9.00000000,,0.98000000,0.00000000,,0.37500000,23.00000000,1.01769912,0.30434783,0.62295082,3.67000000 +1271,chr22,21749185,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,,1.08000000,8.55000000,,0.19607843,57.00000000,2.52212389,0.10526316,0.00000000,3.99000000 +1272,chr22,21931990,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,,-0.34000000,0.00000000,,0.15384615,70.00000000,3.09734513,0.07142857,0.00000000,5.57000000 +1273,chr22,21983402,UNK,A,,T,,-1.00000000,,,,,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,,-2.16000000,0.00000000,,0.21875000,81.00000000,3.58407080,0.20987654,0.00000000,5.86000000 +1274,chr22,22031126,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.50000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,4.96000000 +1275,chr22,22031229,UNK,A,,G,,-1.00000000,,,,,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.41000000,0.00000000,,0.09890110,94.00000000,4.15929204,0.03191489,0.00000000,4.73000000 +1276,chr22,22031262,UNK,G,,A,,-1.00000000,,,,,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.19000000,3.73000000,,0.07954545,91.00000000,4.02654867,0.03296703,0.00000000,3.53000000 +1277,chr22,22031343,UNK,G,,C,,-1.00000000,,,,,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,62.00000000,,-0.01000000,2.68000000,,0.07142857,72.00000000,3.18584071,0.02777778,0.00000000,3.74000000 +1278,chr22,22031383,UNK,C,,T,,-1.00000000,,,,,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,0.66000000,3.10000000,,0.06493506,77.00000000,3.40707965,0.00000000,0.00000000,3.92000000 +1279,chr22,22061344,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,,1.42000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +1280,chr22,22073149,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,-0.38000000,0.00000000,,0.37704918,62.00000000,2.74336283,0.01612903,0.00000000,7.65000000 +1281,chr22,22075631,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,,0.81000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.04000000 +1282,chr22,22078936,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,,-0.17000000,0.00000000,,0.23636364,58.00000000,2.56637168,0.05172414,0.00000000,5.99000000 +1283,chr22,22078957,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,,0.13000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.43000000 +1284,chr22,22079263,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,,1.19000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +1285,chr22,22079442,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,,0.29000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.03846154,0.00000000,5.37000000 +1286,chr22,22081861,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,,1.18000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +1287,chr22,22082453,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,,1.79000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.08000000 +1288,chr22,22083639,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,1.09000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.02469136,0.00000000,5.45000000 +1289,chr22,22090271,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,70.00000000,,-0.47000000,0.00000000,,0.06944444,75.00000000,3.31858407,0.04000000,0.00000000,4.56000000 +1290,chr22,22102878,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-0.83000000,4.08000000,,0.09523810,86.00000000,3.80530973,0.02325581,0.00000000,3.46000000 +1291,chr22,22104139,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,0.66000000,0.00000000,,0.09589041,73.00000000,3.23008850,0.00000000,0.00000000,4.97000000 +1292,chr22,22105020,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,-0.12000000,0.00000000,,0.08695652,72.00000000,3.18584071,0.02777778,0.00000000,3.03000000 +1293,chr22,22109386,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,-0.83000000,2.75000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,4.61000000 +1294,chr22,22132434,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,62.00000000,,0.13000000,0.00000000,,0.07246377,72.00000000,3.18584071,0.04166667,0.00000000,4.71000000 +1295,chr22,22136050,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.71000000,0.00000000,,0.05882353,85.00000000,3.76106195,0.00000000,0.00000000,4.95000000 +1296,chr22,22138211,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,1.83000000,0.00000000,,0.09756098,82.00000000,3.62831858,0.00000000,0.00000000,4.88000000 +1297,chr22,22138378,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-0.15000000,0.00000000,,0.08219178,75.00000000,3.31858407,0.02666667,0.00000000,5.57000000 +1298,chr22,22140390,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,,0.25000000,0.00000000,,0.12643678,87.00000000,3.84955752,0.00000000,0.00000000,5.31000000 +1299,chr22,22140471,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.09000000,0.00000000,,0.08045977,87.00000000,3.84955752,0.00000000,0.00000000,5.28000000 +1300,chr22,22140566,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.79000000,0.00000000,,0.11111111,72.00000000,3.18584071,0.00000000,0.00000000,5.14000000 +1301,chr22,22140597,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,0.25000000,0.00000000,,0.08450704,73.00000000,3.23008850,0.02739726,0.00000000,4.88000000 +1302,chr22,22140741,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.34000000,0.00000000,,0.11363636,89.00000000,3.93805310,0.00000000,0.00000000,5.32000000 +1303,chr22,22142092,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-0.27000000,0.00000000,,0.06024096,85.00000000,3.76106195,0.01176471,0.00000000,5.30000000 +1304,chr22,22143268,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.24000000,2.77000000,,0.06578947,76.00000000,3.36283186,0.00000000,0.00000000,4.61000000 +1305,chr22,22143618,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,1.28000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.00000000,0.00000000,5.47000000 +1306,chr22,22143955,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.45000000,0.00000000,,0.07352941,69.00000000,3.05309735,0.01449275,0.00000000,5.38000000 +1307,chr22,22144690,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.18000000,0.00000000,,0.10101010,99.00000000,4.38053097,0.00000000,0.00000000,5.01000000 +1308,chr22,22145001,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-0.70000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,5.74000000 +1309,chr22,22150929,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,,0.26000000,0.00000000,,0.12500000,72.00000000,3.18584071,0.00000000,0.00000000,5.13000000 +1310,chr22,22151146,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,,-0.36000000,0.00000000,,0.09876543,81.00000000,3.58407080,0.00000000,0.00000000,5.29000000 +1311,chr22,22151181,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.63000000,0.00000000,,0.10714286,85.00000000,3.76106195,0.01176471,0.00000000,5.70000000 +1312,chr22,22151977,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.94000000,0.00000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,5.14000000 +1313,chr22,22152176,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.36000000,3.10000000,,0.07042254,72.00000000,3.18584071,0.00000000,0.00000000,4.67000000 +1314,chr22,22154322,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,0.56000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.01315789,0.00000000,5.30000000 +1315,chr22,22156654,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.77000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.84000000 +1316,chr22,22158530,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.16000000,0.00000000,,0.10447761,67.00000000,2.96460177,0.00000000,0.00000000,4.95000000 +1317,chr22,22158722,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,,0.74000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,5.19000000 +1318,chr22,22158743,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,,1.37000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.41000000 +1319,chr22,22158838,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,65.00000000,,0.32000000,0.00000000,,0.09523810,67.00000000,2.96460177,0.05970149,0.00000000,4.79000000 +1320,chr22,22163086,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,0.56000000,0.00000000,,0.08571429,70.00000000,3.09734513,0.00000000,0.00000000,4.89000000 +1321,chr22,22166665,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,,-1.01000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,5.91000000 +1322,chr22,22166765,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,,0.29000000,0.00000000,,0.26562500,66.00000000,2.92035398,0.03030303,0.00000000,5.80000000 +1323,chr22,22170474,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,,-0.19000000,0.00000000,,0.26829268,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +1324,chr22,22171214,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,,0.58000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.39000000 +1325,chr22,22173445,UNK,T,,C,,-1.00000000,,,,,,,55.71000000,16.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,,0.77000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.26000000 +1326,chr22,22173535,UNK,G,,A,,-1.00000000,,,,,,,53.09000000,23.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,,-0.15000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.88000000 +1327,chr22,22175116,UNK,G,,C,,-1.00000000,,,,,,,57.15000000,9.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,,-0.61000000,0.00000000,,0.14583333,50.00000000,2.21238938,0.04000000,0.00000000,5.36000000 +1328,chr22,22175337,UNK,T,,C,,-1.00000000,,,,,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,,0.71000000,2.20000000,,0.15789474,59.00000000,2.61061947,0.03389831,0.00000000,3.53000000 +1329,chr22,22175338,UNK,G,,A,,-1.00000000,,,,,,,57.88000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,,0.83000000,2.21000000,,0.16071429,58.00000000,2.56637168,0.03448276,0.00000000,3.56000000 +1330,chr22,22177186,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,0.98000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,6.37000000 +1331,chr22,22177442,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,,0.57000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,6.30000000 +1332,chr22,22178837,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,,-0.96000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.97000000 +1333,chr22,22178864,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,,-1.60000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.04411765,6.26000000 +1334,chr22,22179031,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,,1.73000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.38000000 +1335,chr22,22179233,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,,-0.09000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.28000000 +1336,chr22,22180136,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,,0.74000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +1337,chr22,22180158,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,,-0.04000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.98000000 +1338,chr22,22180475,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,-1.82000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +1339,chr22,22180477,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,-1.60000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +1340,chr22,22180598,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,,-1.01000000,0.00000000,,0.31818182,90.00000000,3.98230088,0.02222222,0.00000000,7.26000000 +1341,chr22,22196729,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,,0.26000000,0.00000000,,0.25806452,65.00000000,2.87610619,0.03076923,0.00000000,6.44000000 +1342,chr22,22196753,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,,0.22000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,6.50000000 +1343,chr22,22200764,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,,-1.26000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +1344,chr22,22225429,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,,0.06000000,0.00000000,,0.15909091,44.00000000,1.94690265,0.00000000,0.00000000,5.80000000 +1345,chr22,22230928,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-0.22000000,0.00000000,,0.09259259,57.00000000,2.52212389,0.05263158,0.00000000,4.82000000 +1346,chr22,22234610,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,,-0.49000000,0.00000000,,0.12765957,48.00000000,2.12389381,0.02083333,0.00000000,2.79000000 +1347,chr22,22236173,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,1.08000000,0.00000000,,0.10000000,60.00000000,2.65486726,0.00000000,0.00000000,5.05000000 +1348,chr22,22236776,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,56.00000000,,-0.13000000,0.00000000,,0.07462687,73.00000000,3.23008850,0.08219178,0.00000000,2.90000000 +1349,chr22,22237175,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,60.00000000,,-0.48000000,0.00000000,,0.06410256,93.00000000,4.11504425,0.16129032,0.00000000,4.45000000 +1350,chr22,22239558,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.49000000,0.00000000,,0.10000000,70.00000000,3.09734513,0.00000000,0.00000000,5.44000000 +1351,chr22,22254901,UNK,A,,G,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,,-0.98000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.01639344,0.00000000,6.16000000 +1352,chr22,22258320,UNK,G,,A,,-1.00000000,,,,,,,55.82000000,11.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,0.42000000,0.00000000,,0.17073171,54.00000000,2.38938053,0.24074074,0.00000000,2.78000000 +1353,chr22,22266496,UNK,G,,A,,-1.00000000,,,,,,,50.14000000,34.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,0.05000000,5.45000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,3.98000000 +1354,chr22,22266555,UNK,C,,G,,-1.00000000,,,,,,,50.84000000,34.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.02000000,5.40000000,,0.09210526,76.00000000,3.36283186,0.00000000,0.00000000,4.08000000 +1355,chr22,22272753,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,,-1.49000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +1356,chr22,22285107,UNK,T,,C,,-1.00000000,,,,,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.00000000,0.00000000,,0.09230769,68.00000000,3.00884956,0.04411765,0.00000000,4.67000000 +1357,chr22,22292204,UNK,C,,G,,-1.00000000,,,,,,,59.04000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.51000000,0.00000000,,0.08536585,84.00000000,3.71681416,0.02380952,0.00000000,4.87000000 +1358,chr22,22292460,UNK,T,,C,,-1.00000000,,,,,,,55.46000000,15.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,,-0.32000000,0.00000000,,0.12280702,58.00000000,2.56637168,0.00000000,0.00000000,5.77000000 +1359,chr22,22294740,UNK,T,,C,,-1.00000000,,,,,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,-0.69000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.00000000,0.00000000,5.21000000 +1360,chr22,22300733,UNK,G,,C,,-1.00000000,,,,,,,58.64000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.01298701,0.00000000,6.14000000 +1361,chr22,22312309,UNK,T,,G,,-1.00000000,,,,,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,,-0.90000000,0.00000000,,0.07692308,66.00000000,2.92035398,0.01515152,0.00000000,4.49000000 +1362,chr22,22315656,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,,0.10000000,0.00000000,,0.10810811,75.00000000,3.31858407,0.00000000,0.00000000,4.87000000 +1363,chr22,22315748,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.96000000,0.00000000,,0.06493506,79.00000000,3.49557522,0.02531646,0.00000000,4.88000000 +1364,chr22,22320933,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.22000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,5.40000000 +1365,chr22,22320936,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.15000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.38000000 +1366,chr22,22326667,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,,-2.20000000,0.00000000,,0.31746032,66.00000000,2.92035398,0.04545455,0.00000000,7.08000000 +1367,chr22,22327028,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,,-1.08000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.83000000 +1368,chr22,22327407,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,0.41000000,0.00000000,,0.09589041,73.00000000,3.23008850,0.00000000,0.00000000,4.99000000 +1369,chr22,22339540,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,,1.50000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.08108108,0.00000000,5.78000000 +1370,chr22,22342662,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,63.00000000,,-0.55000000,0.00000000,,0.08000000,78.00000000,3.45132743,0.03846154,0.00000000,4.77000000 +1371,chr22,22347417,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,,-0.05000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.33000000 +1372,chr22,22366082,UNK,A,,C,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,,-0.39000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +1373,chr22,22366837,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,0.89000000,0.00000000,,0.07142857,73.00000000,3.23008850,0.04109589,0.00000000,4.71000000 +1374,chr22,22372731,UNK,G,,T,,-1.00000000,,,,,,,59.28000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.10256410,0.00000000,83.00000000,,0.34000000,0.00000000,,0.24137931,67.00000000,2.96460177,0.13432836,0.00000000,5.51000000 +1375,chr22,22372843,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,,-0.46000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +1376,chr22,22374096,UNK,T,,C,,-1.00000000,,,,,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,65.00000000,,0.33000000,0.00000000,,0.06097561,83.00000000,3.67256637,0.01204819,0.00000000,4.80000000 +1377,chr22,22374360,UNK,T,,C,,-1.00000000,,,,,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,,-0.82000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,5.55000000 +1378,chr22,22374510,UNK,A,,G,,-1.00000000,,,,,,,58.40000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.97000000,0.00000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,4.62000000 +1379,chr22,22384099,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,,0.44000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,5.98000000 +1380,chr22,22384223,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-0.89000000,0.00000000,,0.06493506,77.00000000,3.40707965,0.00000000,0.00000000,5.66000000 +1381,chr22,22387024,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-0.46000000,0.00000000,,0.10526316,58.00000000,2.56637168,0.01724138,0.00000000,5.08000000 +1382,chr22,22393720,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.90000000,0.00000000,,0.08450704,72.00000000,3.18584071,0.01388889,0.00000000,5.20000000 +1383,chr22,22399328,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.34000000,0.00000000,,0.08196721,63.00000000,2.78761062,0.03174603,0.00000000,4.21000000 +1384,chr22,22513191,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,58.00000000,,-1.39000000,0.00000000,,0.06451613,62.00000000,2.74336283,0.00000000,0.00000000,3.46000000 +1385,chr22,22513693,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,,-0.22000000,3.27000000,,0.07246377,72.00000000,3.18584071,0.01388889,0.00000000,3.81000000 +1386,chr22,22514799,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-0.67000000,0.00000000,,0.06896552,87.00000000,3.84955752,0.00000000,0.00000000,5.57000000 +1387,chr22,22514885,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,-0.54000000,0.00000000,,0.08695652,71.00000000,3.14159292,0.02816901,0.00000000,4.71000000 +1388,chr22,22514894,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,-0.72000000,0.00000000,,0.09589041,75.00000000,3.31858407,0.02666667,0.00000000,4.79000000 +1389,chr22,22515214,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.22000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,5.02000000 +1390,chr22,22515221,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.81000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,4.97000000 +1391,chr22,22515224,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.81000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,4.97000000 +1392,chr22,22515325,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.42000000,0.00000000,,0.07042254,71.00000000,3.14159292,0.00000000,0.00000000,5.45000000 +1393,chr22,22515418,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,,-0.86000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,5.72000000 +1394,chr22,22544766,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,,-0.02000000,0.00000000,,0.55555556,36.00000000,1.59292035,0.00000000,0.00000000,4.10000000 +1395,chr22,22544893,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,,0.75000000,0.00000000,,0.37777778,48.00000000,2.12389381,0.06250000,0.00000000,3.89000000 +1396,chr22,22548659,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,58.00000000,,0.53000000,0.00000000,,0.09090909,57.00000000,2.52212389,0.03508772,0.00000000,3.79000000 +1397,chr22,22550027,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,,-0.37000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.01408451,0.00000000,6.40000000 +1398,chr22,22552544,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,68.00000000,,1.66000000,0.00000000,,0.05952381,88.00000000,3.89380531,0.04545455,0.00000000,4.57000000 +1399,chr22,22556943,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,,-0.56000000,0.00000000,,0.09459459,74.00000000,3.27433628,0.00000000,0.00000000,5.22000000 +1400,chr22,22556994,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.86000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,4.88000000 +1401,chr22,22564042,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,1.56000000,0.00000000,,0.08219178,75.00000000,3.31858407,0.02666667,0.00000000,4.92000000 +1402,chr22,22566871,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,,1.06000000,0.00000000,,0.15686275,51.00000000,2.25663717,0.00000000,0.00000000,5.89000000 +1403,chr22,22573069,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,,0.40000000,0.00000000,,0.30434783,69.00000000,3.05309735,0.00000000,0.00000000,5.92000000 +1404,chr22,22582123,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.44000000,0.00000000,,0.09859155,72.00000000,3.18584071,0.00000000,0.00000000,5.46000000 +1405,chr22,22582931,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.80000000,0.00000000,,0.10344828,58.00000000,2.56637168,0.00000000,0.00000000,4.88000000 +1406,chr22,22583942,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,64.00000000,,0.75000000,0.00000000,,0.07142857,71.00000000,3.14159292,0.01408451,0.00000000,4.95000000 +1407,chr22,22584229,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.34000000,0.00000000,,0.08823529,69.00000000,3.05309735,0.01449275,0.00000000,5.01000000 +1408,chr22,22584873,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,1.72000000,0.00000000,,0.08823529,69.00000000,3.05309735,0.01449275,0.00000000,4.97000000 +1409,chr22,22585562,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,-0.61000000,0.00000000,,0.11267606,73.00000000,3.23008850,0.02739726,0.00000000,4.85000000 +1410,chr22,22586227,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.98000000,0.00000000,,0.10606061,66.00000000,2.92035398,0.00000000,0.00000000,5.14000000 +1411,chr22,22586383,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,1.43000000,0.00000000,,0.09433962,54.00000000,2.38938053,0.01851852,0.00000000,4.73000000 +1412,chr22,22586584,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,0.95000000,0.00000000,,0.09459459,74.00000000,3.27433628,0.00000000,0.00000000,4.82000000 +1413,chr22,22586995,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.11000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.54000000 +1414,chr22,22587551,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-0.41000000,0.00000000,,0.13698630,79.00000000,3.49557522,0.07594937,0.00000000,5.07000000 +1415,chr22,22587749,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,,-1.29000000,0.00000000,,0.16071429,56.00000000,2.47787611,0.00000000,0.00000000,5.87000000 +1416,chr22,22588914,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,,1.41000000,0.00000000,,0.13725490,53.00000000,2.34513274,0.03773585,0.00000000,5.27000000 +1417,chr22,22589012,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,,-1.65000000,0.00000000,,0.22727273,46.00000000,2.03539823,0.04347826,0.00000000,6.20000000 +1418,chr22,22589306,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,,-1.39000000,0.00000000,,0.13333333,45.00000000,1.99115044,0.00000000,0.22413793,5.62000000 +1419,chr22,22589310,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,,-3.63000000,0.00000000,,0.21818182,55.00000000,2.43362832,0.00000000,0.00000000,6.09000000 +1420,chr22,22589389,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,60.00000000,,0.62000000,3.31000000,,0.13461538,55.00000000,2.43362832,0.05454545,0.00000000,3.33000000 +1421,chr22,22592684,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,99.00000000,,-0.04000000,0.00000000,,0.30136986,75.00000000,3.31858407,0.02666667,0.00000000,5.24000000 +1422,chr22,22592758,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,98.00000000,,-0.12000000,0.00000000,,0.32000000,76.00000000,3.36283186,0.01315789,0.00000000,8.09000000 +1423,chr22,22595580,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,,-0.23000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.01234568,0.00000000,7.00000000 +1424,chr22,22595599,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,72.00000000,,-1.36000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,6.82000000 +1425,chr22,22596996,UNK,T,,G,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,,-1.01000000,0.00000000,,0.30555556,77.00000000,3.40707965,0.05194805,0.00000000,6.83000000 +1426,chr22,22597138,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,93.00000000,,0.63000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,5.60000000 +1427,chr22,22597255,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,93.00000000,,-1.54000000,0.00000000,,0.30985915,74.00000000,3.27433628,0.04054054,0.00000000,6.13000000 +1428,chr22,22597433,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,,-0.33000000,0.00000000,,0.37096774,62.00000000,2.74336283,0.00000000,0.00000000,8.89000000 +1429,chr22,22598992,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-1.08000000,0.00000000,,0.09230769,65.00000000,2.87610619,0.00000000,0.00000000,5.18000000 +1430,chr22,22599689,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,105.00000000,,-0.23000000,0.00000000,,0.31250000,82.00000000,3.62831858,0.01219512,0.00000000,12.94000000 +1431,chr22,22600250,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,56.00000000,,1.39000000,0.00000000,,0.33823529,70.00000000,3.09734513,0.02857143,0.00000000,3.99000000 +1432,chr22,22601030,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,,1.07000000,0.00000000,,0.36781609,90.00000000,3.98230088,0.03333333,0.00000000,13.06000000 +1433,chr22,22601278,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,,0.46000000,0.00000000,,0.31944444,72.00000000,3.18584071,0.00000000,0.00000000,7.10000000 +1434,chr22,22601312,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,93.00000000,,0.11000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,5.55000000 +1435,chr22,22601683,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,,0.01000000,0.00000000,,0.35937500,67.00000000,2.96460177,0.04477612,0.00000000,8.08000000 +1436,chr22,22602885,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,,-0.53000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.01204819,0.00000000,6.11000000 +1437,chr22,22604686,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,43.00000000,,0.83000000,0.00000000,,0.31250000,64.00000000,2.83185841,0.00000000,0.00000000,3.06000000 +1438,chr22,22606031,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,,0.29000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +1439,chr22,22608579,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,96.00000000,,1.02000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,5.88000000 +1440,chr22,22608720,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,,-0.43000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.46000000 +1441,chr22,22609137,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,,-0.03000000,0.00000000,,0.40000000,86.00000000,3.80530973,0.01162791,0.00000000,8.60000000 +1442,chr22,22609364,UNK,T,,C,,-1.00000000,,,,,,,59.37000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,0.39000000,0.00000000,,0.31250000,70.00000000,3.09734513,0.05714286,0.00000000,6.83000000 +1443,chr22,22609769,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,,0.46000000,0.00000000,,0.37500000,82.00000000,3.62831858,0.01219512,0.00000000,8.35000000 +1444,chr22,22610004,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,,-1.47000000,0.00000000,,0.35937500,67.00000000,2.96460177,0.01492537,0.00000000,13.86000000 +1445,chr22,22611156,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,101.00000000,,-2.18000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.24000000 +1446,chr22,22611174,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,107.00000000,,-2.13000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,11.32000000 +1447,chr22,22611337,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,,0.71000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.00000000,0.00000000,6.33000000 +1448,chr22,22612826,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,,0.63000000,0.00000000,,0.40000000,55.00000000,2.43362832,0.00000000,0.00000000,8.52000000 +1449,chr22,22613047,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,,-0.37000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.34000000 +1450,chr22,22615040,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,89.00000000,,1.17000000,0.00000000,,0.23188406,73.00000000,3.23008850,0.05479452,0.00000000,5.27000000 +1451,chr22,22615660,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,100.00000000,,-2.08000000,0.00000000,,0.32258065,63.00000000,2.78761062,0.00000000,0.00000000,8.94000000 +1452,chr22,22615956,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,,1.34000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,8.21000000 +1453,chr22,22616047,UNK,C,,T,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.42857143,50.00000000,2.21238938,0.02000000,0.00000000,8.15000000 +1454,chr22,22616398,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.32000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,6.32000000 +1455,chr22,22616837,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,,0.40000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,5.94000000 +1456,chr22,22617747,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,,-2.05000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,6.05000000 +1457,chr22,22617789,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,,-1.38000000,0.00000000,,0.31343284,68.00000000,3.00884956,0.01470588,0.00000000,7.01000000 +1458,chr22,22617803,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,,-0.72000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.93000000 +1459,chr22,22618476,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,,-0.62000000,0.00000000,,0.27118644,59.00000000,2.61061947,0.00000000,0.00000000,6.66000000 +1460,chr22,22619283,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,,-0.24000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1461,chr22,22620595,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-1.89000000,0.00000000,,0.10958904,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +1462,chr22,22621051,UNK,C,,T,,-1.00000000,,,,,,,55.67000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,,0.60000000,0.00000000,,0.16981132,53.00000000,2.34513274,0.00000000,0.00000000,5.76000000 +1463,chr22,22622116,UNK,T,,C,,-1.00000000,,,,,,,57.29000000,9.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,77.00000000,,-1.46000000,0.00000000,,0.21818182,58.00000000,2.56637168,0.05172414,0.00000000,5.88000000 +1464,chr22,22623750,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,,-0.63000000,0.00000000,,0.30645161,64.00000000,2.83185841,0.01562500,0.00000000,6.87000000 +1465,chr22,22624117,UNK,A,,G,,-1.00000000,,,,,,,57.95000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,,-0.61000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.20000000 +1466,chr22,22626569,UNK,G,,T,,-1.00000000,,,,,,,57.40000000,7.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,48.00000000,,0.99000000,0.00000000,,0.36842105,59.00000000,2.61061947,0.03389831,0.00000000,4.28000000 +1467,chr22,22626966,UNK,C,,T,,-1.00000000,,,,,,,57.69000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-1.56000000,0.00000000,,0.35384615,65.00000000,2.87610619,0.00000000,0.00000000,6.85000000 +1468,chr22,22627117,UNK,G,,A,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,42.00000000,,0.63000000,0.00000000,,0.42000000,62.00000000,2.74336283,0.19354839,0.00000000,4.05000000 +1469,chr22,22627350,UNK,T,,C,,-1.00000000,,,,,,,57.32000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,,-1.44000000,0.00000000,,0.26530612,52.00000000,2.30088496,0.05769231,0.00000000,2.96000000 +1470,chr22,22627351,UNK,G,,T,,-1.00000000,,,,,,,57.32000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,,-1.54000000,0.00000000,,0.28000000,52.00000000,2.30088496,0.03846154,0.00000000,5.97000000 +1471,chr22,22627387,UNK,G,,C,,-1.00000000,,,,,,,57.40000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,,-1.85000000,0.00000000,,0.34000000,56.00000000,2.47787611,0.10714286,0.00000000,7.77000000 +1472,chr22,22627888,UNK,G,,A,,-1.00000000,,,,,,,55.99000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,,0.19000000,0.00000000,,0.36842105,58.00000000,2.56637168,0.00000000,0.00000000,7.74000000 +1473,chr22,22628115,UNK,G,,C,,-1.00000000,,,,,,,46.14000000,19.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.30000000,0.00000000,,0.19512195,41.00000000,1.81415929,0.00000000,0.00000000,7.00000000 +1474,chr22,22629471,UNK,T,,A,,-1.00000000,,,,,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,,1.18000000,0.00000000,,0.40259740,77.00000000,3.40707965,0.00000000,0.00000000,15.39000000 +1475,chr22,22629660,UNK,A,,G,,-1.00000000,,,,,,,49.48000000,30.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,,0.60000000,0.00000000,,0.40000000,50.00000000,2.21238938,0.00000000,0.00000000,4.36000000 +1476,chr22,22629925,UNK,A,,G,,-1.00000000,,,,,,,57.71000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,,0.10000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.09000000 +1477,chr22,22630104,UNK,G,,A,,-1.00000000,,,,,,,46.04000000,37.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,,-0.98000000,0.00000000,,0.31818182,45.00000000,1.99115044,0.02222222,0.00000000,3.85000000 +1478,chr22,22630632,UNK,A,,G,,-1.00000000,,,,,,,55.86000000,10.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.02816901,0.00000000,5.58000000 +1479,chr22,22630913,UNK,A,,G,,-1.00000000,,,,,,,53.14000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-1.03000000,0.00000000,,0.10909091,55.00000000,2.43362832,0.00000000,0.00000000,5.14000000 +1480,chr22,22630997,UNK,A,,G,,-1.00000000,,,,,,,55.84000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.73000000,0.00000000,,0.17647059,54.00000000,2.38938053,0.01851852,0.00000000,5.81000000 +1481,chr22,22632837,UNK,A,,C,,-1.00000000,,,,,,,47.63000000,23.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,,0.93000000,2.04000000,,0.08196721,61.00000000,2.69911504,0.00000000,0.00000000,3.38000000 +1482,chr22,22632864,UNK,A,,G,,-1.00000000,,,,,,,48.44000000,22.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,,0.85000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,5.16000000 +1483,chr22,22632886,UNK,T,,C,,-1.00000000,,,,,,,49.72000000,25.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,-0.19000000,0.00000000,,0.10769231,66.00000000,2.92035398,0.01515152,0.00000000,5.29000000 +1484,chr22,22633078,UNK,A,,G,,-1.00000000,,,,,,,38.48000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,-0.35000000,0.00000000,,0.12500000,43.00000000,1.90265487,0.06976744,0.00000000,2.95000000 +1485,chr22,22633183,UNK,T,,C,,-1.00000000,,,,,,,48.48000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-2.66000000,0.00000000,,0.16393443,64.00000000,2.83185841,0.03125000,0.00000000,6.42000000 +1486,chr22,22633455,UNK,G,,T,,-1.00000000,,,,,,,55.55000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-0.14000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.03333333,0.00000000,6.31000000 +1487,chr22,22633460,UNK,G,,A,,-1.00000000,,,,,,,55.97000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-0.04000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.03278689,0.00000000,6.27000000 +1488,chr22,22633461,UNK,C,,T,,-1.00000000,,,,,,,56.01000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,0.06000000,0.00000000,,0.16666667,62.00000000,2.74336283,0.03225806,0.00000000,5.45000000 +1489,chr22,22634061,UNK,A,,C,,-1.00000000,,,,,,,51.10000000,20.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,61.00000000,,1.33000000,0.00000000,,0.24074074,55.00000000,2.43362832,0.01818182,0.00000000,5.30000000 +1490,chr22,22634245,UNK,G,,C,,-1.00000000,,,,,,,54.62000000,12.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,72.00000000,,1.27000000,0.00000000,,0.16666667,51.00000000,2.25663717,0.05882353,0.00000000,4.71000000 +1491,chr22,22634396,UNK,T,,C,,-1.00000000,,,,,,,50.20000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,,-1.46000000,2.58000000,,0.09259259,55.00000000,2.43362832,0.01818182,0.00000000,3.18000000 +1492,chr22,22635431,UNK,C,,A,,-1.00000000,,,,,,,52.44000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,,1.76000000,0.00000000,,0.16326531,50.00000000,2.21238938,0.02000000,0.00000000,4.82000000 +1493,chr22,22635621,UNK,A,,G,,-1.00000000,,,,,,,58.63000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,,-0.37000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.80000000 +1494,chr22,22635763,UNK,A,,G,,-1.00000000,,,,,,,48.92000000,19.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,1.48000000,0.00000000,,0.13636364,46.00000000,2.03539823,0.00000000,0.00000000,5.98000000 +1495,chr22,22636145,UNK,G,,A,,-1.00000000,,,,,,,45.34000000,15.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,1.39000000,0.00000000,,0.21875000,33.00000000,1.46017699,0.03030303,0.00000000,2.81000000 +1496,chr22,22636800,UNK,A,,G,,-1.00000000,,,,,,,53.89000000,16.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,58.00000000,,0.96000000,0.00000000,,0.07547170,54.00000000,2.38938053,0.01851852,0.00000000,3.67000000 +1497,chr22,22646441,UNK,G,,A,,-1.00000000,,,,,,,49.15000000,18.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,,-1.68000000,0.00000000,,0.27083333,50.00000000,2.21238938,0.04000000,0.00000000,3.14000000 +1498,chr22,22648787,UNK,T,,G,,-1.00000000,,,,,,,57.44000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,,0.86000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,5.58000000 +1499,chr22,22651005,UNK,T,,C,,-1.00000000,,,,,,,56.35000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,,-0.45000000,0.00000000,,0.30508475,59.00000000,2.61061947,0.00000000,0.00000000,5.08000000 +1500,chr22,22652521,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.29166667,0.00000000,33.00000000,,0.23000000,0.00000000,,0.32432432,57.00000000,2.52212389,0.33333333,0.00000000,3.56000000 +1501,chr22,22656140,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,62.00000000,,-1.11000000,0.00000000,,0.08333333,73.00000000,3.23008850,0.01369863,0.00000000,4.32000000 +1502,chr22,22656163,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,1.10000000,0.00000000,,0.08450704,74.00000000,3.27433628,0.02702703,0.00000000,4.78000000 +1503,chr22,22658171,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,0.44000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.00000000,0.00000000,4.72000000 +1504,chr22,22658211,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,1.10000000,0.00000000,,0.09459459,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +1505,chr22,22658220,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.82000000,0.00000000,,0.08000000,78.00000000,3.45132743,0.03846154,0.00000000,4.77000000 +1506,chr22,22658283,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-0.48000000,0.00000000,,0.07462687,68.00000000,3.00884956,0.01470588,0.00000000,5.63000000 +1507,chr22,22658395,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,60.00000000,,-1.15000000,1.93000000,,0.06557377,61.00000000,2.69911504,0.00000000,0.00000000,4.36000000 +1508,chr22,22658422,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,59.00000000,,-1.26000000,0.00000000,,0.06153846,65.00000000,2.87610619,0.00000000,0.00000000,4.24000000 +1509,chr22,22660915,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.28000000,0.00000000,,0.08333333,73.00000000,3.23008850,0.01369863,0.00000000,5.04000000 +1510,chr22,22668906,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-1.28000000,2.57000000,,0.07462687,67.00000000,2.96460177,0.00000000,0.00000000,3.95000000 +1511,chr22,22669132,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.05000000,0.00000000,,0.08000000,76.00000000,3.36283186,0.01315789,0.00000000,5.13000000 +1512,chr22,22670177,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,58.00000000,,-1.11000000,0.00000000,,0.05714286,71.00000000,3.14159292,0.01408451,0.00000000,3.34000000 +1513,chr22,22670537,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,,-0.79000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,5.44000000 +1514,chr22,22670592,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.23000000,0.00000000,,0.13636364,66.00000000,2.92035398,0.00000000,0.00000000,5.39000000 +1515,chr22,22671013,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,0.82000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.00000000,0.00000000,4.90000000 +1516,chr22,22671339,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,63.00000000,,-0.95000000,0.00000000,,0.06024096,86.00000000,3.80530973,0.03488372,0.00000000,4.84000000 +1517,chr22,22671379,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.01000000,0.00000000,,0.08860759,80.00000000,3.53982301,0.01250000,0.00000000,5.29000000 +1518,chr22,22672600,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.05000000,0.00000000,,0.09411765,86.00000000,3.80530973,0.00000000,0.00000000,5.10000000 +1519,chr22,22672692,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,1.00000000,0.00000000,,0.07042254,73.00000000,3.23008850,0.02739726,0.00000000,4.10000000 +1520,chr22,22672832,UNK,A,,G,,-1.00000000,,,,,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.78000000,0.00000000,,0.09756098,82.00000000,3.62831858,0.00000000,0.00000000,5.06000000 +1521,chr22,22673154,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-1.10000000,0.00000000,,0.07594937,82.00000000,3.62831858,0.02439024,0.00000000,5.24000000 +1522,chr22,22673188,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,0.29000000,0.00000000,,0.08641975,81.00000000,3.58407080,0.00000000,0.00000000,5.10000000 +1523,chr22,22673806,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,63.00000000,,1.39000000,0.00000000,,0.07954545,91.00000000,4.02654867,0.02197802,0.00000000,4.60000000 +1524,chr22,22677074,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,68.00000000,,-0.86000000,0.00000000,,0.09836066,62.00000000,2.74336283,0.00000000,0.00000000,5.38000000 +1525,chr22,22679554,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,-0.13000000,0.00000000,,0.08450704,74.00000000,3.27433628,0.04054054,0.00000000,4.24000000 +1526,chr22,22679769,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,0.59000000,0.00000000,,0.09589041,76.00000000,3.36283186,0.03947368,0.00000000,4.74000000 +1527,chr22,22683141,UNK,G,,A,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,,-1.07000000,0.00000000,,0.06666667,60.00000000,2.65486726,0.00000000,0.00000000,3.86000000 +1528,chr22,22685174,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,,0.64000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.32000000 +1529,chr22,22685224,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.47000000,0.00000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,4.95000000 +1530,chr22,22685539,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.86000000,0.00000000,,0.09375000,66.00000000,2.92035398,0.03030303,0.00000000,4.93000000 +1531,chr22,22685830,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,0.77000000,0.00000000,,0.15384615,52.00000000,2.30088496,0.00000000,0.00000000,5.48000000 +1532,chr22,22687124,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,-0.26000000,0.00000000,,0.12698413,66.00000000,2.92035398,0.04545455,0.00000000,4.95000000 +1533,chr22,22689172,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,,-1.02000000,0.00000000,,0.07017544,58.00000000,2.56637168,0.01724138,0.00000000,3.98000000 +1534,chr22,22689944,UNK,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,96.00000000,,-2.08000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.20000000 +1535,chr22,22698244,UNK,G,,C,,-1.00000000,,,,,,,59.21000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,,0.30000000,0.00000000,,0.08928571,58.00000000,2.56637168,0.03448276,0.00000000,4.61000000 +1536,chr22,22698280,UNK,G,,C,,-1.00000000,,,,,,,58.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,,1.25000000,0.00000000,,0.10000000,52.00000000,2.30088496,0.03846154,0.00000000,4.04000000 +1537,chr22,22698337,UNK,C,,T,,-1.00000000,,,,,,,57.58000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,,-1.31000000,2.22000000,,0.08771930,59.00000000,2.61061947,0.01694915,0.00000000,3.95000000 +1538,chr22,22703853,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,1.64000000,0.00000000,,0.12500000,50.00000000,2.21238938,0.04000000,0.00000000,4.70000000 +1539,chr22,22728844,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,37.00000000,,-1.49000000,0.00000000,,0.26315789,38.00000000,1.68141593,0.00000000,0.00000000,2.79000000 +1540,chr22,22766944,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,12.00000000,,-0.16000000,0.00000000,,0.34090909,44.00000000,1.94690265,0.00000000,0.00000000,3.22000000 +1541,chr22,22769528,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,40.00000000,,-1.12000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,2.81000000 +1542,chr22,22785620,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,-0.07000000,0.00000000,,0.14814815,28.00000000,1.23893805,0.03571429,0.00000000,2.94000000 +1543,chr22,22788606,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,1.48000000,0.00000000,,0.09523810,42.00000000,1.85840708,0.00000000,0.00000000,4.81000000 +1544,chr22,22790421,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.62000000,0.00000000,,0.19230769,27.00000000,1.19469027,0.03703704,0.00000000,3.02000000 +1545,chr22,22793099,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.19000000,0.00000000,,0.21951220,41.00000000,1.81415929,0.00000000,0.00000000,2.89000000 +1546,chr22,22796993,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,0.36000000,0.00000000,,0.21052632,38.00000000,1.68141593,0.00000000,0.00000000,6.80000000 +1547,chr22,22811561,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,,-0.06000000,0.00000000,,0.15789474,41.00000000,1.81415929,0.07317073,0.00000000,2.80000000 +1548,chr22,22815519,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.01000000,0.00000000,,0.23913043,46.00000000,2.03539823,0.00000000,0.00000000,7.12000000 +1549,chr22,22823529,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,0.68000000,0.00000000,,0.17142857,36.00000000,1.59292035,0.02777778,0.00000000,2.81000000 +1550,chr22,22836377,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,0.58000000,0.00000000,,0.12195122,41.00000000,1.81415929,0.00000000,0.00000000,2.78000000 +1551,chr22,22846595,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,1.42000000,0.00000000,,0.24489796,49.00000000,2.16814159,0.00000000,0.00000000,6.85000000 +1552,chr22,22868525,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,,0.41000000,0.00000000,,0.12244898,50.00000000,2.21238938,0.02000000,0.00000000,2.78000000 +1553,chr22,22905387,UNK,A,,C,,-1.00000000,,,,,,,46.91000000,33.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,,-0.42000000,2.04000000,,0.07352941,69.00000000,3.05309735,0.01449275,0.00000000,3.31000000 +1554,chr22,22905403,UNK,G,,C,,-1.00000000,,,,,,,46.37000000,33.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.61000000,2.05000000,,0.07352941,72.00000000,3.18584071,0.02777778,0.00000000,2.99000000 +1555,chr22,23180617,UNK,G,,C,,-1.00000000,,,,,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.00000000,42.00000000,,-0.44000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,2.81000000 +1556,chr22,23307898,UNK,T,,A,,-1.00000000,,,,,,,46.92000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,,-1.70000000,0.00000000,,0.21739130,46.00000000,2.03539823,0.00000000,0.00000000,6.70000000 +1557,chr22,23316050,UNK,A,,G,,-1.00000000,,,,,,,58.33000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,,-0.65000000,4.95000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,4.72000000 +1558,chr22,23316139,UNK,A,,G,,-1.00000000,,,,,,,57.57000000,4.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,60.00000000,,0.81000000,2.69000000,,0.12121212,69.00000000,3.05309735,0.01449275,0.00000000,4.09000000 +1559,chr22,23316970,UNK,C,,G,,-1.00000000,,,,,,,53.58000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,-1.09000000,0.00000000,,0.16279070,44.00000000,1.94690265,0.02272727,0.00000000,5.93000000 +1560,chr22,23326907,UNK,C,,A,,-1.00000000,,,,,,,31.17000000,14.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,1.33000000,0.00000000,,0.72222222,19.00000000,0.84070796,0.05263158,0.00000000,3.00000000 +1561,chr22,23326919,UNK,G,,C,,-1.00000000,,,,,,,31.19000000,13.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,0.52000000,0.00000000,,0.73333333,15.00000000,0.66371681,0.00000000,0.00000000,3.00000000 +1562,chr22,23327177,UNK,T,,G,,-1.00000000,,,,,,,40.01000000,15.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,14.00000000,,0.38000000,0.00000000,,0.63636364,16.00000000,0.70796460,0.31250000,0.00000000,3.97000000 +1563,chr22,23329534,UNK,G,,A,,-1.00000000,,,,,,,52.28000000,12.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,,2.04000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,5.86000000 +1564,chr22,23329550,UNK,A,,G,,-1.00000000,,,,,,,53.45000000,11.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,,2.27000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,5.56000000 +1565,chr22,23331019,UNK,T,,G,,-1.00000000,,,,,,,58.07000000,6.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,59.00000000,,-2.27000000,0.00000000,,0.12820513,72.00000000,3.18584071,0.45833333,0.00000000,3.85000000 +1566,chr22,23340630,UNK,C,,T,,-1.00000000,,,,,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,,-2.76000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,5.12000000 +1567,chr22,23340684,UNK,T,,G,,-1.00000000,,,,,,,59.24000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,,0.80000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.07000000 +1568,chr22,23430281,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,,0.77000000,0.00000000,,0.14179104,135.00000000,5.97345133,0.00740741,0.00000000,4.89000000 +1569,chr22,23454109,UNK,T,,A,,-1.00000000,,,,,,,58.90000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.30769231,0.00000000,16.00000000,,0.88000000,0.00000000,,0.32258065,39.00000000,1.72566372,0.15384615,0.00000000,4.08000000 +1570,chr22,23477652,UNK,T,,C,,-1.00000000,,,,,,,57.59000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,,0.17000000,0.00000000,,0.24561404,58.00000000,2.56637168,0.01724138,0.20547945,6.14000000 +1571,chr22,23477653,UNK,T,,C,,-1.00000000,,,,,,,57.33000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,,-1.41000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,6.19000000 +1572,chr22,23486223,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,,0.27000000,0.00000000,,0.47674419,90.00000000,3.98230088,0.04444444,0.00000000,7.58000000 +1573,chr22,23597148,UNK,C,,A,,-1.00000000,,,,,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,,-1.20000000,0.00000000,,0.11764706,69.00000000,3.05309735,0.01449275,0.00000000,4.92000000 +1574,chr22,23597150,UNK,G,,T,,-1.00000000,,,,,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-0.35000000,0.00000000,,0.11940299,69.00000000,3.05309735,0.01449275,0.00000000,4.95000000 +1575,chr22,23641085,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,-1.82000000,1.52000000,,0.14285714,92.00000000,4.07079646,0.00000000,0.00000000,5.13000000 +1576,chr22,23674016,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,1.68000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +1577,chr22,23950174,UNK,C,,G,,-1.00000000,,,,,,,45.74000000,74.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,66.00000000,,0.20000000,1.37000000,,0.06976744,87.00000000,3.84955752,0.01149425,0.00000000,3.80000000 +1578,chr22,23950176,UNK,T,,G,,-1.00000000,,,,,,,45.69000000,73.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,67.00000000,,0.42000000,1.28000000,,0.07142857,85.00000000,3.76106195,0.01176471,0.00000000,3.80000000 +1579,chr22,23982353,UNK,G,,C,,-1.00000000,,,,,,,27.33000000,60.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,4.00000000,,1.16000000,0.00000000,,0.62500000,17.00000000,0.75221239,0.00000000,0.00000000,3.62000000 +1580,chr22,24069766,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,,0.08000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.02352941,0.00000000,6.14000000 +1581,chr22,24094842,UNK,A,,G,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,67.00000000,,-0.90000000,0.00000000,,0.17105263,80.00000000,3.53982301,0.05000000,0.00000000,5.84000000 +1582,chr22,24208585,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,,-0.52000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.00000000,0.00000000,6.46000000 +1583,chr22,24249569,UNK,T,,C,,-1.00000000,,,,,,,57.38000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,1.70000000,0.00000000,,0.10958904,73.00000000,3.23008850,0.00000000,0.00000000,5.21000000 +1584,chr22,24260505,UNK,C,,T,,-1.00000000,,,,,,,46.27000000,25.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-0.84000000,0.00000000,,0.07692308,81.00000000,3.58407080,0.01234568,0.00000000,4.38000000 +1585,chr22,24277946,UNK,C,,T,,-1.00000000,,,,,,,57.77000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.19000000,0.00000000,,0.06122449,98.00000000,4.33628319,0.00000000,0.00000000,5.11000000 +1586,chr22,24278291,UNK,T,,G,,-1.00000000,,,,,,,53.55000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.75000000,4.98000000,,0.05940594,105.00000000,4.64601770,0.02857143,0.00000000,3.47000000 +1587,chr22,24278302,UNK,A,,C,,-1.00000000,,,,,,,53.62000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,58.00000000,,-0.12000000,4.99000000,,0.04901961,105.00000000,4.64601770,0.02857143,0.00000000,3.09000000 +1588,chr22,24296884,UNK,C,,T,,-1.00000000,,,,,,,51.34000000,38.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,,-0.67000000,0.00000000,,0.13888889,111.00000000,4.91150442,0.02702703,0.00000000,5.64000000 +1589,chr22,24296972,UNK,A,,G,,-1.00000000,,,,,,,49.92000000,25.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,60.00000000,,1.53000000,4.90000000,,0.06818182,91.00000000,4.02654867,0.03296703,0.00000000,3.20000000 +1590,chr22,24597663,UNK,A,,C,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,,-0.08000000,0.00000000,,0.24000000,78.00000000,3.45132743,0.02564103,0.00000000,6.07000000 +1591,chr22,24605296,UNK,T,,C,,-1.00000000,,,,,,,44.89000000,4.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.16666667,0.00000000,4.00000000,,0.85000000,0.00000000,,0.31250000,17.00000000,0.75221239,0.05882353,0.00000000,2.95000000 +1592,chr22,24605670,UNK,T,,A,,-1.00000000,,,,,,,47.88000000,5.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,34.00000000,,-0.70000000,0.00000000,,0.35483871,31.00000000,1.37168142,0.00000000,0.00000000,3.78000000 +1593,chr22,24671369,UNK,G,,A,,-1.00000000,,,,,,,36.08000000,45.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,13.00000000,,-0.38000000,0.00000000,,0.41379310,29.00000000,1.28318584,0.00000000,0.00000000,3.65000000 +1594,chr22,24671465,UNK,T,,C,,-1.00000000,,,,,,,38.30000000,46.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,23.00000000,,0.09000000,0.33000000,,0.42857143,32.00000000,1.41592920,0.09375000,0.00000000,2.85000000 +1595,chr22,24674444,UNK,A,,G,,-1.00000000,,,,,,,50.99000000,16.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,60.00000000,,2.65000000,0.00000000,,0.34426230,64.00000000,2.83185841,0.04687500,0.00000000,7.22000000 +1596,chr22,24674501,UNK,C,,T,,-1.00000000,,,,,,,49.14000000,23.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,1.88000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.01000000 +1597,chr22,24674902,UNK,G,,T,,-1.00000000,,,,,,,57.32000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,,-1.66000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.63000000 +1598,chr22,24757637,UNK,C,,T,,-1.00000000,,,,,,,54.32000000,14.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,-1.29000000,0.00000000,,0.14035088,60.00000000,2.65486726,0.05000000,0.00000000,4.48000000 +1599,chr22,24970742,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.62000000,0.00000000,,0.10975610,91.00000000,4.02654867,0.09890110,0.00000000,4.77000000 +1600,chr22,24970747,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,,0.06000000,0.00000000,,0.14772727,92.00000000,4.07079646,0.04347826,0.00000000,5.38000000 +1601,chr22,24973401,UNK,T,,G,,-1.00000000,,,,,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.50000000,0.00000000,9.00000000,,-2.25000000,0.00000000,,0.43137255,74.00000000,3.27433628,0.31081081,0.00000000,3.62000000 +1602,chr22,25001241,UNK,G,,A,,-1.00000000,,,,,,,58.97000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,-1.58000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +1603,chr22,25046316,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,,0.00000000,0.00000000,,0.19298246,59.00000000,2.61061947,0.03389831,0.00000000,6.25000000 +1604,chr22,25179201,UNK,G,,T,,-1.00000000,,,,,,,56.52000000,16.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,58.00000000,,0.95000000,4.68000000,,0.05263158,99.00000000,4.38053097,0.04040404,0.00000000,2.87000000 +1605,chr22,25302227,UNK,C,,T,,-1.00000000,,,,,,,55.98000000,9.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,2.00000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.44000000 +1606,chr22,25304216,UNK,C,,T,,-1.00000000,,,,,,,55.57000000,11.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,,-0.09000000,0.00000000,,0.41379310,66.00000000,2.92035398,0.12121212,0.00000000,7.82000000 +1607,chr22,25304241,UNK,C,,T,,-1.00000000,,,,,,,56.23000000,10.00000000,ref,1.00000000,0.03846154,28.00000000,1.23893805,0.07142857,0.00000000,23.00000000,,0.52000000,0.00000000,,0.37735849,63.00000000,2.78761062,0.15873016,0.00000000,3.44000000 +1608,chr22,25304263,UNK,A,,G,,-1.00000000,,,,,,,57.92000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,,1.08000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.07142857,0.00000000,5.60000000 +1609,chr22,25308975,UNK,T,,C,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,,-1.09000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.85000000 +1610,chr22,25315066,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,2.46000000,0.00000000,,0.39062500,69.00000000,3.05309735,0.07246377,0.00000000,7.59000000 +1611,chr22,25322753,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,,0.99000000,0.00000000,,0.38888889,80.00000000,3.53982301,0.10000000,0.00000000,7.89000000 +1612,chr22,25322755,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,95.00000000,,1.27000000,0.00000000,,0.39726027,81.00000000,3.58407080,0.08641975,0.00000000,7.88000000 +1613,chr22,25323397,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,,-0.66000000,0.00000000,,0.41176471,87.00000000,3.84955752,0.02298851,0.00000000,7.50000000 +1614,chr22,25434688,UNK,G,,A,,-1.00000000,,,,,,,57.24000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,94.00000000,,-0.90000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,5.87000000 +1615,chr22,25439715,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.34782609,0.00000000,25.00000000,,-0.23000000,0.00000000,,0.43750000,57.00000000,2.52212389,0.43859649,0.00000000,3.80000000 +1616,chr22,25446837,UNK,A,,C,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.30303030,0.00000000,57.00000000,,-0.48000000,0.00000000,,0.35849057,75.00000000,3.31858407,0.29333333,0.00000000,4.87000000 +1617,chr22,25446856,UNK,G,,A,,-1.00000000,,,,,,,59.75000000,1.00000000,ref,1.00000000,0.02857143,38.00000000,1.68141593,0.07894737,0.00000000,77.00000000,,-0.31000000,0.00000000,,0.41095890,83.00000000,3.67256637,0.12048193,0.00000000,8.24000000 +1618,chr22,25470258,UNK,G,,A,,-1.00000000,,,,,,,52.42000000,19.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,,-1.30000000,0.00000000,,0.53448276,60.00000000,2.65486726,0.03333333,0.00000000,4.14000000 +1619,chr22,25499768,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,62.00000000,,2.16000000,0.00000000,,0.11594203,85.00000000,3.76106195,0.17647059,0.00000000,4.47000000 +1620,chr22,25521694,UNK,C,,T,,-1.00000000,,,,,,,59.97000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.69000000,0.00000000,,0.06976744,88.00000000,3.89380531,0.01136364,0.00000000,5.27000000 +1621,chr22,25521716,UNK,A,,G,,-1.00000000,,,,,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.73000000,0.00000000,,0.06578947,78.00000000,3.45132743,0.02564103,0.00000000,4.78000000 +1622,chr22,25524176,UNK,T,,C,,-1.00000000,,,,,,,56.75000000,6.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,67.00000000,,-1.78000000,0.00000000,,0.09756098,83.00000000,3.67256637,0.01204819,0.00000000,4.90000000 +1623,chr22,25524314,UNK,C,,T,,-1.00000000,,,,,,,50.20000000,27.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,,0.40000000,0.00000000,,0.22641509,55.00000000,2.43362832,0.03636364,0.00000000,2.78000000 +1624,chr22,25531160,UNK,A,,G,,-1.00000000,,,,,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,,0.83000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,5.82000000 +1625,chr22,25606040,UNK,C,,G,,-1.00000000,,,,,,,48.11000000,29.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,0.07000000,0.00000000,,0.08474576,61.00000000,2.69911504,0.03278689,0.00000000,2.98000000 +1626,chr22,25606327,UNK,A,,G,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,2.62000000,0.00000000,,0.13043478,92.00000000,4.07079646,0.00000000,0.00000000,5.05000000 +1627,chr22,25606873,UNK,A,,C,,-1.00000000,,,,,,,59.46000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-1.34000000,0.00000000,,0.08421053,96.00000000,4.24778761,0.01041667,0.00000000,5.42000000 +1628,chr22,25606946,UNK,C,,T,,-1.00000000,,,,,,,58.73000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,,-0.01000000,0.00000000,,0.15238095,106.00000000,4.69026549,0.00000000,0.00000000,6.17000000 +1629,chr22,25620008,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.22222222,0.43750000,9.00000000,,0.57000000,0.00000000,,0.32142857,32.00000000,1.41592920,0.09375000,0.25581395,3.68000000 +1630,chr22,25859081,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,49.00000000,2.16814159,0.02040816,0.00000000,95.00000000,,0.61000000,0.00000000,,0.27173913,94.00000000,4.15929204,0.01063830,0.00000000,5.48000000 +1631,chr22,26219272,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,,-0.23000000,0.00000000,,0.47619048,83.00000000,3.67256637,0.22891566,0.00000000,4.40000000 +1632,chr22,26240110,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,,2.02000000,0.00000000,,0.32812500,66.00000000,2.92035398,0.03030303,0.00000000,3.77000000 +1633,chr22,26387750,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,,-1.04000000,0.00000000,,0.18965517,61.00000000,2.69911504,0.04918033,0.00000000,6.25000000 +1634,chr22,26387751,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,,-1.14000000,0.00000000,,0.23636364,60.00000000,2.65486726,0.05000000,0.00000000,6.30000000 +1635,chr22,26581054,UNK,G,,A,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,,-2.05000000,0.00000000,,0.09090909,79.00000000,3.49557522,0.02531646,0.00000000,2.86000000 +1636,chr22,26603139,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,,0.65000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.12643678,0.00000000,5.70000000 +1637,chr22,26627361,UNK,T,,C,,-1.00000000,,,,,,,59.16000000,1.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.55555556,0.35714286,3.00000000,,-0.41000000,0.00000000,,0.41666667,24.00000000,1.06194690,0.50000000,0.47826087,3.00000000 +1638,chr22,26648559,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,,-1.18000000,0.00000000,,0.28301887,54.00000000,2.38938053,0.01851852,0.27027027,5.88000000 +1639,chr22,26691815,UNK,T,,C,,-1.00000000,,,,,,,58.79000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,,0.33000000,0.00000000,,0.17460317,71.00000000,3.14159292,0.11267606,0.00000000,5.21000000 +1640,chr22,26792241,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,,0.70000000,0.00000000,,0.30909091,64.00000000,2.83185841,0.14062500,0.00000000,6.17000000 +1641,chr22,26792258,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,49.00000000,,-1.06000000,0.00000000,,0.40983607,65.00000000,2.87610619,0.06153846,0.00000000,4.33000000 +1642,chr22,26840864,UNK,A,,G,,-1.00000000,,,,,,,59.18000000,2.00000000,ref,1.00000000,0.05000000,22.00000000,0.97345133,0.09090909,0.00000000,26.00000000,,0.55000000,0.00000000,,0.40000000,79.00000000,3.49557522,0.11392405,0.00000000,3.84000000 +1643,chr22,26876466,UNK,T,,G,,-1.00000000,,,,,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,,-1.03000000,0.00000000,,0.20312500,71.00000000,3.14159292,0.09859155,0.29000000,5.88000000 +1644,chr22,26876472,UNK,T,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,78.00000000,,0.30000000,0.00000000,,0.24742268,101.00000000,4.46902655,0.03960396,0.00000000,5.59000000 +1645,chr22,26905689,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.10714286,0.00000000,56.00000000,,0.15000000,0.00000000,,0.19753086,91.00000000,4.02654867,0.10989011,0.00000000,2.82000000 +1646,chr22,26905690,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,,0.15000000,0.00000000,,0.19753086,90.00000000,3.98230088,0.10000000,0.01098901,5.67000000 +1647,chr22,27343658,UNK,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,,-1.69000000,0.00000000,,0.22471910,99.00000000,4.38053097,0.09090909,0.00000000,5.79000000 +1648,chr22,27573668,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,-0.70000000,0.00000000,,0.14062500,72.00000000,3.18584071,0.11111111,0.00000000,4.81000000 +1649,chr22,27660789,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,39.00000000,,0.23000000,0.00000000,,0.47619048,70.00000000,3.09734513,0.10000000,0.00000000,3.93000000 +1650,chr22,27688775,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,66.00000000,,0.23000000,0.00000000,,0.13924051,84.00000000,3.71681416,0.05952381,0.07692308,4.85000000 +1651,chr22,27688776,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,61.00000000,,-0.28000000,0.00000000,,0.11864407,65.00000000,2.87610619,0.09230769,0.00000000,4.77000000 +1652,chr22,28677203,UNK,C,,T,,-1.00000000,,,,,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,,1.26000000,0.00000000,,0.21621622,79.00000000,3.49557522,0.06329114,0.00000000,5.49000000 +1653,chr22,28933752,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.53333333,0.00000000,4.00000000,,-2.08000000,0.00000000,,0.53333333,44.00000000,1.94690265,0.65909091,0.00000000,3.97000000 +1654,chr22,29551916,UNK,C,,T,,-1.00000000,,,,,,,58.90000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,,-0.80000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.51000000 +1655,chr22,29906249,UNK,T,,C,,-1.00000000,,,,,,,58.90000000,0.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.66666667,7.00000000,,-1.60000000,0.00000000,,0.41935484,31.00000000,1.37168142,0.00000000,0.61250000,3.58000000 +1656,chr22,30455105,UNK,T,,A,,-1.00000000,,,,,,,59.33000000,0.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.30000000,3.00000000,,-2.08000000,0.00000000,,0.50000000,18.00000000,0.79646018,0.33333333,0.33333333,3.00000000 +1657,chr22,30623801,UNK,C,,T,,-1.00000000,,,,,,,49.12000000,25.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,56.00000000,,1.20000000,0.00000000,,0.16666667,35.00000000,1.54867257,0.31428571,0.07894737,2.90000000 +1658,chr22,30633199,UNK,A,,T,,-1.00000000,,,,,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,,0.36000000,0.00000000,,0.18181818,35.00000000,1.54867257,0.02857143,0.00000000,4.82000000 +1659,chr22,30645610,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,68.00000000,,0.32000000,0.00000000,,0.27118644,72.00000000,3.18584071,0.18055556,0.00000000,5.70000000 +1660,chr22,30703183,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,,-1.35000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.03488372,0.01149425,5.15000000 +1661,chr22,30725561,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,,2.11000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.96000000 +1662,chr22,30730808,UNK,A,,T,,-1.00000000,,,,,,,59.25000000,1.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.23529412,0.22727273,21.00000000,,-0.64000000,0.00000000,,0.53333333,22.00000000,0.97345133,0.31818182,0.48837209,3.62000000 +1663,chr22,30784435,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,,1.16000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,4.80000000 +1664,chr22,30912122,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,,-0.06000000,0.00000000,,0.17000000,101.00000000,4.46902655,0.00990099,0.00000000,6.51000000 +1665,chr22,30985279,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.29411765,0.00000000,66.00000000,,1.25000000,0.00000000,,0.29166667,60.00000000,2.65486726,0.20000000,0.00000000,5.60000000 +1666,chr22,31020997,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,47.00000000,,1.10000000,0.00000000,,0.31250000,33.00000000,1.46017699,0.03030303,0.34000000,2.86000000 +1667,chr22,31036627,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.52000000,23.00000000,,0.92000000,0.00000000,,0.34000000,51.00000000,2.25663717,0.01960784,0.46875000,3.56000000 +1668,chr22,31051899,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,0.04000000,0.00000000,,0.25862069,61.00000000,2.69911504,0.04918033,0.00000000,2.80000000 +1669,chr22,31068074,UNK,G,,A,,-1.00000000,,,,,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.53000000,0.00000000,,0.18032787,61.00000000,2.69911504,0.00000000,0.00000000,2.93000000 +1670,chr22,31069329,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-0.47000000,0.00000000,,0.40000000,56.00000000,2.47787611,0.01785714,0.00000000,4.00000000 +1671,chr22,31073013,UNK,T,,C,,-1.00000000,,,,,,,59.27000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,,0.29000000,0.00000000,,0.15384615,57.00000000,2.52212389,0.08771930,0.01724138,4.95000000 +1672,chr22,31159720,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,60.00000000,,0.71000000,0.00000000,,0.21052632,66.00000000,2.92035398,0.13636364,0.00000000,5.59000000 +1673,chr22,31170187,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,,-1.25000000,0.00000000,,0.24444444,93.00000000,4.11504425,0.03225806,0.00000000,6.36000000 +1674,chr22,31305634,UNK,C,,T,,-1.00000000,,,,,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,69.00000000,,0.12000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,5.68000000 +1675,chr22,31382004,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,19.00000000,,0.19000000,0.00000000,,0.37837838,38.00000000,1.68141593,0.02631579,0.00000000,4.01000000 +1676,chr22,31477390,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.24242424,0.00000000,64.00000000,,0.01000000,0.00000000,,0.15789474,69.00000000,3.05309735,0.15942029,0.00000000,5.16000000 +1677,chr22,31486279,UNK,A,,T,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,74.00000000,,-0.12000000,0.00000000,,0.40579710,77.00000000,3.40707965,0.10389610,0.00000000,8.26000000 +1678,chr22,31568163,UNK,A,,G,,-1.00000000,,,,,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,,0.84000000,0.00000000,,0.14285714,76.00000000,3.36283186,0.07894737,0.00000000,4.66000000 +1679,chr22,31582222,UNK,A,,G,,-1.00000000,,,,,,,59.47000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.66666667,0.00000000,3.00000000,,0.30000000,0.00000000,,0.64705882,40.00000000,1.76991150,0.57500000,0.00000000,3.00000000 +1680,chr22,31599884,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,,0.79000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.80000000 +1681,chr22,31624658,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.52000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.14084507,6.74000000 +1682,chr22,31640579,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,1.29000000,0.00000000,,0.11320755,61.00000000,2.69911504,0.13114754,0.00000000,4.11000000 +1683,chr22,31655317,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.28000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.08823529,0.00000000,6.20000000 +1684,chr22,31665028,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,,-1.12000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,6.24000000 +1685,chr22,31666748,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,,-0.15000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.34000000 +1686,chr22,31882810,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,,0.49000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,4.99000000 +1687,chr22,32213478,UNK,C,,T,,-1.00000000,,,,,,,58.99000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,57.00000000,,-0.03000000,0.00000000,,0.11320755,59.00000000,2.61061947,0.10169492,0.00000000,2.81000000 +1688,chr22,32213480,UNK,C,,T,,-1.00000000,,,,,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,,-0.03000000,0.00000000,,0.11320755,59.00000000,2.61061947,0.10169492,0.00000000,3.79000000 +1689,chr22,32300307,UNK,G,,C,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.03000000,2.45000000,,0.08771930,57.00000000,2.52212389,0.00000000,0.00000000,4.50000000 +1690,chr22,32300328,UNK,C,,A,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.08000000,2.68000000,,0.10344828,58.00000000,2.56637168,0.00000000,0.00000000,4.02000000 +1691,chr22,32302261,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,,-0.28000000,0.00000000,,0.19565217,97.00000000,4.29203540,0.05154639,0.00000000,5.89000000 +1692,chr22,32304462,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,,1.15000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.96000000 +1693,chr22,32366561,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.03703704,59.00000000,,-2.00000000,0.00000000,,0.44615385,68.00000000,3.00884956,0.02941176,0.00000000,6.39000000 +1694,chr22,32424753,UNK,C,,T,,-1.00000000,,,,,,,55.84000000,5.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,33.00000000,,0.27000000,0.00000000,,0.39024390,52.00000000,2.30088496,0.21153846,0.00000000,3.55000000 +1695,chr22,32428270,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,,0.43000000,0.00000000,,0.36585366,42.00000000,1.85840708,0.02380952,0.17647059,3.49000000 +1696,chr22,32428291,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,-0.71000000,0.00000000,,0.17021277,50.00000000,2.21238938,0.06000000,0.00000000,2.97000000 +1697,chr22,32449740,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,,-0.26000000,0.00000000,,0.20895522,71.00000000,3.14159292,0.05633803,0.00000000,6.30000000 +1698,chr22,32532118,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,-0.52000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,5.13000000 +1699,chr22,32532265,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,0.37000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.22000000 +1700,chr22,32532427,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.67000000,3.26000000,,0.08888889,90.00000000,3.98230088,0.00000000,0.00000000,4.61000000 +1701,chr22,32532464,UNK,G,,A,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,-1.21000000,4.90000000,,0.12500000,81.00000000,3.58407080,0.01234568,0.00000000,4.00000000 +1702,chr22,32532534,UNK,G,,A,,-1.00000000,,,,,,,58.54000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,1.33000000,0.05000000,,0.09756098,83.00000000,3.67256637,0.00000000,0.00000000,4.42000000 +1703,chr22,32569571,UNK,C,,A,,-1.00000000,,,,,,,58.51000000,3.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.43750000,34.00000000,,-0.97000000,0.00000000,,0.48717949,40.00000000,1.76991150,0.02500000,0.31034483,3.65000000 +1704,chr22,32671580,UNK,C,,T,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,,1.53000000,0.00000000,,0.20253165,84.00000000,3.71681416,0.05952381,0.00000000,5.97000000 +1705,chr22,32671581,UNK,A,,G,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,,0.79000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,5.73000000 +1706,chr22,32692177,UNK,C,,"A,G",,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,2.00000000,0.08849558,0.50000000,0.91304348,3.00000000,,0.00000000,0.00000000,,1.00000000,12.00000000,0.53097345,0.25000000,0.76470588,3.00000000 +1707,chr22,32713826,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,70.00000000,,0.21000000,0.00000000,,0.22388060,77.00000000,3.40707965,0.12987013,0.00000000,5.64000000 +1708,chr22,32739185,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,,0.64000000,0.00000000,,0.24193548,67.00000000,2.96460177,0.05970149,0.00000000,6.15000000 +1709,chr22,32814313,UNK,G,,C,,-1.00000000,,,,,,,56.23000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,31.00000000,,0.81000000,0.00000000,,0.35555556,46.00000000,2.03539823,0.02173913,0.00000000,3.55000000 +1710,chr22,32814317,UNK,C,,A,,-1.00000000,,,,,,,56.43000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,30.00000000,,-0.09000000,0.00000000,,0.38297872,50.00000000,2.21238938,0.00000000,0.00000000,3.47000000 +1711,chr22,32820271,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,,1.83000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.00000000,0.00000000,5.97000000 +1712,chr22,32962131,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,,-0.23000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.01298701,0.00000000,6.23000000 +1713,chr22,32988307,UNK,A,,T,,-1.00000000,,,,,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,,-2.14000000,0.00000000,,0.20547945,84.00000000,3.71681416,0.13095238,0.00000000,5.92000000 +1714,chr22,33008958,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,,-1.03000000,0.00000000,,0.18867925,59.00000000,2.61061947,0.10169492,0.00000000,6.09000000 +1715,chr22,33008974,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.08695652,26.00000000,1.15044248,0.11538462,0.00000000,15.00000000,,-1.28000000,0.00000000,,0.48214286,66.00000000,2.92035398,0.15151515,0.00000000,3.29000000 +1716,chr22,33015845,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,69.00000000,,-0.40000000,0.00000000,,0.13953488,97.00000000,4.29203540,0.11340206,0.00000000,5.20000000 +1717,chr22,33050500,UNK,C,,A,,-1.00000000,,,,,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.03703704,67.00000000,,-1.78000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.00000000,0.01369863,6.08000000 +1718,chr22,33120411,UNK,C,,T,,-1.00000000,,,,,,,58.36000000,4.00000000,ref,1.00000000,0.03703704,33.00000000,1.46017699,0.18181818,0.00000000,62.00000000,,0.39000000,0.00000000,,0.27777778,62.00000000,2.74336283,0.12903226,0.00000000,5.40000000 +1719,chr22,34137112,UNK,C,,T,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,68.00000000,,-0.10000000,0.00000000,,0.16666667,83.00000000,3.67256637,0.06024096,0.00000000,5.58000000 +1720,chr22,34209122,UNK,C,,A,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,,-0.45000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.60000000 +1721,chr22,34286668,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,,-0.60000000,0.00000000,,0.28571429,74.00000000,3.27433628,0.05405405,0.00000000,6.11000000 +1722,chr22,34318171,UNK,C,,T,,-1.00000000,,,,,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,,-0.32000000,0.00000000,,0.46551724,58.00000000,2.56637168,0.00000000,0.00000000,6.12000000 +1723,chr22,34337373,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,,-0.73000000,0.00000000,,0.34375000,74.00000000,3.27433628,0.13513514,0.00000000,7.33000000 +1724,chr22,34511926,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,,-0.19000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.25000000 +1725,chr22,34588739,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,47.00000000,2.07964602,0.00000000,0.00000000,113.00000000,,-1.52000000,0.00000000,,0.39506173,87.00000000,3.84955752,0.06896552,0.00000000,12.32000000 +1726,chr22,34588740,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,,-1.24000000,0.00000000,,0.39506173,87.00000000,3.84955752,0.06896552,0.00000000,12.35000000 +1727,chr22,34680542,UNK,C,,T,,-1.00000000,,,,,,,29.18000000,71.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.69000000,0.00000000,,0.56250000,16.00000000,0.70796460,0.00000000,0.00000000,3.00000000 +1728,chr22,34740606,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.46875000,30.00000000,,1.67000000,0.00000000,,0.41860465,43.00000000,1.90265487,0.00000000,0.48809524,3.23000000 +1729,chr22,35012134,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,,1.15000000,0.00000000,,0.21818182,63.00000000,2.78761062,0.12698413,0.00000000,6.32000000 +1730,chr22,35453819,UNK,T,,G,,-1.00000000,,,,,,,58.38000000,4.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-1.23000000,0.00000000,,0.10909091,56.00000000,2.47787611,0.01785714,0.00000000,2.95000000 +1731,chr22,35474671,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.28571429,32.00000000,,0.25000000,0.00000000,,0.31428571,40.00000000,1.76991150,0.12500000,0.24528302,2.96000000 +1732,chr22,35502488,UNK,T,,A,,-1.00000000,,,,,,,58.49000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.21428571,0.06666667,14.00000000,,-0.44000000,0.00000000,,0.45161290,41.00000000,1.81415929,0.24390244,0.02380952,3.55000000 +1733,chr22,36195776,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.44000000,28.00000000,,2.34000000,0.00000000,,0.64864865,40.00000000,1.76991150,0.05000000,0.31034483,3.49000000 +1734,chr22,36219664,UNK,A,,G,,-1.00000000,,,,,,,59.46000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.33333333,0.00000000,28.00000000,,1.21000000,0.00000000,,0.35294118,52.00000000,2.30088496,0.34615385,0.00000000,3.72000000 +1735,chr22,36383667,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,77.00000000,,0.30000000,0.00000000,,0.22972973,82.00000000,3.62831858,0.09756098,0.00000000,5.63000000 +1736,chr22,36402078,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.00000000,16.00000000,,1.38000000,0.00000000,,0.40740741,29.00000000,1.28318584,0.06896552,0.00000000,4.11000000 +1737,chr22,36434092,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,59.00000000,,-1.98000000,0.00000000,,0.39622642,62.00000000,2.74336283,0.14516129,0.00000000,6.53000000 +1738,chr22,36454666,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.30303030,0.00000000,61.00000000,,0.30000000,0.00000000,,0.13725490,68.00000000,3.00884956,0.25000000,0.00000000,4.63000000 +1739,chr22,36502192,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,-0.11000000,0.00000000,,0.15625000,68.00000000,3.00884956,0.05882353,0.00000000,5.94000000 +1740,chr22,36623012,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,62.00000000,,0.21000000,0.00000000,,0.08064516,63.00000000,2.78761062,0.01587302,0.05970149,4.43000000 +1741,chr22,36632186,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,,-0.19000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +1742,chr22,36690363,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,,-0.88000000,0.00000000,,0.18309859,77.00000000,3.40707965,0.06493506,0.00000000,6.56000000 +1743,chr22,36690369,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,,-0.17000000,0.00000000,,0.17105263,80.00000000,3.53982301,0.05000000,0.00000000,6.01000000 +1744,chr22,36690371,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,,0.21000000,0.00000000,,0.15789474,82.00000000,3.62831858,0.07317073,0.00000000,5.39000000 +1745,chr22,37098005,UNK,A,,G,,-1.00000000,,,,,,,33.17000000,124.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,61.00000000,,-0.17000000,0.00000000,,0.21276596,59.00000000,2.61061947,0.18644068,0.00000000,5.77000000 +1746,chr22,37223012,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,,-0.65000000,0.00000000,,0.23076923,68.00000000,3.00884956,0.23529412,0.00000000,6.12000000 +1747,chr22,37223017,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,,-0.23000000,0.00000000,,0.22641509,74.00000000,3.27433628,0.27027027,0.00000000,6.12000000 +1748,chr22,37223022,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,,0.32000000,0.00000000,,0.19642857,77.00000000,3.40707965,0.27272727,0.00000000,5.52000000 +1749,chr22,37246565,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,,0.21000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.17000000 +1750,chr22,37246566,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.21000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.18000000 +1751,chr22,37590476,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,-0.11000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,5.19000000 +1752,chr22,37700469,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,69.00000000,,0.08000000,0.00000000,,0.21311475,66.00000000,2.92035398,0.06060606,0.00000000,5.70000000 +1753,chr22,37742277,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,1.20000000,0.00000000,,0.07142857,84.00000000,3.71681416,0.16666667,0.00000000,4.73000000 +1754,chr22,37791771,UNK,C,,A,,-1.00000000,,,,,,,59.32000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,,1.41000000,1.17000000,,0.13793103,60.00000000,2.65486726,0.03333333,0.00000000,3.49000000 +1755,chr22,37897613,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.16666667,0.00000000,64.00000000,,-0.18000000,0.00000000,,0.13698630,79.00000000,3.49557522,0.07594937,0.00000000,5.00000000 +1756,chr22,37897616,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.12820513,0.00000000,66.00000000,,0.02000000,0.00000000,,0.11842105,81.00000000,3.58407080,0.06172840,0.00000000,4.70000000 +1757,chr22,38130875,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,1.69000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.48000000 +1758,chr22,38130876,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,1.69000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.48000000 +1759,chr22,38130877,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,2.23000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.00000000,0.00000000,5.60000000 +1760,chr22,38215944,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.21000000,0.00000000,,0.11250000,85.00000000,3.76106195,0.03529412,0.00000000,5.21000000 +1761,chr22,38257569,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,0.04000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,7.90000000 +1762,chr22,38257683,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,,-0.29000000,0.00000000,,0.40963855,86.00000000,3.80530973,0.03488372,0.00000000,8.29000000 +1763,chr22,38259900,UNK,A,,G,,-1.00000000,,,,,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.26315789,0.00000000,23.00000000,,-0.16000000,0.00000000,,0.56140351,69.00000000,3.05309735,0.15942029,0.00000000,3.85000000 +1764,chr22,38260237,UNK,T,,G,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,,-0.12000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.01123596,0.00000000,4.17000000 +1765,chr22,38262049,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,,-0.56000000,0.00000000,,0.41975309,84.00000000,3.71681416,0.03571429,0.00000000,7.75000000 +1766,chr22,38262622,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,105.00000000,,-1.75000000,0.00000000,,0.47777778,93.00000000,4.11504425,0.03225806,0.00000000,13.33000000 +1767,chr22,38266850,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.68000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.01204819,0.00000000,8.41000000 +1768,chr22,38270180,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,106.00000000,,0.21000000,0.00000000,,0.33663366,103.00000000,4.55752212,0.00970874,0.00000000,13.76000000 +1769,chr22,38270367,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,57.00000000,,0.49000000,0.00000000,,0.37974684,85.00000000,3.76106195,0.04705882,0.00000000,4.85000000 +1770,chr22,38277784,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,,-1.59000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.04054054,0.00000000,13.24000000 +1771,chr22,38278994,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,91.00000000,,1.25000000,0.00000000,,0.32673267,103.00000000,4.55752212,0.01941748,0.00000000,7.42000000 +1772,chr22,38279470,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,16.00000000,,0.11000000,0.00000000,,0.37500000,92.00000000,4.07079646,0.04347826,0.00000000,3.24000000 +1773,chr22,38279732,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,38.00000000,1.68141593,0.00000000,0.00000000,4.00000000,,0.54000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,3.17000000 +1774,chr22,38280010,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,,0.16000000,0.00000000,,0.31578947,80.00000000,3.53982301,0.05000000,0.00000000,6.42000000 +1775,chr22,38280416,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,56.00000000,,0.25000000,0.00000000,,0.37142857,82.00000000,3.62831858,0.14634146,0.00000000,4.80000000 +1776,chr22,38280417,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,50.00000000,,-0.17000000,0.00000000,,0.40579710,82.00000000,3.62831858,0.15853659,0.00000000,4.54000000 +1777,chr22,38464619,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,,-0.21000000,0.00000000,,0.22413793,66.00000000,2.92035398,0.12121212,0.00000000,5.85000000 +1778,chr22,38761723,UNK,T,,A,,-1.00000000,,,,,,,59.15000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,61.00000000,,2.11000000,0.00000000,,0.08620690,72.00000000,3.18584071,0.19444444,0.00000000,4.01000000 +1779,chr22,39321761,UNK,A,,G,,-1.00000000,,,,,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,,0.21000000,0.00000000,,0.33333333,58.00000000,2.56637168,0.06896552,0.00000000,4.70000000 +1780,chr22,39341878,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,40.00000000,,-1.79000000,0.00000000,,0.36764706,81.00000000,3.58407080,0.16049383,0.00000000,4.56000000 +1781,chr22,39341939,UNK,T,,A,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,46.00000000,,1.84000000,0.00000000,,0.30232558,59.00000000,2.61061947,0.25423729,0.00000000,3.43000000 +1782,chr22,39857471,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,2.87000000,0.00000000,,0.11111111,70.00000000,3.09734513,0.10000000,0.00000000,4.46000000 +1783,chr22,39890143,UNK,T,,A,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,,0.19000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.31000000 +1784,chr22,39977808,UNK,G,,A,,-1.00000000,,,,,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,,-0.44000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.38000000 +1785,chr22,41006271,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,33.00000000,,-1.90000000,0.00000000,,0.34146341,42.00000000,1.85840708,0.02380952,0.00000000,4.00000000 +1786,chr22,41573369,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,60.00000000,,1.06000000,0.00000000,,0.30000000,60.00000000,2.65486726,0.00000000,0.00000000,5.48000000 +1787,chr22,41590616,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.37000000,0.00000000,,0.12698413,70.00000000,3.09734513,0.10000000,0.00000000,4.38000000 +1788,chr22,41592221,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.19444444,0.00000000,78.00000000,,-2.30000000,0.00000000,,0.23287671,89.00000000,3.93805310,0.17977528,0.00000000,5.84000000 +1789,chr22,41780580,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.33000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,5.08000000 +1790,chr22,41785934,UNK,G,,A,,-1.00000000,,,,,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,57.00000000,,0.03000000,0.00000000,,0.12698413,75.00000000,3.31858407,0.16000000,0.00000000,2.86000000 +1791,chr22,41961684,UNK,T,,G,,-1.00000000,,,,,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,60.00000000,,-0.97000000,0.00000000,,0.15873016,71.00000000,3.14159292,0.11267606,0.00000000,5.66000000 +1792,chr22,42024506,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.02083333,97.00000000,,0.15000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.01265823,5.13000000 +1793,chr22,42396955,UNK,A,,G,,-1.00000000,,,,,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,77.00000000,,-1.98000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.00000000,0.00000000,6.54000000 +1794,chr22,42470017,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,24.00000000,1.06194690,0.20833333,0.00000000,22.00000000,,0.73000000,0.00000000,,0.33333333,65.00000000,2.87610619,0.21538462,0.00000000,3.47000000 +1795,chr22,42475007,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,,0.11000000,0.00000000,,0.21428571,74.00000000,3.27433628,0.05405405,0.00000000,6.30000000 +1796,chr22,42475009,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,,0.23000000,0.00000000,,0.21538462,72.00000000,3.18584071,0.08333333,0.00000000,6.21000000 +1797,chr22,42638729,UNK,A,,T,,-1.00000000,,,,,,,58.88000000,1.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.46666667,6.00000000,,-2.47000000,0.00000000,,0.64285714,18.00000000,0.79646018,0.22222222,0.57142857,3.38000000 +1798,chr22,42971866,UNK,A,,G,,-1.00000000,,,,,,,55.73000000,14.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,,2.20000000,0.00000000,,0.16071429,61.00000000,2.69911504,0.06557377,0.00000000,5.28000000 +1799,chr22,43073363,UNK,A,,T,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,,-0.77000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.73000000 +1800,chr22,43073364,UNK,T,,A,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,,-0.27000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.47000000 +1801,chr22,43092074,UNK,G,,A,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,48.00000000,,-1.79000000,0.00000000,,0.39705882,81.00000000,3.58407080,0.16049383,0.00000000,4.48000000 +1802,chr22,43107330,UNK,A,,C,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,53.00000000,,0.23000000,0.00000000,,0.28000000,58.00000000,2.56637168,0.13793103,0.00000000,3.00000000 +1803,chr22,43186196,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.61904762,0.00000000,6.00000000,,-1.69000000,0.00000000,,0.52000000,53.00000000,2.34513274,0.52830189,0.00000000,3.50000000 +1804,chr22,43377288,UNK,T,,G,,-1.00000000,,,,,,,57.10000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.28571429,0.00000000,57.00000000,,-1.46000000,0.00000000,,0.20833333,67.00000000,2.96460177,0.28358209,0.00000000,2.83000000 +1805,chr22,43413393,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,71.00000000,,0.43000000,0.00000000,,0.26984127,72.00000000,3.18584071,0.12500000,0.00000000,5.63000000 +1806,chr22,43522702,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,46.00000000,,2.24000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.02666667,0.00000000,3.07000000 +1807,chr22,43836173,UNK,C,,G,,-1.00000000,,,,,,,57.37000000,3.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,11.00000000,,2.85000000,0.00000000,,0.71111111,45.00000000,1.99115044,0.00000000,0.00000000,3.67000000 +1808,chr22,43836178,UNK,T,,C,,-1.00000000,,,,,,,57.37000000,3.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,13.00000000,,2.93000000,0.00000000,,0.75000000,45.00000000,1.99115044,0.02222222,0.00000000,3.57000000 +1809,chr22,43934331,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,,1.51000000,0.00000000,,0.24000000,83.00000000,3.67256637,0.09638554,0.00000000,5.66000000 +1810,chr22,44035374,UNK,T,,C,,-1.00000000,,,,,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,43.00000000,,0.31000000,0.00000000,,0.46666667,47.00000000,2.07964602,0.04255319,0.00000000,4.01000000 +1811,chr22,44066804,UNK,C,,T,,-1.00000000,,,,,,,59.02000000,1.00000000,ref,1.00000000,0.11764706,21.00000000,0.92920354,0.19047619,0.00000000,3.00000000,,-1.41000000,0.00000000,,0.37254902,62.00000000,2.74336283,0.16129032,0.00000000,3.00000000 +1812,chr22,44122532,UNK,G,,C,,-1.00000000,,,,,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,,1.20000000,0.00000000,,0.20512821,50.00000000,2.21238938,0.22000000,0.00000000,4.96000000 +1813,chr22,44122554,UNK,C,,G,,-1.00000000,,,,,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,,1.30000000,0.00000000,,0.23684211,51.00000000,2.25663717,0.25490196,0.00000000,5.88000000 +1814,chr22,44122584,UNK,G,,C,,-1.00000000,,,,,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,,0.18000000,0.00000000,,0.21428571,63.00000000,2.78761062,0.11111111,0.00000000,3.04000000 +1815,chr22,44126006,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,47.00000000,,0.27000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,4.57000000 +1816,chr22,44126861,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,,-0.62000000,0.00000000,,0.33766234,78.00000000,3.45132743,0.01282051,0.00000000,8.39000000 +1817,chr22,44126953,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,101.00000000,,0.81000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.01515152,0.00000000,5.92000000 +1818,chr22,44213767,UNK,A,,G,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,73.00000000,,0.33000000,0.00000000,,0.25333333,86.00000000,3.80530973,0.12790698,0.00000000,5.79000000 +1819,chr22,44605021,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-0.02000000,0.00000000,,0.20370370,60.00000000,2.65486726,0.05000000,0.00000000,5.64000000 +1820,chr22,44606844,UNK,C,,T,,-1.00000000,,,,,,,58.80000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,,-1.31000000,0.00000000,,0.28571429,66.00000000,2.92035398,0.04545455,0.00000000,6.35000000 +1821,chr22,44606867,UNK,A,,G,,-1.00000000,,,,,,,58.92000000,2.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,,-1.14000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.05333333,0.00000000,6.26000000 +1822,chr22,44606868,UNK,C,,T,,-1.00000000,,,,,,,58.93000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,66.00000000,,-0.56000000,0.00000000,,0.15277778,76.00000000,3.36283186,0.05263158,0.00000000,5.35000000 +1823,chr22,44606927,UNK,T,,C,,-1.00000000,,,,,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,3.11000000,0.05000000,,0.09195402,92.00000000,4.07079646,0.05434783,0.00000000,4.12000000 +1824,chr22,44606929,UNK,A,,G,,-1.00000000,,,,,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,,1.30000000,0.00000000,,0.21176471,91.00000000,4.02654867,0.05494505,0.00000000,5.95000000 +1825,chr22,44606944,UNK,C,,T,,-1.00000000,,,,,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,1.96000000,2.45000000,,0.05555556,95.00000000,4.20353982,0.05263158,0.00000000,3.56000000 +1826,chr22,44606945,UNK,A,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,65.00000000,,2.78000000,0.00000000,,0.07777778,97.00000000,4.29203540,0.05154639,0.00000000,4.75000000 +1827,chr22,44667250,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,,-0.84000000,0.00000000,,0.21428571,76.00000000,3.36283186,0.07894737,0.01298701,5.95000000 +1828,chr22,44667261,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,,-0.17000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,5.88000000 +1829,chr22,45007236,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,,-0.67000000,0.00000000,,0.32812500,69.00000000,3.05309735,0.05797101,0.00000000,8.08000000 +1830,chr22,45046716,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.33333333,68.00000000,,0.17000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.03076923,0.19753086,5.35000000 +1831,chr22,45058139,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,40.00000000,,-1.49000000,0.00000000,,0.48936170,56.00000000,2.47787611,0.16071429,0.00000000,4.62000000 +1832,chr22,45081127,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,,0.44000000,0.00000000,,0.41176471,52.00000000,2.30088496,0.00000000,0.00000000,8.39000000 +1833,chr22,45101306,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,,0.48000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,5.89000000 +1834,chr22,45102024,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,,-0.24000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,4.32000000 +1835,chr22,45186253,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,,-0.31000000,0.00000000,,0.08235294,87.00000000,3.84955752,0.02298851,0.00000000,4.85000000 +1836,chr22,45247753,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,,-2.16000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.10126582,0.00000000,6.15000000 +1837,chr22,45441631,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.17857143,0.00000000,62.00000000,,-1.32000000,0.00000000,,0.31250000,59.00000000,2.61061947,0.18644068,0.00000000,6.34000000 +1838,chr22,45473210,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,,-1.60000000,0.00000000,,0.16666667,48.00000000,2.12389381,0.12500000,0.23809524,5.50000000 +1839,chr22,45479468,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-4.00000000,0.00000000,,0.27500000,40.00000000,1.76991150,0.00000000,0.00000000,5.41000000 +1840,chr22,45479469,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-4.00000000,0.00000000,,0.27500000,40.00000000,1.76991150,0.00000000,0.00000000,5.41000000 +1841,chr22,45649137,UNK,T,,C,,-1.00000000,,,,,,,58.27000000,2.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,1.08000000,0.00000000,,0.18750000,51.00000000,2.25663717,0.05882353,0.00000000,2.89000000 +1842,chr22,45740729,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,2.41000000,0.00000000,,0.11290323,86.00000000,3.80530973,0.27906977,0.00000000,4.59000000 +1843,chr22,45740738,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,,-1.83000000,0.00000000,,0.31081081,84.00000000,3.71681416,0.11904762,0.00000000,6.43000000 +1844,chr22,45740739,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,,-1.73000000,0.00000000,,0.31506849,83.00000000,3.67256637,0.12048193,0.00000000,6.94000000 +1845,chr22,45740754,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,,-3.40000000,0.00000000,,0.15116279,91.00000000,4.02654867,0.03296703,0.00000000,6.21000000 +1846,chr22,45854097,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,55.00000000,,-1.43000000,0.00000000,,0.45238095,88.00000000,3.89380531,0.04545455,0.00000000,4.75000000 +1847,chr22,45939649,UNK,T,,A,,-1.00000000,,,,,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,,0.66000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,5.80000000 +1848,chr22,46196951,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,,1.48000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.05000000,0.00000000,5.83000000 +1849,chr22,46456595,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,63.00000000,,0.31000000,0.00000000,,0.13846154,74.00000000,3.27433628,0.12162162,0.00000000,4.69000000 +1850,chr22,46456617,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,65.00000000,,1.04000000,0.00000000,,0.13114754,73.00000000,3.23008850,0.16438356,0.00000000,4.95000000 +1851,chr22,46456623,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,66.00000000,,1.44000000,0.00000000,,0.12903226,74.00000000,3.27433628,0.16216216,0.00000000,4.93000000 +1852,chr22,46456631,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,65.00000000,,0.10000000,0.00000000,,0.12962963,66.00000000,2.92035398,0.18181818,0.00000000,4.69000000 +1853,chr22,46524551,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.27000000,0.00000000,,0.10344828,93.00000000,4.11504425,0.05376344,0.00000000,4.75000000 +1854,chr22,46524563,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,,2.23000000,0.00000000,,0.14084507,87.00000000,3.84955752,0.18390805,0.00000000,2.86000000 +1855,chr22,46524576,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.50000000,15.00000000,,0.95000000,0.00000000,,0.41379310,40.00000000,1.76991150,0.27500000,0.41176471,3.65000000 +1856,chr22,46525443,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,70.00000000,,0.59000000,0.00000000,,0.16883117,95.00000000,4.20353982,0.18947368,0.01041667,5.41000000 +1857,chr22,46525445,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,70.00000000,,0.44000000,0.00000000,,0.16250000,97.00000000,4.29203540,0.17525773,0.01020408,5.03000000 +1858,chr22,46525470,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,,1.46000000,0.00000000,,0.19780220,100.00000000,4.42477876,0.09000000,0.00000000,5.79000000 +1859,chr22,46580985,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,67.00000000,,-1.43000000,0.00000000,,0.15476190,95.00000000,4.20353982,0.11578947,0.00000000,5.40000000 +1860,chr22,46648939,UNK,G,,C,,-1.00000000,,,,,,,56.92000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.69000000,0.00000000,,0.11428571,74.00000000,3.27433628,0.05405405,0.00000000,4.28000000 +1861,chr22,46904138,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.22000000,0.00000000,,0.14285714,81.00000000,3.58407080,0.03703704,0.00000000,5.49000000 +1862,chr22,46904142,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.63000000,0.00000000,,0.14102564,81.00000000,3.58407080,0.03703704,0.00000000,5.39000000 +1863,chr22,47461909,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.50000000,18.00000000,,-1.04000000,0.00000000,,0.41666667,38.00000000,1.68141593,0.05263158,0.50649351,3.96000000 +1864,chr22,47461910,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,,-1.73000000,0.00000000,,0.29166667,75.00000000,3.31858407,0.04000000,0.01315789,5.85000000 +1865,chr22,47479554,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,,0.18000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +1866,chr22,47663235,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.15384615,0.51851852,26.00000000,,1.04000000,0.00000000,,0.70454545,51.00000000,2.25663717,0.13725490,0.33766234,3.88000000 +1867,chr22,47723041,UNK,G,,A,,-1.00000000,,,,,,,58.35000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.78000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.94000000 +1868,chr22,47802927,UNK,C,,T,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,,0.44000000,0.00000000,,0.19178082,81.00000000,3.58407080,0.08641975,0.00000000,5.83000000 +1869,chr22,47802929,UNK,T,,A,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,-0.26000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.08860759,0.00000000,6.26000000 +1870,chr22,47856481,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,,0.38000000,0.00000000,,0.26027397,77.00000000,3.40707965,0.05194805,0.00000000,5.65000000 +1871,chr22,47867272,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,,-2.17000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.01724138,6.83000000 +1872,chr22,47867290,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,,-0.97000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.43000000 +1873,chr22,47907767,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,1.84000000,0.00000000,,0.05617978,89.00000000,3.93805310,0.00000000,0.00000000,4.81000000 +1874,chr22,48293814,UNK,T,,C,,-1.00000000,,,,,,,59.31000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,,0.67000000,0.00000000,,0.61428571,75.00000000,3.31858407,0.04000000,0.00000000,6.40000000 +1875,chr22,48329620,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,,0.65000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +1876,chr22,48344593,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,,-1.84000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.26000000 +1877,chr22,48344594,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,71.00000000,,-1.79000000,0.00000000,,0.16901408,75.00000000,3.31858407,0.04000000,0.00000000,5.53000000 +1878,chr22,48467074,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,,1.03000000,0.00000000,,0.45348837,87.00000000,3.84955752,0.01149425,0.00000000,4.34000000 +1879,chr22,48507252,UNK,G,,A,,-1.00000000,,,,,,,57.46000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,-0.46000000,0.00000000,,0.29629630,57.00000000,2.52212389,0.05263158,0.00000000,6.80000000 +1880,chr22,48512943,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,41.00000000,,-0.13000000,0.00000000,,0.36538462,66.00000000,2.92035398,0.16666667,0.00000000,4.61000000 +1881,chr22,48512945,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.70000000,0.00000000,,0.08474576,65.00000000,2.87610619,0.07692308,0.05797101,4.38000000 +1882,chr22,48652834,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,,-0.38000000,0.00000000,,0.22413793,66.00000000,2.92035398,0.09090909,0.00000000,6.26000000 +1883,chr22,48788209,UNK,T,,C,,-1.00000000,,,,,,,58.13000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,,-3.52000000,0.00000000,,0.39393939,70.00000000,3.09734513,0.05714286,0.00000000,4.33000000 +1884,chr22,48788213,UNK,C,,T,,-1.00000000,,,,,,,58.11000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,,-3.55000000,0.00000000,,0.41538462,69.00000000,3.05309735,0.05797101,0.00000000,4.30000000 +1885,chr22,48788217,UNK,T,,C,,-1.00000000,,,,,,,58.09000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,,-3.48000000,0.00000000,,0.46031746,68.00000000,3.00884956,0.05882353,0.00000000,4.31000000 +1886,chr22,48797462,UNK,T,,C,,-1.00000000,,,,,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,,-3.07000000,0.00000000,,0.18571429,74.00000000,3.27433628,0.01351351,0.00000000,6.66000000 +1887,chr22,48802317,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,,1.03000000,0.00000000,,0.28888889,48.00000000,2.12389381,0.06250000,0.23809524,5.71000000 +1888,chr22,48802324,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,,0.25000000,0.00000000,,0.24193548,68.00000000,3.00884956,0.08823529,0.00000000,5.76000000 +1889,chr22,48811525,UNK,C,,G,,-1.00000000,,,,,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,,1.81000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.01960784,0.00000000,5.02000000 +1890,chr22,48867320,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,,-1.04000000,0.00000000,,0.49206349,63.00000000,2.78761062,0.00000000,0.00000000,8.75000000 +1891,chr22,48880161,UNK,T,,C,,-1.00000000,,,,,,,58.23000000,4.00000000,ref,1.00000000,0.07692308,13.00000000,0.57522124,0.00000000,0.27777778,3.00000000,,-0.07000000,0.00000000,,0.51162791,52.00000000,2.30088496,0.17307692,0.20000000,3.00000000 +1892,chr22,48931016,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,,1.06000000,0.00000000,,0.32653061,60.00000000,2.65486726,0.18333333,0.00000000,4.42000000 +1893,chr22,48931086,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,,-0.43000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.23000000 +1894,chr22,49386602,UNK,G,,A,,-1.00000000,,,,,,,35.75000000,106.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,,-2.95000000,0.20000000,,0.16666667,36.00000000,1.59292035,0.00000000,0.00000000,4.73000000 +1895,chr22,49427134,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,,0.62000000,0.00000000,,0.29761905,88.00000000,3.89380531,0.04545455,0.00000000,5.82000000 +1896,chr22,49433531,UNK,G,,A,,-1.00000000,,,,,,,54.44000000,6.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,16.00000000,,0.72000000,0.00000000,,0.38461538,30.00000000,1.32743363,0.10000000,0.00000000,3.75000000 +1897,chr22,49433600,UNK,G,,A,,-1.00000000,,,,,,,57.72000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,,-0.26000000,0.00000000,,0.23684211,40.00000000,1.76991150,0.05000000,0.00000000,6.53000000 +1898,chr22,49494383,UNK,G,,A,,-1.00000000,,,,,,,35.59000000,95.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,59.00000000,,3.35000000,5.97000000,,0.13636364,54.00000000,2.38938053,0.18518519,0.00000000,3.04000000 +1899,chr22,49494537,UNK,T,,C,,-1.00000000,,,,,,,44.70000000,59.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.18181818,0.00000000,21.00000000,,-1.69000000,0.00000000,,0.30000000,59.00000000,2.61061947,0.10169492,0.00000000,3.71000000 +1900,chr22,49860035,UNK,C,,T,,-1.00000000,,,,,,,55.70000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.74000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,5.36000000 +1901,chr22,49987230,UNK,T,,A,,-1.00000000,,,,,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.48000000,0.00000000,25.00000000,,-1.38000000,0.00000000,,0.36585366,56.00000000,2.47787611,0.26785714,0.00000000,3.19000000 +1902,chr22,50001452,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.53488372,39.00000000,,-1.92000000,0.00000000,,0.45283019,57.00000000,2.52212389,0.07017544,0.32142857,4.09000000 +1903,chr22,50170183,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,,-1.40000000,0.00000000,,0.23188406,73.00000000,3.23008850,0.05479452,0.00000000,5.99000000 +1904,chr22,50171375,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,,-0.08000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +1905,chr22,50260258,UNK,G,,C,,-1.00000000,,,,,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,,0.88000000,0.00000000,,0.26470588,73.00000000,3.23008850,0.06849315,0.00000000,5.80000000 +1906,chr22,50405421,UNK,T,,C,,-1.00000000,,,,,,,55.05000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,2.45000000,1.44000000,,0.13043478,49.00000000,2.16814159,0.06122449,0.00000000,3.42000000 +1907,chr22,50434005,UNK,T,,C,,-1.00000000,,,,,,,26.04000000,49.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.00000000,0.00000000,,0.50000000,10.00000000,0.44247788,0.20000000,0.00000000,3.80000000 +1908,chr22,50444629,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,44.00000000,1.94690265,0.11363636,0.00000000,76.00000000,,1.50000000,0.00000000,,0.44791667,101.00000000,4.46902655,0.04950495,0.00000000,7.47000000 +1909,chr22,50665012,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,86.00000000,,-0.98000000,0.00000000,,0.27941176,74.00000000,3.27433628,0.08108108,0.00000000,6.02000000 +1910,chr22,50743172,UNK,A,,G,,-1.00000000,,,,,,,53.91000000,21.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.26000000,0.00000000,,0.24590164,66.00000000,2.92035398,0.06060606,0.00000000,6.62000000 +1911,chr22,50764485,UNK,T,,C,,-1.00000000,,,,,,,58.13000000,6.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-1.52000000,0.00000000,,0.06315789,96.00000000,4.24778761,0.01041667,0.00000000,5.04000000 +1912,chr22,50764588,UNK,C,,A,,-1.00000000,,,,,,,57.47000000,7.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.78000000,0.00000000,,0.06542056,108.00000000,4.77876106,0.00925926,0.00000000,4.92000000 +1913,chr22,50770914,UNK,T,,A,,-1.00000000,,,,,,,54.12000000,13.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,-0.52000000,0.00000000,,0.08974359,81.00000000,3.58407080,0.03703704,0.00000000,4.83000000 +1914,chr22,50778251,UNK,C,,A,,-1.00000000,,,,,,,50.79000000,26.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,0.80000000,0.00000000,,0.08771930,57.00000000,2.52212389,0.00000000,0.00000000,3.79000000 +1915,chr22,50791067,UNK,C,,T,,-1.00000000,,,,,,,51.42000000,27.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.15000000,3.30000000,,0.11475410,61.00000000,2.69911504,0.00000000,0.00000000,3.43000000 +1916,chr22,50796984,UNK,G,,C,,-1.00000000,,,,,,,50.34000000,29.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,,0.75000000,0.00000000,,0.09090909,68.00000000,3.00884956,0.02941176,0.00000000,4.55000000 +1917,chr22,50806144,UNK,C,,G,,-1.00000000,,,,,,,14.84000000,155.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.68000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.78000000 +1918,chr22,50807650,UNK,C,,G,,-1.00000000,,,,,,,35.01000000,60.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,,-0.28000000,0.00000000,,0.17647059,54.00000000,2.38938053,0.05555556,0.00000000,5.99000000 diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.metrics.json b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.metrics.json new file mode 100644 index 0000000..fbf38d5 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.metrics.json @@ -0,0 +1 @@ +{"runInfo": [{"value": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose", "key": "commandline"}], "metrics": [{"data": [{"values": [1, 5], "type": "string", "id": "types", "label": "types"}, {"values": ["SNVs", "records"], "type": "string", "id": "type", "label": "type"}, {"values": [15580, 15580], "type": "int64", "id": "total.truth", "label": "total.truth"}, {"values": [15560, 15560], "type": "int64", "id": "total.query", "label": "total.query"}, {"values": [13575, 13575], "type": "int64", "id": "tp", "label": "tp"}, {"values": [66, 66], "type": "int64", "id": "fp", "label": "fp"}, {"values": [2005, 2005], "type": "int64", "id": "fn", "label": "fn"}, {"values": [1919, 1919], "type": "int64", "id": "unk", "label": "unk"}, {"values": [0, 0], "type": "int64", "id": "ambi", "label": "ambi"}, {"values": [0.8713093709884467, 0.8713093709884467], "type": "double", "id": "recall", "label": "recall"}, {"values": [0.8659824983255057, 0.8659824983255057], "type": "double", "id": "recall_lower", "label": "recall_lower"}, {"values": [0.8764983032832563, 0.8764983032832563], "type": "double", "id": "recall_upper", "label": "recall_upper"}, {"values": [0.8713093709884467, 0.8713093709884467], "type": "double", "id": "recall2", "label": "recall2"}, {"values": [0.9951616450406862, 0.9951616450406862], "type": "double", "id": "precision", "label": "precision"}, {"values": [0.9938894997878358, 0.9938894997878358], "type": "double", "id": "precision_lower", "label": "precision_lower"}, {"values": [0.9962238387168659, 0.9962238387168659], "type": "double", "id": "precision_upper", "label": "precision_upper"}, {"values": [0.12332904884318766, 0.12332904884318766], "type": "double", "id": "na", "label": "na"}, {"values": [0.0, 0.0], "type": "double", "id": "ambiguous", "label": "ambiguous"}, {"values": [32898860, 32898860], "type": "int64", "id": "fp.region.size", "label": "fp.region.size"}, {"values": [2.0061485413172373, 2.0061485413172373], "type": "double", "id": "fp.rate", "label": "fp.rate"}], "properties": [], "type": "Table", "id": "result", "label": "result"}], "version": "v0.3.10", "sampleInfo": [], "name": "som.py.comparison", "parameters": [], "timestamp": "Mon Dec 18 08:27:36 2017", "metadata": {"required": {"version": "v0.3.10", "id": "haplotypes", "module": "som.py", "description": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py generated this JSON file via command line /illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose"}}} \ No newline at end of file diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.stats.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.stats.csv new file mode 100644 index 0000000..07abce5 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.stats.csv @@ -0,0 +1,3 @@ +,type,total.truth,total.query,tp,fp,fn,unk,ambi,recall,recall_lower,recall_upper,recall2,precision,precision_lower,precision_upper,na,ambiguous,fp.region.size,fp.rate,sompyversion,sompycmd +1,SNVs,15580,15560,13575,66,2005,1919,0,0.871309370988,0.865982498326,0.876498303283,0.871309370988,0.995161645041,0.993889499788,0.996223838717,0.123329048843,0.0,32898860,2.00614854132,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose +5,records,15580,15560,13575,66,2005,1919,0,0.871309370988,0.865982498326,0.876498303283,0.871309370988,0.995161645041,0.993889499788,0.996223838717,0.123329048843,0.0,32898860,2.00614854132,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.features.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.features.csv new file mode 100644 index 0000000..169df9f --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.features.csv @@ -0,0 +1,17566 @@ +,CHROM,POS,tag,REF,REF.truth,ALT,ALT.truth,EVS,FILTER,I.DP_normal,I.DP_tumor,I.T_ALT_RATE,I.count,I.tag,MQ,MQ0,NT,NT_REF,N_AF,N_DP,N_DP_RATE,N_FDP_RATE,N_SDP_RATE,QSS_NT,QUAL,ReadPosRankSum,SNVSB,SomaticEVS,T_AF,T_DP,T_DP_RATE,T_FDP_RATE,T_SDP_RATE,VQSR +0,chr22,11285076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,19.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,74.00000000,0.00000000,0.23000000,0.00000000,,0.15596330,117.00000000,5.17699115,0.06837607,0.00000000,4.57000000 +1,chr22,11285569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.70000000,8.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.12173913,117.00000000,5.17699115,0.01709402,0.00000000,4.36000000 +2,chr22,11285928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.32000000,25.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.13194444,145.00000000,6.41592920,0.00000000,0.00000000,4.72000000 +3,chr22,11286056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,57.65000000,14.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,0.00000000,0.30000000,0.00000000,,0.06617647,136.00000000,6.01769912,0.00000000,0.00000000,4.56000000 +4,chr22,11286320,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.96000000,18.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,0.00000000,-0.58000000,0.00000000,,0.07407407,165.00000000,7.30088496,0.01212121,0.00000000,4.71000000 +5,chr22,11287257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.47000000,4.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,0.00000000,-0.06000000,0.00000000,,0.09316770,164.00000000,7.25663717,0.01829268,0.00000000,4.22000000 +6,chr22,11287766,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,2.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.10897436,158.00000000,6.99115044,0.00632911,0.00000000,4.51000000 +7,chr22,11289275,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.10000000,13.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,0.00000000,-0.32000000,0.00000000,,0.05673759,141.00000000,6.23893805,0.00000000,0.00000000,4.66000000 +8,chr22,11295957,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.37000000,47.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,-1.63000000,0.00000000,,0.05645161,126.00000000,5.57522124,0.01587302,0.00000000,4.71000000 +9,chr22,11296090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.59000000,57.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,1.36000000,0.00000000,,0.08064516,126.00000000,5.57522124,0.01587302,0.00000000,4.41000000 +10,chr22,11305686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.13000000,5.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.12295082,123.00000000,5.44247788,0.00813008,0.00000000,4.69000000 +11,chr22,11312440,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.49000000,10.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,0.00000000,0.57000000,0.00000000,,0.10000000,163.00000000,7.21238938,0.01840491,0.00000000,4.34000000 +12,chr22,11312733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.91000000,32.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-0.94000000,0.00000000,,0.06382979,142.00000000,6.28318584,0.00704225,0.00000000,4.98000000 +13,chr22,11313880,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.35000000,11.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.10869565,140.00000000,6.19469027,0.01428571,0.00000000,4.67000000 +14,chr22,11320062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.06000000,12.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.05511811,129.00000000,5.70796460,0.01550388,0.00000000,4.55000000 +15,chr22,11326122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.82000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,73.00000000,0.00000000,1.73000000,0.00000000,,0.08724832,152.00000000,6.72566372,0.01315789,0.00000000,4.62000000 +16,chr22,11326179,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.97000000,5.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.45000000,0.00000000,,0.05384615,130.00000000,5.75221239,0.00000000,0.00000000,4.82000000 +17,chr22,11336505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.51000000,23.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.09090909,77.00000000,3.40707965,0.00000000,0.00000000,5.47000000 +18,chr22,11336606,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,53.86000000,27.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,4.80000000 +19,chr22,11337405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.03000000,12.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,-1.59000000,0.00000000,,0.06837607,117.00000000,5.17699115,0.00000000,0.00000000,5.52000000 +20,chr22,11337545,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,46.92000000,118.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.11111111,128.00000000,5.66371681,0.01562500,0.00000000,4.33000000 +21,chr22,11339215,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,50.41000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.58000000,0.00000000,,0.09202454,172.00000000,7.61061947,0.04651163,0.00000000,4.17000000 +22,chr22,11343944,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,48.11000000,70.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.07692308,91.00000000,4.02654867,0.00000000,0.00000000,5.41000000 +23,chr22,11345105,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,54.41000000,33.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.05042017,120.00000000,5.30973451,0.00833333,0.00000000,5.04000000 +24,chr22,11346908,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.78000000,6.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.11764706,154.00000000,6.81415929,0.00000000,0.00000000,4.66000000 +25,chr22,11348653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,43.96000000,145.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,0.00000000,-1.42000000,0.00000000,,0.09600000,128.00000000,5.66371681,0.01562500,0.00000000,4.69000000 +26,chr22,11354156,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,48.54000000,85.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.06722689,121.00000000,5.35398230,0.01652893,0.00000000,4.84000000 +27,chr22,11359091,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.41000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,0.00000000,-2.03000000,0.00000000,,0.11904762,129.00000000,5.70796460,0.00775194,0.00000000,4.65000000 +28,chr22,11360241,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,42.57000000,70.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.39000000,0.00000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,4.68000000 +29,chr22,11364387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.57000000,17.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.10563380,143.00000000,6.32743363,0.00699301,0.00000000,4.48000000 +30,chr22,11368511,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,-1.04000000,0.00000000,,0.08333333,160.00000000,7.07964602,0.01875000,0.00000000,4.28000000 +31,chr22,11368741,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.28000000,5.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.12025316,159.00000000,7.03539823,0.00628931,0.00000000,4.79000000 +32,chr22,11371678,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.63000000,24.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.08593750,129.00000000,5.70796460,0.00775194,0.00000000,4.83000000 +33,chr22,11372222,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,-1.78000000,0.00000000,,0.07042254,146.00000000,6.46017699,0.02054795,0.00000000,4.79000000 +34,chr22,11372223,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,-1.98000000,0.00000000,,0.07092199,145.00000000,6.41592920,0.02068966,0.00000000,4.81000000 +35,chr22,11373423,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.30000000,7.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,0.00000000,1.38000000,0.00000000,,0.05681818,177.00000000,7.83185841,0.00000000,0.00000000,4.74000000 +36,chr22,11549137,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,51.74000000,60.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.13492063,128.00000000,5.66371681,0.01562500,0.00000000,4.96000000 +37,chr22,11551449,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,47.65000000,88.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.15178571,113.00000000,5.00000000,0.00884956,0.00000000,5.19000000 +38,chr22,11552731,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,46.82000000,127.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.03571429,0.00000000,73.00000000,0.00000000,-3.24000000,0.00000000,,0.09459459,155.00000000,6.85840708,0.03870968,0.00000000,4.43000000 +39,chr22,11553037,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.20000000,13.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,75.00000000,0.00000000,-0.52000000,0.00000000,,0.14173228,129.00000000,5.70796460,0.01550388,0.00000000,4.51000000 +40,chr22,11561388,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,55.33000000,30.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.09523810,127.00000000,5.61946903,0.00000000,0.00000000,4.81000000 +41,chr22,11563450,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,47.09000000,118.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,-0.57000000,0.00000000,,0.11851852,138.00000000,6.10619469,0.01449275,0.00000000,4.15000000 +42,chr22,11563459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.02000000,108.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.11023622,128.00000000,5.66371681,0.00781250,0.00000000,4.13000000 +43,chr22,11565067,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,51.18000000,67.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,-0.36000000,0.00000000,,0.10743802,126.00000000,5.57522124,0.03968254,0.00000000,4.23000000 +44,chr22,11569839,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,4.88000000,,0.05217391,116.00000000,5.13274336,0.00862069,0.00000000,3.93000000 +45,chr22,11573112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.16793893,133.00000000,5.88495575,0.01503759,0.00000000,4.96000000 +46,chr22,11575095,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,49.40000000,82.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.17829457,132.00000000,5.84070796,0.02272727,0.00000000,5.33000000 +47,chr22,11575303,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.54000000,39.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.05172414,0.00000000,74.00000000,0.00000000,-1.91000000,0.00000000,,0.08510638,149.00000000,6.59292035,0.05369128,0.00000000,4.26000000 +48,chr22,11576007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.91000000,205.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.09944751,186.00000000,8.23008850,0.02150538,0.00000000,4.62000000 +49,chr22,11576292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,44.77000000,144.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,-0.76000000,0.00000000,,0.08053691,157.00000000,6.94690265,0.05095541,0.00000000,4.23000000 +50,chr22,11576429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.86000000,15.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,0.00000000,2.69000000,0.00000000,,0.12318841,139.00000000,6.15044248,0.00719424,0.00000000,4.19000000 +51,chr22,11577156,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.91000000,20.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,0.00000000,1.92000000,0.00000000,,0.08870968,128.00000000,5.66371681,0.02343750,0.00000000,4.60000000 +52,chr22,11577481,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.63000000,1.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,0.00000000,-0.85000000,0.00000000,,0.11678832,137.00000000,6.06194690,0.00000000,0.00000000,4.83000000 +53,chr22,11578805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,-0.65000000,0.00000000,,0.09523810,149.00000000,6.59292035,0.00671141,0.00000000,4.68000000 +54,chr22,11585744,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.05000000,137.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,81.00000000,0.00000000,-0.05000000,0.00000000,,0.09740260,157.00000000,6.94690265,0.01910828,0.00000000,4.21000000 +55,chr22,11587347,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.30000000,11.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,0.00000000,0.20000000,0.00000000,,0.07092199,142.00000000,6.28318584,0.00000000,0.00000000,4.66000000 +56,chr22,11587818,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.24000000,55.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.05691057,124.00000000,5.48672566,0.00806452,0.00000000,4.53000000 +57,chr22,11587846,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,53.34000000,48.00000000,ref,1.00000000,0.01785714,56.00000000,2.47787611,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.07317073,125.00000000,5.53097345,0.01600000,0.00000000,4.38000000 +58,chr22,11595008,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-1.14000000,0.00000000,,0.10000000,120.00000000,5.30973451,0.00000000,0.00000000,5.34000000 +59,chr22,11595258,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.44000000,11.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,79.00000000,0.00000000,-0.16000000,0.00000000,,0.13855422,171.00000000,7.56637168,0.02923977,0.00000000,4.64000000 +60,chr22,11604516,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.96000000,8.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,1.42000000,0.00000000,,0.09937888,161.00000000,7.12389381,0.00000000,0.00000000,4.80000000 +61,chr22,11605295,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.46000000,10.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.16541353,137.00000000,6.06194690,0.02919708,0.00000000,4.79000000 +62,chr22,11606438,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.47000000,9.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,74.00000000,0.00000000,-0.30000000,0.00000000,,0.09489051,141.00000000,6.23893805,0.02836879,0.00000000,4.34000000 +63,chr22,11606630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.49000000,10.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.11363636,134.00000000,5.92920354,0.00746269,0.00000000,4.32000000 +64,chr22,11608591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.23000000,6.00000000,ref,1.00000000,0.01587302,63.00000000,2.78761062,0.00000000,0.00000000,68.00000000,0.00000000,-1.26000000,0.00000000,,0.08588957,163.00000000,7.21238938,0.00000000,0.00000000,4.98000000 +65,chr22,11609464,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,23.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,0.00000000,0.01000000,0.00000000,,0.09600000,125.00000000,5.53097345,0.00000000,0.00000000,4.93000000 +66,chr22,11613423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.42000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,-0.49000000,0.00000000,,0.09859155,143.00000000,6.32743363,0.00699301,0.00000000,4.32000000 +67,chr22,11613458,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.89000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,80.00000000,0.00000000,-1.28000000,0.00000000,,0.15000000,144.00000000,6.37168142,0.01388889,0.00000000,5.29000000 +68,chr22,11613832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,1.36000000,0.00000000,,0.10526316,153.00000000,6.76991150,0.00653595,0.00000000,4.55000000 +69,chr22,11615681,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.02083333,48.00000000,2.12389381,0.00000000,0.00000000,68.00000000,0.00000000,-1.48000000,0.00000000,,0.13084112,113.00000000,5.00000000,0.05309735,0.00000000,4.48000000 +70,chr22,11619513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.10000000,0.00000000,62.00000000,0.00000000,-0.73000000,0.00000000,,0.06428571,150.00000000,6.63716814,0.06666667,0.00000000,4.05000000 +71,chr22,11620530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.15503876,130.00000000,5.75221239,0.00769231,0.00000000,4.97000000 +72,chr22,11620623,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.85000000,1.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.12318841,143.00000000,6.32743363,0.03496503,0.00000000,4.73000000 +73,chr22,11621062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.84000000,1.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,0.00000000,-0.34000000,0.00000000,,0.09375000,130.00000000,5.75221239,0.01538462,0.00000000,4.38000000 +74,chr22,11621530,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.03636364,0.00000000,74.00000000,0.00000000,-0.78000000,0.00000000,,0.09016393,132.00000000,5.84070796,0.06818182,0.00000000,4.12000000 +75,chr22,11621581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.06382979,0.00000000,69.00000000,0.00000000,-0.13000000,0.00000000,,0.11403509,120.00000000,5.30973451,0.05000000,0.00000000,4.12000000 +76,chr22,11621797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.98000000,13.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,72.00000000,0.00000000,-0.86000000,0.00000000,,0.13076923,133.00000000,5.88495575,0.00751880,0.00000000,5.13000000 +77,chr22,11622519,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.26000000,5.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.15819209,178.00000000,7.87610619,0.00561798,0.00000000,5.18000000 +78,chr22,11628685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.01515152,69.00000000,3.05309735,0.04347826,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.13291139,166.00000000,7.34513274,0.04216867,0.00000000,4.50000000 +79,chr22,11629674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.85000000,0.00000000,,0.10563380,145.00000000,6.41592920,0.02068966,0.00000000,4.49000000 +80,chr22,11801429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,27.72000000,105.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,0.00000000,-0.73000000,0.00000000,,0.42424242,34.00000000,1.50442478,0.02941176,0.00000000,3.00000000 +81,chr22,12028384,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.90000000,10.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-0.31000000,0.00000000,,0.11904762,87.00000000,3.84955752,0.03448276,0.00000000,5.11000000 +82,chr22,12033223,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,52.25000000,29.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.87000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,5.09000000 +83,chr22,12205210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.83000000,47.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.07812500,129.00000000,5.70796460,0.00775194,0.00000000,4.61000000 +84,chr22,12206405,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,56.46000000,11.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,2.44000000,0.00000000,,0.08805031,159.00000000,7.03539823,0.00000000,0.00000000,4.43000000 +85,chr22,12381527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.02000000,16.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.08653846,111.00000000,4.91150442,0.06306306,0.00000000,4.22000000 +86,chr22,12383406,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.63000000,42.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.04000000,0.00000000,,0.09649123,117.00000000,5.17699115,0.00854701,0.00000000,4.61000000 +87,chr22,12385011,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.97000000,5.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,0.00000000,0.43000000,0.00000000,,0.13333333,138.00000000,6.10619469,0.01449275,0.00000000,4.90000000 +88,chr22,12390696,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,48.85000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.08196721,125.00000000,5.53097345,0.01600000,0.00000000,4.35000000 +89,chr22,12394258,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,55.90000000,28.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-0.73000000,0.00000000,,0.11278195,133.00000000,5.88495575,0.00000000,0.00000000,4.80000000 +90,chr22,12395331,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.40000000,42.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.96000000,0.00000000,,0.15000000,102.00000000,4.51327434,0.01960784,0.00000000,5.18000000 +91,chr22,12402195,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.12000000,19.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,-0.86000000,0.00000000,,0.12676056,142.00000000,6.28318584,0.00000000,0.00000000,5.14000000 +92,chr22,12404198,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,49.55000000,83.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.14400000,126.00000000,5.57522124,0.00793651,0.00000000,4.68000000 +93,chr22,12405704,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.22000000,20.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,0.00000000,-1.60000000,0.00000000,,0.08053691,151.00000000,6.68141593,0.00662252,0.00000000,4.70000000 +94,chr22,12410012,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.57000000,3.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,0.00000000,-0.91000000,0.00000000,,0.11612903,156.00000000,6.90265487,0.00641026,0.00000000,4.77000000 +95,chr22,12412870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.71000000,19.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,-2.08000000,0.00000000,,0.11811024,129.00000000,5.70796460,0.00775194,0.00000000,4.55000000 +96,chr22,12417262,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.92000000,32.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.52000000,0.00000000,,0.09278351,98.00000000,4.33628319,0.01020408,0.00000000,5.10000000 +97,chr22,12420898,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,48.76000000,91.00000000,ref,1.00000000,0.02173913,47.00000000,2.07964602,0.02127660,0.00000000,67.00000000,0.00000000,-2.06000000,0.00000000,,0.12598425,131.00000000,5.79646018,0.00763359,0.00000000,4.67000000 +98,chr22,12423826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.10526316,172.00000000,7.61061947,0.00581395,0.00000000,4.49000000 +99,chr22,12425325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,45.95000000,94.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,-1.62000000,0.00000000,,0.06862745,105.00000000,4.64601770,0.01904762,0.00000000,4.45000000 +100,chr22,12425547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.29000000,32.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,0.00000000,-0.27000000,0.00000000,,0.06194690,115.00000000,5.08849558,0.01739130,0.00000000,4.36000000 +101,chr22,12428656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.34000000,27.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.97000000,0.00000000,,0.08965517,146.00000000,6.46017699,0.00684932,0.00000000,4.39000000 +102,chr22,12433750,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,38.56000000,268.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,0.00000000,1.64000000,0.00000000,,0.07692308,130.00000000,5.75221239,0.00000000,0.00000000,4.64000000 +103,chr22,12437876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.08000000,6.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,0.00000000,-0.80000000,0.00000000,,0.08510638,141.00000000,6.23893805,0.00000000,0.00000000,4.85000000 +104,chr22,12489557,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.51000000,8.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.00000000,0.00000000,98.00000000,0.00000000,0.64000000,0.00000000,,0.05136986,293.00000000,12.96460177,0.00341297,0.00000000,4.52000000 +105,chr22,12496530,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,43.85000000,67.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.17000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.35000000 +106,chr22,12504464,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,43.54000000,69.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.09000000,0.00000000,,0.12500000,121.00000000,5.35398230,0.00826446,0.00000000,4.97000000 +107,chr22,12509138,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,40.45000000,28.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.16000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.21000000 +108,chr22,12512435,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,31.80000000,98.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,-1.59000000,0.00000000,,0.10416667,50.00000000,2.21238938,0.02000000,0.00000000,3.92000000 +109,chr22,12517536,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,38.78000000,43.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.25000000,2.98000000,,0.09836066,62.00000000,2.74336283,0.01612903,0.00000000,3.63000000 +110,chr22,12520370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.45000000,13.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.27272727,66.00000000,2.92035398,0.00000000,0.00000000,6.47000000 +111,chr22,12522110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,40.00000000,124.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-2.20000000,0.00000000,,0.16346154,107.00000000,4.73451327,0.01869159,0.00000000,5.85000000 +112,chr22,12523880,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,36.61000000,63.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,0.00000000,0.96000000,0.00000000,,0.10416667,49.00000000,2.16814159,0.02040816,0.00000000,4.01000000 +113,chr22,12524052,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.30000000,64.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.89000000,0.00000000,,0.28571429,63.00000000,2.78761062,0.00000000,0.00000000,2.82000000 +114,chr22,12525295,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,40.39000000,43.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-1.44000000,0.00000000,,0.10752688,93.00000000,4.11504425,0.00000000,0.00000000,5.29000000 +115,chr22,12548624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,30.37000000,200.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.85000000,0.00000000,,0.13559322,60.00000000,2.65486726,0.01666667,0.00000000,5.48000000 +116,chr22,12576050,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,48.94000000,40.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.54000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.63000000 +117,chr22,12578780,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,48.35000000,27.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.12307692,68.00000000,3.00884956,0.02941176,0.00000000,5.22000000 +118,chr22,12580411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,34.80000000,59.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.00000000,0.00000000,5.74000000 +119,chr22,12587315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,29.23000000,240.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.19000000 +120,chr22,12588978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,32.94000000,333.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,0.00000000,0.89000000,0.00000000,,0.11023622,129.00000000,5.70796460,0.01550388,0.00000000,4.32000000 +121,chr22,12590414,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.41000000,18.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,1.79000000,0.00000000,,0.11042945,165.00000000,7.30088496,0.01212121,0.00000000,4.36000000 +122,chr22,12591451,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,50.43000000,81.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.12000000,154.00000000,6.81415929,0.02597403,0.00000000,4.35000000 +123,chr22,12594471,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,40.33000000,122.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.07812500,195.00000000,8.62831858,0.01025641,0.00000000,4.80000000 +124,chr22,12599774,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,48.63000000,56.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.08196721,0.00000000,75.00000000,0.00000000,-1.48000000,0.00000000,,0.07831325,175.00000000,7.74336283,0.04571429,0.00000000,4.03000000 +125,chr22,12600005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.30000000,27.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,78.00000000,0.00000000,-0.79000000,0.00000000,,0.10179641,169.00000000,7.47787611,0.00591716,0.00000000,4.28000000 +126,chr22,12602254,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.86000000,1.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,0.99000000,0.00000000,,0.08227848,160.00000000,7.07964602,0.00625000,0.00000000,4.57000000 +127,chr22,12603867,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,47.68000000,91.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,0.00000000,0.21000000,0.00000000,,0.10000000,142.00000000,6.28318584,0.01408451,0.00000000,4.47000000 +128,chr22,12610913,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,44.82000000,175.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,82.00000000,0.00000000,2.50000000,0.00000000,,0.13372093,174.00000000,7.69911504,0.01149425,0.00000000,4.40000000 +129,chr22,12614510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.78000000,19.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.60000000,0.00000000,,0.10156250,129.00000000,5.70796460,0.00775194,0.00000000,4.86000000 +130,chr22,12616073,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.90000000,46.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,75.00000000,0.00000000,1.22000000,0.00000000,,0.14864865,149.00000000,6.59292035,0.00671141,0.00000000,4.45000000 +131,chr22,12618190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.18000000,32.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.09146341,165.00000000,7.30088496,0.00606061,0.00000000,4.34000000 +132,chr22,12623218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,9.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,86.00000000,0.00000000,0.41000000,0.00000000,,0.15469613,185.00000000,8.18584071,0.01081081,0.00000000,4.74000000 +133,chr22,12624776,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.00000000,8.00000000,ref,1.00000000,0.01369863,73.00000000,3.23008850,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.10828025,158.00000000,6.99115044,0.00632911,0.00000000,4.63000000 +134,chr22,12628009,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,49.17000000,63.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,0.00000000,2.31000000,0.00000000,,0.08571429,140.00000000,6.19469027,0.00000000,0.00000000,4.46000000 +135,chr22,12632105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,51.55000000,61.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,69.00000000,0.00000000,-1.80000000,0.00000000,,0.13600000,126.00000000,5.57522124,0.00793651,0.00000000,4.64000000 +136,chr22,12634670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.77000000,28.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.09473684,98.00000000,4.33628319,0.03061224,0.00000000,4.54000000 +137,chr22,12636010,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.95000000,17.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.13235294,136.00000000,6.01769912,0.00000000,0.00000000,4.78000000 +138,chr22,12638532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,51.74000000,48.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.09302326,134.00000000,5.92920354,0.03731343,0.00000000,4.14000000 +139,chr22,12639209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.60000000,52.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,0.00000000,0.00000000,0.00000000,,0.09090909,155.00000000,6.85840708,0.00645161,0.00000000,4.21000000 +140,chr22,12699327,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.28000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,-1.01000000,0.00000000,,0.06976744,131.00000000,5.79646018,0.01526718,0.00000000,4.67000000 +141,chr22,15157537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.38000000,15.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,1.37000000,0.00000000,,0.30985915,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +142,chr22,15158777,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,41.73000000,6.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.68000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,5.64000000 +143,chr22,15158812,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,43.96000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.52000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.08000000 +144,chr22,15159746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,42.35000000,24.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.30000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.26000000 +145,chr22,15166759,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.96000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,6.20000000 +146,chr22,15222900,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,40.12000000,34.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.80000000,0.00000000,,0.16666667,54.00000000,2.38938053,0.00000000,0.00000000,5.35000000 +147,chr22,15246477,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,26.15000000,13.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,0.00000000,-0.17000000,0.00000000,,0.36842105,19.00000000,0.84070796,0.00000000,0.00000000,3.45000000 +148,chr22,15279513,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,45.74000000,13.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.45000000 +149,chr22,15284540,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,45.05000000,25.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.08000000,0.00000000,,0.15000000,40.00000000,1.76991150,0.00000000,0.00000000,4.33000000 +150,chr22,15295598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.62000000,20.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.50000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,4.19000000 +151,chr22,15313445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,42.53000000,36.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-1.79000000,0.00000000,,0.07228916,84.00000000,3.71681416,0.01190476,0.00000000,5.34000000 +152,chr22,15330107,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,46.15000000,24.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,36.00000000,0.00000000,0.92000000,0.00000000,,0.37777778,45.00000000,1.99115044,0.00000000,0.00000000,3.64000000 +153,chr22,15346042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.96000000,8.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +154,chr22,15346225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.68000000,27.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.90000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,4.67000000 +155,chr22,15368773,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.29000000,16.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,16.00000000,0.00000000,0.03000000,0.00000000,,0.35185185,55.00000000,2.43362832,0.01818182,0.00000000,3.49000000 +156,chr22,15404376,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,16.05000000,40.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,-0.87000000,0.00000000,,0.50000000,8.00000000,0.35398230,0.00000000,0.00000000,3.68000000 +157,chr22,15420791,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,23.03000000,11.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,0.00000000,0.07000000,0.00000000,,0.38461538,13.00000000,0.57522124,0.00000000,0.00000000,3.60000000 +158,chr22,15438668,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,50.12000000,16.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.11000000 +159,chr22,15448394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,36.91000000,7.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,22.00000000,0.00000000,0.00000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,3.11000000 +160,chr22,15448968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.28000000,18.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,7.06000000 +161,chr22,15449522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.22000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.50000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.58000000 +162,chr22,15460427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,32.44000000,28.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.47000000,0.00000000,,0.16666667,42.00000000,1.85840708,0.00000000,0.00000000,2.76000000 +163,chr22,15461412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,32.02000000,9.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,0.00000000,-0.62000000,0.00000000,,0.34482759,29.00000000,1.28318584,0.00000000,0.00000000,3.49000000 +164,chr22,15463803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,36.29000000,24.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,53.00000000,0.00000000,-0.65000000,0.00000000,,0.32558140,43.00000000,1.90265487,0.00000000,0.00000000,4.19000000 +165,chr22,15479576,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,36.02000000,49.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-1.44000000,0.00000000,,0.08771930,58.00000000,2.56637168,0.01724138,0.00000000,5.03000000 +166,chr22,15488724,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,40.15000000,36.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.64000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,4.86000000 +167,chr22,15515691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.21000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.33000000,0.00000000,,0.17307692,53.00000000,2.34513274,0.01886792,0.00000000,6.38000000 +168,chr22,15518376,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.31000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.14000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +169,chr22,15526718,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,33.23000000,35.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.54000000,0.00000000,,0.19148936,47.00000000,2.07964602,0.00000000,0.00000000,2.80000000 +170,chr22,15531753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,33.36000000,58.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.40000000 +171,chr22,15552149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,45.24000000,16.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.06000000,0.00000000,,0.14457831,84.00000000,3.71681416,0.01190476,0.00000000,5.68000000 +172,chr22,15557251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,48.85000000,31.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,63.00000000,0.00000000,0.58000000,0.00000000,,0.14634146,86.00000000,3.80530973,0.04651163,0.00000000,4.80000000 +173,chr22,15563787,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,44.80000000,50.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.21000000,0.00000000,,0.16346154,104.00000000,4.60176991,0.00000000,0.00000000,6.28000000 +174,chr22,15574482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.64000000,38.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,1.73000000,0.00000000,,0.10000000,94.00000000,4.15929204,0.04255319,0.00000000,4.56000000 +175,chr22,15578060,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.32000000,5.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,81.00000000,0.00000000,-0.42000000,0.00000000,,0.08374384,203.00000000,8.98230088,0.00000000,0.00000000,4.66000000 +176,chr22,15584651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.66000000,10.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.64000000,0.00000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,6.45000000 +177,chr22,15593019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,26.54000000,78.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.33000000,0.00000000,,0.19512195,41.00000000,1.81415929,0.00000000,0.00000000,5.92000000 +178,chr22,15613639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.71000000,26.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,1.94000000,0.00000000,,0.12222222,93.00000000,4.11504425,0.02150538,0.00000000,5.06000000 +179,chr22,15614932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,43.91000000,23.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,0.82000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.90000000 +180,chr22,15616968,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,39.55000000,42.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.78000000,0.00000000,,0.21311475,61.00000000,2.69911504,0.00000000,0.00000000,5.81000000 +181,chr22,15626511,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.08000000,18.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.09389671,216.00000000,9.55752212,0.01388889,0.00000000,4.40000000 +182,chr22,15628399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,53.88000000,12.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,81.00000000,0.00000000,0.83000000,0.00000000,,0.06250000,211.00000000,9.33628319,0.01421801,0.00000000,4.53000000 +183,chr22,15628531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.24000000,11.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.06159420,276.00000000,12.21238938,0.00000000,0.00000000,4.68000000 +184,chr22,15630423,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,56.76000000,8.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,0.00000000,1.08000000,0.00000000,,0.06403941,206.00000000,9.11504425,0.01456311,0.00000000,4.62000000 +185,chr22,15636469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.18000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.99000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,7.01000000 +186,chr22,15636539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.90000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.33000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.49000000 +187,chr22,15665506,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.25000000,8.00000000,ref,1.00000000,0.01851852,55.00000000,2.43362832,0.01818182,0.00000000,76.00000000,0.00000000,-1.22000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.00000000,0.00000000,5.83000000 +188,chr22,15726861,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,50.99000000,35.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.16666667,0.00000000,72.00000000,0.00000000,-1.33000000,0.00000000,,0.18072289,95.00000000,4.20353982,0.12631579,0.00000000,5.81000000 +189,chr22,15757486,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,30.97000000,64.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.80000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.44000000 +190,chr22,15772448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.14000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.16161616,100.00000000,4.42477876,0.00000000,0.00000000,5.66000000 +191,chr22,15807197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.33000000,24.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.11627907,88.00000000,3.89380531,0.02272727,0.00000000,5.20000000 +192,chr22,15841260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.74000000,14.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00000000,0.00000000,97.00000000,0.00000000,-0.27000000,0.00000000,,0.05263158,249.00000000,11.01769912,0.00803213,0.00000000,4.51000000 +193,chr22,15841336,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.12000000,16.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.00000000,0.00000000,95.00000000,0.00000000,1.40000000,0.00000000,,0.05932203,238.00000000,10.53097345,0.00840336,0.00000000,4.42000000 +194,chr22,15854799,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,33.56000000,58.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,0.00000000,-0.38000000,0.00000000,,0.06315789,96.00000000,4.24778761,0.01041667,0.00000000,5.11000000 +195,chr22,15862589,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,49.98000000,34.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.08333333,193.00000000,8.53982301,0.00518135,0.00000000,4.39000000 +196,chr22,15863808,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,55.95000000,40.00000000,ref,1.00000000,0.01265823,87.00000000,3.84955752,0.09195402,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.07216495,210.00000000,9.29203540,0.07619048,0.00000000,4.34000000 +197,chr22,15896335,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,33.73000000,45.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.09345794,109.00000000,4.82300885,0.01834862,0.00000000,4.80000000 +198,chr22,15920760,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.68000000,20.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,71.00000000,0.00000000,-0.32000000,0.00000000,,0.12359551,90.00000000,3.98230088,0.01111111,0.00000000,4.46000000 +199,chr22,15946380,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,42.75000000,124.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-3.01000000,0.00000000,,0.13953488,86.00000000,3.80530973,0.00000000,0.00000000,5.98000000 +200,chr22,16039493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,16.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.38000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,5.75000000 +201,chr22,16062726,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.92000000,18.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.90000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.03157895,0.00000000,6.44000000 +202,chr22,16086927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-1.94000000,0.00000000,,0.12121212,67.00000000,2.96460177,0.00000000,0.00000000,5.42000000 +203,chr22,16091132,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.47000000 +204,chr22,16104021,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.88000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,4.76000000 +205,chr22,16108248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.49000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.02777778,0.00000000,6.27000000 +206,chr22,16115191,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +207,chr22,16122492,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,49.00000000,0.00000000,-1.58000000,0.00000000,,0.46666667,77.00000000,3.40707965,0.02597403,0.00000000,4.41000000 +208,chr22,16122598,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.31000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.54000000,0.00000000,,0.48717949,78.00000000,3.45132743,0.00000000,0.00000000,4.51000000 +209,chr22,16122710,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.09000000,0.00000000,,0.47540984,64.00000000,2.83185841,0.03125000,0.00000000,8.24000000 +210,chr22,16122760,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.45000000,0.00000000,,0.57894737,57.00000000,2.52212389,0.00000000,0.00000000,8.77000000 +211,chr22,16122942,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.45238095,84.00000000,3.71681416,0.00000000,0.00000000,7.85000000 +212,chr22,16123197,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.16000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.42000000,0.00000000,,0.40000000,65.00000000,2.87610619,0.00000000,0.00000000,8.66000000 +213,chr22,16123677,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.54000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.06000000 +214,chr22,16123983,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,53.05000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,54.00000000,2.38938053,0.00000000,0.00000000,4.36000000 +215,chr22,16123984,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.05000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,54.00000000,2.38938053,0.00000000,0.00000000,4.36000000 +216,chr22,16124266,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.30000000 +217,chr22,16124352,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.25000000,0.00000000,,0.45098039,52.00000000,2.30088496,0.01923077,0.00000000,6.10000000 +218,chr22,16124604,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,31.00000000,0.00000000,0.37000000,0.00000000,,0.46031746,73.00000000,3.23008850,0.12328767,0.00000000,3.92000000 +219,chr22,16124792,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.63000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,0.94000000,0.00000000,,0.55555556,55.00000000,2.43362832,0.01818182,0.00000000,4.32000000 +220,chr22,16124801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.19000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-2.51000000,0.00000000,,0.27272727,55.00000000,2.43362832,0.00000000,0.00000000,7.07000000 +221,chr22,16124873,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.45000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.04000000,0.00000000,,0.43103448,59.00000000,2.61061947,0.01694915,0.00000000,7.57000000 +222,chr22,16124912,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.14000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,4.20000000 +223,chr22,16124959,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.75000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-2.37000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,4.26000000 +224,chr22,16125120,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.32000000,0.00000000,,0.48000000,75.00000000,3.31858407,0.00000000,0.00000000,3.59000000 +225,chr22,16125374,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.59000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.59000000,0.00000000,,0.54098361,62.00000000,2.74336283,0.01612903,0.00000000,3.63000000 +226,chr22,16125386,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.85000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,0.42000000,0.00000000,,0.56451613,64.00000000,2.83185841,0.03125000,0.00000000,3.60000000 +227,chr22,16125535,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.95000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,0.51000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.01408451,0.00000000,4.31000000 +228,chr22,16125941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.84000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,8.01000000 +229,chr22,16126243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.65000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,6.02000000 +230,chr22,16126269,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.45000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.61000000 +231,chr22,16127334,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.41000000,16.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.56923077,66.00000000,2.92035398,0.01515152,0.00000000,7.53000000 +232,chr22,16127694,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.01000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.65000000,0.00000000,,0.31481481,60.00000000,2.65486726,0.10000000,0.00000000,6.68000000 +233,chr22,16128386,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,1.00000000,0.00000000,,0.29411765,74.00000000,3.27433628,0.08108108,0.00000000,6.09000000 +234,chr22,16128396,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.33333333,76.00000000,3.36283186,0.09210526,0.00000000,7.96000000 +235,chr22,16128968,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.63000000,0.00000000,,0.51807229,86.00000000,3.80530973,0.03488372,0.00000000,8.14000000 +236,chr22,16129094,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-1.89000000,0.00000000,,0.45454545,58.00000000,2.56637168,0.05172414,0.00000000,4.30000000 +237,chr22,16129577,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.77000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,37.00000000,0.00000000,0.39000000,0.00000000,,0.53125000,64.00000000,2.83185841,0.00000000,0.00000000,3.75000000 +238,chr22,16129604,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.64000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,0.13000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.01587302,0.00000000,3.95000000 +239,chr22,16129626,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,36.00000000,0.00000000,0.56000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.00000000,0.00000000,3.69000000 +240,chr22,16130136,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.88000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,98.00000000,0.00000000,1.17000000,0.00000000,,0.40845070,72.00000000,3.18584071,0.01388889,0.00000000,7.77000000 +241,chr22,16130169,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,0.00000000,2.45000000,0.00000000,,0.34285714,71.00000000,3.14159292,0.01408451,0.00000000,13.20000000 +242,chr22,16130328,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.91000000,0.00000000,,0.45762712,59.00000000,2.61061947,0.00000000,0.00000000,8.08000000 +243,chr22,16130580,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,57.78000000,8.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,21.00000000,0.00000000,-0.39000000,0.00000000,,0.38888889,74.00000000,3.27433628,0.02702703,0.00000000,3.14000000 +244,chr22,16130638,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.47000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.00000000,0.00000000,7.95000000 +245,chr22,16131250,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,-2.46000000,0.00000000,,0.45454545,90.00000000,3.98230088,0.00000000,0.00000000,8.67000000 +246,chr22,16131347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,0.20000000,0.00000000,,0.48387097,94.00000000,4.15929204,0.01063830,0.00000000,4.18000000 +247,chr22,16131932,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.48000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.37500000,89.00000000,3.93805310,0.01123596,0.00000000,8.44000000 +248,chr22,16132140,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,-0.48000000,0.00000000,,0.32467532,77.00000000,3.40707965,0.00000000,0.00000000,8.72000000 +249,chr22,16132677,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,0.41000000,0.00000000,,0.32835821,69.00000000,3.05309735,0.02898551,0.00000000,4.47000000 +250,chr22,16132814,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-2.28000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,8.52000000 +251,chr22,16132845,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.88000000,0.00000000,,0.46052632,76.00000000,3.36283186,0.00000000,0.00000000,5.99000000 +252,chr22,16132992,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.70000000,0.00000000,,0.47619048,86.00000000,3.80530973,0.02325581,0.00000000,8.23000000 +253,chr22,16133090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.75000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,7.20000000 +254,chr22,16133180,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,0.65000000,0.00000000,,0.39062500,64.00000000,2.83185841,0.00000000,0.00000000,6.44000000 +255,chr22,16133375,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.35000000,2.00000000,ref,1.00000000,0.05882353,17.00000000,0.75221239,0.00000000,0.00000000,5.00000000,0.00000000,-1.86000000,0.00000000,,0.33783784,74.00000000,3.27433628,0.00000000,0.00000000,3.24000000 +256,chr22,16133434,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,53.00000000,0.00000000,0.31000000,0.00000000,,0.36111111,74.00000000,3.27433628,0.02702703,0.00000000,4.89000000 +257,chr22,16133506,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.08000000,0.00000000,,0.30508475,61.00000000,2.69911504,0.01639344,0.00000000,6.98000000 +258,chr22,16133554,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.44000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.28571429,49.00000000,2.16814159,0.00000000,0.00000000,6.57000000 +259,chr22,16133603,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.67000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-1.44000000,0.00000000,,0.31250000,64.00000000,2.83185841,0.00000000,0.00000000,8.05000000 +260,chr22,16133642,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.62000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,40.00000000,0.00000000,-1.80000000,0.00000000,,0.37931034,63.00000000,2.78761062,0.03174603,0.00000000,4.48000000 +261,chr22,16133893,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-1.18000000,0.00000000,,0.40740741,56.00000000,2.47787611,0.03571429,0.00000000,4.67000000 +262,chr22,16133918,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.87000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.01538462,0.00000000,4.47000000 +263,chr22,16134469,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.60810811,75.00000000,3.31858407,0.01333333,0.00000000,8.60000000 +264,chr22,16134591,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,57.00000000,0.00000000,-0.60000000,0.00000000,,0.46753247,78.00000000,3.45132743,0.01282051,0.00000000,4.79000000 +265,chr22,16134606,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,50.00000000,0.00000000,-0.47000000,0.00000000,,0.49367089,79.00000000,3.49557522,0.00000000,0.00000000,4.17000000 +266,chr22,16134752,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.45454545,79.00000000,3.49557522,0.02531646,0.00000000,8.30000000 +267,chr22,16135263,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.59000000,0.00000000,,0.46511628,86.00000000,3.80530973,0.00000000,0.00000000,7.70000000 +268,chr22,16135608,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,32.00000000,0.00000000,-1.71000000,0.00000000,,0.44705882,86.00000000,3.80530973,0.01162791,0.00000000,3.35000000 +269,chr22,16136260,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.21000000,8.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,109.00000000,0.00000000,-0.38000000,0.00000000,,0.44594595,75.00000000,3.31858407,0.01333333,0.00000000,12.31000000 +270,chr22,16136382,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.16000000,7.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.36363636,77.00000000,3.40707965,0.00000000,0.00000000,8.76000000 +271,chr22,16136750,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.58000000,1.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-1.14000000,0.00000000,,0.37288136,59.00000000,2.61061947,0.00000000,0.00000000,8.74000000 +272,chr22,16136818,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.60000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,1.47000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,13.80000000 +273,chr22,16136819,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.60000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,1.47000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,13.23000000 +274,chr22,16136832,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,55.57000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.77000000,0.00000000,,0.37500000,52.00000000,2.30088496,0.05769231,0.00000000,7.70000000 +275,chr22,16137186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.91000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.72000000,0.00000000,,0.31666667,60.00000000,2.65486726,0.00000000,0.00000000,7.29000000 +276,chr22,16137278,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.76000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.34615385,52.00000000,2.30088496,0.00000000,0.00000000,8.92000000 +277,chr22,16137304,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.67000000,7.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,-0.25000000,0.00000000,,0.37096774,63.00000000,2.78761062,0.00000000,0.00000000,8.59000000 +278,chr22,16137487,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.38000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,7.84000000 +279,chr22,16137595,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.90000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,0.60000000,0.00000000,,0.29411765,52.00000000,2.30088496,0.00000000,0.00000000,4.42000000 +280,chr22,16137676,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.82000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.29000000,0.00000000,,0.35000000,62.00000000,2.74336283,0.03225806,0.00000000,8.60000000 +281,chr22,16137688,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.85000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.35000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,8.37000000 +282,chr22,16137976,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.67000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.30000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,4.56000000 +283,chr22,16138011,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,51.00000000,0.00000000,0.54000000,0.00000000,,0.42857143,80.00000000,3.53982301,0.03750000,0.00000000,4.60000000 +284,chr22,16138234,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.44000000,0.00000000,18.00000000,0.00000000,-0.58000000,0.00000000,,0.51063830,67.00000000,2.96460177,0.28358209,0.00000000,3.36000000 +285,chr22,16138522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.76000000,0.00000000,,0.48863636,90.00000000,3.98230088,0.02222222,0.00000000,7.58000000 +286,chr22,16138587,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-2.87000000,0.00000000,,0.45454545,78.00000000,3.45132743,0.01282051,0.00000000,8.61000000 +287,chr22,16139010,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.45000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.75000000,0.00000000,,0.34210526,79.00000000,3.49557522,0.03797468,0.00000000,8.00000000 +288,chr22,16139076,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.17000000,7.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,97.00000000,0.00000000,-0.04000000,0.00000000,,0.30263158,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +289,chr22,16139350,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.67000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,52.00000000,0.00000000,-0.42000000,0.00000000,,0.43902439,85.00000000,3.76106195,0.03529412,0.00000000,4.56000000 +290,chr22,16139379,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.32000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,0.16000000,0.00000000,,0.42222222,91.00000000,4.02654867,0.01098901,0.00000000,8.17000000 +291,chr22,16139522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.47000000,6.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.67000000,0.00000000,,0.38666667,76.00000000,3.36283186,0.01315789,0.00000000,8.53000000 +292,chr22,16139908,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.00000000,0.00000000,,0.37179487,81.00000000,3.58407080,0.03703704,0.00000000,7.70000000 +293,chr22,16140111,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,56.66000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.74000000,0.00000000,,0.53521127,74.00000000,3.27433628,0.04054054,0.00000000,8.04000000 +294,chr22,16140529,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.43243243,75.00000000,3.31858407,0.01333333,0.00000000,8.56000000 +295,chr22,16140611,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,1.04000000,0.00000000,,0.40000000,72.00000000,3.18584071,0.01388889,0.00000000,4.68000000 +296,chr22,16141593,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.49000000,0.00000000,,0.41538462,69.00000000,3.05309735,0.05797101,0.00000000,7.63000000 +297,chr22,16141669,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.48000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,0.06000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.02777778,0.00000000,4.61000000 +298,chr22,16141749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.76000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,0.48000000,0.00000000,,0.32812500,67.00000000,2.96460177,0.04477612,0.00000000,7.12000000 +299,chr22,16141951,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.12000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.00000000,0.00000000,8.12000000 +300,chr22,16142519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.35000000,0.00000000,,0.43589744,78.00000000,3.45132743,0.00000000,0.00000000,8.15000000 +301,chr22,16143347,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,106.00000000,0.00000000,0.47000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.01111111,0.00000000,13.14000000 +302,chr22,16144333,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.44000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.91000000,0.00000000,,0.53333333,76.00000000,3.36283186,0.00000000,0.00000000,7.93000000 +303,chr22,16144401,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.15000000,0.00000000,,0.44871795,78.00000000,3.45132743,0.00000000,0.00000000,8.41000000 +304,chr22,16146005,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,46.00000000,0.00000000,-1.38000000,0.00000000,,0.44827586,59.00000000,2.61061947,0.00000000,0.00000000,4.60000000 +305,chr22,16146292,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.26000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,8.58000000 +306,chr22,16146757,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.43000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.33000000 +307,chr22,16146903,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.74000000,0.00000000,,0.51562500,66.00000000,2.92035398,0.03030303,0.00000000,7.99000000 +308,chr22,16147807,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.50000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.52000000 +309,chr22,16147906,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.03000000,0.00000000,,0.41666667,72.00000000,3.18584071,0.00000000,0.00000000,8.96000000 +310,chr22,16147944,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.33000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.25000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,7.66000000 +311,chr22,16148516,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.64000000,0.00000000,,0.43103448,58.00000000,2.56637168,0.00000000,0.00000000,4.00000000 +312,chr22,16149527,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.76000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.01000000,0.00000000,,0.41428571,70.00000000,3.09734513,0.00000000,0.00000000,4.24000000 +313,chr22,16149733,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,18.00000000,0.00000000,-0.19000000,0.00000000,,0.44927536,70.00000000,3.09734513,0.01428571,0.00000000,3.06000000 +314,chr22,16151478,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.60000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.19000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,5.94000000 +315,chr22,16151583,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.52000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,99.00000000,0.00000000,-0.19000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,7.88000000 +316,chr22,16151953,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.35000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.73000000,0.00000000,,0.52564103,79.00000000,3.49557522,0.01265823,0.00000000,7.82000000 +317,chr22,16151997,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.41463415,82.00000000,3.62831858,0.00000000,0.00000000,9.36000000 +318,chr22,16152774,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.19000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.01388889,0.00000000,4.32000000 +319,chr22,16153597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,0.66000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,3.70000000 +320,chr22,16153637,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.73000000,0.00000000,,0.46774194,62.00000000,2.74336283,0.00000000,0.00000000,5.89000000 +321,chr22,16154491,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.30000000,6.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,2.02000000,0.00000000,,0.39726027,75.00000000,3.31858407,0.02666667,0.00000000,7.84000000 +322,chr22,16154601,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-2.90000000,0.00000000,,0.43076923,69.00000000,3.05309735,0.04347826,0.00000000,4.62000000 +323,chr22,16154615,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-1.90000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,4.46000000 +324,chr22,16154840,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.44000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,54.00000000,0.00000000,-0.09000000,0.00000000,,0.33734940,84.00000000,3.71681416,0.00000000,0.00000000,4.08000000 +325,chr22,16155236,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.08000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.64000000,0.00000000,,0.48571429,71.00000000,3.14159292,0.01408451,0.00000000,4.12000000 +326,chr22,16155382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.46000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,69.00000000,0.00000000,1.26000000,0.00000000,,0.36363636,61.00000000,2.69911504,0.08196721,0.00000000,7.43000000 +327,chr22,16155434,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.57000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.37704918,63.00000000,2.78761062,0.03174603,0.00000000,8.07000000 +328,chr22,16155484,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.91000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.39506173,82.00000000,3.62831858,0.01219512,0.00000000,7.99000000 +329,chr22,16155703,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.95000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,4.41000000 +330,chr22,16156072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.47191011,92.00000000,4.07079646,0.02173913,0.00000000,8.32000000 +331,chr22,16156134,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.35000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.36000000,0.00000000,,0.35135135,74.00000000,3.27433628,0.00000000,0.00000000,7.69000000 +332,chr22,16156138,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.88000000,11.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,100.00000000,0.00000000,1.83000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,7.50000000 +333,chr22,16156407,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.08000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,44.00000000,0.00000000,0.37000000,0.00000000,,0.44871795,79.00000000,3.49557522,0.01265823,0.00000000,3.94000000 +334,chr22,16156443,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.38000000,14.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.87000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,7.45000000 +335,chr22,16156859,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,52.81000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.30000000,0.00000000,,0.33333333,45.00000000,1.99115044,0.00000000,0.00000000,7.81000000 +336,chr22,16156952,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.73000000,6.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-0.79000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.01754386,0.00000000,4.20000000 +337,chr22,16158283,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,40.00000000,0.00000000,-0.38000000,0.00000000,,0.47058824,60.00000000,2.65486726,0.15000000,0.00000000,4.45000000 +338,chr22,16158532,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.06000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,1.85000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,7.53000000 +339,chr22,16158605,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.36000000,0.00000000,,0.38888889,76.00000000,3.36283186,0.03947368,0.00000000,7.87000000 +340,chr22,16159296,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.16000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,47.00000000,0.00000000,-0.23000000,0.00000000,,0.47500000,81.00000000,3.58407080,0.00000000,0.00000000,4.31000000 +341,chr22,16159370,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,51.00000000,0.00000000,1.83000000,0.00000000,,0.38983051,63.00000000,2.78761062,0.06349206,0.00000000,4.94000000 +342,chr22,16160820,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,1.89000000,0.00000000,,0.37500000,72.00000000,3.18584071,0.00000000,0.00000000,7.99000000 +343,chr22,16161019,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.47000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,8.48000000 +344,chr22,16161190,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.88000000,0.00000000,,0.49315068,73.00000000,3.23008850,0.00000000,0.00000000,8.73000000 +345,chr22,16161746,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,0.12000000,0.00000000,,0.45714286,71.00000000,3.14159292,0.00000000,0.00000000,4.46000000 +346,chr22,16162219,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,99.00000000,0.00000000,-1.24000000,0.00000000,,0.34177215,79.00000000,3.49557522,0.00000000,0.00000000,8.65000000 +347,chr22,16162718,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.49000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,8.27000000 +348,chr22,16163442,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,-1.74000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,4.67000000 +349,chr22,16163992,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.48529412,70.00000000,3.09734513,0.02857143,0.00000000,8.32000000 +350,chr22,16164187,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.38235294,75.00000000,3.31858407,0.06666667,0.00000000,8.68000000 +351,chr22,16164263,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.25000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,79.00000000,0.00000000,1.76000000,0.00000000,,0.42028986,79.00000000,3.49557522,0.12658228,0.00000000,7.80000000 +352,chr22,16164451,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.35000000,0.00000000,,0.40740741,57.00000000,2.52212389,0.05263158,0.00000000,7.93000000 +353,chr22,16164468,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.75000000,0.00000000,,0.42105263,59.00000000,2.61061947,0.03389831,0.00000000,7.84000000 +354,chr22,16164622,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.44000000,8.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-0.12000000,0.00000000,,0.45901639,61.00000000,2.69911504,0.00000000,0.00000000,3.59000000 +355,chr22,16165476,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.12000000,0.00000000,,0.39344262,62.00000000,2.74336283,0.01612903,0.00000000,4.19000000 +356,chr22,16165479,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,38.00000000,0.00000000,-2.11000000,0.00000000,,0.44827586,60.00000000,2.65486726,0.01666667,0.00000000,3.94000000 +357,chr22,16165689,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.87000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.49000000,0.00000000,,0.34482759,58.00000000,2.56637168,0.00000000,0.00000000,4.23000000 +358,chr22,16166163,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.34920635,64.00000000,2.83185841,0.01562500,0.00000000,8.06000000 +359,chr22,16166263,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.41269841,64.00000000,2.83185841,0.01562500,0.00000000,7.47000000 +360,chr22,16166593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.24000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,39.00000000,0.00000000,0.43000000,0.00000000,,0.42857143,58.00000000,2.56637168,0.03448276,0.00000000,4.01000000 +361,chr22,16166795,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.92000000,8.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-1.35000000,0.00000000,,0.50000000,53.00000000,2.34513274,0.01886792,0.00000000,3.84000000 +362,chr22,16166830,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.21000000,11.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.05000000,0.00000000,,0.47540984,62.00000000,2.74336283,0.01612903,0.00000000,3.58000000 +363,chr22,16167211,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.98000000,0.00000000,,0.41935484,64.00000000,2.83185841,0.03125000,0.00000000,4.36000000 +364,chr22,16167225,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,2.72000000,0.00000000,,0.38095238,66.00000000,2.92035398,0.04545455,0.00000000,5.20000000 +365,chr22,16167272,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,0.57000000,0.00000000,,0.32786885,62.00000000,2.74336283,0.01612903,0.00000000,4.08000000 +366,chr22,16167380,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,53.56000000,13.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.21000000,0.00000000,,0.43333333,30.00000000,1.32743363,0.00000000,0.00000000,3.87000000 +367,chr22,16167424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,52.42000000,18.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-0.18000000,0.00000000,,0.44444444,36.00000000,1.59292035,0.00000000,0.00000000,4.24000000 +368,chr22,16167678,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.82000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.85000000 +369,chr22,16167727,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.60000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.27586207,58.00000000,2.56637168,0.00000000,0.00000000,6.09000000 +370,chr22,16167777,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.07000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.07000000,0.00000000,,0.29411765,52.00000000,2.30088496,0.01923077,0.00000000,6.89000000 +371,chr22,16168019,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.94000000,5.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,0.62000000,0.00000000,,0.40000000,52.00000000,2.30088496,0.01923077,0.00000000,3.51000000 +372,chr22,16168072,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.40000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,30.00000000,0.00000000,-1.30000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,3.40000000 +373,chr22,16168276,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.62000000,0.00000000,,0.47560976,82.00000000,3.62831858,0.00000000,0.00000000,4.62000000 +374,chr22,16168927,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,0.15000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,4.49000000 +375,chr22,16169206,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.83000000,0.00000000,,0.45977011,88.00000000,3.89380531,0.01136364,0.00000000,8.04000000 +376,chr22,16169268,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +377,chr22,16169642,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-1.62000000,0.00000000,,0.50000000,78.00000000,3.45132743,0.00000000,0.00000000,4.04000000 +378,chr22,16170218,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,1.28000000,0.00000000,,0.43243243,77.00000000,3.40707965,0.03896104,0.00000000,7.93000000 +379,chr22,16170431,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.66000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,60.00000000,0.00000000,-1.70000000,0.00000000,,0.48684211,77.00000000,3.40707965,0.00000000,0.00000000,7.75000000 +380,chr22,16170522,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.49000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.02352941,0.00000000,8.41000000 +381,chr22,16170796,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,-1.09000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +382,chr22,16170969,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.54000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-0.85000000,0.00000000,,0.52380952,86.00000000,3.80530973,0.02325581,0.00000000,4.11000000 +383,chr22,16171230,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,7.96000000 +384,chr22,16171430,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.42000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-3.55000000,0.00000000,,0.43617021,97.00000000,4.29203540,0.03092784,0.00000000,7.40000000 +385,chr22,16171475,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.84000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,96.00000000,0.00000000,1.43000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,7.41000000 +386,chr22,16171510,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.26000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,92.00000000,0.00000000,-1.73000000,0.00000000,,0.29729730,76.00000000,3.36283186,0.02631579,0.00000000,6.08000000 +387,chr22,16171752,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,-1.58000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,4.05000000 +388,chr22,16171809,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,-0.23000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,4.40000000 +389,chr22,16172029,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.01000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,55.00000000,0.00000000,-0.74000000,0.00000000,,0.36065574,62.00000000,2.74336283,0.01612903,0.00000000,4.65000000 +390,chr22,16172168,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.58000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.37000000,0.00000000,,0.45833333,74.00000000,3.27433628,0.01351351,0.00000000,7.82000000 +391,chr22,16172275,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,51.00000000,0.00000000,0.15000000,0.00000000,,0.38961039,80.00000000,3.53982301,0.03750000,0.00000000,4.39000000 +392,chr22,16172605,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,31.00000000,0.00000000,-1.39000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,3.20000000 +393,chr22,16172618,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,-0.18000000,0.00000000,,0.47500000,80.00000000,3.53982301,0.00000000,0.00000000,3.20000000 +394,chr22,16173096,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.03000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,90.00000000,0.00000000,1.14000000,0.00000000,,0.33333333,80.00000000,3.53982301,0.02500000,0.00000000,7.30000000 +395,chr22,16173097,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.06000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,92.00000000,0.00000000,1.10000000,0.00000000,,0.33333333,81.00000000,3.58407080,0.02469136,0.00000000,7.30000000 +396,chr22,16173627,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-2.62000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.23000000 +397,chr22,16174279,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.76000000,0.00000000,,0.55263158,78.00000000,3.45132743,0.02564103,0.00000000,7.82000000 +398,chr22,16174311,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.76000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,1.32000000,0.00000000,,0.56578947,77.00000000,3.40707965,0.01298701,0.00000000,8.32000000 +399,chr22,16174471,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.01000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,4.51000000 +400,chr22,16174578,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.45000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.70000000 +401,chr22,16174585,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.74000000,0.00000000,,0.39726027,74.00000000,3.27433628,0.00000000,0.00000000,8.94000000 +402,chr22,16174668,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.17000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,8.30000000 +403,chr22,16174939,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.00000000,0.00000000,8.51000000 +404,chr22,16175116,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.99000000,0.00000000,,0.47619048,85.00000000,3.76106195,0.01176471,0.00000000,8.76000000 +405,chr22,16176203,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.25000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.41000000,0.00000000,,0.43548387,63.00000000,2.78761062,0.01587302,0.00000000,4.28000000 +406,chr22,16176826,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,58.00000000,0.00000000,0.90000000,0.00000000,,0.42307692,80.00000000,3.53982301,0.01250000,0.00000000,6.24000000 +407,chr22,16176930,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.66000000,0.00000000,,0.40000000,66.00000000,2.92035398,0.09090909,0.00000000,8.41000000 +408,chr22,16177136,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.47000000,0.00000000,,0.49367089,80.00000000,3.53982301,0.01250000,0.00000000,4.24000000 +409,chr22,16177619,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,30.00000000,0.00000000,-0.06000000,0.00000000,,0.34782609,92.00000000,4.07079646,0.00000000,0.00000000,2.97000000 +410,chr22,16178107,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,0.16000000,0.00000000,,0.40697674,87.00000000,3.84955752,0.01149425,0.00000000,4.52000000 +411,chr22,16178521,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,1.42000000,0.00000000,,0.38235294,70.00000000,3.09734513,0.02857143,0.00000000,4.68000000 +412,chr22,16178754,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.96000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-1.30000000,0.00000000,,0.46250000,82.00000000,3.62831858,0.01219512,0.00000000,8.35000000 +413,chr22,16179004,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.71000000,0.00000000,,0.58571429,74.00000000,3.27433628,0.05405405,0.00000000,8.06000000 +414,chr22,16179334,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-3.19000000,0.00000000,,0.50000000,92.00000000,4.07079646,0.00000000,0.00000000,8.52000000 +415,chr22,16179497,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.45000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.41000000,0.00000000,,0.58024691,82.00000000,3.62831858,0.00000000,0.00000000,8.64000000 +416,chr22,16179693,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.02000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,8.54000000 +417,chr22,16179804,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.47000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.76000000,0.00000000,,0.52542373,63.00000000,2.78761062,0.06349206,0.00000000,8.29000000 +418,chr22,16179865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.59000000,0.00000000,,0.53448276,61.00000000,2.69911504,0.03278689,0.00000000,4.39000000 +419,chr22,16179936,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.66000000,0.00000000,,0.53225806,64.00000000,2.83185841,0.03125000,0.00000000,4.46000000 +420,chr22,16180086,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.77000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.18000000 +421,chr22,16180564,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.18000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.66000000,0.00000000,,0.45454545,70.00000000,3.09734513,0.05714286,0.00000000,3.92000000 +422,chr22,16180577,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.72000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,1.78000000,0.00000000,,0.43835616,77.00000000,3.40707965,0.05194805,0.00000000,4.01000000 +423,chr22,16180580,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.61000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-2.22000000,0.00000000,,0.45070423,75.00000000,3.31858407,0.05333333,0.00000000,4.15000000 +424,chr22,16180956,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.16000000,0.00000000,,0.54687500,66.00000000,2.92035398,0.01515152,0.00000000,4.14000000 +425,chr22,16180962,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.48000000,0.00000000,,0.50746269,70.00000000,3.09734513,0.02857143,0.00000000,7.64000000 +426,chr22,16181290,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.92000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.77000000,0.00000000,,0.53947368,76.00000000,3.36283186,0.00000000,0.00000000,4.09000000 +427,chr22,16181827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.94000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.33000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.00000000,0.00000000,5.81000000 +428,chr22,16181909,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.60000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.51428571,70.00000000,3.09734513,0.00000000,0.00000000,7.87000000 +429,chr22,16182090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.45000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,8.71000000 +430,chr22,16182168,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.92000000,0.00000000,,0.50632911,80.00000000,3.53982301,0.01250000,0.00000000,8.76000000 +431,chr22,16182178,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.55000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.01176471,0.00000000,8.73000000 +432,chr22,16182275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.86000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.04000000,0.00000000,,0.37349398,83.00000000,3.67256637,0.00000000,0.00000000,7.87000000 +433,chr22,16182299,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.22000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,0.25000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,4.31000000 +434,chr22,16182394,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.96000000,0.00000000,,0.46478873,72.00000000,3.18584071,0.01388889,0.00000000,3.73000000 +435,chr22,16182457,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.24000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,0.80000000,0.00000000,,0.59090909,66.00000000,2.92035398,0.00000000,0.00000000,4.00000000 +436,chr22,16182573,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.54411765,68.00000000,3.00884956,0.00000000,0.00000000,8.17000000 +437,chr22,16182669,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,41.00000000,0.00000000,0.40000000,0.00000000,,0.48148148,82.00000000,3.62831858,0.01219512,0.00000000,3.97000000 +438,chr22,16182974,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.19000000,0.00000000,,0.48780488,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +439,chr22,16183066,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,42.00000000,0.00000000,-1.13000000,0.00000000,,0.46268657,83.00000000,3.67256637,0.16867470,0.00000000,4.15000000 +440,chr22,16183106,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,16.00000000,0.00000000,-0.12000000,0.00000000,,0.50000000,75.00000000,3.31858407,0.12000000,0.00000000,3.27000000 +441,chr22,16183180,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,0.62000000,0.00000000,,0.55932203,59.00000000,2.61061947,0.00000000,0.00000000,4.22000000 +442,chr22,16183224,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,-1.56000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,3.66000000 +443,chr22,16183398,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.00000000,0.00000000,,0.48529412,69.00000000,3.05309735,0.01449275,0.00000000,4.08000000 +444,chr22,16183809,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.40000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,8.13000000 +445,chr22,16183880,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,7.93000000 +446,chr22,16183903,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.46753247,79.00000000,3.49557522,0.01265823,0.00000000,8.62000000 +447,chr22,16183975,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.06000000,0.00000000,,0.51351351,76.00000000,3.36283186,0.02631579,0.00000000,4.42000000 +448,chr22,16184892,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.68000000,15.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,7.51000000 +449,chr22,16184948,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.22000000,20.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.95000000,0.00000000,,0.42622951,63.00000000,2.78761062,0.03174603,0.00000000,7.79000000 +450,chr22,16185049,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,52.35000000,21.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,0.09000000,0.00000000,,0.39583333,49.00000000,2.16814159,0.02040816,0.00000000,3.70000000 +451,chr22,16185078,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.54000000,21.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,24.00000000,0.00000000,0.32000000,0.00000000,,0.41666667,49.00000000,2.16814159,0.02040816,0.00000000,3.55000000 +452,chr22,16185379,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,-0.37000000,0.00000000,,0.40677966,59.00000000,2.61061947,0.00000000,0.00000000,4.07000000 +453,chr22,16185643,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.36000000,10.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,41.00000000,0.00000000,-2.99000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.00000000,0.00000000,3.90000000 +454,chr22,16185848,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,48.81000000,23.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,-1.50000000,0.00000000,,0.42857143,35.00000000,1.54867257,0.00000000,0.00000000,3.61000000 +455,chr22,16186231,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.19000000,20.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,11.00000000,0.00000000,1.01000000,0.00000000,,0.38709677,32.00000000,1.41592920,0.03125000,0.00000000,3.82000000 +456,chr22,16186672,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,40.86000000,37.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,13.00000000,0.00000000,-0.53000000,0.00000000,,0.40909091,22.00000000,0.97345133,0.00000000,0.00000000,3.57000000 +457,chr22,16186878,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,52.05000000,24.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,46.00000000,0.00000000,0.21000000,0.00000000,,0.36538462,52.00000000,2.30088496,0.00000000,0.00000000,4.10000000 +458,chr22,16187017,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.41000000,30.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.74000000,0.00000000,,0.48076923,52.00000000,2.30088496,0.00000000,0.00000000,4.06000000 +459,chr22,16187126,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,35.56000000,48.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,8.00000000,0.00000000,0.14000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.50000000 +460,chr22,16187437,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,49.21000000,36.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,43.00000000,0.00000000,-0.99000000,0.00000000,,0.52830189,53.00000000,2.34513274,0.00000000,0.00000000,3.96000000 +461,chr22,16187460,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,46.39000000,37.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.74000000,0.00000000,,0.48571429,35.00000000,1.54867257,0.00000000,0.00000000,4.02000000 +462,chr22,16187826,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,51.29000000,21.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,43.00000000,0.00000000,1.42000000,0.00000000,,0.36111111,38.00000000,1.68141593,0.05263158,0.00000000,4.07000000 +463,chr22,16187829,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,51.53000000,21.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,45.00000000,0.00000000,1.57000000,0.00000000,,0.35135135,39.00000000,1.72566372,0.05128205,0.00000000,4.09000000 +464,chr22,16188029,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.24000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.44000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,6.77000000 +465,chr22,16188332,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.77000000,12.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,-0.57000000,0.00000000,,0.45000000,41.00000000,1.81415929,0.02439024,0.00000000,4.03000000 +466,chr22,16188597,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,48.62000000,23.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,50.00000000,0.00000000,1.14000000,0.00000000,,0.27272727,23.00000000,1.01769912,0.04347826,0.00000000,2.89000000 +467,chr22,16188998,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,54.90000000,14.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,0.20000000,0.00000000,,0.22448980,49.00000000,2.16814159,0.00000000,0.00000000,4.54000000 +468,chr22,16189184,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,53.67000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,1.44000000,0.00000000,,0.23529412,35.00000000,1.54867257,0.02857143,0.00000000,5.57000000 +469,chr22,16189188,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.67000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.44000000,0.00000000,,0.23529412,35.00000000,1.54867257,0.02857143,0.00000000,5.68000000 +470,chr22,16189545,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.26000000,5.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,13.00000000,0.00000000,-2.58000000,0.00000000,,0.44736842,38.00000000,1.68141593,0.00000000,0.00000000,3.54000000 +471,chr22,16189706,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,39.00000000,0.00000000,-1.19000000,0.00000000,,0.41860465,55.00000000,2.43362832,0.21818182,0.00000000,4.29000000 +472,chr22,16190108,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.16000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.09000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.85000000 +473,chr22,16190115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.16000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,0.49000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.37000000 +474,chr22,16190174,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.35000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.48387097,63.00000000,2.78761062,0.01587302,0.01562500,8.14000000 +475,chr22,16190187,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.17000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.09000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.68000000 +476,chr22,16191048,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.33000000,0.00000000,,0.52000000,76.00000000,3.36283186,0.01315789,0.00000000,8.40000000 +477,chr22,16191310,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-2.12000000,0.00000000,,0.54216867,85.00000000,3.76106195,0.02352941,0.00000000,8.16000000 +478,chr22,16191730,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.37000000,0.00000000,,0.51388889,73.00000000,3.23008850,0.01369863,0.00000000,4.51000000 +479,chr22,16192804,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,36.00000000,0.00000000,0.55000000,0.00000000,,0.32352941,70.00000000,3.09734513,0.02857143,0.00000000,3.92000000 +480,chr22,16192878,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,41.00000000,0.00000000,-0.25000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,4.31000000 +481,chr22,16193140,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.95000000,0.00000000,,0.38888889,75.00000000,3.31858407,0.04000000,0.00000000,8.15000000 +482,chr22,16193472,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.32000000,0.00000000,,0.44117647,72.00000000,3.18584071,0.05555556,0.00000000,8.33000000 +483,chr22,16193567,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.42424242,68.00000000,3.00884956,0.02941176,0.00000000,7.82000000 +484,chr22,16193717,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.98000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.90000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,4.51000000 +485,chr22,16193988,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.78000000,0.00000000,,0.49295775,71.00000000,3.14159292,0.00000000,0.00000000,4.41000000 +486,chr22,16194081,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,0.18000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,4.57000000 +487,chr22,16195298,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.81000000,9.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,-0.74000000,0.00000000,,0.46666667,61.00000000,2.69911504,0.00000000,0.00000000,3.63000000 +488,chr22,16195504,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.67000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,0.50000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,6.05000000 +489,chr22,16195800,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.09000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.46478873,73.00000000,3.23008850,0.02739726,0.00000000,7.49000000 +490,chr22,16196062,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,99.00000000,0.00000000,-0.21000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.01315789,0.00000000,8.45000000 +491,chr22,16196362,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.18000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.59000000 +492,chr22,16196556,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.39705882,71.00000000,3.14159292,0.00000000,0.00000000,8.46000000 +493,chr22,16196645,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,0.20000000,0.00000000,,0.45333333,77.00000000,3.40707965,0.02597403,0.00000000,5.88000000 +494,chr22,16196814,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-1.01000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.01369863,0.00000000,8.49000000 +495,chr22,16196823,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.33000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.68000000 +496,chr22,16196956,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,35.00000000,0.00000000,0.07000000,0.00000000,,0.39215686,51.00000000,2.25663717,0.00000000,0.00000000,3.78000000 +497,chr22,16197003,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,28.00000000,0.00000000,-0.45000000,0.00000000,,0.47916667,48.00000000,2.12389381,0.00000000,0.00000000,3.58000000 +498,chr22,16197281,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.22000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.14000000,0.00000000,,0.53703704,55.00000000,2.43362832,0.00000000,0.00000000,5.66000000 +499,chr22,16197403,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.87000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.30000000,0.00000000,,0.45000000,60.00000000,2.65486726,0.00000000,0.00000000,9.09000000 +500,chr22,16197423,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.36000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.42187500,64.00000000,2.83185841,0.00000000,0.00000000,9.13000000 +501,chr22,16197638,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.73000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,-0.30000000,0.00000000,,0.40625000,67.00000000,2.96460177,0.01492537,0.00000000,6.26000000 +502,chr22,16198000,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.58000000,7.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,51.00000000,0.00000000,-1.57000000,0.00000000,,0.32835821,68.00000000,3.00884956,0.01470588,0.00000000,4.04000000 +503,chr22,16198043,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.41000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.53000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.01234568,0.00000000,8.09000000 +504,chr22,16198158,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.49000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.18000000,0.00000000,,0.44444444,75.00000000,3.31858407,0.04000000,0.00000000,7.92000000 +505,chr22,16198221,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.48000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.49000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.87000000 +506,chr22,16198718,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.95000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,-1.00000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.16000000 +507,chr22,16198869,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.97000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.99000000,0.00000000,,0.36250000,86.00000000,3.80530973,0.06976744,0.00000000,7.52000000 +508,chr22,16199127,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.51250000,80.00000000,3.53982301,0.00000000,0.00000000,4.21000000 +509,chr22,16199242,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,47.00000000,0.00000000,2.47000000,0.00000000,,0.35897436,79.00000000,3.49557522,0.01265823,0.00000000,4.18000000 +510,chr22,16199562,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.02000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,0.00000000,1.04000000,0.00000000,,0.44067797,61.00000000,2.69911504,0.03278689,0.00000000,3.95000000 +511,chr22,16199564,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.05000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,1.04000000,0.00000000,,0.44067797,61.00000000,2.69911504,0.03278689,0.00000000,4.06000000 +512,chr22,16199574,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.49000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,1.05000000,0.00000000,,0.45312500,66.00000000,2.92035398,0.03030303,0.00000000,3.97000000 +513,chr22,16199997,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.60000000,0.00000000,,0.37349398,85.00000000,3.76106195,0.02352941,0.00000000,7.65000000 +514,chr22,16200509,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.99000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.02173913,0.00000000,8.16000000 +515,chr22,16200702,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.28000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.05000000,0.00000000,,0.44736842,76.00000000,3.36283186,0.00000000,0.00000000,8.76000000 +516,chr22,16200812,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,1.06000000,0.00000000,,0.41666667,75.00000000,3.31858407,0.04000000,0.00000000,4.61000000 +517,chr22,16200821,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.55000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,36.00000000,0.00000000,-1.78000000,0.00000000,,0.45714286,74.00000000,3.27433628,0.04054054,0.00000000,4.07000000 +518,chr22,16201582,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.88000000,6.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,0.00000000,0.44000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.01612903,0.00000000,3.60000000 +519,chr22,16202247,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,1.71000000,0.00000000,,0.42424242,68.00000000,3.00884956,0.02941176,0.00000000,8.13000000 +520,chr22,16202292,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,2.16000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.14000000 +521,chr22,16202942,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.50000000,88.00000000,3.89380531,0.02272727,0.00000000,8.20000000 +522,chr22,16202965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.77000000,0.00000000,,0.50588235,88.00000000,3.89380531,0.02272727,0.00000000,4.70000000 +523,chr22,16203345,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.90000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.00000000,0.00000000,9.28000000 +524,chr22,16203476,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.69000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.38750000,80.00000000,3.53982301,0.00000000,0.00000000,7.88000000 +525,chr22,16203611,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.71000000,0.00000000,,0.53333333,47.00000000,2.07964602,0.04255319,0.00000000,4.65000000 +526,chr22,16203682,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,-1.67000000,0.00000000,,0.50000000,54.00000000,2.38938053,0.03703704,0.00000000,4.22000000 +527,chr22,16203704,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,44.00000000,0.00000000,0.85000000,0.00000000,,0.36842105,59.00000000,2.61061947,0.03389831,0.00000000,4.34000000 +528,chr22,16203775,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,0.36000000,0.00000000,,0.41333333,76.00000000,3.36283186,0.01315789,0.00000000,7.89000000 +529,chr22,16203853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.56000000,2.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,100.00000000,0.00000000,0.28000000,0.00000000,,0.39534884,87.00000000,3.84955752,0.01149425,0.00000000,8.17000000 +530,chr22,16203880,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.32000000,3.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.75000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.27000000 +531,chr22,16204187,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.47000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,24.00000000,0.00000000,-0.30000000,0.00000000,,0.49350649,83.00000000,3.67256637,0.06024096,0.00000000,3.55000000 +532,chr22,16204203,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-1.63000000,0.00000000,,0.48437500,70.00000000,3.09734513,0.08571429,0.00000000,4.12000000 +533,chr22,16204791,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.91000000,0.00000000,,0.51282051,79.00000000,3.49557522,0.01265823,0.00000000,4.68000000 +534,chr22,16204859,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,2.06000000,0.00000000,,0.37647059,91.00000000,4.02654867,0.06593407,0.00000000,7.67000000 +535,chr22,16204860,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.65000000,0.00000000,,0.36144578,89.00000000,3.93805310,0.06741573,0.00000000,7.67000000 +536,chr22,16205109,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,57.81000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.95000000,0.00000000,,0.34246575,73.00000000,3.23008850,0.00000000,0.00000000,7.91000000 +537,chr22,16205290,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,7.75000000 +538,chr22,16205531,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.13000000,10.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,27.00000000,0.00000000,1.60000000,0.00000000,,0.40540541,76.00000000,3.36283186,0.02631579,0.00000000,3.54000000 +539,chr22,16205685,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.12000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.59000000,0.00000000,,0.45454545,56.00000000,2.47787611,0.01785714,0.00000000,7.73000000 +540,chr22,16206835,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.00000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,7.74000000 +541,chr22,16206989,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.24000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.50000000,77.00000000,3.40707965,0.03896104,0.00000000,8.16000000 +542,chr22,16207036,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.43000000,0.00000000,,0.49333333,78.00000000,3.45132743,0.03846154,0.00000000,8.11000000 +543,chr22,16207151,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.01000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,-0.53000000,0.00000000,,0.32258065,94.00000000,4.15929204,0.01063830,0.00000000,8.07000000 +544,chr22,16207491,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.79000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.37142857,72.00000000,3.18584071,0.02777778,0.00000000,7.97000000 +545,chr22,16208549,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.10000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.93000000,0.00000000,,0.50909091,55.00000000,2.43362832,0.00000000,0.00000000,4.52000000 +546,chr22,16208683,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.01388889,0.00000000,6.14000000 +547,chr22,16208704,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,-0.08000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,4.28000000 +548,chr22,16208941,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.61000000,0.00000000,,0.30645161,64.00000000,2.83185841,0.01562500,0.00000000,6.90000000 +549,chr22,16209034,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.25000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,42.00000000,0.00000000,-0.70000000,0.00000000,,0.36206897,59.00000000,2.61061947,0.01694915,0.00000000,4.30000000 +550,chr22,16209226,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.54000000,0.00000000,,0.51111111,47.00000000,2.07964602,0.04255319,0.00000000,4.58000000 +551,chr22,16209503,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,-0.64000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,4.86000000 +552,chr22,16209674,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,43.00000000,0.00000000,-0.80000000,0.00000000,,0.53225806,63.00000000,2.78761062,0.01587302,0.00000000,4.32000000 +553,chr22,16210362,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.76000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-0.55000000,0.00000000,,0.49333333,77.00000000,3.40707965,0.01298701,0.00000000,4.02000000 +554,chr22,16210364,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.76000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,36.00000000,0.00000000,-0.35000000,0.00000000,,0.49350649,78.00000000,3.45132743,0.01282051,0.00000000,3.78000000 +555,chr22,16211005,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.41000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.49000000,0.00000000,,0.43396226,53.00000000,2.34513274,0.00000000,0.00000000,7.96000000 +556,chr22,16211446,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-1.62000000,0.00000000,,0.48214286,56.00000000,2.47787611,0.00000000,0.00000000,6.08000000 +557,chr22,16212032,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.12000000,0.00000000,,0.34375000,65.00000000,2.87610619,0.01538462,0.00000000,8.27000000 +558,chr22,16212252,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-1.31000000,0.00000000,,0.47959184,100.00000000,4.42477876,0.01000000,0.00000000,4.22000000 +559,chr22,16212512,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.85000000,13.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.46835443,79.00000000,3.49557522,0.00000000,0.00000000,8.65000000 +560,chr22,16212979,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.21000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,0.42000000,0.00000000,,0.54285714,72.00000000,3.18584071,0.02777778,0.00000000,4.46000000 +561,chr22,16213221,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.26000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.16000000,0.00000000,,0.29090909,56.00000000,2.47787611,0.01785714,0.00000000,6.41000000 +562,chr22,16214062,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.25000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.52000000,0.00000000,,0.41269841,63.00000000,2.78761062,0.00000000,0.00000000,8.01000000 +563,chr22,16214142,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.72000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.56000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.52000000 +564,chr22,16214407,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.15000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.36000000,0.00000000,,0.47058824,68.00000000,3.00884956,0.00000000,0.00000000,8.46000000 +565,chr22,16214611,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.78000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,0.24000000,0.00000000,,0.51219512,83.00000000,3.67256637,0.01204819,0.00000000,7.81000000 +566,chr22,16214960,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,46.00000000,0.00000000,-2.25000000,0.00000000,,0.58666667,78.00000000,3.45132743,0.03846154,0.00000000,4.61000000 +567,chr22,16215016,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-0.37000000,0.00000000,,0.53164557,81.00000000,3.58407080,0.02469136,0.00000000,4.34000000 +568,chr22,16215516,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.81000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.65000000,0.00000000,,0.50000000,64.00000000,2.83185841,0.03125000,0.00000000,4.43000000 +569,chr22,16215804,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.49000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.36486486,74.00000000,3.27433628,0.00000000,0.00000000,7.87000000 +570,chr22,16215970,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.29000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.37000000,0.00000000,,0.43283582,68.00000000,3.00884956,0.01470588,0.00000000,4.54000000 +571,chr22,16216086,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.76000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,0.42000000,0.00000000,,0.38333333,61.00000000,2.69911504,0.01639344,0.00000000,4.32000000 +572,chr22,16216115,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,32.00000000,0.00000000,2.21000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.00000000,0.00000000,3.61000000 +573,chr22,16216251,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.71000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-2.71000000,0.00000000,,0.31818182,67.00000000,2.96460177,0.01492537,0.00000000,7.08000000 +574,chr22,16216529,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,1.87000000,0.00000000,,0.33333333,53.00000000,2.34513274,0.03773585,0.00000000,7.78000000 +575,chr22,16216766,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,27.00000000,0.00000000,-0.34000000,0.00000000,,0.52112676,74.00000000,3.27433628,0.02702703,0.00000000,3.71000000 +576,chr22,16217028,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.81000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.68000000,0.00000000,,0.50980392,52.00000000,2.30088496,0.01923077,0.00000000,6.00000000 +577,chr22,16217062,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.54000000,4.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,49.00000000,0.00000000,-2.32000000,0.00000000,,0.42000000,51.00000000,2.25663717,0.01960784,0.00000000,4.16000000 +578,chr22,16217089,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.21000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,1.06000000,0.00000000,,0.42592593,54.00000000,2.38938053,0.00000000,0.00000000,4.38000000 +579,chr22,16217467,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.51000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,-0.60000000,0.00000000,,0.34782609,70.00000000,3.09734513,0.01428571,0.00000000,5.00000000 +580,chr22,16218566,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.01000000,6.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.91000000,0.00000000,,0.45454545,67.00000000,2.96460177,0.01492537,0.00000000,3.51000000 +581,chr22,16218751,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.11000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.00000000,0.00000000,7.55000000 +582,chr22,16218846,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,8.06000000 +583,chr22,16219095,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.49425287,87.00000000,3.84955752,0.00000000,0.00000000,7.91000000 +584,chr22,16219365,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.71000000,0.00000000,,0.46153846,79.00000000,3.49557522,0.00000000,0.00000000,4.44000000 +585,chr22,16219470,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,2.21000000,0.00000000,,0.40000000,80.00000000,3.53982301,0.00000000,0.00000000,8.26000000 +586,chr22,16219517,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.88000000,0.00000000,,0.29729730,76.00000000,3.36283186,0.01315789,0.00000000,7.18000000 +587,chr22,16219522,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.08000000,0.00000000,,0.31081081,76.00000000,3.36283186,0.01315789,0.00000000,3.76000000 +588,chr22,16219574,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,0.00000000,-1.56000000,0.00000000,,0.32835821,68.00000000,3.00884956,0.01470588,0.00000000,4.30000000 +589,chr22,16219705,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.64000000,0.00000000,,0.40540541,75.00000000,3.31858407,0.01333333,0.00000000,8.43000000 +590,chr22,16219895,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.66000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.59000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,8.80000000 +591,chr22,16220055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.63000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.96000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,7.92000000 +592,chr22,16220205,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.95000000,0.00000000,,0.45588235,69.00000000,3.05309735,0.01449275,0.00000000,4.54000000 +593,chr22,16220253,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.04000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.64000000,0.00000000,,0.43636364,57.00000000,2.52212389,0.03508772,0.00000000,6.09000000 +594,chr22,16220367,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.04000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,31.00000000,0.00000000,0.34000000,0.00000000,,0.41176471,69.00000000,3.05309735,0.01449275,0.00000000,3.65000000 +595,chr22,16220976,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,38.00000000,0.00000000,-2.45000000,0.00000000,,0.28813559,59.00000000,2.61061947,0.00000000,0.00000000,2.81000000 +596,chr22,16221337,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.94000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,4.28000000 +597,chr22,16221479,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.67000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-0.60000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.03225806,0.00000000,4.71000000 +598,chr22,16221728,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.86000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,2.04000000,0.00000000,,0.31666667,63.00000000,2.78761062,0.03174603,0.00000000,4.04000000 +599,chr22,16221750,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,-1.65000000,0.00000000,,0.33898305,59.00000000,2.61061947,0.00000000,0.00000000,4.37000000 +600,chr22,16221860,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.86000000,3.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.00000000,29.00000000,0.00000000,-0.01000000,0.00000000,,0.40677966,61.00000000,2.69911504,0.01639344,0.00000000,3.76000000 +601,chr22,16221897,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.29000000,4.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,22.00000000,0.00000000,-1.13000000,0.00000000,,0.40000000,53.00000000,2.34513274,0.05660377,0.00000000,4.06000000 +602,chr22,16222221,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.40000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-1.19000000,0.00000000,,0.48148148,57.00000000,2.52212389,0.05263158,0.00000000,8.21000000 +603,chr22,16222383,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,44.00000000,0.00000000,-0.81000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,4.40000000 +604,chr22,16222494,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,67.00000000,0.00000000,0.86000000,0.00000000,,0.41818182,57.00000000,2.52212389,0.03508772,0.00000000,7.97000000 +605,chr22,16222598,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.47000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,8.62000000 +606,chr22,16223210,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.22000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,-1.09000000,0.00000000,,0.42307692,53.00000000,2.34513274,0.00000000,0.00000000,4.39000000 +607,chr22,16223309,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.15000000,11.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-0.81000000,0.00000000,,0.49152542,63.00000000,2.78761062,0.04761905,0.00000000,4.24000000 +608,chr22,16223393,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.11000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.41000000,0.00000000,,0.51948052,78.00000000,3.45132743,0.01282051,0.00000000,7.66000000 +609,chr22,16223428,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.06000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,1.13000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,7.96000000 +610,chr22,16223455,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.98000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.41095890,74.00000000,3.27433628,0.01351351,0.00000000,7.84000000 +611,chr22,16223615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,1.00000000,0.00000000,,0.46153846,65.00000000,2.87610619,0.00000000,0.00000000,4.01000000 +612,chr22,16223705,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.58000000,8.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,32.00000000,0.00000000,-0.97000000,0.00000000,,0.39583333,49.00000000,2.16814159,0.02040816,0.00000000,3.85000000 +613,chr22,16223962,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.09000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,0.11000000,0.00000000,,0.50819672,63.00000000,2.78761062,0.03174603,0.00000000,3.93000000 +614,chr22,16224114,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.12000000,5.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,0.81000000,0.00000000,,0.45205479,75.00000000,3.31858407,0.02666667,0.00000000,7.62000000 +615,chr22,16224417,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.32000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.33000000 +616,chr22,16224480,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.96000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,-1.71000000,0.00000000,,0.31818182,70.00000000,3.09734513,0.04285714,0.00000000,8.11000000 +617,chr22,16224680,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.93000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.28000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +618,chr22,16224683,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.92000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.05000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.64000000 +619,chr22,16224688,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.86000000,2.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,6.03000000 +620,chr22,16225026,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.47000000,0.00000000,,0.43023256,88.00000000,3.89380531,0.02272727,0.00000000,8.27000000 +621,chr22,16225418,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.73000000,21.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,1.75000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,7.45000000 +622,chr22,16225990,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.22000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-1.20000000,0.00000000,,0.42187500,64.00000000,2.83185841,0.00000000,0.00000000,8.79000000 +623,chr22,16226037,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.94000000,7.00000000,ref,1.00000000,0.06451613,31.00000000,1.37168142,0.00000000,0.00000000,53.00000000,0.00000000,0.42000000,0.00000000,,0.42857143,76.00000000,3.36283186,0.06578947,0.00000000,4.28000000 +624,chr22,16226495,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.76000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.40277778,75.00000000,3.31858407,0.04000000,0.00000000,7.87000000 +625,chr22,16226683,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.77000000,1.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,13.00000000,0.00000000,-0.56000000,0.00000000,,0.43243243,78.00000000,3.45132743,0.03846154,0.00000000,3.15000000 +626,chr22,16227055,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.84000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.01492537,0.00000000,4.37000000 +627,chr22,16227108,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.31000000,0.00000000,,0.48611111,74.00000000,3.27433628,0.02702703,0.00000000,3.98000000 +628,chr22,16227118,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.51000000,0.00000000,,0.47222222,75.00000000,3.31858407,0.04000000,0.00000000,3.77000000 +629,chr22,16227276,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,40.00000000,0.00000000,-2.89000000,0.00000000,,0.45333333,77.00000000,3.40707965,0.02597403,0.00000000,4.32000000 +630,chr22,16227366,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.23000000,0.00000000,,0.50877193,58.00000000,2.56637168,0.00000000,0.00000000,4.26000000 +631,chr22,16227579,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.21000000,2.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,0.88000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.92000000 +632,chr22,16227583,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.21000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,1.24000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.81000000 +633,chr22,16227860,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,1.29000000,0.00000000,,0.54838710,63.00000000,2.78761062,0.01587302,0.00000000,4.29000000 +634,chr22,16228063,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.77000000,0.00000000,,0.52542373,59.00000000,2.61061947,0.00000000,0.00000000,8.72000000 +635,chr22,16228274,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.77000000,0.00000000,,0.42682927,82.00000000,3.62831858,0.00000000,0.00000000,8.95000000 +636,chr22,16228279,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.30000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,8.95000000 +637,chr22,16228528,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-1.18000000,0.00000000,,0.46296296,55.00000000,2.43362832,0.01818182,0.00000000,7.58000000 +638,chr22,16228740,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,0.76000000,0.00000000,,0.43548387,63.00000000,2.78761062,0.00000000,0.00000000,8.27000000 +639,chr22,16228944,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.79000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,0.83000000,0.00000000,,0.53424658,73.00000000,3.23008850,0.00000000,0.00000000,3.96000000 +640,chr22,16228996,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.23000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.17000000,0.00000000,,0.55932203,59.00000000,2.61061947,0.00000000,0.00000000,4.03000000 +641,chr22,16229014,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.31000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,1.37000000,0.00000000,,0.62295082,61.00000000,2.69911504,0.00000000,0.00000000,4.47000000 +642,chr22,16229841,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.85000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.35000000 +643,chr22,16229900,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.20000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,4.57000000 +644,chr22,16230050,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.72000000,0.00000000,,0.53846154,92.00000000,4.07079646,0.01086957,0.00000000,7.94000000 +645,chr22,16230171,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,57.00000000,0.00000000,-1.89000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.00000000,0.00000000,4.63000000 +646,chr22,16230261,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.15000000,0.00000000,,0.42465753,77.00000000,3.40707965,0.05194805,0.00000000,8.55000000 +647,chr22,16230267,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.43421053,80.00000000,3.53982301,0.05000000,0.00000000,8.41000000 +648,chr22,16230311,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,0.05000000,0.00000000,,0.45454545,80.00000000,3.53982301,0.03750000,0.00000000,8.11000000 +649,chr22,16230430,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.19000000,0.00000000,,0.42857143,79.00000000,3.49557522,0.02531646,0.00000000,8.35000000 +650,chr22,16230627,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.22000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.72000000,0.00000000,,0.20408163,51.00000000,2.25663717,0.03921569,0.00000000,6.07000000 +651,chr22,16230629,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.22000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.17021277,51.00000000,2.25663717,0.07843137,0.00000000,5.72000000 +652,chr22,16230649,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.75000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-3.14000000,0.00000000,,0.11363636,55.00000000,2.43362832,0.20000000,0.00000000,4.43000000 +653,chr22,16230650,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.76000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-2.62000000,0.00000000,,0.23529412,55.00000000,2.43362832,0.07272727,0.00000000,6.60000000 +654,chr22,16230653,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.81000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-2.43000000,0.00000000,,0.23076923,56.00000000,2.47787611,0.07142857,0.00000000,6.61000000 +655,chr22,16230835,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-1.58000000,0.00000000,,0.37333333,77.00000000,3.40707965,0.02597403,0.00000000,8.35000000 +656,chr22,16230881,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,32.00000000,1.41592920,0.00000000,0.00000000,18.00000000,0.00000000,0.62000000,0.00000000,,0.42465753,73.00000000,3.23008850,0.00000000,0.00000000,3.23000000 +657,chr22,16230909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,32.00000000,0.00000000,-1.33000000,0.00000000,,0.44444444,75.00000000,3.31858407,0.01333333,0.00000000,3.26000000 +658,chr22,16231055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.07407407,27.00000000,1.19469027,0.00000000,0.00000000,32.00000000,0.00000000,0.94000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.00000000,0.00000000,3.16000000 +659,chr22,16231727,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.79000000 +660,chr22,16231800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.92000000,0.00000000,,0.39436620,73.00000000,3.23008850,0.02739726,0.00000000,7.88000000 +661,chr22,16232148,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.48000000,0.00000000,,0.45000000,65.00000000,2.87610619,0.07692308,0.00000000,8.18000000 +662,chr22,16232360,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,0.38000000,0.00000000,,0.50632911,82.00000000,3.62831858,0.02439024,0.00000000,8.04000000 +663,chr22,16232479,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.06000000,0.00000000,,0.41379310,60.00000000,2.65486726,0.03333333,0.00000000,7.36000000 +664,chr22,16232771,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,36.00000000,0.00000000,0.48000000,0.00000000,,0.42647059,71.00000000,3.14159292,0.04225352,0.00000000,4.14000000 +665,chr22,16232800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,50.00000000,0.00000000,-0.21000000,0.00000000,,0.40579710,71.00000000,3.14159292,0.02816901,0.00000000,4.81000000 +666,chr22,16233251,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.41000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,0.09000000,0.00000000,,0.46376812,70.00000000,3.09734513,0.01428571,0.00000000,4.55000000 +667,chr22,16233665,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,-0.94000000,0.00000000,,0.43373494,90.00000000,3.98230088,0.07777778,0.00000000,4.71000000 +668,chr22,16233716,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.53000000,0.00000000,,0.50000000,103.00000000,4.55752212,0.04854369,0.00000000,8.06000000 +669,chr22,16234309,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,53.00000000,0.00000000,-2.02000000,0.00000000,,0.44444444,84.00000000,3.71681416,0.03571429,0.00000000,4.48000000 +670,chr22,16234761,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,49.00000000,0.00000000,0.23000000,0.00000000,,0.44444444,66.00000000,2.92035398,0.03030303,0.00000000,4.46000000 +671,chr22,16235066,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.56451613,63.00000000,2.78761062,0.01587302,0.00000000,7.99000000 +672,chr22,16235245,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.67000000,0.00000000,,0.41463415,83.00000000,3.67256637,0.01204819,0.00000000,4.24000000 +673,chr22,16235320,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.47560976,84.00000000,3.71681416,0.02380952,0.00000000,7.51000000 +674,chr22,16235393,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.43055556,73.00000000,3.23008850,0.01369863,0.00000000,8.37000000 +675,chr22,16235405,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,55.00000000,0.00000000,1.08000000,0.00000000,,0.45070423,74.00000000,3.27433628,0.04054054,0.00000000,4.83000000 +676,chr22,16235593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.71000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,32.00000000,0.00000000,-0.67000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.01388889,0.00000000,3.74000000 +677,chr22,16235694,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.95000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,8.12000000 +678,chr22,16235698,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,7.99000000 +679,chr22,16235838,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.90000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,4.29000000 +680,chr22,16236593,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.20000000,0.00000000,,0.52727273,56.00000000,2.47787611,0.01785714,0.00000000,7.57000000 +681,chr22,16236714,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.55000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,0.51000000,0.00000000,,0.40983607,61.00000000,2.69911504,0.00000000,0.00000000,3.95000000 +682,chr22,16236723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.19000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,2.75000000 +683,chr22,16236818,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.24000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,4.45000000 +684,chr22,16237248,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.07000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,53.00000000,0.00000000,0.68000000,0.00000000,,0.40000000,68.00000000,3.00884956,0.04411765,0.00000000,4.31000000 +685,chr22,16237259,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,1.46000000,0.00000000,,0.38095238,66.00000000,2.92035398,0.04545455,0.00000000,4.26000000 +686,chr22,16237429,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.49000000,12.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-0.50000000,0.00000000,,0.52941176,52.00000000,2.30088496,0.01923077,0.00000000,3.79000000 +687,chr22,16237623,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.21000000 +688,chr22,16238414,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.89000000,23.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,32.00000000,0.00000000,-0.10000000,0.00000000,,0.45238095,42.00000000,1.85840708,0.00000000,0.00000000,3.65000000 +689,chr22,16238591,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.82000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,41.00000000,0.00000000,-0.49000000,0.00000000,,0.32142857,57.00000000,2.52212389,0.01754386,0.00000000,3.80000000 +690,chr22,16238592,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,42.00000000,0.00000000,-0.33000000,0.00000000,,0.31578947,58.00000000,2.56637168,0.01724138,0.00000000,3.18000000 +691,chr22,16238955,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,54.99000000,12.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,27.00000000,0.00000000,0.24000000,0.00000000,,0.41666667,48.00000000,2.12389381,0.00000000,0.00000000,3.66000000 +692,chr22,16239552,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.04000000,0.00000000,,0.36065574,61.00000000,2.69911504,0.00000000,0.00000000,8.38000000 +693,chr22,16239643,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.51000000,0.00000000,,0.47368421,57.00000000,2.52212389,0.00000000,0.00000000,4.43000000 +694,chr22,16239658,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.26000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,0.03000000,0.00000000,,0.43859649,57.00000000,2.52212389,0.00000000,0.00000000,4.26000000 +695,chr22,16239785,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,0.17000000,0.00000000,,0.60655738,61.00000000,2.69911504,0.00000000,0.00000000,4.49000000 +696,chr22,16240475,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,52.47000000,20.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-0.37000000,0.00000000,,0.51063830,47.00000000,2.07964602,0.00000000,0.00000000,3.63000000 +697,chr22,16240729,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,52.16000000,21.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,28.00000000,0.00000000,-0.31000000,0.00000000,,0.37500000,49.00000000,2.16814159,0.02040816,0.00000000,3.87000000 +698,chr22,16240779,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.45000000,13.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,31.00000000,0.00000000,-0.74000000,0.00000000,,0.41071429,58.00000000,2.56637168,0.03448276,0.00000000,3.81000000 +699,chr22,16240830,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.75000000,10.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,-0.79000000,0.00000000,,0.41538462,65.00000000,2.87610619,0.00000000,0.00000000,3.88000000 +700,chr22,16241076,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.76000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.11000000,0.00000000,,0.38805970,71.00000000,3.14159292,0.04225352,0.00000000,4.89000000 +701,chr22,16241989,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.79000000,0.00000000,,0.49090909,56.00000000,2.47787611,0.01785714,0.00000000,7.48000000 +702,chr22,16242905,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.46000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,4.50000000 +703,chr22,16242920,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.65000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,4.66000000 +704,chr22,16243197,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.37000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.41000000,0.00000000,,0.19672131,64.00000000,2.83185841,0.01562500,0.00000000,6.34000000 +705,chr22,16243202,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.38000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.26000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.31000000 +706,chr22,16243746,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.15000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +707,chr22,16243793,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.41000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.36000000,0.10000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,5.94000000 +708,chr22,16243936,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.20000000,0.00000000,,0.37704918,62.00000000,2.74336283,0.01612903,0.00000000,4.40000000 +709,chr22,16244215,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.51851852,81.00000000,3.58407080,0.00000000,0.00000000,8.56000000 +710,chr22,16244919,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.47142857,74.00000000,3.27433628,0.04054054,0.00000000,8.17000000 +711,chr22,16245016,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.95000000,0.00000000,,0.40740741,81.00000000,3.58407080,0.00000000,0.00000000,8.38000000 +712,chr22,16245115,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.76000000,0.00000000,,0.43835616,73.00000000,3.23008850,0.00000000,0.00000000,8.95000000 +713,chr22,16245233,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.76000000,14.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.40625000,64.00000000,2.83185841,0.00000000,0.00000000,8.43000000 +714,chr22,16245305,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,54.08000000,21.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-1.86000000,0.00000000,,0.46969697,67.00000000,2.96460177,0.00000000,0.00000000,8.22000000 +715,chr22,16245538,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.06000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,40.00000000,0.00000000,0.65000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,3.76000000 +716,chr22,16246670,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.15000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-1.44000000,0.00000000,,0.39393939,66.00000000,2.92035398,0.00000000,0.00000000,4.41000000 +717,chr22,16246762,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.47000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,-0.56000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,6.26000000 +718,chr22,16246805,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.62000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.40000000,88.00000000,3.89380531,0.02272727,0.00000000,8.24000000 +719,chr22,16246847,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.37647059,85.00000000,3.76106195,0.00000000,0.00000000,8.76000000 +720,chr22,16247046,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,54.00000000,0.00000000,-0.49000000,0.00000000,,0.32530120,83.00000000,3.67256637,0.00000000,0.00000000,4.27000000 +721,chr22,16247170,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.41000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,4.29000000 +722,chr22,16247310,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.46000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.78000000,0.00000000,,0.43396226,54.00000000,2.38938053,0.01851852,0.00000000,8.21000000 +723,chr22,16247597,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.08000000,0.00000000,,0.50000000,64.00000000,2.83185841,0.00000000,0.00000000,4.49000000 +724,chr22,16247859,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,-1.47000000,0.00000000,,0.43076923,73.00000000,3.23008850,0.06849315,0.00000000,7.69000000 +725,chr22,16248288,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.39772727,89.00000000,3.93805310,0.01123596,0.00000000,8.31000000 +726,chr22,16249170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.26000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.84000000,0.00000000,,0.31428571,73.00000000,3.23008850,0.04109589,0.00000000,6.58000000 +727,chr22,16249174,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.29000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,0.96000000,0.00000000,,0.30985915,74.00000000,3.27433628,0.04054054,0.00000000,5.99000000 +728,chr22,16249348,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,48.00000000,0.00000000,-1.54000000,0.00000000,,0.39393939,66.00000000,2.92035398,0.00000000,0.00000000,3.89000000 +729,chr22,16249477,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.95000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,2.80000000 +730,chr22,16249560,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.01000000,0.00000000,,0.50724638,69.00000000,3.05309735,0.00000000,0.00000000,3.87000000 +731,chr22,16250525,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.86000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.83000000,0.00000000,,0.36619718,72.00000000,3.18584071,0.01388889,0.00000000,4.19000000 +732,chr22,16250785,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.60000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.26000000,0.00000000,,0.50000000,56.00000000,2.47787611,0.00000000,0.00000000,4.11000000 +733,chr22,16250915,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.06000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.25454545,58.00000000,2.56637168,0.03448276,0.00000000,6.32000000 +734,chr22,16250958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.78000000,0.00000000,,0.37037037,57.00000000,2.52212389,0.03508772,0.00000000,7.80000000 +735,chr22,16251091,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-0.43000000,0.00000000,,0.49019608,52.00000000,2.30088496,0.01923077,0.00000000,4.39000000 +736,chr22,16251395,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.49000000,0.00000000,,0.47058824,68.00000000,3.00884956,0.00000000,0.00000000,7.97000000 +737,chr22,16251469,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.72000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.35849057,53.00000000,2.34513274,0.00000000,0.00000000,7.95000000 +738,chr22,16251588,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.19000000,14.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,0.31000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,3.83000000 +739,chr22,16251711,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,1.07000000,0.00000000,,0.38235294,68.00000000,3.00884956,0.00000000,0.00000000,8.24000000 +740,chr22,16251722,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.08000000,0.00000000,,0.40259740,78.00000000,3.45132743,0.01282051,0.00000000,8.59000000 +741,chr22,16251899,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.73000000,14.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.05000000,0.00000000,,0.45762712,61.00000000,2.69911504,0.01639344,0.00000000,7.64000000 +742,chr22,16252094,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,-0.19000000,0.00000000,,0.38709677,93.00000000,4.11504425,0.00000000,0.00000000,8.74000000 +743,chr22,16252148,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.08000000,0.00000000,,0.36619718,73.00000000,3.23008850,0.02739726,0.00000000,8.18000000 +744,chr22,16252241,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-0.51000000,0.00000000,,0.41666667,72.00000000,3.18584071,0.00000000,0.00000000,4.62000000 +745,chr22,16252407,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.01000000,13.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.49000000,0.00000000,,0.42622951,62.00000000,2.74336283,0.01612903,0.00000000,7.70000000 +746,chr22,16252420,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.96000000,13.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.08000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,7.84000000 +747,chr22,16252549,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-1.06000000,0.00000000,,0.50847458,59.00000000,2.61061947,0.00000000,0.00000000,3.98000000 +748,chr22,16252659,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,7.82000000 +749,chr22,16252672,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.41269841,65.00000000,2.87610619,0.03076923,0.00000000,7.90000000 +750,chr22,16252789,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.60000000,8.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.88000000,0.00000000,,0.34848485,67.00000000,2.96460177,0.01492537,0.00000000,7.75000000 +751,chr22,16252906,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.92000000,0.00000000,,0.48051948,79.00000000,3.49557522,0.00000000,0.00000000,9.17000000 +752,chr22,16252951,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.96000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,8.55000000 +753,chr22,16253411,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.20000000,0.00000000,,0.52857143,70.00000000,3.09734513,0.00000000,0.00000000,6.02000000 +754,chr22,16254083,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.47000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,-1.00000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,4.33000000 +755,chr22,16254085,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.47000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,-1.24000000,0.00000000,,0.52941176,68.00000000,3.00884956,0.00000000,0.00000000,4.25000000 +756,chr22,16254443,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,51.00000000,0.00000000,0.12000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,4.53000000 +757,chr22,16254620,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.58000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,36.00000000,0.00000000,0.07000000,0.00000000,,0.36956522,48.00000000,2.12389381,0.04166667,0.00000000,3.81000000 +758,chr22,16254624,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.59000000,0.00000000,ref,1.00000000,0.11111111,18.00000000,0.79646018,0.00000000,0.00000000,14.00000000,0.00000000,0.43000000,0.00000000,,0.36170213,49.00000000,2.16814159,0.04081633,0.00000000,3.62000000 +759,chr22,16254890,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.10714286,0.00000000,9.00000000,0.00000000,-1.62000000,0.00000000,,0.47916667,53.00000000,2.34513274,0.07547170,0.00000000,3.26000000 +760,chr22,16255177,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.24000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,54.00000000,0.00000000,-1.75000000,0.00000000,,0.44285714,76.00000000,3.36283186,0.05263158,0.00000000,4.53000000 +761,chr22,16255328,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.54000000,21.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.96000000,0.00000000,,0.44680851,48.00000000,2.12389381,0.00000000,0.00000000,4.08000000 +762,chr22,16255394,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,49.72000000,26.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,33.00000000,0.00000000,-1.74000000,0.00000000,,0.43589744,40.00000000,1.76991150,0.02500000,0.00000000,3.69000000 +763,chr22,16255833,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,44.68000000,49.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,47.00000000,0.00000000,-0.31000000,6.96000000,,0.35000000,40.00000000,1.76991150,0.00000000,0.00000000,3.54000000 +764,chr22,16256829,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,49.12000000,32.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.19000000,0.00000000,,0.48837209,43.00000000,1.90265487,0.00000000,0.00000000,4.23000000 +765,chr22,16257045,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,49.87000000,30.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.27000000,0.00000000,,0.23684211,38.00000000,1.68141593,0.00000000,0.00000000,5.64000000 +766,chr22,16257221,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.15000000,12.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.29000000,0.00000000,,0.45454545,44.00000000,1.94690265,0.00000000,0.00000000,4.25000000 +767,chr22,16257313,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.81000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,7.82000000 +768,chr22,16257342,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.88000000,13.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,-3.07000000,0.00000000,,0.43333333,61.00000000,2.69911504,0.01639344,0.00000000,4.44000000 +769,chr22,16257519,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,48.53000000,28.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.80000000,2.31000000,,0.19354839,31.00000000,1.37168142,0.00000000,0.00000000,4.18000000 +770,chr22,16257525,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.89000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.73000000,2.10000000,,0.20000000,31.00000000,1.37168142,0.03225806,0.00000000,4.89000000 +771,chr22,16259655,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.25000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,-0.19000000,0.00000000,,0.39062500,66.00000000,2.92035398,0.03030303,0.00000000,4.58000000 +772,chr22,16260033,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.81000000,37.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,12.00000000,0.00000000,-1.74000000,0.00000000,,0.52542373,62.00000000,2.74336283,0.04838710,0.01587302,3.24000000 +773,chr22,16260107,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.94000000,31.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,36.00000000,0.00000000,-2.31000000,0.00000000,,0.47272727,60.00000000,2.65486726,0.08333333,0.00000000,3.88000000 +774,chr22,16260347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.76000000,0.00000000,,0.45454545,77.00000000,3.40707965,0.00000000,0.00000000,5.85000000 +775,chr22,16260476,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,44.03000000,72.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,32.00000000,0.00000000,0.28000000,0.00000000,,0.55932203,62.00000000,2.74336283,0.04838710,0.00000000,3.85000000 +776,chr22,16260534,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,41.92000000,86.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,27.00000000,0.00000000,-1.61000000,0.00000000,,0.50769231,65.00000000,2.87610619,0.00000000,0.00000000,3.59000000 +777,chr22,16260805,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,44.05000000,71.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,-0.05000000,0.00000000,,0.56666667,62.00000000,2.74336283,0.01612903,0.00000000,4.13000000 +778,chr22,16260913,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,47.56000000,51.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.16000000,0.00000000,,0.49206349,66.00000000,2.92035398,0.04545455,0.00000000,3.93000000 +779,chr22,16261017,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,43.80000000,52.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,8.00000000,0.00000000,-1.00000000,0.00000000,,0.54347826,50.00000000,2.21238938,0.08000000,0.00000000,3.82000000 +780,chr22,16261300,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,34.40000000,194.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,0.77000000,0.00000000,,0.38181818,56.00000000,2.47787611,0.01785714,0.00000000,7.51000000 +781,chr22,16261429,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.27000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,48.00000000,0.00000000,0.99000000,0.00000000,,0.37096774,63.00000000,2.78761062,0.01587302,0.00000000,4.17000000 +782,chr22,16262038,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.62000000,41.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-1.27000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,3.71000000 +783,chr22,16262463,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.01000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.34000000,0.00000000,,0.42622951,63.00000000,2.78761062,0.01587302,0.00000000,4.37000000 +784,chr22,16262650,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,54.10000000,20.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,5.00000000,0.00000000,0.03000000,0.00000000,,0.40000000,67.00000000,2.96460177,0.02985075,0.00000000,3.48000000 +785,chr22,16262725,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,54.77000000,17.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,1.10000000,0.00000000,,0.42372881,61.00000000,2.69911504,0.03278689,0.00000000,4.54000000 +786,chr22,16262751,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.86000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.31000000 +787,chr22,16262861,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.87000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.05000000,0.00000000,,0.47222222,75.00000000,3.31858407,0.04000000,0.00000000,4.83000000 +788,chr22,16263059,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.71000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,1.18000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,3.89000000 +789,chr22,16263331,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.78000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.13000000,0.00000000,,0.47058824,86.00000000,3.80530973,0.01162791,0.00000000,8.62000000 +790,chr22,16263839,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.81000000,0.00000000,,0.43661972,71.00000000,3.14159292,0.00000000,0.00000000,4.35000000 +791,chr22,16263909,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.70000000,10.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,67.00000000,0.00000000,-1.62000000,0.00000000,,0.43209877,84.00000000,3.71681416,0.03571429,0.00000000,8.17000000 +792,chr22,16264072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.80000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.04347826,41.00000000,0.00000000,-0.29000000,0.00000000,,0.50704225,74.00000000,3.27433628,0.04054054,0.00000000,4.21000000 +793,chr22,16264363,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.33000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-1.31000000,0.00000000,,0.38297872,47.00000000,2.07964602,0.00000000,0.00000000,8.63000000 +794,chr22,16264444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.45000000,8.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.50000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.25000000 +795,chr22,16264528,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,0.00000000,0.00000000,,0.43750000,64.00000000,2.83185841,0.00000000,0.00000000,3.89000000 +796,chr22,16264770,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.92000000,10.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,21.00000000,0.00000000,-0.98000000,0.00000000,,0.48387097,62.00000000,2.74336283,0.00000000,0.00000000,3.09000000 +797,chr22,16264961,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,47.00000000,0.00000000,0.34000000,0.00000000,,0.43636364,57.00000000,2.52212389,0.03508772,0.00000000,3.89000000 +798,chr22,16265035,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.95000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,51.00000000,0.00000000,-0.83000000,0.00000000,,0.45098039,53.00000000,2.34513274,0.03773585,0.00000000,4.35000000 +799,chr22,16265155,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,42.92000000,84.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.08333333,47.00000000,0.00000000,0.44000000,0.00000000,,0.44615385,66.00000000,2.92035398,0.01515152,0.01492537,3.77000000 +800,chr22,16265343,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.33000000,20.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,27.00000000,0.00000000,-0.55000000,0.00000000,,0.55555556,66.00000000,2.92035398,0.04545455,0.00000000,3.61000000 +801,chr22,16265687,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.81000000,17.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,35.00000000,0.00000000,-0.25000000,0.00000000,,0.51948052,78.00000000,3.45132743,0.01282051,0.00000000,3.25000000 +802,chr22,16265948,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,54.33000000,20.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-1.05000000,0.00000000,,0.55223881,67.00000000,2.96460177,0.00000000,0.00000000,4.19000000 +803,chr22,16266083,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.60000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,33.00000000,0.00000000,-1.60000000,0.00000000,,0.47435897,78.00000000,3.45132743,0.00000000,0.00000000,3.14000000 +804,chr22,16266106,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.28000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,33.00000000,0.00000000,-1.54000000,0.00000000,,0.52054795,75.00000000,3.31858407,0.02666667,0.00000000,3.45000000 +805,chr22,16266150,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.35000000,0.00000000,,0.48648649,74.00000000,3.27433628,0.00000000,0.00000000,8.35000000 +806,chr22,16266247,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.55000000,17.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.37000000,0.00000000,,0.41333333,75.00000000,3.31858407,0.00000000,0.00000000,8.34000000 +807,chr22,16266333,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,52.03000000,31.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,42.00000000,0.00000000,-0.88000000,0.00000000,,0.50769231,71.00000000,3.14159292,0.08450704,0.00000000,4.22000000 +808,chr22,16266383,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,48.99000000,43.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,18.00000000,0.00000000,-2.97000000,0.00000000,,0.45000000,64.00000000,2.83185841,0.04687500,0.00000000,3.45000000 +809,chr22,16266451,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.79000000,13.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-1.79000000,0.00000000,,0.43103448,59.00000000,2.61061947,0.01694915,0.00000000,4.47000000 +810,chr22,16266590,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.21000000,11.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.40506329,82.00000000,3.62831858,0.03658537,0.00000000,8.00000000 +811,chr22,16266875,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,51.43000000,35.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,32.00000000,0.00000000,-0.41000000,0.00000000,,0.38571429,70.00000000,3.09734513,0.00000000,0.00000000,3.05000000 +812,chr22,16266996,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.96000000,18.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,56.00000000,0.00000000,-0.18000000,0.00000000,,0.37878788,71.00000000,3.14159292,0.05633803,0.00000000,4.82000000 +813,chr22,16267144,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.92000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.49315068,76.00000000,3.36283186,0.02631579,0.00000000,8.01000000 +814,chr22,16267197,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.35000000,17.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.82000000,0.00000000,,0.54411765,69.00000000,3.05309735,0.01449275,0.00000000,7.67000000 +815,chr22,16267559,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,52.98000000,26.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,30.00000000,0.00000000,-1.81000000,0.00000000,,0.52112676,72.00000000,3.18584071,0.00000000,0.00000000,3.47000000 +816,chr22,16267908,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.11000000,11.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.32876712,74.00000000,3.27433628,0.01351351,0.00000000,7.59000000 +817,chr22,16268052,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,8.33000000 +818,chr22,16268101,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.44155844,78.00000000,3.45132743,0.01282051,0.00000000,8.72000000 +819,chr22,16268249,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.02000000,12.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.33783784,79.00000000,3.49557522,0.01265823,0.01250000,8.18000000 +820,chr22,16268394,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.96000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,0.47000000,0.00000000,,0.48543689,103.00000000,4.55752212,0.00000000,0.00000000,8.12000000 +821,chr22,16269101,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,54.98000000,21.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,101.00000000,0.00000000,-0.25000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,8.55000000 +822,chr22,16269493,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.19000000,13.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,56.00000000,0.00000000,0.40000000,0.00000000,,0.35294118,73.00000000,3.23008850,0.06849315,0.00000000,4.65000000 +823,chr22,16269515,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.25000000,13.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,96.00000000,0.00000000,-0.82000000,0.00000000,,0.32812500,72.00000000,3.18584071,0.11111111,0.00000000,7.73000000 +824,chr22,16269838,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.19000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-1.11000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.04054054,0.00000000,8.27000000 +825,chr22,16269863,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-0.41000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.02702703,0.00000000,8.33000000 +826,chr22,16270496,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.05000000,0.00000000,,0.46153846,67.00000000,2.96460177,0.02985075,0.00000000,4.07000000 +827,chr22,16270585,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.31000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,4.54000000 +828,chr22,16270649,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.27000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.14000000,0.00000000,,0.45945946,74.00000000,3.27433628,0.00000000,0.00000000,6.09000000 +829,chr22,16270728,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.89000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,0.34000000,0.00000000,,0.46969697,68.00000000,3.00884956,0.02941176,0.00000000,6.02000000 +830,chr22,16270898,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.50000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,8.71000000 +831,chr22,16270941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-0.10000000,0.00000000,,0.39062500,64.00000000,2.83185841,0.00000000,0.00000000,4.48000000 +832,chr22,16270970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-1.71000000,0.00000000,,0.46478873,71.00000000,3.14159292,0.00000000,0.00000000,4.08000000 +833,chr22,16270991,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.90000000,0.00000000,,0.45454545,77.00000000,3.40707965,0.00000000,0.00000000,6.21000000 +834,chr22,16271004,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.86000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,7.82000000 +835,chr22,16271443,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.14000000 +836,chr22,16271561,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.17000000,0.00000000,,0.43421053,79.00000000,3.49557522,0.01265823,0.00000000,8.62000000 +837,chr22,16271628,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.43000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.02352941,0.00000000,8.20000000 +838,chr22,16272013,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.40000000,25.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.36764706,70.00000000,3.09734513,0.02857143,0.00000000,8.43000000 +839,chr22,16272018,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.77000000,19.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.81000000,0.00000000,,0.39130435,71.00000000,3.14159292,0.02816901,0.00000000,8.35000000 +840,chr22,16272201,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.12000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,0.38000000,0.00000000,,0.38235294,69.00000000,3.05309735,0.01449275,0.00000000,3.92000000 +841,chr22,16272208,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.35000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,39.00000000,0.00000000,0.84000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,3.67000000 +842,chr22,16272844,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.55000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,1.25000000,0.00000000,,0.33928571,58.00000000,2.56637168,0.01724138,0.00000000,4.45000000 +843,chr22,16272884,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.42000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.08000000,0.00000000,,0.35849057,54.00000000,2.38938053,0.01851852,0.00000000,7.79000000 +844,chr22,16273008,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,55.32000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.22000000,0.00000000,,0.33928571,57.00000000,2.52212389,0.01754386,0.00000000,7.50000000 +845,chr22,16273288,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,52.88000000,20.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-0.22000000,0.00000000,,0.49019608,53.00000000,2.34513274,0.03773585,0.00000000,4.23000000 +846,chr22,16273536,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.23000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,38.00000000,0.00000000,-0.31000000,0.00000000,,0.46000000,53.00000000,2.34513274,0.01886792,0.00000000,3.61000000 +847,chr22,16273577,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.99000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,44.00000000,0.00000000,-0.31000000,0.00000000,,0.51785714,57.00000000,2.52212389,0.01754386,0.00000000,3.84000000 +848,chr22,16273990,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.07000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.34000000,0.00000000,,0.50000000,79.00000000,3.49557522,0.01265823,0.00000000,4.52000000 +849,chr22,16274026,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.81000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,0.01000000,0.00000000,,0.41095890,73.00000000,3.23008850,0.00000000,0.00000000,4.12000000 +850,chr22,16274395,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.14000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.21000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.09000000 +851,chr22,16274550,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.73000000,0.00000000,,0.41428571,71.00000000,3.14159292,0.01408451,0.00000000,4.31000000 +852,chr22,16274597,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.54000000,0.00000000,,0.37142857,70.00000000,3.09734513,0.00000000,0.00000000,8.60000000 +853,chr22,16274930,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.04545455,22.00000000,0.97345133,0.00000000,0.00000000,9.00000000,0.00000000,1.49000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,3.49000000 +854,chr22,16275215,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.59000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,-0.15000000,0.00000000,,0.39130435,69.00000000,3.05309735,0.00000000,0.00000000,4.54000000 +855,chr22,16275289,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,53.26000000,23.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,1.47000000,0.00000000,,0.38333333,60.00000000,2.65486726,0.00000000,0.00000000,7.79000000 +856,chr22,16275383,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.98000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,45.00000000,0.00000000,-0.55000000,0.00000000,,0.34000000,50.00000000,2.21238938,0.00000000,0.00000000,4.00000000 +857,chr22,16275555,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.63000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.84000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,5.50000000 +858,chr22,16275787,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,55.48000000,15.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.35384615,65.00000000,2.87610619,0.00000000,0.00000000,7.75000000 +859,chr22,16276132,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.45000000,10.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.43902439,82.00000000,3.62831858,0.00000000,0.00000000,8.40000000 +860,chr22,16276262,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.90000000,6.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.64000000,0.00000000,,0.37500000,66.00000000,2.92035398,0.03030303,0.00000000,7.59000000 +861,chr22,16276271,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.97000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.33000000,0.00000000,,0.40298507,68.00000000,3.00884956,0.01470588,0.00000000,7.80000000 +862,chr22,16276393,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.04000000,9.00000000,ref,1.00000000,0.05555556,36.00000000,1.59292035,0.00000000,0.00000000,3.00000000,0.00000000,-0.60000000,0.00000000,,0.50684932,73.00000000,3.23008850,0.00000000,0.00000000,2.94000000 +863,chr22,16276625,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.91000000,9.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.31000000,0.00000000,,0.38271605,81.00000000,3.58407080,0.00000000,0.00000000,8.51000000 +864,chr22,16276682,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.55000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.35000000,0.00000000,,0.48717949,78.00000000,3.45132743,0.00000000,0.00000000,8.64000000 +865,chr22,16276892,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.69000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.27692308,65.00000000,2.87610619,0.00000000,0.00000000,6.50000000 +866,chr22,16277100,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.46000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-0.14000000,0.00000000,,0.40740741,54.00000000,2.38938053,0.00000000,0.00000000,4.15000000 +867,chr22,16277399,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,0.93000000,0.00000000,,0.36046512,86.00000000,3.80530973,0.00000000,0.00000000,9.13000000 +868,chr22,16277695,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,-0.45000000,0.00000000,,0.43283582,67.00000000,2.96460177,0.00000000,0.00000000,3.96000000 +869,chr22,16277858,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.84000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,8.28000000 +870,chr22,16278089,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.84000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,38.00000000,0.00000000,1.54000000,0.00000000,,0.55882353,70.00000000,3.09734513,0.01428571,0.00000000,3.97000000 +871,chr22,16278956,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.93000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.30000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.77000000 +872,chr22,16279129,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.27000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.28000000 +873,chr22,16279424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,38.00000000,0.00000000,-1.08000000,0.00000000,,0.39534884,43.00000000,1.90265487,0.00000000,0.00000000,3.95000000 +874,chr22,16279535,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,26.00000000,0.00000000,-1.16000000,0.00000000,,0.53846154,39.00000000,1.72566372,0.00000000,0.00000000,3.95000000 +875,chr22,16279597,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.31000000,3.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,0.00000000,1.41000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.72000000 +876,chr22,16345279,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,38.15000000,54.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,26.00000000,0.00000000,0.39000000,0.00000000,,0.46428571,29.00000000,1.28318584,0.03448276,0.00000000,3.88000000 +877,chr22,16345292,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,35.55000000,57.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,17.00000000,0.00000000,0.23000000,0.00000000,,0.46153846,27.00000000,1.19469027,0.03703704,0.00000000,3.77000000 +878,chr22,16356677,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,43.54000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,0.52000000,0.00000000,,0.37735849,53.00000000,2.34513274,0.00000000,0.00000000,4.44000000 +879,chr22,16356936,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,33.60000000,19.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,0.00000000,-1.01000000,0.00000000,,0.43750000,16.00000000,0.70796460,0.00000000,0.00000000,3.47000000 +880,chr22,16360731,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,38.95000000,67.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.13333333,0.00000000,29.00000000,0.00000000,1.05000000,0.00000000,,0.31428571,40.00000000,1.76991150,0.12500000,0.00000000,2.89000000 +881,chr22,16374130,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,18.79000000,21.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,-1.47000000,0.00000000,,0.55555556,9.00000000,0.39823009,0.00000000,0.00000000,3.53000000 +882,chr22,16382067,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,23.69000000,62.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,7.00000000,0.00000000,-0.04000000,0.00000000,,0.35000000,20.00000000,0.88495575,0.00000000,0.00000000,3.64000000 +883,chr22,16385677,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,40.23000000,30.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,-0.07000000,0.00000000,,0.50000000,22.00000000,0.97345133,0.00000000,0.00000000,3.65000000 +884,chr22,16386087,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.47000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,34.00000000,0.00000000,-1.70000000,0.00000000,,0.63013699,73.00000000,3.23008850,0.00000000,0.00000000,3.56000000 +885,chr22,16386232,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.61000000,21.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.53000000,0.00000000,,0.37037037,56.00000000,2.47787611,0.03571429,0.00000000,8.24000000 +886,chr22,16386526,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,50.14000000,35.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-1.25000000,0.00000000,,0.46666667,60.00000000,2.65486726,0.00000000,0.00000000,3.97000000 +887,chr22,16386752,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.09000000,7.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.01000000,0.00000000,,0.44186047,46.00000000,2.03539823,0.06521739,0.00000000,3.78000000 +888,chr22,16387638,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,98.00000000,0.00000000,-0.46000000,0.00000000,,0.34482759,59.00000000,2.61061947,0.01694915,0.00000000,8.17000000 +889,chr22,16388497,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.97000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,8.01000000 +890,chr22,16388785,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.30000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.15000000,0.00000000,,0.41666667,60.00000000,2.65486726,0.00000000,0.00000000,8.91000000 +891,chr22,16389233,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.90000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.41000000,0.00000000,,0.45555556,92.00000000,4.07079646,0.00000000,0.00000000,8.73000000 +892,chr22,16389329,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.02000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-2.36000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,7.55000000 +893,chr22,16389382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.01000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.24000000,0.00000000,,0.43103448,61.00000000,2.69911504,0.04918033,0.00000000,7.31000000 +894,chr22,16389436,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.54000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.03000000 +895,chr22,16389488,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.94000000,0.00000000,,0.45762712,60.00000000,2.65486726,0.00000000,0.00000000,4.45000000 +896,chr22,16389655,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.30000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.01538462,0.00000000,7.65000000 +897,chr22,16389667,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,39.00000000,0.00000000,-1.06000000,0.00000000,,0.39655172,59.00000000,2.61061947,0.01694915,0.00000000,3.65000000 +898,chr22,16389699,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.13000000,0.00000000,,0.38983051,60.00000000,2.65486726,0.00000000,0.00000000,8.76000000 +899,chr22,16389835,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.67000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,38.00000000,0.00000000,0.69000000,0.00000000,,0.43333333,62.00000000,2.74336283,0.03225806,0.00000000,4.08000000 +900,chr22,16390038,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,38.00000000,0.00000000,-0.27000000,0.00000000,,0.26530612,50.00000000,2.21238938,0.02000000,0.00000000,2.76000000 +901,chr22,16390164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.03000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,-0.09000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,4.85000000 +902,chr22,16390354,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.01000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.86000000,0.00000000,,0.27272727,66.00000000,2.92035398,0.00000000,0.00000000,4.52000000 +903,chr22,16390407,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,-0.65000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,4.69000000 +904,chr22,16390592,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.22000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,41.00000000,0.00000000,-0.24000000,0.00000000,,0.34545455,57.00000000,2.52212389,0.03508772,0.00000000,4.17000000 +905,chr22,16390714,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,50.00000000,0.00000000,-0.25000000,0.00000000,,0.38235294,70.00000000,3.09734513,0.02857143,0.00000000,5.02000000 +906,chr22,16390737,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.13000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,7.87000000 +907,chr22,16390983,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,24.00000000,0.00000000,1.18000000,0.00000000,,0.44827586,65.00000000,2.87610619,0.10769231,0.00000000,3.47000000 +908,chr22,16391137,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,49.00000000,0.00000000,-0.17000000,0.00000000,,0.41428571,72.00000000,3.18584071,0.02777778,0.00000000,4.31000000 +909,chr22,16391177,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,34.00000000,0.00000000,-1.21000000,0.00000000,,0.38571429,75.00000000,3.31858407,0.06666667,0.00000000,3.48000000 +910,chr22,16391225,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,0.35000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.01388889,0.00000000,3.16000000 +911,chr22,16391917,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,1.22000000,0.00000000,,0.42307692,56.00000000,2.47787611,0.07142857,0.00000000,4.59000000 +912,chr22,16392165,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,58.74000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,53.00000000,0.00000000,0.92000000,0.00000000,,0.44067797,63.00000000,2.78761062,0.06349206,0.00000000,4.59000000 +913,chr22,16392178,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.59000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-0.51000000,0.00000000,,0.41509434,60.00000000,2.65486726,0.11666667,0.00000000,4.39000000 +914,chr22,16392500,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,0.00000000,0.31000000,0.00000000,,0.53333333,63.00000000,2.78761062,0.04761905,0.00000000,4.25000000 +915,chr22,16392675,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.68000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.27000000 +916,chr22,16393941,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.75000000,9.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,37.00000000,0.00000000,-0.93000000,0.00000000,,0.51562500,65.00000000,2.87610619,0.01538462,0.00000000,3.81000000 +917,chr22,16393989,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.51000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-0.62000000,0.00000000,,0.46551724,59.00000000,2.61061947,0.01694915,0.00000000,3.73000000 +918,chr22,16394015,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.91000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,0.36000000,0.00000000,,0.53225806,63.00000000,2.78761062,0.01587302,0.00000000,3.47000000 +919,chr22,16395527,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.57000000,9.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.69000000,0.00000000,,0.46153846,53.00000000,2.34513274,0.01886792,0.00000000,3.56000000 +920,chr22,16395566,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.39000000,8.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.26000000,0.00000000,,0.46268657,67.00000000,2.96460177,0.00000000,0.00000000,3.84000000 +921,chr22,16395579,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.33000000,5.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,0.03000000,0.00000000,,0.45588235,69.00000000,3.05309735,0.01449275,0.00000000,3.78000000 +922,chr22,16395859,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,45.00000000,0.00000000,-1.03000000,0.00000000,,0.48529412,71.00000000,3.14159292,0.02816901,0.00000000,4.54000000 +923,chr22,16395989,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,50.00000000,0.00000000,-1.15000000,0.00000000,,0.38095238,64.00000000,2.83185841,0.01562500,0.00000000,4.84000000 +924,chr22,16396587,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,0.00000000,-0.70000000,0.00000000,,0.45000000,62.00000000,2.74336283,0.03225806,0.00000000,3.99000000 +925,chr22,16397071,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.68000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,5.67000000 +926,chr22,16397311,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.03000000,21.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.82000000,0.00000000,,0.31372549,52.00000000,2.30088496,0.01923077,0.00000000,7.32000000 +927,chr22,16397637,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,42.92000000,55.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,23.00000000,0.00000000,-1.36000000,0.00000000,,0.45652174,46.00000000,2.03539823,0.00000000,0.00000000,3.82000000 +928,chr22,16397695,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,37.63000000,78.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,-0.80000000,0.00000000,,0.55555556,37.00000000,1.63716814,0.02702703,0.00000000,3.67000000 +929,chr22,16398154,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.40000000,34.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.82000000,0.00000000,,0.46376812,70.00000000,3.09734513,0.01428571,0.00000000,7.40000000 +930,chr22,16398328,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.76000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,55.00000000,0.00000000,-0.02000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.04054054,0.00000000,4.62000000 +931,chr22,16398423,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,51.58000000,30.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.28000000 +932,chr22,16399344,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-1.17000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,7.24000000 +933,chr22,16399502,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,57.54000000,9.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,102.00000000,0.00000000,0.57000000,0.00000000,,0.31666667,60.00000000,2.65486726,0.00000000,0.00000000,12.07000000 +934,chr22,16399709,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.95000000,11.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.21000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,7.77000000 +935,chr22,16400002,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.17000000,0.00000000,,0.47727273,89.00000000,3.93805310,0.01123596,0.00000000,8.45000000 +936,chr22,16403202,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,48.19000000,48.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,51.00000000,0.00000000,-0.22000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.20000000,0.00000000,2.83000000 +937,chr22,16405528,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,55.68000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.41000000,0.00000000,,0.45588235,70.00000000,3.09734513,0.02857143,0.00000000,7.98000000 +938,chr22,16405529,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,55.68000000,10.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.41000000,0.00000000,,0.45588235,70.00000000,3.09734513,0.02857143,0.00000000,8.00000000 +939,chr22,16406147,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.83000000,5.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,105.00000000,0.00000000,0.79000000,0.00000000,,0.40243902,83.00000000,3.67256637,0.01204819,0.00000000,14.24000000 +940,chr22,16407486,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.43000000,0.00000000,,0.45333333,75.00000000,3.31858407,0.00000000,0.00000000,8.61000000 +941,chr22,16407851,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-1.01000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.00000000,0.00000000,4.19000000 +942,chr22,16408174,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.10000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.29000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,7.60000000 +943,chr22,16408688,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,0.81000000,0.00000000,,0.46031746,64.00000000,2.83185841,0.01562500,0.00000000,3.54000000 +944,chr22,16409570,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,55.19000000,18.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,123.00000000,0.00000000,-0.74000000,0.00000000,,0.36363636,110.00000000,4.86725664,0.00000000,0.00000000,11.23000000 +945,chr22,16410090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,46.09000000,75.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.46590909,89.00000000,3.93805310,0.01123596,0.00000000,7.66000000 +946,chr22,16411263,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,46.40000000,60.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.32530120,86.00000000,3.80530973,0.03488372,0.00000000,7.75000000 +947,chr22,16413538,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,54.60000000,21.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.38356164,75.00000000,3.31858407,0.01333333,0.00000000,8.11000000 +948,chr22,16413666,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.45000000,15.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.53000000,0.00000000,,0.45000000,60.00000000,2.65486726,0.00000000,0.00000000,8.51000000 +949,chr22,16414030,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,53.03000000,27.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.83000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.75000000 +950,chr22,16414520,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.95000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.55000000,0.00000000,,0.37500000,73.00000000,3.23008850,0.01369863,0.00000000,8.06000000 +951,chr22,16414656,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.29000000,19.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +952,chr22,16415742,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.68000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,25.00000000,0.00000000,-1.27000000,0.00000000,,0.48235294,87.00000000,3.84955752,0.02298851,0.00000000,3.27000000 +953,chr22,16416036,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.22000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,0.56000000,0.00000000,,0.40243902,82.00000000,3.62831858,0.00000000,0.00000000,4.51000000 +954,chr22,16416895,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,56.19000000,12.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.46000000,0.00000000,,0.41379310,91.00000000,4.02654867,0.04395604,0.00000000,8.15000000 +955,chr22,16417036,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.47000000,34.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,75.00000000,0.00000000,1.57000000,0.00000000,,0.13815789,152.00000000,6.72566372,0.00000000,0.00000000,4.64000000 +956,chr22,16417663,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,52.46000000,16.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.32432432,75.00000000,3.31858407,0.01333333,0.00000000,8.24000000 +957,chr22,16418937,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.65000000,52.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.37000000,0.00000000,,0.33783784,75.00000000,3.31858407,0.01333333,0.00000000,8.23000000 +958,chr22,16419079,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.02000000,58.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,100.00000000,0.00000000,2.09000000,0.00000000,,0.29411765,103.00000000,4.55752212,0.00970874,0.00000000,5.89000000 +959,chr22,16419408,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,50.64000000,43.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,79.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,120.00000000,5.30973451,0.00000000,0.00000000,4.73000000 +960,chr22,16422809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.50000000,0.00000000,,0.48192771,86.00000000,3.80530973,0.03488372,0.00000000,4.44000000 +961,chr22,16424254,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,54.03000000,24.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,114.00000000,0.00000000,2.56000000,0.00000000,,0.37113402,99.00000000,4.38053097,0.02020202,0.00000000,11.96000000 +962,chr22,16573213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.97000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.00000000,0.00000000,6.12000000 +963,chr22,16573401,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.85000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +964,chr22,16573442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.63000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.85000000,0.00000000,,0.12328767,76.00000000,3.36283186,0.02631579,0.00000000,5.01000000 +965,chr22,16573905,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,5.79000000 +966,chr22,16575088,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.33000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.59000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,4.48000000 +967,chr22,16577726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.18000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.19000000 +968,chr22,16579026,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.70000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,1.07000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,5.60000000 +969,chr22,16579529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.31000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.99000000 +970,chr22,16580157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.67000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +971,chr22,16580203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,5.60000000 +972,chr22,16580666,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.81000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +973,chr22,16583361,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.81000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.72000000,0.00000000,,0.16666667,54.00000000,2.38938053,0.00000000,0.00000000,5.76000000 +974,chr22,16583995,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.72000000 +975,chr22,16585603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.63000000,0.00000000,,0.16279070,44.00000000,1.94690265,0.02272727,0.00000000,4.31000000 +976,chr22,16585878,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,30.00000000,0.00000000,-0.59000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,3.85000000 +977,chr22,16599732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.74000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +978,chr22,16612526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,-0.39000000,0.00000000,,0.18181818,56.00000000,2.47787611,0.00000000,0.00000000,2.87000000 +979,chr22,16613057,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.10000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.19000000 +980,chr22,16613264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.67000000 +981,chr22,16618217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.75000000 +982,chr22,16622188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.03000000 +983,chr22,16625553,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.79000000,0.00000000,,0.17391304,72.00000000,3.18584071,0.04166667,0.00000000,5.63000000 +984,chr22,16626741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.00000000,0.00000000,7.16000000 +985,chr22,16629375,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.70000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,7.43000000 +986,chr22,16631746,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.44000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,1.40000000,0.00000000,,0.30666667,77.00000000,3.40707965,0.02597403,0.00000000,5.68000000 +987,chr22,16632936,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.93000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.87000000 +988,chr22,16641442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.44000000 +989,chr22,16642285,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,50.85000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.36000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,5.70000000 +990,chr22,16644003,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,46.77000000,17.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.08000000,0.00000000,,0.26865672,67.00000000,2.96460177,0.00000000,0.00000000,6.05000000 +991,chr22,16646267,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.42000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.41000000 +992,chr22,16648018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.14492754,73.00000000,3.23008850,0.05479452,0.00000000,5.49000000 +993,chr22,16649378,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.98000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +994,chr22,16649512,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +995,chr22,16650526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.16000000 +996,chr22,16652119,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,7.08000000 +997,chr22,16653604,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-1.68000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.02739726,0.00000000,5.47000000 +998,chr22,16654447,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.58000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +999,chr22,16655970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.61000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,2.97000000 +1000,chr22,16658976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.56000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.19000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,5.92000000 +1001,chr22,16660449,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,67.00000000,0.00000000,1.77000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.00000000,0.00000000,5.81000000 +1002,chr22,16661781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.02000000,15.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.38000000 +1003,chr22,16664924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.87000000,9.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,23.00000000,0.00000000,-1.44000000,0.00000000,,0.31428571,35.00000000,1.54867257,0.00000000,0.00000000,3.02000000 +1004,chr22,16665686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,27.00000000,0.00000000,1.77000000,0.00000000,,0.35294118,51.00000000,2.25663717,0.00000000,0.00000000,3.64000000 +1005,chr22,16665687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,27.00000000,0.00000000,1.77000000,0.00000000,,0.35294118,51.00000000,2.25663717,0.00000000,0.00000000,3.64000000 +1006,chr22,16667879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.72000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.00000000,0.00000000,6.77000000 +1007,chr22,16669786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.14000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.54000000 +1008,chr22,16670178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,57.00000000,0.00000000,1.17000000,0.00000000,,0.25000000,91.00000000,4.02654867,0.02197802,0.00000000,2.92000000 +1009,chr22,16681997,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,22.00000000,0.97345133,0.04545455,0.00000000,13.00000000,0.00000000,-0.41000000,0.00000000,,0.33333333,84.00000000,3.71681416,0.03571429,0.00000000,3.29000000 +1010,chr22,16689707,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +1011,chr22,16689902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.95000000,10.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.53000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.00000000 +1012,chr22,16694891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.01000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.99000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.61000000 +1013,chr22,16697711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.65000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.12000000 +1014,chr22,16699785,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.97000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.01136364,0.00000000,5.76000000 +1015,chr22,16703270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.60000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.71000000 +1016,chr22,16714378,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.44000000 +1017,chr22,16716496,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.85000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.00000000,0.00000000,7.41000000 +1018,chr22,16719756,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.48000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,6.08000000 +1019,chr22,16720766,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.60000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.28000000 +1020,chr22,16720934,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,0.71000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.53000000 +1021,chr22,16722678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.49000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.03571429,0.00000000,5.52000000 +1022,chr22,16722872,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +1023,chr22,16725912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.26373626,94.00000000,4.15929204,0.02127660,0.00000000,5.75000000 +1024,chr22,16727533,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,2.53000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.33000000 +1025,chr22,16732408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1026,chr22,16733220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.11000000,0.00000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,5.42000000 +1027,chr22,16735646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,2.09000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.01000000,0.00000000,6.60000000 +1028,chr22,16738684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.82000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.69000000 +1029,chr22,16739923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-1.45000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.21000000 +1030,chr22,16742374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.12658228,83.00000000,3.67256637,0.03614458,0.00000000,4.99000000 +1031,chr22,16742381,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.36000000,0.00000000,,0.12987013,80.00000000,3.53982301,0.03750000,0.00000000,4.98000000 +1032,chr22,16742672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.19000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.01587302,0.00000000,6.73000000 +1033,chr22,16743136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.56000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,55.00000000,0.00000000,1.20000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.01219512,0.00000000,3.04000000 +1034,chr22,16743395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.06000000 +1035,chr22,16751711,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.01000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,6.36000000 +1036,chr22,16754717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.89000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +1037,chr22,16767958,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.68000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.95000000 +1038,chr22,16768054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.84000000,14.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.25000000,48.00000000,2.12389381,0.00000000,0.00000000,6.47000000 +1039,chr22,16774125,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1040,chr22,16774862,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.01298701,0.00000000,6.75000000 +1041,chr22,16775960,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.70000000,0.00000000,,0.25641026,82.00000000,3.62831858,0.04878049,0.00000000,5.98000000 +1042,chr22,16776308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.50000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1043,chr22,16781098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,1.30000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +1044,chr22,16782453,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.29000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.13000000 +1045,chr22,16784014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.32000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +1046,chr22,16784304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.30000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.05000000 +1047,chr22,16789308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.41000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.63000000 +1048,chr22,16789597,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.29000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +1049,chr22,16795218,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.35555556,91.00000000,4.02654867,0.01098901,0.00000000,8.46000000 +1050,chr22,16795961,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,5.00000000,0.00000000,-1.69000000,0.00000000,,0.50602410,87.00000000,3.84955752,0.04597701,0.00000000,3.44000000 +1051,chr22,16797540,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.78000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.24000000 +1052,chr22,16797575,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,45.00000000,0.00000000,0.56000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,4.56000000 +1053,chr22,16797605,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,24.00000000,0.00000000,-0.55000000,0.00000000,,0.42857143,58.00000000,2.56637168,0.03448276,0.00000000,4.14000000 +1054,chr22,16798225,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,39.00000000,0.00000000,0.54000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.02631579,0.00000000,4.01000000 +1055,chr22,16799455,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,-1.45000000,0.00000000,,0.51724138,61.00000000,2.69911504,0.03278689,0.00000000,4.50000000 +1056,chr22,16799498,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,-2.13000000,0.00000000,,0.46153846,66.00000000,2.92035398,0.01515152,0.00000000,7.53000000 +1057,chr22,16800502,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.49000000,0.00000000,,0.44736842,79.00000000,3.49557522,0.03797468,0.00000000,8.17000000 +1058,chr22,16801041,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.91000000 +1059,chr22,16803175,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,0.84000000,0.00000000,,0.43333333,62.00000000,2.74336283,0.03225806,0.00000000,7.81000000 +1060,chr22,16803473,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.43283582,71.00000000,3.14159292,0.05633803,0.00000000,8.24000000 +1061,chr22,16805439,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-2.71000000,0.00000000,,0.50649351,79.00000000,3.49557522,0.02531646,0.00000000,8.16000000 +1062,chr22,16805822,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.45205479,76.00000000,3.36283186,0.03947368,0.00000000,8.10000000 +1063,chr22,16806945,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,43.00000000,0.00000000,-0.68000000,0.00000000,,0.38461538,78.00000000,3.45132743,0.00000000,0.00000000,3.97000000 +1064,chr22,16807168,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02325581,43.00000000,1.90265487,0.00000000,0.00000000,105.00000000,0.00000000,-0.07000000,0.00000000,,0.34831461,90.00000000,3.98230088,0.01111111,0.00000000,14.00000000 +1065,chr22,16807376,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.51219512,83.00000000,3.67256637,0.00000000,0.00000000,8.41000000 +1066,chr22,16814529,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.74000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +1067,chr22,16816517,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.84000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,8.26000000 +1068,chr22,16828991,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.75000000,0.00000000,,0.31081081,74.00000000,3.27433628,0.00000000,0.00000000,6.76000000 +1069,chr22,16834212,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,0.40000000,0.00000000,,0.52173913,70.00000000,3.09734513,0.00000000,0.00000000,8.49000000 +1070,chr22,16835423,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,102.00000000,0.00000000,-0.55000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,10.36000000 +1071,chr22,16836097,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.03000000,0.00000000,,0.50704225,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +1072,chr22,16836100,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-1.04000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.00000000,0.00000000,8.54000000 +1073,chr22,16840138,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.09000000 +1074,chr22,16841465,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.12000000,0.00000000,,0.54666667,77.00000000,3.40707965,0.02597403,0.00000000,3.70000000 +1075,chr22,16843689,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.74000000,0.00000000,,0.47126437,87.00000000,3.84955752,0.00000000,0.00000000,8.95000000 +1076,chr22,16845388,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.45679012,83.00000000,3.67256637,0.02409639,0.00000000,7.61000000 +1077,chr22,16845542,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.08888889,0.00000000,106.00000000,0.00000000,2.84000000,0.00000000,,0.38834951,109.00000000,4.82300885,0.05504587,0.00000000,11.96000000 +1078,chr22,16845626,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,100.00000000,0.00000000,-2.13000000,0.00000000,,0.33333333,85.00000000,3.76106195,0.01176471,0.00000000,8.03000000 +1079,chr22,16845660,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,0.42000000,0.00000000,,0.41666667,77.00000000,3.40707965,0.06493506,0.00000000,7.61000000 +1080,chr22,16846249,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.34000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +1081,chr22,16846310,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-0.22000000,0.00000000,,0.37037037,82.00000000,3.62831858,0.01219512,0.00000000,8.64000000 +1082,chr22,16846476,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.31000000,0.00000000,,0.40000000,101.00000000,4.46902655,0.00990099,0.00000000,8.67000000 +1083,chr22,16847912,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.39240506,81.00000000,3.58407080,0.01234568,0.00000000,8.63000000 +1084,chr22,16849480,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,19.00000000,0.00000000,-0.91000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,3.20000000 +1085,chr22,16850130,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,-0.19000000,0.00000000,,0.39393939,100.00000000,4.42477876,0.01000000,0.00000000,8.60000000 +1086,chr22,16852607,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,-0.13000000,0.00000000,,0.37837838,74.00000000,3.27433628,0.00000000,0.00000000,8.93000000 +1087,chr22,16856564,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,0.83000000,0.00000000,,0.44927536,70.00000000,3.09734513,0.01428571,0.00000000,4.31000000 +1088,chr22,16857172,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.42857143,92.00000000,4.07079646,0.01086957,0.00000000,8.52000000 +1089,chr22,16857396,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.43678161,89.00000000,3.93805310,0.01123596,0.00000000,8.46000000 +1090,chr22,16857817,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.01000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.06000000,0.00000000,,0.50000000,66.00000000,2.92035398,0.00000000,0.00000000,4.22000000 +1091,chr22,16858151,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.12000000,0.00000000,,0.48571429,72.00000000,3.18584071,0.02777778,0.00000000,4.29000000 +1092,chr22,16858352,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.83000000,0.00000000,,0.36000000,76.00000000,3.36283186,0.01315789,0.00000000,8.45000000 +1093,chr22,16858862,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-1.47000000,0.00000000,,0.44047619,87.00000000,3.84955752,0.02298851,0.00000000,8.20000000 +1094,chr22,16859187,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,45.00000000,0.00000000,-1.28000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,4.49000000 +1095,chr22,16859529,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,0.62000000,0.00000000,,0.40740741,81.00000000,3.58407080,0.00000000,0.00000000,8.06000000 +1096,chr22,16859749,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.06000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,8.55000000 +1097,chr22,16859779,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.47000000,0.00000000,,0.37179487,79.00000000,3.49557522,0.01265823,0.00000000,8.72000000 +1098,chr22,16861014,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.00000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,8.36000000 +1099,chr22,16861713,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,1.82000000,0.00000000,,0.42528736,89.00000000,3.93805310,0.02247191,0.00000000,4.74000000 +1100,chr22,16862095,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.63000000,0.00000000,,0.53333333,78.00000000,3.45132743,0.03846154,0.00000000,8.28000000 +1101,chr22,16863969,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,105.00000000,0.00000000,-0.61000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,14.38000000 +1102,chr22,16865994,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,0.77000000,0.00000000,,0.44186047,89.00000000,3.93805310,0.02247191,0.00000000,7.92000000 +1103,chr22,16883828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.24000000,34.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.11764706,0.00000000,15.00000000,0.00000000,-0.54000000,0.00000000,,0.42222222,46.00000000,2.03539823,0.02173913,0.00000000,3.47000000 +1104,chr22,16887603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.18000000,15.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.49000000,0.00000000,,0.10606061,67.00000000,2.96460177,0.01492537,0.00000000,4.86000000 +1105,chr22,16889203,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.22000000,13.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-2.00000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.33000000 +1106,chr22,16889276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.00000000,19.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.76000000,0.00000000,,0.33333333,58.00000000,2.56637168,0.01724138,0.00000000,8.69000000 +1107,chr22,16891366,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.15000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.23000000,0.00000000,,0.16666667,93.00000000,4.11504425,0.03225806,0.00000000,5.62000000 +1108,chr22,16891465,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.07000000,14.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.53000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.96000000 +1109,chr22,16891467,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.83000000,15.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.82000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,6.21000000 +1110,chr22,16891474,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.26000000,18.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.20000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.19000000 +1111,chr22,16892119,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,48.67000000,51.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.61000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,6.26000000 +1112,chr22,16893167,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,46.80000000,70.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,-0.72000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.83000000 +1113,chr22,16898095,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,57.10000000,10.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.42000000,0.00000000,,0.31343284,68.00000000,3.00884956,0.01470588,0.00000000,6.69000000 +1114,chr22,16898164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.50000000,33.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-1.07000000,0.00000000,,0.31578947,59.00000000,2.61061947,0.03389831,0.00000000,6.51000000 +1115,chr22,16899672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.68000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +1116,chr22,16900449,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,47.11000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-0.78000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,4.26000000 +1117,chr22,16904256,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.70000000 +1118,chr22,16904647,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.08000000 +1119,chr22,16904736,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.35000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.69000000 +1120,chr22,16905335,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,51.22000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.66000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,5.29000000 +1121,chr22,16906755,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,45.79000000,61.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.71000000,0.00000000,,0.37313433,67.00000000,2.96460177,0.00000000,0.00000000,8.43000000 +1122,chr22,16906867,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.29000000,8.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-0.90000000,0.00000000,,0.47540984,61.00000000,2.69911504,0.00000000,0.00000000,8.70000000 +1123,chr22,16907080,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.33000000,14.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.39000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.02941176,0.00000000,6.15000000 +1124,chr22,16907149,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,54.29000000,18.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,2.15000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,5.88000000 +1125,chr22,16907203,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.09000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.35000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.58000000 +1126,chr22,16907260,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.88000000,9.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.53000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.08000000 +1127,chr22,16907290,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,57.74000000,7.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.48000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.02739726,0.00000000,5.39000000 +1128,chr22,16907297,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.74000000,7.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.23000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.51000000 +1129,chr22,16907397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.07000000,10.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,3.44000000 +1130,chr22,16907833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.88000000,7.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.24000000 +1131,chr22,16907944,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,58.00000000,0.00000000,-0.79000000,0.00000000,,0.20895522,73.00000000,3.23008850,0.02739726,0.00000000,4.34000000 +1132,chr22,16908266,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-1.24000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1133,chr22,16909268,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.42000000,11.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,73.00000000,0.00000000,-2.67000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.31000000 +1134,chr22,16910198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.60000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,0.98000000,3.20000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,3.61000000 +1135,chr22,16911741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,49.85000000,56.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,4.89000000 +1136,chr22,16911769,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,53.38000000,33.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.45000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.03750000,0.00000000,5.50000000 +1137,chr22,16911982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.86000000,29.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.28000000,0.00000000,,0.24000000,51.00000000,2.25663717,0.01960784,0.00000000,6.44000000 +1138,chr22,16912130,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,35.00000000,0.00000000,-0.17000000,0.00000000,,0.40384615,52.00000000,2.30088496,0.00000000,0.00000000,4.09000000 +1139,chr22,16915084,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.88000000 +1140,chr22,16917618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-1.26000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.67000000 +1141,chr22,16917922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.72000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,5.94000000 +1142,chr22,16924021,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.88000000,0.00000000,,0.38750000,82.00000000,3.62831858,0.02439024,0.00000000,7.20000000 +1143,chr22,16924385,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.01190476,0.00000000,6.36000000 +1144,chr22,16925360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.73000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.01136364,0.00000000,6.65000000 +1145,chr22,16925691,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.40000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.00000000 +1146,chr22,16926676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.76000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.41000000 +1147,chr22,16927226,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,0.00000000,-1.82000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.02325581,0.00000000,13.80000000 +1148,chr22,16929007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.87000000 +1149,chr22,16929855,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.20000000 +1150,chr22,16931326,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,60.00000000,0.00000000,-0.75000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.53000000 +1151,chr22,16933213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,78.00000000,0.00000000,-0.27000000,0.00000000,,0.17000000,100.00000000,4.42477876,0.00000000,0.00000000,5.45000000 +1152,chr22,16933495,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,84.00000000,0.00000000,1.68000000,0.00000000,,0.20731707,86.00000000,3.80530973,0.04651163,0.00000000,5.24000000 +1153,chr22,16935588,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,68.00000000,0.00000000,2.01000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.03947368,0.00000000,5.41000000 +1154,chr22,16935715,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.29000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +1155,chr22,16936035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.54000000,0.00000000,,0.16393443,64.00000000,2.83185841,0.04687500,0.00000000,4.25000000 +1156,chr22,16938448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-1.98000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.59000000 +1157,chr22,16938678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.03000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.22000000 +1158,chr22,16940239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,1.21000000,0.00000000,,0.30232558,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +1159,chr22,16942011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,7.03000000 +1160,chr22,16943040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,1.30000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +1161,chr22,16943607,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,70.00000000,0.00000000,1.01000000,0.00000000,,0.12643678,88.00000000,3.89380531,0.01136364,0.00000000,4.71000000 +1162,chr22,16946774,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.16000000,0.00000000,,0.36170213,94.00000000,4.15929204,0.00000000,0.00000000,8.93000000 +1163,chr22,16948092,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,0.00000000,0.00000000,,0.45679012,82.00000000,3.62831858,0.01219512,0.00000000,4.28000000 +1164,chr22,16948456,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.43478261,94.00000000,4.15929204,0.02127660,0.00000000,8.23000000 +1165,chr22,16948494,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.45000000,0.00000000,,0.43750000,96.00000000,4.24778761,0.00000000,0.00000000,7.89000000 +1166,chr22,16948544,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,50.00000000,0.00000000,-0.68000000,0.00000000,,0.40000000,80.00000000,3.53982301,0.00000000,0.00000000,4.23000000 +1167,chr22,16950489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.61000000,0.00000000,,0.16504854,103.00000000,4.55752212,0.00000000,0.00000000,5.56000000 +1168,chr22,16951592,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.21000000,0.00000000,,0.60493827,82.00000000,3.62831858,0.00000000,0.00000000,8.52000000 +1169,chr22,16953102,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.65000000,0.00000000,,0.44927536,69.00000000,3.05309735,0.00000000,0.00000000,8.93000000 +1170,chr22,16953363,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.93000000,0.00000000,,0.52000000,76.00000000,3.36283186,0.01315789,0.00000000,4.21000000 +1171,chr22,16954041,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.59000000,0.00000000,,0.39240506,81.00000000,3.58407080,0.02469136,0.00000000,8.10000000 +1172,chr22,16958924,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.38372093,88.00000000,3.89380531,0.02272727,0.00000000,8.36000000 +1173,chr22,16960634,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.81000000,0.00000000,,0.45555556,91.00000000,4.02654867,0.01098901,0.00000000,8.43000000 +1174,chr22,16961849,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.42352941,86.00000000,3.80530973,0.01162791,0.00000000,7.83000000 +1175,chr22,16963341,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,51.00000000,0.00000000,-1.38000000,0.00000000,,0.37209302,86.00000000,3.80530973,0.00000000,0.00000000,4.41000000 +1176,chr22,16965825,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.40243902,83.00000000,3.67256637,0.00000000,0.00000000,8.95000000 +1177,chr22,16966016,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.50000000,0.00000000,,0.38888889,93.00000000,4.11504425,0.03225806,0.00000000,7.99000000 +1178,chr22,16970820,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.36000000,0.00000000,,0.50000000,81.00000000,3.58407080,0.01234568,0.00000000,7.56000000 +1179,chr22,16970964,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,1.80000000,0.00000000,,0.42307692,83.00000000,3.67256637,0.06024096,0.00000000,8.40000000 +1180,chr22,16971410,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.43902439,84.00000000,3.71681416,0.02380952,0.00000000,8.39000000 +1181,chr22,16978878,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,-0.21000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.01298701,0.00000000,4.71000000 +1182,chr22,16980993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.00000000,0.00000000,6.11000000 +1183,chr22,16982299,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-2.12000000,0.00000000,,0.46987952,86.00000000,3.80530973,0.03488372,0.00000000,7.52000000 +1184,chr22,16982730,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.17000000,0.00000000,,0.52054795,73.00000000,3.23008850,0.00000000,0.00000000,4.28000000 +1185,chr22,16992998,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,0.00000000,-0.86000000,0.00000000,,0.53488372,86.00000000,3.80530973,0.00000000,0.00000000,8.74000000 +1186,chr22,16996676,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.06000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.87000000 +1187,chr22,16996699,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.42000000,0.00000000,,0.45614035,58.00000000,2.56637168,0.01724138,0.00000000,7.48000000 +1188,chr22,16997346,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,53.73000000,21.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.70000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.03174603,0.00000000,3.16000000 +1189,chr22,17007540,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.22000000,0.00000000,,0.49180328,62.00000000,2.74336283,0.01612903,0.00000000,3.94000000 +1190,chr22,17008234,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.25000000,0.00000000,,0.49152542,59.00000000,2.61061947,0.00000000,0.00000000,4.60000000 +1191,chr22,17008391,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,41.00000000,0.00000000,-1.85000000,0.00000000,,0.48611111,78.00000000,3.45132743,0.07692308,0.00000000,4.15000000 +1192,chr22,17010694,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.37000000 +1193,chr22,17011562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.25000000 +1194,chr22,17021269,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,55.71000000,16.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.28421053,96.00000000,4.24778761,0.01041667,0.00000000,5.77000000 +1195,chr22,17113582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.10000000,0.00000000,83.00000000,0.00000000,-1.70000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,5.93000000 +1196,chr22,17115339,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.86000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.23000000 +1197,chr22,17116407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,86.00000000,0.00000000,0.57000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.00000000,0.00000000,5.99000000 +1198,chr22,17116823,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,-1.11000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.82000000 +1199,chr22,17116878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,1.03000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +1200,chr22,17117420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.90000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,6.06000000 +1201,chr22,17117923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.22000000 +1202,chr22,17118954,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,0.32000000,0.00000000,,0.29545455,88.00000000,3.89380531,0.00000000,0.00000000,5.92000000 +1203,chr22,17128341,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.87000000,0.00000000,,0.28571429,75.00000000,3.31858407,0.06666667,0.00000000,4.86000000 +1204,chr22,17129414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,0.30000000,0.00000000,,0.15714286,71.00000000,3.14159292,0.00000000,0.00000000,6.26000000 +1205,chr22,17129901,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.98000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.21000000 +1206,chr22,17133802,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.19000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.34000000 +1207,chr22,17134412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,2.01000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.69000000 +1208,chr22,17134482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.12676056,74.00000000,3.27433628,0.02702703,0.00000000,5.60000000 +1209,chr22,17135151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,-1.27000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.20000000 +1210,chr22,17138402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.04000000,0.00000000,6.25000000 +1211,chr22,17138826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.90000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +1212,chr22,17141728,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.42000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.95000000 +1213,chr22,17143535,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.90000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +1214,chr22,17151243,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.31000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.07000000 +1215,chr22,17151304,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.61000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.30000000 +1216,chr22,17156988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,43.00000000,0.00000000,0.13000000,0.00000000,,0.34042553,49.00000000,2.16814159,0.02040816,0.00000000,4.18000000 +1217,chr22,17158433,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,-0.82000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.62000000 +1218,chr22,17160610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,72.00000000,0.00000000,0.47000000,0.00000000,,0.24324324,80.00000000,3.53982301,0.07500000,0.00000000,5.74000000 +1219,chr22,17161022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.12000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,7.21000000 +1220,chr22,17162835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.49000000 +1221,chr22,17162953,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +1222,chr22,17163241,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.88000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +1223,chr22,17163835,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.30000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,7.04000000 +1224,chr22,17165706,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +1225,chr22,17166125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.38000000,0.00000000,,0.18965517,62.00000000,2.74336283,0.04838710,0.00000000,6.41000000 +1226,chr22,17166972,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.41000000 +1227,chr22,17166989,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.28000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.69000000 +1228,chr22,17170551,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +1229,chr22,17171571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.00000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +1230,chr22,17172140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.22950820,63.00000000,2.78761062,0.01587302,0.00000000,5.78000000 +1231,chr22,17173178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,70.00000000,0.00000000,-0.44000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,4.96000000 +1232,chr22,17173501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.39000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +1233,chr22,17174211,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.29411765,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +1234,chr22,17175834,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,-0.18000000,0.00000000,,0.23008850,120.00000000,5.30973451,0.05000000,0.00000000,5.86000000 +1235,chr22,17187601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,-0.87000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.03260870,0.00000000,5.87000000 +1236,chr22,17187678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.03703704,0.00000000,5.72000000 +1237,chr22,17189366,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.24000000,0.00000000,,0.40540541,75.00000000,3.31858407,0.01333333,0.00000000,8.51000000 +1238,chr22,17190243,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.43902439,85.00000000,3.76106195,0.03529412,0.00000000,8.06000000 +1239,chr22,17199169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.18181818,74.00000000,3.27433628,0.08108108,0.00000000,5.84000000 +1240,chr22,17199629,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,0.32000000,0.00000000,,0.43076923,69.00000000,3.05309735,0.05797101,0.00000000,7.98000000 +1241,chr22,17200081,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-1.07000000,0.00000000,,0.36000000,52.00000000,2.30088496,0.01923077,0.00000000,8.05000000 +1242,chr22,17202785,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.07692308,30.00000000,1.32743363,0.13333333,0.00000000,6.00000000,0.00000000,0.64000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.06666667,0.00000000,3.50000000 +1243,chr22,17204304,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.66000000,0.00000000,,0.45070423,73.00000000,3.23008850,0.02739726,0.00000000,4.41000000 +1244,chr22,17204461,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,92.00000000,0.00000000,-0.32000000,0.00000000,,0.38235294,71.00000000,3.14159292,0.04225352,0.00000000,8.30000000 +1245,chr22,17204468,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,-0.84000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.04054054,0.00000000,8.14000000 +1246,chr22,17209228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.00000000,0.00000000,6.33000000 +1247,chr22,17209519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,103.00000000,0.00000000,-0.15000000,0.00000000,,0.33333333,88.00000000,3.89380531,0.00000000,0.00000000,13.91000000 +1248,chr22,17232488,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,0.22000000,0.00000000,,0.37681159,88.00000000,3.89380531,0.21590909,0.00000000,6.44000000 +1249,chr22,17234205,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.23000000,0.00000000,,0.30769231,78.00000000,3.45132743,0.00000000,0.00000000,6.46000000 +1250,chr22,17238021,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.71000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.75000000 +1251,chr22,17239465,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.04000000,0.00000000,,0.21649485,97.00000000,4.29203540,0.00000000,0.00000000,6.39000000 +1252,chr22,17239813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.43000000 +1253,chr22,17241995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.51000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.58000000 +1254,chr22,17247148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.18965517,73.00000000,3.23008850,0.20547945,0.00000000,5.77000000 +1255,chr22,17247356,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-2.49000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.11000000 +1256,chr22,17248816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.03000000,0.00000000,,0.25490196,52.00000000,2.30088496,0.01923077,0.00000000,6.38000000 +1257,chr22,17258347,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.19178082,79.00000000,3.49557522,0.07594937,0.00000000,6.06000000 +1258,chr22,17258621,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.16000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,6.10000000 +1259,chr22,17274907,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +1260,chr22,17308355,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.27000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.09000000 +1261,chr22,17308367,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.24000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,7.00000000 +1262,chr22,17316557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-2.09000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.00000000,0.00000000,5.23000000 +1263,chr22,17316560,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.67000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.88000000 +1264,chr22,17316838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.55000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +1265,chr22,17318973,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,84.00000000,0.00000000,0.06000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.82000000 +1266,chr22,17319066,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.14000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.80000000 +1267,chr22,17319582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.90000000,0.00000000,,0.09859155,71.00000000,3.14159292,0.00000000,0.00000000,5.44000000 +1268,chr22,17319622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.91000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +1269,chr22,17321891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,55.00000000,0.00000000,0.78000000,0.00000000,,0.13235294,79.00000000,3.49557522,0.12658228,0.00000000,2.90000000 +1270,chr22,17321924,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-1.61000000,0.00000000,,0.09090909,62.00000000,2.74336283,0.11290323,0.00000000,4.46000000 +1271,chr22,17321937,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-2.36000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.36000000 +1272,chr22,17322703,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.23076923,0.00000000,57.00000000,0.00000000,0.31000000,0.00000000,,0.25000000,54.00000000,2.38938053,0.11111111,0.00000000,3.08000000 +1273,chr22,17323944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.58000000 +1274,chr22,17324319,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.93000000,0.00000000,,0.26666667,78.00000000,3.45132743,0.03846154,0.00000000,6.28000000 +1275,chr22,17324323,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +1276,chr22,17324540,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,93.00000000,0.00000000,-1.24000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.79000000 +1277,chr22,17324562,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,-1.08000000,0.00000000,,0.26804124,97.00000000,4.29203540,0.00000000,0.00000000,6.66000000 +1278,chr22,17324842,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,72.00000000,0.00000000,-2.40000000,0.00000000,,0.19354839,68.00000000,3.00884956,0.08823529,0.00000000,5.80000000 +1279,chr22,17325250,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,5.75000000 +1280,chr22,17325332,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.20408163,49.00000000,2.16814159,0.00000000,0.00000000,6.96000000 +1281,chr22,17325832,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.99000000 +1282,chr22,17326058,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.21212121,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +1283,chr22,17326108,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.78000000 +1284,chr22,17326457,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +1285,chr22,17326541,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.58000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.68000000 +1286,chr22,17326841,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,52.00000000,0.00000000,0.43000000,0.00000000,,0.25862069,59.00000000,2.61061947,0.01694915,0.00000000,2.87000000 +1287,chr22,17326875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.86000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.00000000 +1288,chr22,17326996,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,30.00000000,1.32743363,0.06666667,0.00000000,59.00000000,0.00000000,2.05000000,0.00000000,,0.13793103,64.00000000,2.83185841,0.09375000,0.00000000,4.02000000 +1289,chr22,17327057,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.16417910,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +1290,chr22,17327167,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.18032787,64.00000000,2.83185841,0.04687500,0.00000000,5.46000000 +1291,chr22,17327260,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.40000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +1292,chr22,17327261,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +1293,chr22,17327589,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.08000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.54000000 +1294,chr22,17327618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,1.28000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +1295,chr22,17327745,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.06000000,0.00000000,,0.08695652,70.00000000,3.09734513,0.01428571,0.00000000,4.96000000 +1296,chr22,17328071,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,6.75000000 +1297,chr22,17328559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.65000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +1298,chr22,17329163,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.84000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.54000000 +1299,chr22,17329593,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.13000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +1300,chr22,17329753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +1301,chr22,17331140,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.43000000 +1302,chr22,17331706,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.49000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +1303,chr22,17331770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-1.34000000,0.00000000,,0.26136364,91.00000000,4.02654867,0.03296703,0.00000000,6.58000000 +1304,chr22,17331907,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.94000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +1305,chr22,17334485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.19000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.26000000 +1306,chr22,17366152,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.11111111,55.00000000,2.43362832,0.01818182,0.00000000,5.19000000 +1307,chr22,17387263,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.83000000 +1308,chr22,17390451,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.42000000 +1309,chr22,17393983,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.24324324,0.00000000,66.00000000,0.00000000,-1.96000000,0.00000000,,0.16363636,63.00000000,2.78761062,0.12698413,0.00000000,5.23000000 +1310,chr22,17395621,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-1.24000000,0.00000000,,0.10666667,77.00000000,3.40707965,0.02597403,0.00000000,5.11000000 +1311,chr22,17396359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-1.25000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.10000000 +1312,chr22,17396384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.50000000 +1313,chr22,17401381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.01000000 +1314,chr22,17415033,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,6.08000000 +1315,chr22,17415036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,5.94000000 +1316,chr22,17415391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.35000000,0.00000000,,0.24096386,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +1317,chr22,17417159,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.25609756,86.00000000,3.80530973,0.04651163,0.00000000,6.42000000 +1318,chr22,17417487,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-0.06000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.96000000 +1319,chr22,17417488,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.00000000,0.00000000,6.83000000 +1320,chr22,17417920,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-1.04000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +1321,chr22,17417993,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.48000000 +1322,chr22,17418417,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.36000000 +1323,chr22,17418497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,6.30000000 +1324,chr22,17418561,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,86.00000000,0.00000000,-1.00000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,5.41000000 +1325,chr22,17418775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-2.69000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.00000000,0.00000000,5.95000000 +1326,chr22,17418870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.81000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.38000000 +1327,chr22,17419146,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,80.00000000,0.00000000,0.79000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.03296703,0.00000000,5.63000000 +1328,chr22,17419179,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.86000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.02469136,0.00000000,6.05000000 +1329,chr22,17419194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +1330,chr22,17420089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,4.65000000 +1331,chr22,17420128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,77.00000000,0.00000000,1.31000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,5.63000000 +1332,chr22,17420471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.04000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.24000000 +1333,chr22,17420794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.89000000 +1334,chr22,17421478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,6.74000000 +1335,chr22,17421757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.09000000,0.00000000,,0.16666667,70.00000000,3.09734513,0.05714286,0.00000000,5.37000000 +1336,chr22,17421886,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.18644068,62.00000000,2.74336283,0.04838710,0.00000000,6.15000000 +1337,chr22,17423309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +1338,chr22,17423794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.98000000 +1339,chr22,17426546,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.34000000 +1340,chr22,17427131,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.37000000 +1341,chr22,17427662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.17000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +1342,chr22,17428305,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +1343,chr22,17428366,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.62000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +1344,chr22,17428693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.40000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.70000000 +1345,chr22,17430479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.50000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.69000000 +1346,chr22,17439492,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +1347,chr22,17448122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.17000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.01041667,0.00000000,6.51000000 +1348,chr22,17460779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.58000000,0.00000000,,0.20202020,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +1349,chr22,17463835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.02000000 +1350,chr22,17463875,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-1.34000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,7.02000000 +1351,chr22,17465129,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.23636364,55.00000000,2.43362832,0.00000000,0.00000000,6.06000000 +1352,chr22,17465328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-0.31000000,0.00000000,,0.25301205,88.00000000,3.89380531,0.05681818,0.00000000,5.78000000 +1353,chr22,17469293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.97000000 +1354,chr22,17469300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,7.01000000 +1355,chr22,17469431,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.98000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +1356,chr22,17469875,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +1357,chr22,17471754,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.37000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.05000000,0.00000000,6.62000000 +1358,chr22,17484706,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.15294118,86.00000000,3.80530973,0.01162791,0.00000000,5.82000000 +1359,chr22,17486499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,1.14000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.51000000 +1360,chr22,17486830,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-1.12000000,0.00000000,,0.14516129,66.00000000,2.92035398,0.04545455,0.00000000,5.32000000 +1361,chr22,17486932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.93000000 +1362,chr22,17487140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,2.39000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.67000000 +1363,chr22,17487574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.88000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +1364,chr22,17488006,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.74000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,3.51000000 +1365,chr22,17489123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +1366,chr22,17489562,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.07000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.36000000 +1367,chr22,17489973,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,2.01000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +1368,chr22,17506764,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.39000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.54000000 +1369,chr22,17512410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.92000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.12000000 +1370,chr22,17514600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.24000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.91000000 +1371,chr22,17515556,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.43000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.59000000 +1372,chr22,17515610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,72.00000000,0.00000000,-2.06000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,4.86000000 +1373,chr22,17516116,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-2.19000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.03000000 +1374,chr22,17516996,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,0.00000000,0.10000000,0.00000000,,0.29824561,60.00000000,2.65486726,0.05000000,0.00000000,2.89000000 +1375,chr22,17517896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +1376,chr22,17518422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +1377,chr22,17518587,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.13000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.30000000 +1378,chr22,17519222,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.83000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,5.66000000 +1379,chr22,17519777,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,-0.68000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.03529412,0.00000000,6.28000000 +1380,chr22,17520584,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.23076923,58.00000000,2.56637168,0.08620690,0.00000000,6.66000000 +1381,chr22,17520935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.08000000,0.00000000,,0.24074074,54.00000000,2.38938053,0.00000000,0.00000000,6.37000000 +1382,chr22,17522081,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.22000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +1383,chr22,17525900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +1384,chr22,17526251,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +1385,chr22,17526540,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,2.58000000,0.00000000,,0.28571429,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +1386,chr22,17526908,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.28571429,87.00000000,3.84955752,0.03448276,0.00000000,6.01000000 +1387,chr22,17527743,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.30555556,90.00000000,3.98230088,0.20000000,0.00000000,5.88000000 +1388,chr22,17527978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,0.41000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,6.54000000 +1389,chr22,17528247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.00000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,5.79000000 +1390,chr22,17530966,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.48000000 +1391,chr22,17531249,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.82000000 +1392,chr22,17531250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.74000000 +1393,chr22,17531499,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.01000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,6.20000000 +1394,chr22,17532049,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.13000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.10000000 +1395,chr22,17532316,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.02500000,0.00000000,6.55000000 +1396,chr22,17532580,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.19387755,101.00000000,4.46902655,0.02970297,0.00000000,5.79000000 +1397,chr22,17535089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,36.00000000,0.00000000,-0.86000000,0.00000000,,0.29787234,48.00000000,2.12389381,0.02083333,0.00000000,2.99000000 +1398,chr22,17537871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.21000000,0.00000000,,0.15662651,87.00000000,3.84955752,0.04597701,0.00000000,5.23000000 +1399,chr22,17538827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.98000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,6.20000000 +1400,chr22,17539251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.14285714,86.00000000,3.80530973,0.02325581,0.00000000,4.98000000 +1401,chr22,17541084,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.56000000,0.00000000,,0.15476190,88.00000000,3.89380531,0.03409091,0.00000000,5.57000000 +1402,chr22,17541167,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.24000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +1403,chr22,17541323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.97000000 +1404,chr22,17541915,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.24000000 +1405,chr22,17542071,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.57000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1406,chr22,17545891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.24000000 +1407,chr22,17551053,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.78000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.02105263,0.00000000,5.96000000 +1408,chr22,17556692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,2.70000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,6.00000000 +1409,chr22,17558731,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.02150538,0.00000000,6.14000000 +1410,chr22,17558945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.30000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.32000000 +1411,chr22,17559209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.41000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +1412,chr22,17562533,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,0.55000000,0.00000000,,0.25252525,101.00000000,4.46902655,0.00990099,0.00000000,6.61000000 +1413,chr22,17562676,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.42000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.63000000 +1414,chr22,17564557,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.17000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.04395604,0.00000000,5.91000000 +1415,chr22,17564675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.43000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.81000000 +1416,chr22,17566578,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.08000000,0.00000000,,0.14925373,68.00000000,3.00884956,0.01470588,0.00000000,5.50000000 +1417,chr22,17566919,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.98000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.93000000 +1418,chr22,17567352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.00000000,0.00000000,6.72000000 +1419,chr22,17567525,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.30000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +1420,chr22,17570321,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.03000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.75000000 +1421,chr22,17573432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.54000000 +1422,chr22,17576210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,6.28000000 +1423,chr22,17577230,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.11000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.03448276,0.00000000,6.31000000 +1424,chr22,17598694,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,0.17000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.49000000 +1425,chr22,17612968,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.32000000 +1426,chr22,17618603,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,0.97000000,0.00000000,,0.16949153,68.00000000,3.00884956,0.13235294,0.00000000,5.52000000 +1427,chr22,17619627,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.96000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.97000000 +1428,chr22,17619861,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.84000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.50000000 +1429,chr22,17620272,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,73.00000000,0.00000000,-0.64000000,0.00000000,,0.26229508,63.00000000,2.78761062,0.03174603,0.00000000,6.19000000 +1430,chr22,17624511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.57000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,6.89000000 +1431,chr22,17624705,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,68.00000000,0.00000000,1.64000000,0.00000000,,0.14285714,82.00000000,3.62831858,0.04878049,0.00000000,4.94000000 +1432,chr22,17625200,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.07000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.71000000 +1433,chr22,17628334,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,7.01000000 +1434,chr22,17629087,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.58000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.01000000 +1435,chr22,17632685,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +1436,chr22,17632686,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +1437,chr22,17636379,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.55000000,0.00000000,,0.13235294,73.00000000,3.23008850,0.06849315,0.00000000,5.44000000 +1438,chr22,17636750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.69000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.02666667,0.00000000,6.01000000 +1439,chr22,17640043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.94000000 +1440,chr22,17643396,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.66000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +1441,chr22,17644310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,0.00000000,0.68000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,5.77000000 +1442,chr22,17645315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,1.69000000,0.00000000,,0.20312500,76.00000000,3.36283186,0.15789474,0.00000000,5.77000000 +1443,chr22,17647372,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.29310345,58.00000000,2.56637168,0.00000000,0.00000000,6.79000000 +1444,chr22,17649238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.02469136,0.00000000,6.31000000 +1445,chr22,17650724,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.03614458,0.00000000,6.33000000 +1446,chr22,17658555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.28000000,0.00000000,,0.19642857,56.00000000,2.47787611,0.00000000,0.00000000,2.77000000 +1447,chr22,17664260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.52000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +1448,chr22,17668156,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.97000000 +1449,chr22,17669412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.68000000 +1450,chr22,17671000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-1.33000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,3.02000000 +1451,chr22,17673619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-1.45000000,0.00000000,,0.12307692,74.00000000,3.27433628,0.12162162,0.00000000,4.66000000 +1452,chr22,17676938,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,6.65000000 +1453,chr22,17679213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,0.00000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.03658537,0.00000000,5.44000000 +1454,chr22,17681029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.79000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,4.75000000 +1455,chr22,17681836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.11000000 +1456,chr22,17682100,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,2.18000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.01075269,0.00000000,6.30000000 +1457,chr22,17684848,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.65000000,0.00000000,,0.23287671,82.00000000,3.62831858,0.08536585,0.00000000,5.83000000 +1458,chr22,17689861,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.29000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.01612903,6.30000000 +1459,chr22,17690241,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,1.26000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.03000000 +1460,chr22,17691752,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.06000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.12000000 +1461,chr22,17692264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +1462,chr22,17694147,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.28000000 +1463,chr22,17696334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-2.26000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,7.14000000 +1464,chr22,17696623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.15957447,95.00000000,4.20353982,0.01052632,0.00000000,5.58000000 +1465,chr22,17696633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.13000000,0.00000000,,0.14606742,90.00000000,3.98230088,0.01111111,0.00000000,5.86000000 +1466,chr22,17698855,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.01000000 +1467,chr22,17704039,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.52000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.72000000 +1468,chr22,17704450,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.22950820,63.00000000,2.78761062,0.03174603,0.00000000,6.33000000 +1469,chr22,17705703,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.30000000 +1470,chr22,17705759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.83000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.95000000 +1471,chr22,17706530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.23000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.72000000 +1472,chr22,17708011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,2.46000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +1473,chr22,17710350,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.41000000 +1474,chr22,17710753,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.49000000 +1475,chr22,17710941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.33000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +1476,chr22,17713571,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,0.93000000,0.00000000,,0.16000000,52.00000000,2.30088496,0.03846154,0.00000000,4.42000000 +1477,chr22,17714287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.05000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.68000000 +1478,chr22,17714395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.12000000 +1479,chr22,17718112,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,-0.73000000,0.00000000,,0.23076923,59.00000000,2.61061947,0.10169492,0.00000000,6.19000000 +1480,chr22,17718438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.60000000 +1481,chr22,17719384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.16000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +1482,chr22,17720349,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.18367347,49.00000000,2.16814159,0.00000000,0.00000000,6.28000000 +1483,chr22,17720958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.97000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,2.90000000 +1484,chr22,17721176,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,1.23000000,0.00000000,,0.24074074,59.00000000,2.61061947,0.06779661,0.00000000,2.95000000 +1485,chr22,17721178,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.05000000,0.00000000,,0.24074074,58.00000000,2.56637168,0.06896552,0.00000000,2.79000000 +1486,chr22,17721180,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.32000000,0.00000000,,0.24074074,58.00000000,2.56637168,0.06896552,0.00000000,2.79000000 +1487,chr22,17729765,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,-0.55000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.55000000 +1488,chr22,17732754,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,1.79000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.54000000 +1489,chr22,17735675,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.65000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +1490,chr22,17736327,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.41000000 +1491,chr22,17736961,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.92000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.44000000 +1492,chr22,17738546,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.53000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.48000000 +1493,chr22,17739219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.94000000,0.00000000,,0.18279570,95.00000000,4.20353982,0.02105263,0.00000000,6.49000000 +1494,chr22,17739584,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,0.31000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.34000000 +1495,chr22,17740531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.23188406,78.00000000,3.45132743,0.11538462,0.00000000,5.81000000 +1496,chr22,17742918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,76.00000000,0.00000000,1.39000000,0.00000000,,0.19444444,78.00000000,3.45132743,0.05128205,0.00000000,5.85000000 +1497,chr22,17743755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.35000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +1498,chr22,17746421,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.13000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,6.64000000 +1499,chr22,17751823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.96000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +1500,chr22,17756546,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.42000000,0.00000000,,0.23529412,56.00000000,2.47787611,0.07142857,0.00000000,4.95000000 +1501,chr22,17757494,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,0.70000000,0.00000000,,0.53448276,62.00000000,2.74336283,0.06451613,0.00000000,4.53000000 +1502,chr22,17757658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,5.93000000 +1503,chr22,17758208,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.59000000,0.00000000,,0.12500000,83.00000000,3.67256637,0.02409639,0.00000000,5.18000000 +1504,chr22,17759416,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.84000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.02469136,0.00000000,7.64000000 +1505,chr22,17768860,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.28571429,0.00000000,56.00000000,0.00000000,0.37000000,0.00000000,,0.15384615,68.00000000,3.00884956,0.23529412,0.00000000,2.78000000 +1506,chr22,17771240,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,41.00000000,1.81415929,0.04878049,0.00000000,70.00000000,0.00000000,0.95000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.19000000 +1507,chr22,17771292,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-0.54000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,5.91000000 +1508,chr22,17771866,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.64000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.01149425,0.00000000,5.86000000 +1509,chr22,17773177,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.36000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.18000000 +1510,chr22,17773222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,0.04000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.02409639,0.00000000,4.75000000 +1511,chr22,17775616,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-1.53000000,0.00000000,,0.35294118,87.00000000,3.84955752,0.02298851,0.00000000,8.32000000 +1512,chr22,17777044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,69.00000000,0.00000000,-0.07000000,0.00000000,,0.18333333,67.00000000,2.96460177,0.10447761,0.00000000,6.09000000 +1513,chr22,17778262,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.17142857,111.00000000,4.91150442,0.01801802,0.00000000,6.29000000 +1514,chr22,17794548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.23000000,0.00000000,,0.19230769,106.00000000,4.69026549,0.01886792,0.00000000,6.17000000 +1515,chr22,17795362,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.14000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.23000000 +1516,chr22,17813672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.09000000 +1517,chr22,17813675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.16304348,92.00000000,4.07079646,0.00000000,0.00000000,5.74000000 +1518,chr22,17813718,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-1.59000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.01265823,0.00000000,6.57000000 +1519,chr22,17814957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.21000000,0.00000000,,0.11111111,74.00000000,3.27433628,0.02702703,0.00000000,4.92000000 +1520,chr22,17815224,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-1.05000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.00000000,0.00000000,6.38000000 +1521,chr22,17815323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,1.10000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.57000000 +1522,chr22,17815761,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.13000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,5.92000000 +1523,chr22,17815912,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,0.37000000,0.00000000,,0.22891566,86.00000000,3.80530973,0.03488372,0.00000000,5.59000000 +1524,chr22,17815957,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.22727273,92.00000000,4.07079646,0.04347826,0.00000000,6.00000000 +1525,chr22,17816431,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,90.00000000,0.00000000,0.11000000,0.00000000,,0.27722772,102.00000000,4.51327434,0.00000000,0.00000000,5.62000000 +1526,chr22,17816985,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.79000000,0.00000000,,0.21153846,106.00000000,4.69026549,0.01886792,0.00000000,6.14000000 +1527,chr22,17817171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.65000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.01204819,0.00000000,5.50000000 +1528,chr22,17817828,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.67000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.77000000 +1529,chr22,17818113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-1.62000000,0.00000000,,0.12162162,81.00000000,3.58407080,0.07407407,0.00000000,5.40000000 +1530,chr22,17819356,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.24000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.87000000 +1531,chr22,17819800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.20338983,62.00000000,2.74336283,0.04838710,0.00000000,6.30000000 +1532,chr22,17820304,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.02666667,0.00000000,5.90000000 +1533,chr22,17820643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +1534,chr22,17821626,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.47000000 +1535,chr22,17823719,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,0.97000000,0.00000000,,0.17431193,111.00000000,4.91150442,0.01801802,0.00000000,5.79000000 +1536,chr22,17824046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.25000000 +1537,chr22,17826170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.19718310,76.00000000,3.36283186,0.06578947,0.00000000,5.74000000 +1538,chr22,17826645,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,72.00000000,0.00000000,1.43000000,0.00000000,,0.15789474,98.00000000,4.33628319,0.02040816,0.00000000,4.83000000 +1539,chr22,17826672,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,76.00000000,0.00000000,-0.19000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.02173913,0.00000000,5.03000000 +1540,chr22,17826780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,-0.13000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.09000000 +1541,chr22,17826892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.77000000 +1542,chr22,17826900,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.22352941,89.00000000,3.93805310,0.04494382,0.00000000,5.75000000 +1543,chr22,17827037,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,81.00000000,0.00000000,-0.71000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.23000000 +1544,chr22,17827060,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.32000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.00000000,0.00000000,6.64000000 +1545,chr22,17827093,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.67000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +1546,chr22,17827185,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.34000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.27000000 +1547,chr22,17829079,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,61.00000000,0.00000000,-1.14000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,7.44000000 +1548,chr22,17829577,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,116.00000000,0.00000000,-1.32000000,0.00000000,,0.41250000,81.00000000,3.58407080,0.01234568,0.00000000,12.67000000 +1549,chr22,17830252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.63000000,0.00000000,,0.26153846,66.00000000,2.92035398,0.01515152,0.00000000,6.34000000 +1550,chr22,17830278,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.15000000,0.00000000,,0.43750000,67.00000000,2.96460177,0.04477612,0.00000000,8.34000000 +1551,chr22,17830746,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,13.00000000,0.00000000,0.44000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.01351351,0.00000000,3.35000000 +1552,chr22,17830818,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-0.92000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,7.94000000 +1553,chr22,17830825,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-2.48000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.17000000 +1554,chr22,17830849,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-1.88000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.00000000,0.00000000,4.64000000 +1555,chr22,17831398,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.50000000 +1556,chr22,17831625,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,-0.66000000,0.00000000,,0.43333333,95.00000000,4.20353982,0.04210526,0.00000000,4.76000000 +1557,chr22,17832223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.53000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.09000000 +1558,chr22,17833217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.88000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +1559,chr22,17833325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.98000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,5.86000000 +1560,chr22,17833538,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.10000000,0.00000000,,0.28125000,66.00000000,2.92035398,0.01515152,0.00000000,6.56000000 +1561,chr22,17833567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.92000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.28000000 +1562,chr22,17833760,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,62.00000000,0.00000000,0.88000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,7.76000000 +1563,chr22,17833854,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.08000000 +1564,chr22,17834329,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,1.25000000,0.00000000,,0.36781609,89.00000000,3.93805310,0.02247191,0.00000000,8.01000000 +1565,chr22,17834657,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.58000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,6.75000000 +1566,chr22,17834855,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,78.00000000,0.00000000,1.87000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.02127660,0.00000000,5.62000000 +1567,chr22,17835055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-2.24000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.01250000,0.00000000,7.10000000 +1568,chr22,17836197,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.78000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.13000000 +1569,chr22,17836413,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.99000000,0.00000000,,0.15384615,94.00000000,4.15929204,0.03191489,0.00000000,5.54000000 +1570,chr22,17837292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.84000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +1571,chr22,17837492,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-1.19000000,0.00000000,,0.14606742,90.00000000,3.98230088,0.01111111,0.00000000,5.76000000 +1572,chr22,17837545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.78000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,4.76000000 +1573,chr22,17837546,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,4.85000000 +1574,chr22,17837915,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.21000000 +1575,chr22,17838120,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,76.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,5.95000000 +1576,chr22,17840672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,0.61000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.91000000 +1577,chr22,17840716,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.17000000 +1578,chr22,17840843,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,1.16000000,0.00000000,,0.12195122,84.00000000,3.71681416,0.02380952,0.00000000,4.65000000 +1579,chr22,17841535,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.63000000 +1580,chr22,17841798,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.06000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +1581,chr22,17842301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.18840580,74.00000000,3.27433628,0.05405405,0.00000000,5.51000000 +1582,chr22,17843988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.49000000 +1583,chr22,17844047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.23000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +1584,chr22,17844057,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.84000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,4.39000000 +1585,chr22,17844824,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.66000000 +1586,chr22,17845737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.13000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +1587,chr22,17846380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,79.00000000,0.00000000,-2.33000000,0.00000000,,0.18681319,95.00000000,4.20353982,0.04210526,0.00000000,5.78000000 +1588,chr22,17846645,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.95000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,7.09000000 +1589,chr22,17848352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.26881720,93.00000000,4.11504425,0.00000000,0.00000000,6.70000000 +1590,chr22,17848388,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.08000000,0.00000000,,0.28409091,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +1591,chr22,17849105,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.00000000,0.00000000,6.09000000 +1592,chr22,17849644,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,58.00000000,0.00000000,2.02000000,0.00000000,,0.22352941,98.00000000,4.33628319,0.13265306,0.06666667,4.25000000 +1593,chr22,17851136,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.09000000,0.00000000,,0.27692308,65.00000000,2.87610619,0.00000000,0.00000000,6.46000000 +1594,chr22,17855114,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,1.28000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.02816901,0.00000000,5.39000000 +1595,chr22,17855590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.81000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.63000000 +1596,chr22,17856246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,-0.04000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +1597,chr22,17860245,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.72000000,0.00000000,,0.25000000,102.00000000,4.51327434,0.01960784,0.00000000,6.32000000 +1598,chr22,17861077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,69.00000000,0.00000000,-0.43000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.26000000 +1599,chr22,17861833,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.42000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +1600,chr22,17865673,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.32000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.01176471,0.00000000,6.37000000 +1601,chr22,17866057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.82000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +1602,chr22,17867182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.02000000,1.81000000,,0.13750000,83.00000000,3.67256637,0.03614458,0.00000000,4.42000000 +1603,chr22,17869913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,-0.71000000,0.00000000,,0.22580645,97.00000000,4.29203540,0.04123711,0.00000000,5.99000000 +1604,chr22,17870202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.93000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,6.75000000 +1605,chr22,17870864,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.01111111,0.00000000,6.36000000 +1606,chr22,17871144,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,4.85000000 +1607,chr22,17871506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-1.57000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.00000000 +1608,chr22,17871562,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.44000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.88000000 +1609,chr22,17873020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-0.16000000,0.00000000,,0.25688073,109.00000000,4.82300885,0.00000000,0.00000000,6.41000000 +1610,chr22,17874743,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.02000000 +1611,chr22,17874783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,71.00000000,0.00000000,0.61000000,0.00000000,,0.16666667,88.00000000,3.89380531,0.03409091,0.00000000,5.65000000 +1612,chr22,17875867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.85000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,4.23000000 +1613,chr22,17876477,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.99000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,5.68000000 +1614,chr22,17878044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,1.42000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +1615,chr22,17878417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.39000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.00000000,0.00000000,7.09000000 +1616,chr22,17879105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21904762,106.00000000,4.69026549,0.00943396,0.00000000,6.23000000 +1617,chr22,17880174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.33000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +1618,chr22,17880621,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,0.86000000,0.00000000,,0.24096386,86.00000000,3.80530973,0.03488372,0.00000000,5.72000000 +1619,chr22,17881813,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.67000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.33000000 +1620,chr22,17884874,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-1.35000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.76000000 +1621,chr22,17885782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.18000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.30000000 +1622,chr22,17886944,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-1.18000000,0.00000000,,0.26000000,61.00000000,2.69911504,0.18032787,0.00000000,3.11000000 +1623,chr22,17887150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.68000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.06000000 +1624,chr22,17888231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-1.00000000,0.00000000,,0.33962264,53.00000000,2.34513274,0.00000000,0.00000000,9.00000000 +1625,chr22,17888395,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.81000000 +1626,chr22,17888527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.38000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.75000000 +1627,chr22,17888592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.61000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +1628,chr22,17888871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.42000000 +1629,chr22,17889254,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.50000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.01149425,0.00000000,6.64000000 +1630,chr22,17891119,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +1631,chr22,17891248,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,75.00000000,0.00000000,-1.11000000,0.00000000,,0.16867470,89.00000000,3.93805310,0.06741573,0.00000000,4.89000000 +1632,chr22,17891384,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,88.00000000,0.00000000,0.71000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.19000000 +1633,chr22,17891788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.36000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,6.13000000 +1634,chr22,17891792,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,2.07000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,6.14000000 +1635,chr22,17892109,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,6.65000000 +1636,chr22,17894433,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-0.74000000,0.00000000,,0.17307692,53.00000000,2.34513274,0.01886792,0.00000000,5.82000000 +1637,chr22,17894563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.45000000 +1638,chr22,17895236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.45000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.36000000 +1639,chr22,17896394,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.02000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +1640,chr22,17897315,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.28000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,6.22000000 +1641,chr22,17898920,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,92.00000000,0.00000000,0.42000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,5.22000000 +1642,chr22,17903640,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-0.03000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.31000000 +1643,chr22,17904249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,0.03000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.25000000 +1644,chr22,17905549,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.58000000,0.00000000,,0.23711340,99.00000000,4.38053097,0.02020202,0.00000000,5.92000000 +1645,chr22,17906316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.61000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.30000000 +1646,chr22,17906782,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.02298851,0.00000000,5.48000000 +1647,chr22,17907514,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.35000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.02173913,0.00000000,6.00000000 +1648,chr22,17908295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.56000000 +1649,chr22,17910768,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-1.98000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,6.33000000 +1650,chr22,17914354,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,1.46000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,5.63000000 +1651,chr22,17914806,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +1652,chr22,17915147,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.63000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +1653,chr22,17915252,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.12643678,87.00000000,3.84955752,0.00000000,0.00000000,5.59000000 +1654,chr22,17915441,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.98000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,6.25000000 +1655,chr22,17919252,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,-2.07000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.00000000,0.00000000,4.17000000 +1656,chr22,17932810,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.26000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.00000000,0.00000000,5.87000000 +1657,chr22,17933721,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.24000000,4.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,-1.57000000,0.00000000,,0.24761905,108.00000000,4.77876106,0.01851852,0.00000000,5.44000000 +1658,chr22,17935510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.88000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.80000000 +1659,chr22,17935549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.39000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.60000000,0.00000000,,0.17567568,77.00000000,3.40707965,0.03896104,0.00000000,5.97000000 +1660,chr22,17936128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.03000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,3.02000000 +1661,chr22,17937289,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,1.65000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.87000000 +1662,chr22,17937488,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.92000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.16000000 +1663,chr22,17939018,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.14666667,78.00000000,3.45132743,0.03846154,0.00000000,5.34000000 +1664,chr22,17939133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.10000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,5.74000000 +1665,chr22,17939160,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,5.98000000 +1666,chr22,17939399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.38000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,6.49000000 +1667,chr22,17940077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.02298851,0.00000000,6.25000000 +1668,chr22,17943533,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,-0.42000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +1669,chr22,17943606,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +1670,chr22,17943613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +1671,chr22,17944652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.47000000,0.00000000,,0.18518519,58.00000000,2.56637168,0.06896552,0.00000000,5.28000000 +1672,chr22,17945014,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,1.52000000,0.00000000,,0.18644068,67.00000000,2.96460177,0.10447761,0.00000000,5.63000000 +1673,chr22,17945677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +1674,chr22,17946235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.30000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,5.95000000 +1675,chr22,17946513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.30000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.49000000 +1676,chr22,17946928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,-0.92000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.56000000 +1677,chr22,17947427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +1678,chr22,17948298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.55000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.03061224,0.00000000,6.33000000 +1679,chr22,17949080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,69.00000000,0.00000000,-3.19000000,0.00000000,,0.15116279,90.00000000,3.98230088,0.03333333,0.00000000,5.32000000 +1680,chr22,17949267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.56000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.48000000 +1681,chr22,17950542,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.27000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.79000000 +1682,chr22,17951322,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.18292683,85.00000000,3.76106195,0.03529412,0.00000000,6.21000000 +1683,chr22,17952123,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.38000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.01030928,6.63000000 +1684,chr22,17952520,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,-0.29000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +1685,chr22,17953992,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,70.00000000,0.00000000,0.99000000,0.00000000,,0.23376623,84.00000000,3.71681416,0.08333333,0.03448276,5.38000000 +1686,chr22,17954178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.48000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.15000000 +1687,chr22,17954277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +1688,chr22,17955455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.06000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.82000000 +1689,chr22,17955719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.17000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.43000000 +1690,chr22,17956281,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.58000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.02197802,0.00000000,5.73000000 +1691,chr22,17957310,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,91.00000000,0.00000000,0.03000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,5.35000000 +1692,chr22,17957862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +1693,chr22,17958697,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.20312500,69.00000000,3.05309735,0.07246377,0.00000000,6.02000000 +1694,chr22,17958705,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.02000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.04347826,0.00000000,6.17000000 +1695,chr22,17958797,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.16176471,72.00000000,3.18584071,0.04166667,0.00000000,5.96000000 +1696,chr22,17959001,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,77.00000000,0.00000000,-1.59000000,0.00000000,,0.23728814,67.00000000,2.96460177,0.11940299,0.00000000,5.88000000 +1697,chr22,17959756,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.32500000,82.00000000,3.62831858,0.00000000,0.00000000,8.39000000 +1698,chr22,17960192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,1.10000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +1699,chr22,17960915,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-1.13000000,0.00000000,,0.29761905,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +1700,chr22,17961414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.05000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +1701,chr22,17962265,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.72000000 +1702,chr22,17962684,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.02040816,0.00000000,6.24000000 +1703,chr22,17963350,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,45.00000000,0.00000000,-0.47000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.01408451,0.00000000,2.81000000 +1704,chr22,17964065,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.35000000 +1705,chr22,17964730,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,88.00000000,0.00000000,-0.54000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,5.93000000 +1706,chr22,17965363,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.02409639,0.00000000,5.86000000 +1707,chr22,17965510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,2.29000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +1708,chr22,17966194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.06000000,0.00000000,,0.27160494,85.00000000,3.76106195,0.04705882,0.00000000,6.27000000 +1709,chr22,17966810,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.16000000 +1710,chr22,17966992,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,6.05000000 +1711,chr22,17967458,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-1.19000000,0.00000000,,0.15116279,89.00000000,3.93805310,0.03370787,0.00000000,5.36000000 +1712,chr22,17968199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-1.33000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.62000000 +1713,chr22,17968827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.93000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.89000000 +1714,chr22,17971359,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.24000000,0.00000000,,0.12500000,77.00000000,3.40707965,0.05194805,0.00000000,5.49000000 +1715,chr22,17971822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.77000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,5.68000000 +1716,chr22,17972466,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.74000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.39000000 +1717,chr22,17972615,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-1.25000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,2.95000000 +1718,chr22,17972855,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,0.49000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.01063830,0.00000000,5.40000000 +1719,chr22,17972934,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,0.00000000,1.54000000,0.00000000,,0.10389610,77.00000000,3.40707965,0.00000000,0.00000000,5.11000000 +1720,chr22,17973064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.07407407,82.00000000,3.62831858,0.01219512,0.00000000,4.90000000 +1721,chr22,17974108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,6.39000000 +1722,chr22,17974480,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,84.00000000,0.00000000,1.43000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,6.15000000 +1723,chr22,17976361,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.21000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,6.36000000 +1724,chr22,17979652,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,0.75000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.02352941,0.00000000,5.75000000 +1725,chr22,17982267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,81.00000000,0.00000000,1.00000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,5.76000000 +1726,chr22,17983212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.53000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.59000000 +1727,chr22,17983536,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.77000000 +1728,chr22,17984036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.81000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,5.95000000 +1729,chr22,17984087,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.40000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,5.85000000 +1730,chr22,17984355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.08000000 +1731,chr22,17984367,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.97000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,7.00000000 +1732,chr22,17984568,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,49.00000000,0.00000000,1.84000000,0.00000000,,0.35555556,51.00000000,2.25663717,0.11764706,0.00000000,4.68000000 +1733,chr22,17984717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.25000000 +1734,chr22,17984736,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.06000000 +1735,chr22,17985178,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.73000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.18000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.01234568,0.00000000,6.36000000 +1736,chr22,17985280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-1.76000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.67000000 +1737,chr22,17985301,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,-2.08000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.91000000 +1738,chr22,17985321,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-1.42000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,6.03000000 +1739,chr22,17985346,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-1.82000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.01000000 +1740,chr22,17986781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.21348315,94.00000000,4.15929204,0.03191489,0.00000000,6.27000000 +1741,chr22,17986833,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.86000000,0.00000000,,0.22448980,101.00000000,4.46902655,0.02970297,0.00000000,6.00000000 +1742,chr22,17987264,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.43000000,0.00000000,,0.16666667,82.00000000,3.62831858,0.03658537,0.00000000,6.40000000 +1743,chr22,17988131,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.31000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,2.93000000 +1744,chr22,17988167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.96000000 +1745,chr22,17989664,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +1746,chr22,17990576,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.59000000,2.68000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,4.47000000 +1747,chr22,17991043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.15555556,91.00000000,4.02654867,0.01098901,0.00000000,5.83000000 +1748,chr22,17991525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.03846154,0.00000000,6.19000000 +1749,chr22,17991619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.60000000 +1750,chr22,17991633,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +1751,chr22,17991936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,58.00000000,0.00000000,-0.38000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,4.06000000 +1752,chr22,17991962,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.02000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +1753,chr22,17992499,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-1.42000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,2.83000000 +1754,chr22,17992612,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.28000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.01298701,0.00000000,4.47000000 +1755,chr22,17992928,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.10975610,84.00000000,3.71681416,0.02380952,0.00000000,4.64000000 +1756,chr22,17994258,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,1.30000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.00000000,0.00000000,6.62000000 +1757,chr22,17994637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-2.23000000,0.00000000,,0.20270270,80.00000000,3.53982301,0.07500000,0.00000000,5.87000000 +1758,chr22,17994660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.10000000,0.00000000,,0.19718310,78.00000000,3.45132743,0.08974359,0.00000000,6.24000000 +1759,chr22,17996616,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,96.00000000,0.00000000,-0.93000000,0.00000000,,0.28125000,97.00000000,4.29203540,0.00000000,0.00000000,6.62000000 +1760,chr22,17996681,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.14000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +1761,chr22,17997712,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.44000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +1762,chr22,17998550,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.20000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.05333333,0.00000000,6.12000000 +1763,chr22,18003251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +1764,chr22,18006486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.10000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.28000000 +1765,chr22,18007751,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-0.18000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.01639344,0.00000000,5.71000000 +1766,chr22,18011878,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +1767,chr22,18012010,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,70.00000000,0.00000000,1.77000000,0.00000000,,0.17977528,92.00000000,4.07079646,0.03260870,0.00000000,5.79000000 +1768,chr22,18012171,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.13000000 +1769,chr22,18012373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.13000000,0.00000000,,0.27272727,91.00000000,4.02654867,0.01098901,0.00000000,6.68000000 +1770,chr22,18012450,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.37000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.91000000 +1771,chr22,18042370,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,-1.90000000,0.00000000,,0.43859649,60.00000000,2.65486726,0.05000000,0.00000000,6.68000000 +1772,chr22,18049193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.03000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,7.05000000 +1773,chr22,18049336,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.55000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.92000000 +1774,chr22,18050569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.16000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.01388889,0.00000000,6.97000000 +1775,chr22,18050668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.31250000,82.00000000,3.62831858,0.02439024,0.00000000,6.41000000 +1776,chr22,18051092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.02702703,0.00000000,7.06000000 +1777,chr22,18051415,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.22000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.18000000 +1778,chr22,18052696,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.58000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.67000000 +1779,chr22,18052756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,0.42000000,0.00000000,,0.10958904,73.00000000,3.23008850,0.00000000,0.00000000,4.81000000 +1780,chr22,18052772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.21000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.34000000 +1781,chr22,18053014,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.92000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,1.33000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.01851852,0.00000000,4.89000000 +1782,chr22,18053226,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.22000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-3.05000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,5.79000000 +1783,chr22,18054379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.25000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.20000000 +1784,chr22,18054703,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.17000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.01492537,0.00000000,5.78000000 +1785,chr22,18070637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.34000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.42000000 +1786,chr22,18077845,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.80000000 +1787,chr22,18083522,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +1788,chr22,18113683,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,77.00000000,0.00000000,-0.44000000,0.00000000,,0.16853933,89.00000000,3.93805310,0.00000000,0.00000000,5.62000000 +1789,chr22,18114735,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.18000000 +1790,chr22,18116524,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.47000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.43000000 +1791,chr22,18125105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.74000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.46000000 +1792,chr22,18125985,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +1793,chr22,18127343,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.16483516,100.00000000,4.42477876,0.08000000,0.00000000,5.37000000 +1794,chr22,18127379,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,0.70000000,0.00000000,,0.15294118,89.00000000,3.93805310,0.04494382,0.00000000,4.98000000 +1795,chr22,18127519,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-0.87000000,0.00000000,,0.18750000,68.00000000,3.00884956,0.02941176,0.00000000,5.00000000 +1796,chr22,18127543,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.30000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,3.18000000 +1797,chr22,18127601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.26744186,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +1798,chr22,18128031,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +1799,chr22,18128456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.07142857,0.00000000,60.00000000,0.00000000,-0.21000000,0.00000000,,0.21794872,83.00000000,3.67256637,0.01204819,0.00000000,5.69000000 +1800,chr22,18130278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.62000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +1801,chr22,18137072,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.27272727,68.00000000,3.00884956,0.02941176,0.00000000,6.62000000 +1802,chr22,18150236,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.68000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.01388889,0.00000000,5.71000000 +1803,chr22,18150237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,-1.27000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.71000000 +1804,chr22,18155357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,1.49000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +1805,chr22,18184900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,41.03000000,23.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.48000000,5.46000000,,0.09615385,53.00000000,2.34513274,0.01886792,0.00000000,4.03000000 +1806,chr22,18184963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,46.41000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,2.59000000,3.10000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,3.66000000 +1807,chr22,18185985,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.10000000,10.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,26.00000000,0.00000000,-1.01000000,0.00000000,,0.40000000,57.00000000,2.52212389,0.03508772,0.00000000,3.75000000 +1808,chr22,18201954,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,46.40000000,11.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,0.00000000,1.03000000,0.00000000,,0.35714286,28.00000000,1.23893805,0.00000000,0.00000000,3.00000000 +1809,chr22,18637212,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,46.83000000,35.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,1.15000000,0.00000000,,0.34146341,41.00000000,1.81415929,0.00000000,0.00000000,4.22000000 +1810,chr22,18658943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,28.25000000,41.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,6.00000000,0.00000000,0.33000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.00000000,0.00000000,3.64000000 +1811,chr22,18727918,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,40.19000000,56.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.59000000,0.00000000,,0.16666667,96.00000000,4.24778761,0.00000000,0.00000000,6.16000000 +1812,chr22,18727946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,36.22000000,66.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.48000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.62000000 +1813,chr22,18780879,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,23.89000000,48.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,5.00000000,0.00000000,1.00000000,0.00000000,,0.30434783,23.00000000,1.01769912,0.00000000,0.00000000,2.77000000 +1814,chr22,18791999,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,19.11000000,37.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,0.99000000,0.00000000,,0.43478261,23.00000000,1.01769912,0.00000000,0.00000000,3.67000000 +1815,chr22,18863160,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,19.38000000,80.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.00000000,8.00000000,0.00000000,1.69000000,0.00000000,,0.28571429,23.00000000,1.01769912,0.04347826,0.00000000,2.92000000 +1816,chr22,18948246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +1817,chr22,18950677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,92.00000000,0.00000000,-1.06000000,0.00000000,,0.23595506,94.00000000,4.15929204,0.05319149,0.00000000,5.13000000 +1818,chr22,18950680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,90.00000000,0.00000000,-0.95000000,0.00000000,,0.22471910,95.00000000,4.20353982,0.05263158,0.00000000,5.13000000 +1819,chr22,18956352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.78000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.01176471,0.00000000,6.62000000 +1820,chr22,18956557,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.08000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.03614458,0.00000000,5.41000000 +1821,chr22,18956567,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.02000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.14666667,79.00000000,3.49557522,0.05063291,0.00000000,4.69000000 +1822,chr22,18956848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +1823,chr22,18960337,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,1.95000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.18000000 +1824,chr22,18962017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.94000000,7.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,63.00000000,0.00000000,0.86000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,4.74000000 +1825,chr22,18962865,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.00000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.23000000 +1826,chr22,18963660,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,57.10000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.58000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.40000000 +1827,chr22,18963994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.62000000,5.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +1828,chr22,18964032,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.20000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.01204819,0.00000000,6.36000000 +1829,chr22,18964183,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.74000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.58000000 +1830,chr22,18964957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-1.06000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.01960784,0.00000000,6.10000000 +1831,chr22,18965286,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.70000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,7.10000000 +1832,chr22,18965816,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,-1.52000000,0.00000000,,0.24793388,121.00000000,5.35398230,0.00000000,0.00000000,6.66000000 +1833,chr22,18966678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,-0.78000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.09000000 +1834,chr22,18966776,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.37000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.06000000 +1835,chr22,18967680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,82.00000000,0.00000000,-0.25000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,5.89000000 +1836,chr22,18967869,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,0.00000000,1.64000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.00000000,0.00000000,6.08000000 +1837,chr22,18968082,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,80.00000000,0.00000000,0.70000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.03750000,0.00000000,5.75000000 +1838,chr22,18969019,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,74.00000000,0.00000000,-0.21000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.02247191,0.00000000,5.78000000 +1839,chr22,18970199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.17241379,63.00000000,2.78761062,0.07936508,0.00000000,5.56000000 +1840,chr22,18970276,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.82000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.51000000 +1841,chr22,18971161,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.26595745,96.00000000,4.24778761,0.02083333,0.00000000,5.45000000 +1842,chr22,18971656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +1843,chr22,18974269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.01123596,0.00000000,6.17000000 +1844,chr22,18977905,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.35000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.32000000 +1845,chr22,18990791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.53000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,6.12000000 +1846,chr22,19001039,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.39000000,0.00000000,,0.32098765,84.00000000,3.71681416,0.01190476,0.00000000,8.58000000 +1847,chr22,19001507,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.41250000,80.00000000,3.53982301,0.00000000,0.00000000,8.53000000 +1848,chr22,19001685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.26000000,0.00000000,,0.23157895,97.00000000,4.29203540,0.02061856,0.00000000,6.35000000 +1849,chr22,19001953,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.01190476,0.00000000,6.28000000 +1850,chr22,19002241,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.10000000 +1851,chr22,19002615,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,5.81000000 +1852,chr22,19003864,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,-0.46000000,0.00000000,,0.40740741,82.00000000,3.62831858,0.01219512,0.00000000,8.25000000 +1853,chr22,19004608,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.44000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.40000000 +1854,chr22,19005615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.91000000,0.00000000,,0.49350649,77.00000000,3.40707965,0.00000000,0.00000000,8.91000000 +1855,chr22,19006580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.06000000,0.00000000,,0.22077922,82.00000000,3.62831858,0.06097561,0.00000000,2.85000000 +1856,chr22,19007917,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.00000000,0.00000000,6.28000000 +1857,chr22,19008036,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-2.72000000,0.00000000,,0.46376812,72.00000000,3.18584071,0.02777778,0.00000000,8.20000000 +1858,chr22,19009854,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.51648352,94.00000000,4.15929204,0.02127660,0.00000000,8.21000000 +1859,chr22,19010485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,5.73000000 +1860,chr22,19011998,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,1.85000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.01000000 +1861,chr22,19012548,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.63000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.00000000,0.00000000,8.52000000 +1862,chr22,19014328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.67000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.07000000 +1863,chr22,19014496,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.01000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.33000000 +1864,chr22,19014646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +1865,chr22,19015018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.74000000 +1866,chr22,19015498,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,46.00000000,0.00000000,-0.26000000,0.00000000,,0.36734694,54.00000000,2.38938053,0.07407407,0.00000000,4.23000000 +1867,chr22,19016425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.00000000,0.00000000,5.87000000 +1868,chr22,19016988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.66000000,0.00000000,,0.32258065,62.00000000,2.74336283,0.00000000,0.00000000,4.29000000 +1869,chr22,19017259,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,101.00000000,0.00000000,-0.12000000,0.00000000,,0.38823529,88.00000000,3.89380531,0.02272727,0.00000000,8.88000000 +1870,chr22,19018693,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.57000000,0.00000000,,0.40229885,89.00000000,3.93805310,0.02247191,0.00000000,8.44000000 +1871,chr22,19018702,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,98.00000000,0.00000000,-1.58000000,0.00000000,,0.39534884,88.00000000,3.89380531,0.02272727,0.00000000,8.45000000 +1872,chr22,19018732,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,102.00000000,0.00000000,0.09000000,0.00000000,,0.39285714,89.00000000,3.93805310,0.04494382,0.00000000,13.52000000 +1873,chr22,19018733,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,104.00000000,0.00000000,0.39000000,0.00000000,,0.39080460,91.00000000,4.02654867,0.04395604,0.00000000,14.89000000 +1874,chr22,19020512,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +1875,chr22,19020595,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-0.03000000,0.00000000,,0.46250000,80.00000000,3.53982301,0.00000000,0.00000000,4.24000000 +1876,chr22,19020997,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.53000000,0.00000000,,0.49230769,67.00000000,2.96460177,0.02985075,0.00000000,8.16000000 +1877,chr22,19021388,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,52.00000000,0.00000000,-0.18000000,0.00000000,,0.36507937,77.00000000,3.40707965,0.18181818,0.00000000,4.52000000 +1878,chr22,19021389,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.36507937,77.00000000,3.40707965,0.18181818,0.00000000,4.44000000 +1879,chr22,19021654,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.00000000,0.00000000,57.00000000,0.00000000,-0.05000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.01333333,0.00000000,3.97000000 +1880,chr22,19021798,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.84000000,0.00000000,,0.44303797,80.00000000,3.53982301,0.01250000,0.00000000,7.90000000 +1881,chr22,19022201,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.35294118,0.00000000,17.00000000,0.00000000,1.52000000,0.00000000,,0.60526316,44.00000000,1.94690265,0.13636364,0.00000000,3.81000000 +1882,chr22,19022210,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.31578947,0.00000000,18.00000000,0.00000000,0.07000000,0.00000000,,0.61538462,47.00000000,2.07964602,0.17021277,0.00000000,3.84000000 +1883,chr22,19022291,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,48.00000000,0.00000000,0.88000000,0.00000000,,0.31707317,49.00000000,2.16814159,0.16326531,0.00000000,3.36000000 +1884,chr22,19022569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.28846154,52.00000000,2.30088496,0.00000000,0.00000000,6.79000000 +1885,chr22,19022636,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.10000000,0.00000000,,0.41176471,52.00000000,2.30088496,0.01923077,0.00000000,7.70000000 +1886,chr22,19023118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.37000000,0.00000000,,0.21126761,76.00000000,3.36283186,0.06578947,0.00000000,5.55000000 +1887,chr22,19023197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,2.29000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.61000000 +1888,chr22,19023339,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.83000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.32075472,55.00000000,2.43362832,0.03636364,0.00000000,6.53000000 +1889,chr22,19023582,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.09000000,10.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.14000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.40000000 +1890,chr22,19024487,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.73000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.16000000 +1891,chr22,19024789,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,53.82000000,12.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,7.16000000 +1892,chr22,19024811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.39000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.52000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.39000000 +1893,chr22,19025238,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.61000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.59000000,0.00000000,,0.42168675,85.00000000,3.76106195,0.01176471,0.00000000,8.56000000 +1894,chr22,19027122,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.49000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-1.69000000,0.00000000,,0.16666667,58.00000000,2.56637168,0.06896552,0.00000000,5.69000000 +1895,chr22,19027136,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.53000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,6.47000000 +1896,chr22,19027736,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.63000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.35526316,77.00000000,3.40707965,0.01298701,0.00000000,7.97000000 +1897,chr22,19028292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.39000000,14.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,5.32000000 +1898,chr22,19028734,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,1.38000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.79000000 +1899,chr22,19029150,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.07000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.36000000 +1900,chr22,19029249,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.30000000 +1901,chr22,19029533,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,5.80000000 +1902,chr22,19030450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-0.22000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +1903,chr22,19030587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.72000000 +1904,chr22,19030889,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,5.65000000 +1905,chr22,19030987,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,55.62000000,8.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,0.49000000,0.00000000,,0.40322581,63.00000000,2.78761062,0.01587302,0.00000000,4.30000000 +1906,chr22,19031467,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.00000000,0.00000000,5.71000000 +1907,chr22,19031473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.04000000,0.00000000,,0.23880597,67.00000000,2.96460177,0.00000000,0.00000000,6.51000000 +1908,chr22,19031804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.97000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,6.04000000 +1909,chr22,19032265,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.40000000,5.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.80000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,3.00000000 +1910,chr22,19032679,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.69000000 +1911,chr22,19032789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.16000000,9.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.24691358,86.00000000,3.80530973,0.05813953,0.00000000,5.72000000 +1912,chr22,19034306,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.38000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-1.79000000,0.00000000,,0.12345679,81.00000000,3.58407080,0.00000000,0.00000000,4.32000000 +1913,chr22,19034669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.07042254,72.00000000,3.18584071,0.01388889,0.00000000,4.99000000 +1914,chr22,19034719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.48000000,1.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,61.00000000,0.00000000,-2.25000000,0.00000000,,0.12987013,77.00000000,3.40707965,0.00000000,0.00000000,5.25000000 +1915,chr22,19035067,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.02000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-1.16000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,2.88000000 +1916,chr22,19035928,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.25000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.73000000 +1917,chr22,19036126,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,55.00000000,0.00000000,0.26000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.01265823,0.00000000,4.20000000 +1918,chr22,19037138,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.96000000,0.00000000,,0.50561798,91.00000000,4.02654867,0.02197802,0.00000000,8.38000000 +1919,chr22,19037817,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.77000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.58000000 +1920,chr22,19037868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.35000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +1921,chr22,19038384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.55000000 +1922,chr22,19038512,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.39080460,87.00000000,3.84955752,0.00000000,0.00000000,8.52000000 +1923,chr22,19039100,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.05000000,0.00000000,,0.31428571,72.00000000,3.18584071,0.01388889,0.00000000,7.54000000 +1924,chr22,19039364,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,85.00000000,0.00000000,0.18000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,6.85000000 +1925,chr22,19039943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,1.36000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +1926,chr22,19040069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.73000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,7.24000000 +1927,chr22,19040084,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-1.17000000,0.00000000,,0.48275862,89.00000000,3.93805310,0.01123596,0.00000000,4.40000000 +1928,chr22,19040807,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-1.44000000,0.00000000,,0.43835616,79.00000000,3.49557522,0.07594937,0.00000000,7.98000000 +1929,chr22,19040963,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.36206897,59.00000000,2.61061947,0.00000000,0.00000000,8.57000000 +1930,chr22,19040967,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.36206897,58.00000000,2.56637168,0.00000000,0.00000000,8.43000000 +1931,chr22,19041269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.00000000,0.00000000,6.11000000 +1932,chr22,19042494,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.05000000,0.00000000,,0.50000000,103.00000000,4.55752212,0.00000000,0.00000000,8.89000000 +1933,chr22,19042600,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.27000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.96000000 +1934,chr22,19042823,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.13000000,0.00000000,,0.51724138,88.00000000,3.89380531,0.00000000,0.00000000,6.14000000 +1935,chr22,19043209,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.08000000,0.00000000,,0.49230769,69.00000000,3.05309735,0.04347826,0.00000000,8.10000000 +1936,chr22,19043319,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,6.29000000 +1937,chr22,19044101,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.31000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,2.86000000 +1938,chr22,19044305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.58000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.86000000 +1939,chr22,19044702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,86.00000000,0.00000000,0.13000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +1940,chr22,19044931,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,89.00000000,0.00000000,-0.20000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,8.74000000 +1941,chr22,19045452,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,101.00000000,0.00000000,-1.13000000,0.00000000,,0.50000000,92.00000000,4.07079646,0.01086957,0.00000000,8.74000000 +1942,chr22,19045894,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,58.00000000,0.00000000,-0.45000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.05333333,0.00000000,3.83000000 +1943,chr22,19045930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.31000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +1944,chr22,19046019,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,56.00000000,0.00000000,-1.18000000,0.00000000,,0.36708861,80.00000000,3.53982301,0.01250000,0.00000000,4.18000000 +1945,chr22,19046255,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,2.07000000,0.00000000,,0.27027027,79.00000000,3.49557522,0.06329114,0.00000000,5.65000000 +1946,chr22,19046727,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,3.66000000,0.00000000,,0.37777778,92.00000000,4.07079646,0.00000000,0.00000000,8.57000000 +1947,chr22,19047316,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.01000000,0.00000000,,0.43055556,75.00000000,3.31858407,0.02666667,0.00000000,7.64000000 +1948,chr22,19047473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.05000000,0.00000000,,0.19117647,72.00000000,3.18584071,0.05555556,0.00000000,6.45000000 +1949,chr22,19047559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,0.70000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,5.77000000 +1950,chr22,19048184,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,-0.43000000,0.00000000,,0.45238095,87.00000000,3.84955752,0.03448276,0.00000000,12.98000000 +1951,chr22,19048210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.42000000 +1952,chr22,19048659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,72.00000000,0.00000000,-0.96000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.41000000 +1953,chr22,19048719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +1954,chr22,19048966,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,0.00000000,1.62000000,0.00000000,,0.33783784,75.00000000,3.31858407,0.01333333,0.00000000,14.39000000 +1955,chr22,19049226,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.27000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.01282051,0.00000000,4.44000000 +1956,chr22,19050022,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.00000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,7.13000000 +1957,chr22,19051334,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.02000000,0.00000000,,0.43564356,103.00000000,4.55752212,0.00970874,0.00000000,8.52000000 +1958,chr22,19051978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.13483146,91.00000000,4.02654867,0.02197802,0.00000000,4.75000000 +1959,chr22,19052193,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.85000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.67000000 +1960,chr22,19052245,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,50.00000000,0.00000000,-0.07000000,0.00000000,,0.38095238,63.00000000,2.78761062,0.00000000,0.00000000,4.62000000 +1961,chr22,19052896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.82000000,0.00000000,,0.25609756,87.00000000,3.84955752,0.05747126,0.00000000,6.17000000 +1962,chr22,19053262,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.54000000,0.00000000,,0.48148148,83.00000000,3.67256637,0.02409639,0.00000000,4.41000000 +1963,chr22,19053365,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.43529412,87.00000000,3.84955752,0.02298851,0.00000000,7.94000000 +1964,chr22,19054186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,2.74000000,0.00000000,,0.14285714,85.00000000,3.76106195,0.01176471,0.00000000,5.71000000 +1965,chr22,19054383,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.36000000,0.00000000,,0.51807229,86.00000000,3.80530973,0.03488372,0.00000000,4.38000000 +1966,chr22,19055029,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.19000000,0.00000000,,0.43589744,78.00000000,3.45132743,0.00000000,0.00000000,9.13000000 +1967,chr22,19055309,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,101.00000000,0.00000000,0.22000000,0.00000000,,0.41489362,94.00000000,4.15929204,0.00000000,0.00000000,8.52000000 +1968,chr22,19058271,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.50000000,0.00000000,,0.48529412,69.00000000,3.05309735,0.01449275,0.00000000,4.60000000 +1969,chr22,19058496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.40000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.04054054,0.00000000,6.72000000 +1970,chr22,19059222,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,60.00000000,0.00000000,0.33000000,0.00000000,,0.38157895,79.00000000,3.49557522,0.03797468,0.00000000,7.50000000 +1971,chr22,19059275,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.18000000 +1972,chr22,19059430,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.26086957,72.00000000,3.18584071,0.02777778,0.00000000,6.32000000 +1973,chr22,19059694,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.83000000 +1974,chr22,19059856,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,1.99000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.62000000 +1975,chr22,19060066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.55000000 +1976,chr22,19060263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.48000000 +1977,chr22,19060874,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.19354839,62.00000000,2.74336283,0.00000000,0.00000000,4.90000000 +1978,chr22,19060900,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,22.00000000,0.97345133,0.00000000,0.00000000,7.00000000,0.00000000,-0.17000000,0.00000000,,0.45614035,58.00000000,2.56637168,0.01724138,0.00000000,3.59000000 +1979,chr22,19060923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.68000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,5.72000000 +1980,chr22,19060936,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,1.22000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.01538462,0.00000000,5.76000000 +1981,chr22,19061175,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.40000000,0.00000000,,0.52380952,69.00000000,3.05309735,0.08695652,0.00000000,7.56000000 +1982,chr22,19061765,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,39.00000000,0.00000000,0.03000000,0.00000000,,0.47222222,73.00000000,3.23008850,0.00000000,0.00000000,4.04000000 +1983,chr22,19062089,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.12000000,0.00000000,,0.52380952,65.00000000,2.87610619,0.00000000,0.00000000,8.03000000 +1984,chr22,19062144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.41000000,0.00000000,,0.27777778,76.00000000,3.36283186,0.03947368,0.00000000,6.27000000 +1985,chr22,19062358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.83000000,0.00000000,,0.27692308,67.00000000,2.96460177,0.02985075,0.00000000,5.82000000 +1986,chr22,19062494,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-0.17000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.02739726,0.00000000,4.68000000 +1987,chr22,19062497,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,-0.13000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,4.78000000 +1988,chr22,19062597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.02702703,0.00000000,6.33000000 +1989,chr22,19062876,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.15000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,6.34000000 +1990,chr22,19063122,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,34.00000000,0.00000000,1.35000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.02631579,0.00000000,3.59000000 +1991,chr22,19063365,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,-0.21000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.02777778,0.00000000,4.68000000 +1992,chr22,19063495,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,60.00000000,0.00000000,-0.76000000,0.00000000,,0.25352113,75.00000000,3.31858407,0.05333333,0.00000000,6.09000000 +1993,chr22,19063619,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,0.61000000,0.00000000,,0.22222222,70.00000000,3.09734513,0.10000000,0.00000000,5.61000000 +1994,chr22,19063868,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,58.00000000,0.00000000,1.19000000,0.00000000,,0.38709677,65.00000000,2.87610619,0.03076923,0.00000000,6.19000000 +1995,chr22,19065459,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.57000000,0.00000000,,0.42682927,86.00000000,3.80530973,0.04651163,0.00000000,6.10000000 +1996,chr22,19065503,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.50000000,0.00000000,,0.43037975,80.00000000,3.53982301,0.01250000,0.00000000,8.26000000 +1997,chr22,19065777,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.38000000,0.00000000,,0.49295775,75.00000000,3.31858407,0.05333333,0.00000000,4.40000000 +1998,chr22,19065893,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,51.00000000,0.00000000,1.74000000,0.00000000,,0.56790123,81.00000000,3.58407080,0.00000000,0.00000000,4.51000000 +1999,chr22,19066523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.19000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,5.94000000 +2000,chr22,19066647,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,80.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,5.65000000 +2001,chr22,19066780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.03174603,0.00000000,5.67000000 +2002,chr22,19067508,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-1.39000000,0.00000000,,0.50724638,72.00000000,3.18584071,0.04166667,0.00000000,4.39000000 +2003,chr22,19067946,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.78000000,0.00000000,,0.11688312,79.00000000,3.49557522,0.02531646,0.00000000,5.22000000 +2004,chr22,19068029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.14000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.01333333,0.00000000,6.82000000 +2005,chr22,19069063,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,36.00000000,0.00000000,-1.51000000,0.00000000,,0.42500000,85.00000000,3.76106195,0.04705882,0.00000000,3.61000000 +2006,chr22,19069402,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-0.75000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +2007,chr22,19069466,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.47000000,102.00000000,4.51327434,0.01960784,0.00000000,8.13000000 +2008,chr22,19069675,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,1.12000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.03846154,0.00000000,6.36000000 +2009,chr22,19070210,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,96.00000000,0.00000000,0.80000000,0.00000000,,0.36263736,91.00000000,4.02654867,0.00000000,0.00000000,8.25000000 +2010,chr22,19070277,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.92000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.47000000 +2011,chr22,19070346,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.41000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,8.57000000 +2012,chr22,19070373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.71000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,5.85000000 +2013,chr22,19071034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.65000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.64000000 +2014,chr22,19071765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.46000000 +2015,chr22,19073817,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.01000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +2016,chr22,19074741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-1.88000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.46000000 +2017,chr22,19074840,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.40909091,89.00000000,3.93805310,0.01123596,0.00000000,8.52000000 +2018,chr22,19075372,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.59000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.15000000 +2019,chr22,19075631,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +2020,chr22,19075791,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,0.72000000,0.00000000,,0.38372093,86.00000000,3.80530973,0.00000000,0.00000000,8.36000000 +2021,chr22,19075861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.09782609,92.00000000,4.07079646,0.00000000,0.00000000,5.72000000 +2022,chr22,19076121,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,99.00000000,0.00000000,0.66000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,5.36000000 +2023,chr22,19076191,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,103.00000000,0.00000000,-0.85000000,0.00000000,,0.36263736,94.00000000,4.15929204,0.03191489,0.00000000,12.38000000 +2024,chr22,19077007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.24000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,4.76000000 +2025,chr22,19077327,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.57000000,0.00000000,,0.46464646,99.00000000,4.38053097,0.00000000,0.00000000,4.49000000 +2026,chr22,19077458,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +2027,chr22,19077493,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.64000000,0.00000000,,0.44186047,88.00000000,3.89380531,0.02272727,0.00000000,8.05000000 +2028,chr22,19077586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +2029,chr22,19077596,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,7.99000000 +2030,chr22,19077917,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,-1.04000000,0.00000000,,0.45569620,86.00000000,3.80530973,0.06976744,0.00000000,8.30000000 +2031,chr22,19078252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.87000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +2032,chr22,19080358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,68.00000000,0.00000000,-1.14000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.60000000 +2033,chr22,19080714,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.37000000,0.00000000,,0.47435897,78.00000000,3.45132743,0.00000000,0.00000000,8.56000000 +2034,chr22,19081509,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-1.60000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +2035,chr22,19081980,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.06000000,0.00000000,,0.47126437,88.00000000,3.89380531,0.01136364,0.00000000,8.62000000 +2036,chr22,19082429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.43000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.02857143,0.00000000,4.11000000 +2037,chr22,19082830,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.53000000,0.00000000,,0.48780488,87.00000000,3.84955752,0.05747126,0.00000000,7.56000000 +2038,chr22,19082920,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.42000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.44000000 +2039,chr22,19082926,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,51.00000000,0.00000000,0.11000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,4.81000000 +2040,chr22,19083219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,1.65000000,0.00000000,,0.19565217,97.00000000,4.29203540,0.04123711,0.00000000,5.93000000 +2041,chr22,19084001,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.09000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,50.00000000,0.00000000,0.28000000,0.00000000,,0.43589744,80.00000000,3.53982301,0.02500000,0.00000000,4.35000000 +2042,chr22,19084181,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.77000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.05555556,28.00000000,0.00000000,0.81000000,0.00000000,,0.44000000,51.00000000,2.25663717,0.01960784,0.00000000,3.35000000 +2043,chr22,19084404,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.33000000,6.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,39.00000000,0.00000000,-0.18000000,0.00000000,,0.31818182,46.00000000,2.03539823,0.04347826,0.00000000,3.31000000 +2044,chr22,19084694,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.38000000,16.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,12.00000000,0.00000000,-1.81000000,0.00000000,,0.42857143,33.00000000,1.46017699,0.15151515,0.00000000,3.84000000 +2045,chr22,19084969,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,48.03000000,31.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,24.00000000,0.00000000,-0.53000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.04761905,0.00000000,3.80000000 +2046,chr22,19085383,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.16000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.05000000 +2047,chr22,19085574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.88000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.44000000 +2048,chr22,19085596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.90000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,5.91000000 +2049,chr22,19086250,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.24000000,0.00000000,,0.45833333,75.00000000,3.31858407,0.04000000,0.00000000,4.44000000 +2050,chr22,19086411,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,54.00000000,0.00000000,0.93000000,0.00000000,,0.41666667,76.00000000,3.36283186,0.03947368,0.00000000,4.57000000 +2051,chr22,19086688,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-1.19000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.08000000 +2052,chr22,19087081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.57000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.59000000 +2053,chr22,19087240,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,101.00000000,0.00000000,-0.47000000,0.00000000,,0.49367089,80.00000000,3.53982301,0.01250000,0.00000000,8.79000000 +2054,chr22,19089284,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,6.75000000 +2055,chr22,19089932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.51000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +2056,chr22,19090081,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.58000000 +2057,chr22,19090111,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,70.00000000,0.00000000,-0.99000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,5.76000000 +2058,chr22,19090414,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.42105263,78.00000000,3.45132743,0.02564103,0.00000000,8.23000000 +2059,chr22,19090896,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,111.00000000,0.00000000,0.51000000,0.00000000,,0.40196078,105.00000000,4.64601770,0.01904762,0.00000000,12.99000000 +2060,chr22,19091008,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,101.00000000,0.00000000,-0.10000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.01219512,0.00000000,7.70000000 +2061,chr22,19091094,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,97.00000000,0.00000000,0.39000000,0.00000000,,0.45454545,78.00000000,3.45132743,0.01282051,0.00000000,8.36000000 +2062,chr22,19091249,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.74000000,0.00000000,,0.35365854,85.00000000,3.76106195,0.02352941,0.00000000,8.52000000 +2063,chr22,19091545,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,0.05000000,0.00000000,,0.49462366,93.00000000,4.11504425,0.00000000,0.00000000,8.41000000 +2064,chr22,19091966,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.38000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +2065,chr22,19092205,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.28571429,63.00000000,2.78761062,0.00000000,0.00000000,6.72000000 +2066,chr22,19092287,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,53.00000000,0.00000000,1.54000000,0.00000000,,0.34920635,67.00000000,2.96460177,0.05970149,0.00000000,4.67000000 +2067,chr22,19092787,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.50000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,8.56000000 +2068,chr22,19093159,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.89000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,5.87000000 +2069,chr22,19093161,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.09000000,0.00000000,,0.48571429,70.00000000,3.09734513,0.00000000,0.00000000,8.82000000 +2070,chr22,19093386,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,59.00000000,0.00000000,-0.06000000,0.00000000,,0.43835616,78.00000000,3.45132743,0.06410256,0.00000000,6.66000000 +2071,chr22,19093726,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.43055556,74.00000000,3.27433628,0.02702703,0.00000000,8.01000000 +2072,chr22,19094380,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.16494845,97.00000000,4.29203540,0.00000000,0.00000000,5.27000000 +2073,chr22,19094833,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,-0.79000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,8.23000000 +2074,chr22,19095022,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.63000000,0.00000000,,0.41975309,81.00000000,3.58407080,0.00000000,0.00000000,8.57000000 +2075,chr22,19095223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,5.92000000 +2076,chr22,19095443,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.02000000,0.00000000,,0.35294118,69.00000000,3.05309735,0.01449275,0.00000000,8.00000000 +2077,chr22,19095594,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,63.00000000,0.00000000,0.44000000,0.00000000,,0.37096774,70.00000000,3.09734513,0.11428571,0.00000000,7.66000000 +2078,chr22,19095640,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.21621622,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.30188679,73.00000000,3.23008850,0.27397260,0.00000000,5.64000000 +2079,chr22,19096039,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-1.43000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.66000000 +2080,chr22,19096044,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.71000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.93000000 +2081,chr22,19096165,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,98.00000000,0.00000000,-0.04000000,0.00000000,,0.34177215,82.00000000,3.62831858,0.03658537,0.00000000,7.86000000 +2082,chr22,19096523,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,1.47000000,0.00000000,,0.20000000,97.00000000,4.29203540,0.02061856,0.00000000,5.65000000 +2083,chr22,19097042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.56000000,0.00000000,,0.23255814,89.00000000,3.93805310,0.03370787,0.00000000,6.35000000 +2084,chr22,19097176,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.50746269,70.00000000,3.09734513,0.02857143,0.00000000,8.30000000 +2085,chr22,19097689,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.97000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.41000000 +2086,chr22,19098083,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.28000000 +2087,chr22,19098670,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-0.15000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.00000000,0.00000000,9.01000000 +2088,chr22,19099007,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,46.00000000,0.00000000,0.68000000,0.00000000,,0.43055556,75.00000000,3.31858407,0.04000000,0.00000000,4.35000000 +2089,chr22,19099391,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.31000000,0.00000000,,0.43076923,67.00000000,2.96460177,0.02985075,0.00000000,7.91000000 +2090,chr22,19099491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,2.09000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.84000000 +2091,chr22,19099554,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.70000000,0.00000000,,0.41250000,83.00000000,3.67256637,0.03614458,0.00000000,8.31000000 +2092,chr22,19099697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,5.79000000 +2093,chr22,19099744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.99000000 +2094,chr22,19100402,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,-1.53000000,0.00000000,,0.28260870,92.00000000,4.07079646,0.00000000,0.00000000,6.67000000 +2095,chr22,19101094,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,112.00000000,0.00000000,-0.77000000,0.00000000,,0.40000000,87.00000000,3.84955752,0.02298851,0.00000000,13.51000000 +2096,chr22,19101181,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.10000000,0.00000000,,0.23529412,71.00000000,3.14159292,0.01408451,0.00000000,6.43000000 +2097,chr22,19101609,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.76000000 +2098,chr22,19101674,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,73.00000000,0.00000000,1.14000000,0.00000000,,0.44444444,82.00000000,3.62831858,0.12195122,0.00000000,8.49000000 +2099,chr22,19102557,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.24000000,0.00000000,,0.44444444,66.00000000,2.92035398,0.04545455,0.00000000,8.03000000 +2100,chr22,19102736,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.40000000,73.00000000,3.23008850,0.04109589,0.00000000,8.57000000 +2101,chr22,19102754,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,77.00000000,0.00000000,0.27000000,0.00000000,,0.44444444,73.00000000,3.23008850,0.01369863,0.00000000,8.63000000 +2102,chr22,19104709,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.68000000 +2103,chr22,19105520,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,62.00000000,0.00000000,-0.12000000,0.00000000,,0.38571429,72.00000000,3.18584071,0.02777778,0.00000000,7.57000000 +2104,chr22,19105534,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.36231884,73.00000000,3.23008850,0.04109589,0.00000000,8.29000000 +2105,chr22,19105572,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.39726027,74.00000000,3.27433628,0.01351351,0.00000000,8.53000000 +2106,chr22,19105645,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.74000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.30000000 +2107,chr22,19105926,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,65.00000000,0.00000000,-1.54000000,0.00000000,,0.15000000,61.00000000,2.69911504,0.00000000,0.00000000,5.77000000 +2108,chr22,19106652,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.40000000,0.00000000,,0.49462366,94.00000000,4.15929204,0.01063830,0.00000000,6.13000000 +2109,chr22,19106814,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.43396226,56.00000000,2.47787611,0.01785714,0.00000000,8.00000000 +2110,chr22,19108151,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,2.37000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.01136364,0.00000000,8.30000000 +2111,chr22,19108175,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.35714286,85.00000000,3.76106195,0.01176471,0.00000000,8.55000000 +2112,chr22,19109018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,-0.04000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,3.09000000 +2113,chr22,19109315,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.23000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,5.98000000 +2114,chr22,19109924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.21000000 +2115,chr22,19110167,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.07000000,0.00000000,,0.48484848,69.00000000,3.05309735,0.02898551,0.00000000,8.07000000 +2116,chr22,19110187,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,0.26000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.19000000 +2117,chr22,19110326,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,47.00000000,0.00000000,0.52000000,0.00000000,,0.29230769,68.00000000,3.00884956,0.02941176,0.00000000,2.94000000 +2118,chr22,19110716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.90000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,3.12000000 +2119,chr22,19110746,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-1.23000000,0.00000000,,0.51807229,83.00000000,3.67256637,0.00000000,0.00000000,4.04000000 +2120,chr22,19111129,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.09000000,0.00000000,,0.44871795,81.00000000,3.58407080,0.02469136,0.00000000,6.08000000 +2121,chr22,19111453,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-0.59000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.21000000 +2122,chr22,19111767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,0.23000000,0.00000000,,0.28750000,83.00000000,3.67256637,0.03614458,0.00000000,5.96000000 +2123,chr22,19111906,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,84.00000000,0.00000000,-1.15000000,0.00000000,,0.21126761,81.00000000,3.58407080,0.11111111,0.00000000,5.90000000 +2124,chr22,19112039,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.45000000 +2125,chr22,19112134,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,1.59000000,0.00000000,,0.18181818,57.00000000,2.52212389,0.03508772,0.00000000,5.57000000 +2126,chr22,19112207,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,52.00000000,0.00000000,0.16000000,0.00000000,,0.33333333,61.00000000,2.69911504,0.26229508,0.00000000,4.58000000 +2127,chr22,19113230,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,44.00000000,0.00000000,0.20000000,0.00000000,,0.39285714,60.00000000,2.65486726,0.05000000,0.00000000,4.13000000 +2128,chr22,19113442,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.11000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.53000000 +2129,chr22,19114465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.35000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +2130,chr22,19115069,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.05000000 +2131,chr22,19115834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-2.05000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.00000000,0.00000000,5.97000000 +2132,chr22,19116085,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,1.46000000,0.00000000,,0.18823529,90.00000000,3.98230088,0.04444444,0.00000000,5.77000000 +2133,chr22,19116673,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,78.00000000,0.00000000,0.63000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.75000000 +2134,chr22,19116811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.22000000 +2135,chr22,19117022,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.66000000,0.00000000,,0.30864198,85.00000000,3.76106195,0.02352941,0.00000000,8.10000000 +2136,chr22,19117437,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.83000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.36000000 +2137,chr22,19117760,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,-2.21000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +2138,chr22,19118453,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,90.00000000,0.00000000,2.52000000,0.00000000,,0.30000000,86.00000000,3.80530973,0.06976744,0.00000000,5.67000000 +2139,chr22,19118607,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.37837838,77.00000000,3.40707965,0.03896104,0.00000000,8.07000000 +2140,chr22,19119924,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,0.01000000,0.00000000,,0.42028986,71.00000000,3.14159292,0.02816901,0.00000000,7.85000000 +2141,chr22,19120083,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.93000000,0.00000000,,0.38636364,89.00000000,3.93805310,0.01123596,0.00000000,8.56000000 +2142,chr22,19120585,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.17000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +2143,chr22,19121035,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.77000000,0.00000000,,0.47826087,72.00000000,3.18584071,0.04166667,0.00000000,4.60000000 +2144,chr22,19122096,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,-0.76000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.00000000,0.00000000,8.72000000 +2145,chr22,19122299,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,44.00000000,0.00000000,-1.60000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,4.44000000 +2146,chr22,19122442,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,80.00000000,0.00000000,-0.27000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.00000000,0.00000000,6.48000000 +2147,chr22,19122896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.76000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.34000000 +2148,chr22,19124047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,2.70000000,0.00000000,,0.20192308,109.00000000,4.82300885,0.04587156,0.00000000,6.32000000 +2149,chr22,19124671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-1.24000000,0.00000000,,0.10526316,79.00000000,3.49557522,0.03797468,0.00000000,4.88000000 +2150,chr22,19124972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +2151,chr22,19125502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.90000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.84000000 +2152,chr22,19125515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.02000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.28000000 +2153,chr22,19125775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,1.27000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.18000000 +2154,chr22,19125964,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,95.00000000,0.00000000,0.61000000,0.00000000,,0.32183908,89.00000000,3.93805310,0.02247191,0.00000000,7.32000000 +2155,chr22,19126173,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.40540541,76.00000000,3.36283186,0.02631579,0.00000000,8.32000000 +2156,chr22,19126373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.98000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.01000000 +2157,chr22,19127027,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.05333333,0.00000000,5.85000000 +2158,chr22,19127313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.59000000 +2159,chr22,19127965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,2.81000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,5.96000000 +2160,chr22,19128143,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,0.08000000,0.00000000,,0.28048780,90.00000000,3.98230088,0.08888889,0.00000000,5.78000000 +2161,chr22,19128337,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.42000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,5.96000000 +2162,chr22,19128838,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,0.06000000,0.00000000,,0.49350649,79.00000000,3.49557522,0.02531646,0.00000000,4.64000000 +2163,chr22,19128988,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.97000000 +2164,chr22,19129311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.22000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.50000000 +2165,chr22,19129754,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,100.00000000,0.00000000,0.88000000,0.00000000,,0.36986301,75.00000000,3.31858407,0.02666667,0.00000000,7.32000000 +2166,chr22,19131188,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +2167,chr22,19132173,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,1.65000000,0.00000000,,0.31506849,80.00000000,3.53982301,0.08750000,0.00000000,6.64000000 +2168,chr22,19132238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.40000000,0.00000000,,0.27777778,61.00000000,2.69911504,0.11475410,0.00000000,6.17000000 +2169,chr22,19132425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,-1.79000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.67000000 +2170,chr22,19133354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-1.16000000,0.00000000,,0.24675325,82.00000000,3.62831858,0.06097561,0.00000000,5.79000000 +2171,chr22,19133446,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.70000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.52000000 +2172,chr22,19135152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.00000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.30000000 +2173,chr22,19135562,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.68000000,0.00000000,,0.44554455,103.00000000,4.55752212,0.01941748,0.00000000,8.23000000 +2174,chr22,19136439,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.53000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.96000000 +2175,chr22,19137623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,65.00000000,0.00000000,0.19000000,0.00000000,,0.25274725,93.00000000,4.11504425,0.02150538,0.00000000,5.91000000 +2176,chr22,19137870,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.90000000,0.00000000,,0.38157895,81.00000000,3.58407080,0.06172840,0.00000000,8.35000000 +2177,chr22,19139118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.27000000 +2178,chr22,19140656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.02777778,0.00000000,5.79000000 +2179,chr22,19141244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,0.16000000,0.00000000,,0.20000000,79.00000000,3.49557522,0.03797468,0.00000000,5.72000000 +2180,chr22,19142159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,89.00000000,0.00000000,-0.90000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.20000000 +2181,chr22,19143772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.03614458,0.00000000,5.97000000 +2182,chr22,19143773,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +2183,chr22,19158316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.94000000 +2184,chr22,19158809,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.12000000 +2185,chr22,19159042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,-0.16000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.00000000,0.00000000,6.48000000 +2186,chr22,19159308,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.62000000,0.00000000,,0.18072289,87.00000000,3.84955752,0.04597701,0.00000000,5.61000000 +2187,chr22,19159364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.31000000,0.00000000,,0.20967742,65.00000000,2.87610619,0.04615385,0.00000000,5.79000000 +2188,chr22,19159387,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,6.43000000 +2189,chr22,19159471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.16000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +2190,chr22,19159747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,1.46000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,5.94000000 +2191,chr22,19159786,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.86000000 +2192,chr22,19159806,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.70000000 +2193,chr22,19165386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.21000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +2194,chr22,19166204,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.17000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.00000000,0.00000000,6.40000000 +2195,chr22,19167095,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-1.35000000,0.00000000,,0.28089888,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +2196,chr22,19168149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,1.23000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +2197,chr22,19170306,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.00000000,0.00000000,5.87000000 +2198,chr22,19171209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.15315315,113.00000000,5.00000000,0.01769912,0.00000000,5.43000000 +2199,chr22,19173386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-1.13000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +2200,chr22,19174422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.46000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.49000000 +2201,chr22,19174763,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.46000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.01219512,0.00000000,5.11000000 +2202,chr22,19174813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,75.00000000,0.00000000,-1.52000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.00000000 +2203,chr22,19178750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.43000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.35000000 +2204,chr22,19179204,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,78.00000000,0.00000000,0.64000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,5.83000000 +2205,chr22,19179872,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.25242718,105.00000000,4.64601770,0.01904762,0.00000000,5.80000000 +2206,chr22,19194045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.97000000 +2207,chr22,19196733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +2208,chr22,19199864,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.15662651,86.00000000,3.80530973,0.03488372,0.00000000,5.32000000 +2209,chr22,19199916,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,4.95000000 +2210,chr22,19207358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.03000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.68000000 +2211,chr22,19208602,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,96.00000000,0.00000000,-1.37000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,5.36000000 +2212,chr22,19224142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.87000000 +2213,chr22,19233125,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,1.03000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.06000000 +2214,chr22,19233883,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.15000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.00000000,0.00000000,6.33000000 +2215,chr22,19236056,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.00000000,0.00000000,9.00000000 +2216,chr22,19246092,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.04000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.69000000 +2217,chr22,19246352,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,1.05000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.00000000,0.00000000,6.32000000 +2218,chr22,19248966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.65000000 +2219,chr22,19261064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.52000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +2220,chr22,19265751,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.42000000,0.00000000,,0.16494845,100.00000000,4.42477876,0.03000000,0.00000000,5.04000000 +2221,chr22,19268333,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,68.00000000,0.00000000,0.32000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.65000000 +2222,chr22,19273052,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,80.00000000,0.00000000,-1.72000000,0.00000000,,0.18478261,94.00000000,4.15929204,0.02127660,0.00000000,5.30000000 +2223,chr22,19276369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,5.98000000 +2224,chr22,19278276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,89.00000000,0.00000000,0.15000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.59000000 +2225,chr22,19280501,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,-0.57000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.38000000 +2226,chr22,19284308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,5.93000000 +2227,chr22,19285016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-2.41000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.01298701,0.00000000,6.35000000 +2228,chr22,19286853,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,-0.40000000,0.00000000,,0.19480519,84.00000000,3.71681416,0.05952381,0.00000000,6.11000000 +2229,chr22,19297834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,0.00000000,1.45000000,0.00000000,,0.35000000,61.00000000,2.69911504,0.01639344,0.00000000,7.94000000 +2230,chr22,19298293,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.87000000 +2231,chr22,19298533,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.24193548,63.00000000,2.78761062,0.01587302,0.00000000,6.37000000 +2232,chr22,19334898,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.40000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.72000000 +2233,chr22,19337785,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,98.00000000,0.00000000,0.84000000,0.00000000,,0.25490196,102.00000000,4.51327434,0.00000000,0.00000000,5.85000000 +2234,chr22,19338669,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.30000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +2235,chr22,19340415,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.75000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +2236,chr22,19347400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,-1.01000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.54000000 +2237,chr22,19357701,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,84.00000000,0.00000000,0.06000000,0.00000000,,0.26760563,73.00000000,3.23008850,0.02739726,0.00000000,5.80000000 +2238,chr22,19492564,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.27000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.43000000 +2239,chr22,19516397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.02816901,0.00000000,4.92000000 +2240,chr22,19531920,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.29000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.02857143,0.00000000,6.29000000 +2241,chr22,19553098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.46000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.02857143,0.00000000,6.69000000 +2242,chr22,19576469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.18461538,70.00000000,3.09734513,0.07142857,0.00000000,5.60000000 +2243,chr22,19596504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,1.16000000,0.00000000,,0.26666667,94.00000000,4.15929204,0.03191489,0.00000000,6.26000000 +2244,chr22,19608485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,82.00000000,0.00000000,-0.24000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.26000000 +2245,chr22,19609482,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.10000000,0.00000000,,0.16666667,62.00000000,2.74336283,0.03225806,0.00000000,5.16000000 +2246,chr22,19609663,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,1.73000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.03125000,0.00000000,5.42000000 +2247,chr22,19609767,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.37000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,4.65000000 +2248,chr22,19610518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.66000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.00000000,0.00000000,6.32000000 +2249,chr22,19612692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.08000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.20000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.62000000 +2250,chr22,19613051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.43000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +2251,chr22,19613715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.29000000,0.00000000,,0.25000000,109.00000000,4.82300885,0.00917431,0.00000000,5.94000000 +2252,chr22,19613906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.15000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +2253,chr22,19614708,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.65000000 +2254,chr22,19615480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,1.16000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.31000000 +2255,chr22,19615682,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.20238095,87.00000000,3.84955752,0.02298851,0.00000000,6.40000000 +2256,chr22,19615844,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.30000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,4.79000000 +2257,chr22,19615905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.24637681,74.00000000,3.27433628,0.05405405,0.00000000,6.21000000 +2258,chr22,19615928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,6.52000000 +2259,chr22,19616420,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.18000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.33000000 +2260,chr22,19642261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-1.47000000,0.00000000,,0.14117647,88.00000000,3.89380531,0.03409091,0.00000000,5.52000000 +2261,chr22,19646093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,0.83000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.55000000 +2262,chr22,19646681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,74.00000000,0.00000000,0.16000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,5.79000000 +2263,chr22,19648828,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.17000000,102.00000000,4.51327434,0.01960784,0.00000000,4.80000000 +2264,chr22,19650773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,-0.31000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,5.91000000 +2265,chr22,19651024,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.51000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,6.68000000 +2266,chr22,19652170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.70000000,0.00000000,,0.22772277,104.00000000,4.60176991,0.00961538,0.00000000,6.54000000 +2267,chr22,19653130,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.73000000 +2268,chr22,19653560,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.13725490,57.00000000,2.52212389,0.08771930,0.00000000,4.96000000 +2269,chr22,19654896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,2.05000000,0.00000000,,0.19101124,93.00000000,4.11504425,0.03225806,0.00000000,6.23000000 +2270,chr22,19655557,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.38000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.57000000 +2271,chr22,19655581,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,78.00000000,0.00000000,0.23000000,0.00000000,,0.17346939,100.00000000,4.42477876,0.02000000,0.00000000,5.23000000 +2272,chr22,19656032,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,0.10000000,0.00000000,,0.26666667,78.00000000,3.45132743,0.01282051,0.00000000,5.81000000 +2273,chr22,19656853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.02000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.42000000 +2274,chr22,19656910,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.17000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.19000000 +2275,chr22,19657139,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.02325581,0.00000000,6.61000000 +2276,chr22,19658151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,48.00000000,0.00000000,0.76000000,0.00000000,,0.30909091,57.00000000,2.52212389,0.03508772,0.00000000,2.88000000 +2277,chr22,19658236,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.24000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.37000000 +2278,chr22,19658300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.52000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +2279,chr22,19658511,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.18000000 +2280,chr22,19660653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.00000000,0.00000000,6.41000000 +2281,chr22,19660938,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.21000000,0.00000000,,0.23076923,96.00000000,4.24778761,0.05208333,0.00000000,5.59000000 +2282,chr22,19661482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.73000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +2283,chr22,19662017,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.41000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +2284,chr22,19666621,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.67000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +2285,chr22,19671231,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,59.00000000,0.00000000,-0.08000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.02272727,0.00000000,3.57000000 +2286,chr22,19683760,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-1.57000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.52000000 +2287,chr22,19688671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.18000000,0.00000000,,0.10588235,88.00000000,3.89380531,0.03409091,0.00000000,4.90000000 +2288,chr22,19688725,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.04000000,0.00000000,,0.11842105,79.00000000,3.49557522,0.03797468,0.00000000,4.91000000 +2289,chr22,19689190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.55000000 +2290,chr22,19692557,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,53.00000000,0.00000000,0.15000000,0.00000000,,0.30909091,67.00000000,2.96460177,0.16417910,0.00000000,4.13000000 +2291,chr22,19694982,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,-0.53000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.99000000 +2292,chr22,19695104,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.48000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,6.57000000 +2293,chr22,19695118,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,0.49000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,5.86000000 +2294,chr22,19695693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.81000000,0.00000000,,0.11627907,86.00000000,3.80530973,0.00000000,0.00000000,4.97000000 +2295,chr22,19695793,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-1.70000000,0.00000000,,0.15714286,76.00000000,3.36283186,0.06578947,0.00000000,5.92000000 +2296,chr22,19695859,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,-0.98000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.02941176,0.00000000,5.94000000 +2297,chr22,19696056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,5.84000000 +2298,chr22,19696483,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,0.77000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.39000000 +2299,chr22,19699252,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.92000000 +2300,chr22,19699271,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.73000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.02000000 +2301,chr22,19727161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.26000000,9.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,64.00000000,0.00000000,-0.82000000,1.76000000,,0.15384615,47.00000000,2.07964602,0.17021277,0.00000000,3.49000000 +2302,chr22,19729797,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.32000000,0.00000000,,0.43283582,67.00000000,2.96460177,0.00000000,0.00000000,8.82000000 +2303,chr22,19732528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.49000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.00000000,0.00000000,6.30000000 +2304,chr22,19733581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.63000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.02000000 +2305,chr22,19736532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.49000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.18000000 +2306,chr22,19737930,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,79.00000000,0.00000000,1.18000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,5.97000000 +2307,chr22,19739466,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-1.08000000,0.00000000,,0.49473684,98.00000000,4.33628319,0.03061224,0.00000000,7.98000000 +2308,chr22,19740140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +2309,chr22,19741838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +2310,chr22,19743069,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.48000000,0.00000000,,0.49425287,88.00000000,3.89380531,0.01136364,0.00000000,4.10000000 +2311,chr22,19762002,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.30000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.22000000 +2312,chr22,19771592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.97000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,6.56000000 +2313,chr22,19784608,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.96000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.05617978,0.00000000,5.66000000 +2314,chr22,19788842,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.48000000,0.00000000,,0.27380952,87.00000000,3.84955752,0.02298851,0.00000000,6.33000000 +2315,chr22,19794930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.13483146,92.00000000,4.07079646,0.03260870,0.00000000,4.94000000 +2316,chr22,19800975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.23809524,105.00000000,4.64601770,0.00000000,0.00000000,6.43000000 +2317,chr22,19811651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.17307692,105.00000000,4.64601770,0.00952381,0.00000000,6.35000000 +2318,chr22,19815027,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,0.82000000,0.00000000,,0.18032787,68.00000000,3.00884956,0.10294118,0.00000000,5.45000000 +2319,chr22,19821897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.62000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.50000000 +2320,chr22,19824197,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,0.83000000,0.00000000,,0.21359223,106.00000000,4.69026549,0.02830189,0.00000000,6.29000000 +2321,chr22,19835158,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.90000000 +2322,chr22,19835385,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.44000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +2323,chr22,19856711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.24000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.46000000 +2324,chr22,19882861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,69.00000000,0.00000000,-1.24000000,0.00000000,,0.11904762,85.00000000,3.76106195,0.01176471,0.00000000,4.85000000 +2325,chr22,19890121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,5.93000000 +2326,chr22,19890839,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.39000000 +2327,chr22,19890991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.16666667,92.00000000,4.07079646,0.02173913,0.00000000,5.46000000 +2328,chr22,19891229,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,83.00000000,0.00000000,-0.27000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,5.83000000 +2329,chr22,19892114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,1.50000000,0.00000000,,0.24489796,99.00000000,4.38053097,0.01010101,0.00000000,6.61000000 +2330,chr22,19892415,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,62.00000000,0.00000000,-1.22000000,0.00000000,,0.43243243,78.00000000,3.45132743,0.05128205,0.00000000,7.87000000 +2331,chr22,19892534,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.62000000 +2332,chr22,19920397,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.45000000 +2333,chr22,19920404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,1.07000000,0.00000000,,0.10465116,88.00000000,3.89380531,0.02272727,0.00000000,4.16000000 +2334,chr22,19920831,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.99000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.90000000 +2335,chr22,19920833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.87000000 +2336,chr22,19925011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.95000000,0.00000000,,0.20270270,82.00000000,3.62831858,0.09756098,0.00000000,6.25000000 +2337,chr22,19925086,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-1.16000000,0.00000000,,0.27586207,92.00000000,4.07079646,0.04347826,0.00000000,6.25000000 +2338,chr22,19930333,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.89000000 +2339,chr22,19941504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.17475728,105.00000000,4.64601770,0.01904762,0.00000000,6.09000000 +2340,chr22,19951094,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.58000000,0.00000000,,0.12500000,81.00000000,3.58407080,0.01234568,0.00000000,5.35000000 +2341,chr22,19952659,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-2.45000000,0.00000000,,0.18918919,81.00000000,3.58407080,0.08641975,0.00000000,6.33000000 +2342,chr22,19965536,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.22000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.60000000 +2343,chr22,19966359,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,74.00000000,0.00000000,-1.25000000,0.00000000,,0.23287671,85.00000000,3.76106195,0.14117647,0.00000000,5.92000000 +2344,chr22,19968169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.27586207,87.00000000,3.84955752,0.00000000,0.00000000,7.04000000 +2345,chr22,19971510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.30000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.23000000 +2346,chr22,19972617,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.63000000,0.00000000,,0.23711340,98.00000000,4.33628319,0.01020408,0.00000000,6.62000000 +2347,chr22,19973083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,2.30000000,,0.08219178,78.00000000,3.45132743,0.05128205,0.00000000,3.74000000 +2348,chr22,19973484,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,6.21000000 +2349,chr22,19980285,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.06000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +2350,chr22,19981074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.12903226,97.00000000,4.29203540,0.04123711,0.00000000,4.87000000 +2351,chr22,19983868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.54000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.00000000 +2352,chr22,19986074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.71000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,6.34000000 +2353,chr22,19986551,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,5.70000000 +2354,chr22,19990317,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.33000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.24000000 +2355,chr22,19992190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.03448276,0.00000000,6.28000000 +2356,chr22,19994143,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.24074074,57.00000000,2.52212389,0.05263158,0.00000000,5.90000000 +2357,chr22,19995780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,1.89000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.14000000 +2358,chr22,20002119,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-1.55000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.00000000,0.00000000,6.97000000 +2359,chr22,20002367,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.33000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +2360,chr22,20003266,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.12000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.75000000 +2361,chr22,20003544,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.17757009,108.00000000,4.77876106,0.00925926,0.00000000,5.68000000 +2362,chr22,20004427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,98.00000000,0.00000000,-0.24000000,0.00000000,,0.28915663,89.00000000,3.93805310,0.05617978,0.00000000,5.09000000 +2363,chr22,20005776,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.13157895,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.20588235,83.00000000,3.67256637,0.18072289,0.00000000,6.12000000 +2364,chr22,20010681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,86.00000000,0.00000000,0.88000000,0.00000000,,0.21111111,94.00000000,4.15929204,0.04255319,0.00000000,5.33000000 +2365,chr22,20012905,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,0.62000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.50000000 +2366,chr22,20015536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +2367,chr22,20020076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.06250000,0.00000000,88.00000000,0.00000000,0.77000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.03225806,0.00000000,5.11000000 +2368,chr22,20021365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.44000000 +2369,chr22,20023400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,-0.46000000,0.00000000,,0.09589041,76.00000000,3.36283186,0.02631579,0.00000000,4.84000000 +2370,chr22,20030600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.05000000,0.00000000,,0.22641509,53.00000000,2.34513274,0.00000000,0.00000000,2.90000000 +2371,chr22,20033078,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.21538462,76.00000000,3.36283186,0.14473684,0.00000000,5.92000000 +2372,chr22,20115740,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +2373,chr22,20115741,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.76000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.00000000,0.00000000,6.43000000 +2374,chr22,20201086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.35000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,6.27000000 +2375,chr22,20201554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,52.00000000,0.00000000,0.39000000,0.00000000,,0.25454545,66.00000000,2.92035398,0.16666667,0.00000000,2.83000000 +2376,chr22,20201679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.53000000 +2377,chr22,20201855,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.22000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,5.87000000 +2378,chr22,20201859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,1.96000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.96000000 +2379,chr22,20201867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,5.93000000 +2380,chr22,20202099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.16000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +2381,chr22,20202199,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +2382,chr22,20202651,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,0.08000000,0.00000000,,0.15384615,78.00000000,3.45132743,0.00000000,0.00000000,5.60000000 +2383,chr22,20203174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.11000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +2384,chr22,20203237,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.72000000,0.00000000,,0.25842697,93.00000000,4.11504425,0.04301075,0.00000000,6.59000000 +2385,chr22,20205591,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,-0.36000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,5.82000000 +2386,chr22,20208068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.62000000,0.00000000,,0.27000000,102.00000000,4.51327434,0.01960784,0.00000000,6.59000000 +2387,chr22,20230714,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,6.33000000 +2388,chr22,20231667,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.98000000 +2389,chr22,20232125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.00000000,0.00000000,6.84000000 +2390,chr22,20233241,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.03000000 +2391,chr22,20261316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.04938272,0.00000000,6.29000000 +2392,chr22,20291430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.59000000 +2393,chr22,20291605,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.16000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +2394,chr22,20291636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.17204301,96.00000000,4.24778761,0.03125000,0.00000000,5.79000000 +2395,chr22,20292010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.17204301,98.00000000,4.33628319,0.05102041,0.00000000,5.55000000 +2396,chr22,20292195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.22105263,98.00000000,4.33628319,0.03061224,0.00000000,5.66000000 +2397,chr22,20293738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.62000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +2398,chr22,20294330,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.74000000 +2399,chr22,20294720,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.60000000,2.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.66000000,0.00000000,,0.29090909,111.00000000,4.91150442,0.00000000,0.00000000,7.12000000 +2400,chr22,20295206,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,69.00000000,0.00000000,0.34000000,0.00000000,,0.14141414,101.00000000,4.46902655,0.01980198,0.00000000,5.10000000 +2401,chr22,20295363,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,2.28000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.73000000 +2402,chr22,20295705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.26506024,88.00000000,3.89380531,0.04545455,0.00000000,6.37000000 +2403,chr22,20295895,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-0.67000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.70000000 +2404,chr22,20301715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.55000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.01234568,0.00000000,5.41000000 +2405,chr22,20303348,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.25000000,0.00000000,,0.27941176,72.00000000,3.18584071,0.05555556,0.00000000,6.27000000 +2406,chr22,20303426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,2.37000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.05555556,0.00000000,6.23000000 +2407,chr22,20303507,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,56.28000000,12.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.30379747,79.00000000,3.49557522,0.00000000,0.00000000,7.33000000 +2408,chr22,20306102,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.71000000 +2409,chr22,20306312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.02000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,5.86000000 +2410,chr22,20307897,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,1.23000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.81000000 +2411,chr22,20308791,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.67000000,21.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.30000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.01282051,0.00000000,6.09000000 +2412,chr22,20308798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.80000000,21.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.11000000 +2413,chr22,20309017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.73000000,0.00000000,,0.19090909,111.00000000,4.91150442,0.00900901,0.00000000,6.32000000 +2414,chr22,20314277,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.87000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.17000000,0.00000000,,0.07317073,83.00000000,3.67256637,0.01204819,0.00000000,4.73000000 +2415,chr22,20316331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.21126761,76.00000000,3.36283186,0.05263158,0.00000000,5.83000000 +2416,chr22,20317197,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.89000000 +2417,chr22,20319193,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.04000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,4.79000000 +2418,chr22,20319470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.01282051,0.00000000,5.85000000 +2419,chr22,20319733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.84000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,5.85000000 +2420,chr22,20320756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,-0.64000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,5.35000000 +2421,chr22,20323613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,6.17000000 +2422,chr22,20323902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.91000000 +2423,chr22,20328406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.46000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.86000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.55000000 +2424,chr22,20337911,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.36000000,26.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,-0.88000000,0.00000000,,0.16363636,63.00000000,2.78761062,0.12698413,0.00000000,5.67000000 +2425,chr22,20338272,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,52.15000000,67.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,0.00000000,-2.18000000,6.50000000,,0.05625000,160.00000000,7.07964602,0.00000000,0.00000000,4.09000000 +2426,chr22,20354351,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.66000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.00000000,0.00000000,6.21000000 +2427,chr22,20357677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,42.62000000,55.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.11111111,0.00000000,38.00000000,0.00000000,-0.72000000,0.00000000,,0.31578947,41.00000000,1.81415929,0.07317073,0.00000000,2.91000000 +2428,chr22,20358202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,47.07000000,41.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.05000000,0.00000000,,0.18181818,47.00000000,2.07964602,0.06382979,0.00000000,4.69000000 +2429,chr22,20363739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.87000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.11111111,72.00000000,3.18584071,0.00000000,0.00000000,5.06000000 +2430,chr22,20364630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,48.75000000,45.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.96000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.33000000 +2431,chr22,20369542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.36000000 +2432,chr22,20370332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.26000000 +2433,chr22,20371094,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,43.99000000,27.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.16000000,0.00000000,,0.18518519,55.00000000,2.43362832,0.01818182,0.00000000,6.37000000 +2434,chr22,20377500,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +2435,chr22,20381704,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,5.94000000 +2436,chr22,20384769,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.15000000,0.00000000,,0.13953488,86.00000000,3.80530973,0.00000000,0.00000000,4.83000000 +2437,chr22,20388816,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.47000000 +2438,chr22,20391009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,1.07000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.02409639,0.00000000,5.92000000 +2439,chr22,20391326,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-0.31000000,0.00000000,,0.32000000,76.00000000,3.36283186,0.01315789,0.00000000,7.89000000 +2440,chr22,20393473,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,-0.86000000,0.00000000,,0.16037736,106.00000000,4.69026549,0.00000000,0.00000000,5.95000000 +2441,chr22,20393963,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,87.00000000,0.00000000,0.78000000,0.00000000,,0.23584906,108.00000000,4.77876106,0.00925926,0.00000000,5.86000000 +2442,chr22,20399749,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,1.61000000,0.00000000,,0.42187500,66.00000000,2.92035398,0.01515152,0.00000000,8.03000000 +2443,chr22,20433843,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,-0.65000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.01960784,0.00000000,6.25000000 +2444,chr22,20435673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,87.00000000,0.00000000,-0.77000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +2445,chr22,20443002,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,-0.05000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.04000000 +2446,chr22,20445278,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,76.00000000,0.00000000,-1.25000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.90000000 +2447,chr22,20452110,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,0.45000000,0.00000000,,0.19658120,118.00000000,5.22123894,0.00000000,0.00000000,6.39000000 +2448,chr22,20453282,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.18000000,103.00000000,4.55752212,0.02912621,0.00000000,5.56000000 +2449,chr22,20488448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,2.74000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,5.72000000 +2450,chr22,20500927,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.56000000,0.00000000,,0.09876543,82.00000000,3.62831858,0.01219512,0.00000000,5.17000000 +2451,chr22,20519516,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.21621622,80.00000000,3.53982301,0.07500000,0.00000000,6.00000000 +2452,chr22,20535758,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.33870968,69.00000000,3.05309735,0.08695652,0.00000000,8.26000000 +2453,chr22,20541640,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.21000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,5.50000000 +2454,chr22,20553016,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.38000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.73000000 +2455,chr22,20553442,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,6.44000000 +2456,chr22,20554706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.33000000 +2457,chr22,20555387,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,5.73000000 +2458,chr22,20555746,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.39000000 +2459,chr22,20555934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.84000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +2460,chr22,20556596,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.96000000,0.00000000,,0.28358209,71.00000000,3.14159292,0.04225352,0.00000000,6.35000000 +2461,chr22,20557966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +2462,chr22,20559591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.14000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.48000000 +2463,chr22,20560470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.26000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +2464,chr22,20560671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,90.00000000,0.00000000,0.32000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,5.18000000 +2465,chr22,20562780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.23000000,0.00000000,,0.27659574,96.00000000,4.24778761,0.02083333,0.00000000,5.48000000 +2466,chr22,20563017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,0.41000000,0.00000000,,0.15151515,72.00000000,3.18584071,0.08333333,0.00000000,4.62000000 +2467,chr22,20565090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,1.23000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,6.04000000 +2468,chr22,20565468,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.71000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.60000000 +2469,chr22,20565912,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.70000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.01176471,0.00000000,7.68000000 +2470,chr22,20567606,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.02000000 +2471,chr22,20570304,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.84000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.27000000 +2472,chr22,20572338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,101.00000000,0.00000000,-0.50000000,0.00000000,,0.31034483,89.00000000,3.93805310,0.02247191,0.00000000,7.00000000 +2473,chr22,20573256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.44000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,7.01000000 +2474,chr22,20573515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.60000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.72000000 +2475,chr22,20573979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.94000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,5.69000000 +2476,chr22,20574522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.46000000 +2477,chr22,20575627,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,86.00000000,0.00000000,0.33000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.08000000 +2478,chr22,20575637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,85.00000000,0.00000000,-0.01000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +2479,chr22,20576540,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-1.52000000,0.00000000,,0.21649485,98.00000000,4.33628319,0.01020408,0.00000000,6.54000000 +2480,chr22,20578426,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.22000000 +2481,chr22,20581386,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,79.00000000,0.00000000,-1.04000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,4.98000000 +2482,chr22,20581444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.83000000 +2483,chr22,20583314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.18811881,103.00000000,4.55752212,0.01941748,0.00000000,5.79000000 +2484,chr22,20584090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.66000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.35000000 +2485,chr22,20584488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.49000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,5.75000000 +2486,chr22,20584836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +2487,chr22,20585979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,4.67000000 +2488,chr22,20585985,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.13095238,88.00000000,3.89380531,0.04545455,0.00000000,4.56000000 +2489,chr22,20586507,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.12222222,90.00000000,3.98230088,0.00000000,0.00000000,5.25000000 +2490,chr22,20590546,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.63000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.00000000,0.00000000,5.18000000 +2491,chr22,20592116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.41000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +2492,chr22,20592170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.16000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.87000000 +2493,chr22,20600579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.17808219,76.00000000,3.36283186,0.03947368,0.00000000,5.61000000 +2494,chr22,20602750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +2495,chr22,20609086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-2.01000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.95000000 +2496,chr22,20613469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +2497,chr22,20615888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.36000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +2498,chr22,20621305,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.02500000,0.00000000,5.75000000 +2499,chr22,20621403,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.35000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.24000000 +2500,chr22,20621809,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,90.00000000,0.00000000,-1.74000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.49000000 +2501,chr22,20622071,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.01234568,0.00000000,5.99000000 +2502,chr22,20622985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.80000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.58000000 +2503,chr22,20623005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.24000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,6.28000000 +2504,chr22,20623052,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.04545455,0.00000000,5.88000000 +2505,chr22,20623359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.03846154,0.00000000,5.82000000 +2506,chr22,20623432,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.43000000 +2507,chr22,20623937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.38000000 +2508,chr22,20624101,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.76000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.23000000 +2509,chr22,20624385,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.87000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.98000000 +2510,chr22,20624432,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.47000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.39000000 +2511,chr22,20624690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,64.00000000,0.00000000,0.70000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,4.87000000 +2512,chr22,20624742,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.33000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,7.18000000 +2513,chr22,20624792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.23000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.43000000 +2514,chr22,20625693,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.00000000,0.00000000,5.89000000 +2515,chr22,20626021,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.36000000,0.00000000,,0.12987013,80.00000000,3.53982301,0.03750000,0.00000000,4.62000000 +2516,chr22,20626150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.47000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.81000000 +2517,chr22,20626272,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,0.28000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +2518,chr22,20626675,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.47000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.03750000,0.00000000,5.94000000 +2519,chr22,20627841,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.94000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +2520,chr22,20628289,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.20000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.47000000 +2521,chr22,20628589,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,6.78000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.50000000 +2522,chr22,20629022,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,99.00000000,0.00000000,-0.44000000,0.00000000,,0.32467532,78.00000000,3.45132743,0.01282051,0.00000000,8.25000000 +2523,chr22,20629305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.65000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.01265823,0.00000000,6.52000000 +2524,chr22,20629543,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-1.13000000,0.00000000,,0.21428571,99.00000000,4.38053097,0.01010101,0.00000000,6.22000000 +2525,chr22,20629746,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.07000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +2526,chr22,20630591,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.79000000,0.00000000,,0.29824561,58.00000000,2.56637168,0.01724138,0.00000000,4.87000000 +2527,chr22,20631723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,71.00000000,0.00000000,0.43000000,0.00000000,,0.12790698,86.00000000,3.80530973,0.00000000,0.00000000,4.63000000 +2528,chr22,20631968,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-2.45000000,0.00000000,,0.25925926,85.00000000,3.76106195,0.04705882,0.00000000,5.88000000 +2529,chr22,20639479,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-1.96000000,0.00000000,,0.11827957,94.00000000,4.15929204,0.01063830,0.00000000,5.47000000 +2530,chr22,20640801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.50000000 +2531,chr22,20648150,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.39000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,6.29000000 +2532,chr22,20648210,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +2533,chr22,20648599,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.58000000,0.00000000,,0.15116279,89.00000000,3.93805310,0.03370787,0.00000000,4.86000000 +2534,chr22,20649203,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.60000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.02898551,0.00000000,5.72000000 +2535,chr22,20649788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,5.86000000 +2536,chr22,20650189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,1.11000000,0.00000000,,0.29166667,73.00000000,3.23008850,0.01369863,0.00000000,6.44000000 +2537,chr22,20651905,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,2.57000000,0.00000000,,0.28750000,80.00000000,3.53982301,0.00000000,0.00000000,6.27000000 +2538,chr22,20653880,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.53000000 +2539,chr22,20655566,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.82000000 +2540,chr22,20655855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,63.00000000,0.00000000,0.02000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,5.23000000 +2541,chr22,20656151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.01204819,0.00000000,6.63000000 +2542,chr22,20657234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.24000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.68000000 +2543,chr22,20659977,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.35000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.58000000 +2544,chr22,20668651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,1.17000000,0.00000000,,0.24390244,86.00000000,3.80530973,0.03488372,0.00000000,5.57000000 +2545,chr22,20668721,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.49000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.01428571,0.00000000,5.58000000 +2546,chr22,20676778,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,0.32000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.01123596,0.00000000,6.42000000 +2547,chr22,20678131,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.25000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +2548,chr22,20685587,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +2549,chr22,20689249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,49.77000000,28.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,54.00000000,0.00000000,0.58000000,0.00000000,,0.25000000,52.00000000,2.30088496,0.00000000,0.00000000,2.75000000 +2550,chr22,20698396,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,55.58000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,5.70000000 +2551,chr22,20707880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,71.00000000,0.00000000,-1.97000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.65000000 +2552,chr22,20711079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,46.75000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.15000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,2.75000000 +2553,chr22,20735860,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.10000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.11000000,0.00000000,,0.16923077,66.00000000,2.92035398,0.01515152,0.00000000,5.91000000 +2554,chr22,20741869,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +2555,chr22,20756275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,65.00000000,0.00000000,-0.16000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.19000000 +2556,chr22,20769277,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,59.00000000,0.00000000,0.08000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,4.20000000 +2557,chr22,20791177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.30000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.99000000 +2558,chr22,20795724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.92000000 +2559,chr22,20806773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.16000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.00000000,5.80000000 +2560,chr22,20858772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.59000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.18000000 +2561,chr22,20875969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,53.00000000,0.00000000,0.43000000,0.00000000,,0.29545455,45.00000000,1.99115044,0.00000000,0.00000000,3.05000000 +2562,chr22,20897537,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.27000000,0.00000000,,0.17543860,66.00000000,2.92035398,0.13636364,0.00000000,4.65000000 +2563,chr22,20907129,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.13793103,91.00000000,4.02654867,0.03296703,0.00000000,5.01000000 +2564,chr22,20931842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,85.00000000,0.00000000,-1.78000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,7.02000000 +2565,chr22,20932054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.69000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.10000000 +2566,chr22,20941580,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.59000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.50000000,0.00000000,12.00000000,0.00000000,0.71000000,0.00000000,,0.41379310,57.00000000,2.52212389,0.47368421,0.00000000,3.80000000 +2567,chr22,20946598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.13000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.45000000 +2568,chr22,20968121,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,78.00000000,0.00000000,1.85000000,0.00000000,,0.17441860,91.00000000,4.02654867,0.05494505,0.00000000,4.86000000 +2569,chr22,20972121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.96000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.02439024,0.00000000,6.49000000 +2570,chr22,20977220,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.01190476,0.00000000,6.66000000 +2571,chr22,20977340,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.13414634,86.00000000,3.80530973,0.03488372,0.00000000,5.26000000 +2572,chr22,20977388,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.06382979,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.14814815,86.00000000,3.80530973,0.05813953,0.00000000,4.54000000 +2573,chr22,20977629,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,70.00000000,0.00000000,-0.43000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.17000000 +2574,chr22,20977833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.99000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +2575,chr22,20978151,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,78.00000000,0.00000000,-0.98000000,0.00000000,,0.21590909,93.00000000,4.11504425,0.04301075,0.00000000,5.90000000 +2576,chr22,20980635,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.76000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,5.66000000 +2577,chr22,20980970,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.84000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.03333333,0.00000000,5.62000000 +2578,chr22,20981452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-1.34000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,6.45000000 +2579,chr22,20982977,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.15463918,98.00000000,4.33628319,0.01020408,0.00000000,5.86000000 +2580,chr22,20987880,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.46000000,0.00000000,,0.23404255,94.00000000,4.15929204,0.00000000,0.00000000,6.18000000 +2581,chr22,20998387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,-0.22000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.97000000 +2582,chr22,21002260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-1.04000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.03797468,0.00000000,4.79000000 +2583,chr22,21002277,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.81000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.97000000 +2584,chr22,21003313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.22000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.03030303,0.00000000,5.42000000 +2585,chr22,21004368,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,0.11000000,0.00000000,,0.20289855,77.00000000,3.40707965,0.10389610,0.00000000,5.75000000 +2586,chr22,21006953,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.00000000 +2587,chr22,21008238,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.14516129,73.00000000,3.23008850,0.13698630,0.00000000,5.56000000 +2588,chr22,21008560,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,82.00000000,0.00000000,-0.44000000,0.00000000,,0.17391304,98.00000000,4.33628319,0.05102041,0.00000000,4.61000000 +2589,chr22,21012063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.26000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +2590,chr22,21019189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.28000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +2591,chr22,21022782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.17000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.01162791,0.00000000,6.27000000 +2592,chr22,21029140,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.15662651,87.00000000,3.84955752,0.01149425,0.00000000,5.88000000 +2593,chr22,21042761,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,-0.07000000,0.00000000,,0.26865672,73.00000000,3.23008850,0.08219178,0.00000000,6.14000000 +2594,chr22,21044989,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.02247191,0.00000000,6.14000000 +2595,chr22,21045249,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-0.87000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.01250000,0.00000000,5.68000000 +2596,chr22,21045993,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-0.54000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.83000000 +2597,chr22,21046230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.15000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.70000000 +2598,chr22,21046274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.72000000,0.00000000,,0.14942529,90.00000000,3.98230088,0.03333333,0.00000000,5.49000000 +2599,chr22,21046286,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.82000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.86000000,0.00000000,,0.14606742,91.00000000,4.02654867,0.02197802,0.00000000,5.32000000 +2600,chr22,21047281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.77000000 +2601,chr22,21047544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.57000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +2602,chr22,21048437,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,-0.52000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,5.72000000 +2603,chr22,21048937,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,2.10000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,5.74000000 +2604,chr22,21051257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,0.00000000,-0.51000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,6.17000000 +2605,chr22,21068747,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.44000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.86000000 +2606,chr22,21070300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.19000000 +2607,chr22,21072452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.43000000,5.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.40000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.05194805,0.00000000,2.83000000 +2608,chr22,21073090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.08000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.77000000 +2609,chr22,21074005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,93.00000000,0.00000000,0.08000000,0.00000000,,0.27586207,91.00000000,4.02654867,0.04395604,0.00000000,5.48000000 +2610,chr22,21077440,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-2.02000000,0.00000000,,0.20370370,58.00000000,2.56637168,0.05172414,0.00000000,6.60000000 +2611,chr22,21077455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.18000000,0.00000000,,0.20370370,56.00000000,2.47787611,0.03571429,0.00000000,2.83000000 +2612,chr22,21077480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.02000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.37000000 +2613,chr22,21077704,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,62.00000000,0.00000000,1.09000000,0.00000000,,0.22222222,69.00000000,3.05309735,0.21739130,0.00000000,5.44000000 +2614,chr22,21078133,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.26000000,0.00000000,,0.26190476,43.00000000,1.90265487,0.02325581,0.00000000,2.81000000 +2615,chr22,21079022,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.24000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +2616,chr22,21083123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.83000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.61000000 +2617,chr22,21085537,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.77000000,0.00000000,,0.33980583,104.00000000,4.60176991,0.00961538,0.00000000,8.20000000 +2618,chr22,21087711,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.52000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.49000000 +2619,chr22,21089228,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.42000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,4.87000000 +2620,chr22,21089527,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,-1.16000000,0.00000000,,0.59420290,69.00000000,3.05309735,0.00000000,0.00000000,6.44000000 +2621,chr22,21089741,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,85.00000000,0.00000000,-0.83000000,0.00000000,,0.19000000,100.00000000,4.42477876,0.00000000,0.00000000,5.98000000 +2622,chr22,21090085,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,80.00000000,0.00000000,-0.78000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,5.81000000 +2623,chr22,21090502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.09000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,4.76000000 +2624,chr22,21090505,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,2.71000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.53000000 +2625,chr22,21090748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.02941176,0.00000000,61.00000000,0.00000000,-0.54000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.00000000,0.00000000,5.73000000 +2626,chr22,21090775,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.01282051,0.00000000,5.54000000 +2627,chr22,21091107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,85.00000000,0.00000000,-0.85000000,0.00000000,,0.18947368,95.00000000,4.20353982,0.00000000,0.00000000,5.91000000 +2628,chr22,21091277,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.38000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.04761905,0.00000000,5.05000000 +2629,chr22,21091434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +2630,chr22,21092305,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-2.25000000,0.00000000,,0.23076923,94.00000000,4.15929204,0.03191489,0.00000000,6.25000000 +2631,chr22,21092790,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,1.11000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.46000000 +2632,chr22,21093005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.30588235,86.00000000,3.80530973,0.01162791,0.00000000,7.28000000 +2633,chr22,21093745,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.34000000,0.00000000,,0.10810811,77.00000000,3.40707965,0.02597403,0.00000000,5.02000000 +2634,chr22,21093852,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.70000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,4.39000000 +2635,chr22,21094649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.72000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,5.75000000 +2636,chr22,21094739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,89.00000000,0.00000000,0.14000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,5.82000000 +2637,chr22,21095122,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.30000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.02777778,0.00000000,6.00000000 +2638,chr22,21095435,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.88000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.25000000 +2639,chr22,21095731,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.39000000 +2640,chr22,21095892,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.61000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.46000000 +2641,chr22,21095975,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.01010101,0.00000000,5.86000000 +2642,chr22,21096403,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-1.13000000,0.00000000,,0.28767123,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +2643,chr22,21099634,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.29000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +2644,chr22,21103793,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.41772152,81.00000000,3.58407080,0.02469136,0.00000000,8.18000000 +2645,chr22,21104336,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.40000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +2646,chr22,21104377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.41000000,0.00000000,,0.28409091,88.00000000,3.89380531,0.00000000,0.00000000,6.96000000 +2647,chr22,21107593,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.21000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.04494382,0.00000000,6.64000000 +2648,chr22,21108318,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.11000000 +2649,chr22,21108369,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.07000000 +2650,chr22,21109256,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.79000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,5.10000000 +2651,chr22,21110190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +2652,chr22,21110761,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-1.65000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.90000000 +2653,chr22,21111750,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.70000000,24.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,2.59000000,0.00000000,,0.11666667,60.00000000,2.65486726,0.00000000,0.00000000,4.86000000 +2654,chr22,21125316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,36.99000000,25.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,0.00000000,0.74000000,0.03000000,,0.31818182,22.00000000,0.97345133,0.00000000,0.00000000,2.84000000 +2655,chr22,21138387,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,25.92000000,81.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.64000000,0.00000000,,0.11538462,52.00000000,2.30088496,0.00000000,0.00000000,2.76000000 +2656,chr22,21151071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.77000000,9.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.11764706,103.00000000,4.55752212,0.00970874,0.00000000,4.75000000 +2657,chr22,21160663,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.01000000,36.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,1.11000000,0.00000000,,0.08695652,138.00000000,6.10619469,0.00000000,0.00000000,4.61000000 +2658,chr22,21171035,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,41.67000000,15.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,0.00000000,-0.71000000,0.00000000,,0.36666667,30.00000000,1.32743363,0.00000000,0.00000000,3.52000000 +2659,chr22,21171060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,43.16000000,12.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,15.00000000,0.00000000,-0.44000000,0.00000000,,0.37142857,35.00000000,1.54867257,0.00000000,0.00000000,3.46000000 +2660,chr22,21227272,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.00000000,27.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,40.00000000,0.00000000,-2.05000000,0.00000000,,0.39062500,65.00000000,2.87610619,0.01538462,0.00000000,4.19000000 +2661,chr22,21327790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.08000000,12.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.23076923,0.00000000,21.00000000,0.00000000,0.46000000,0.00000000,,0.31707317,46.00000000,2.03539823,0.10869565,0.00000000,3.07000000 +2662,chr22,21329325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.04000000,21.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.85000000,0.00000000,,0.26562500,64.00000000,2.83185841,0.00000000,0.00000000,7.34000000 +2663,chr22,21333010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,34.32000000,105.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,0.00000000,0.31000000,0.00000000,,0.11111111,117.00000000,5.17699115,0.00000000,0.00000000,4.56000000 +2664,chr22,21333685,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,37.19000000,87.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,76.00000000,0.00000000,1.80000000,0.00000000,,0.06944444,145.00000000,6.41592920,0.00689655,0.00000000,4.32000000 +2665,chr22,21335586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,32.67000000,65.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.07500000,120.00000000,5.30973451,0.00000000,0.00000000,5.38000000 +2666,chr22,21369147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,26.29000000,43.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,13.00000000,0.00000000,-1.62000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.19000000 +2667,chr22,21450757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.74000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +2668,chr22,21556455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,1.95000000,0.00000000,,0.16494845,100.00000000,4.42477876,0.03000000,0.00000000,4.97000000 +2669,chr22,21561831,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,56.28000000,9.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-2.45000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.04255319,0.00000000,5.89000000 +2670,chr22,21586729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.95000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.30000000 +2671,chr22,21588995,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.93000000,0.00000000,,0.31343284,69.00000000,3.05309735,0.01449275,0.00000000,7.80000000 +2672,chr22,21648710,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.37000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.21000000 +2673,chr22,21660945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.02531646,0.00000000,6.52000000 +2674,chr22,21665468,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +2675,chr22,21671187,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.13000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +2676,chr22,21673328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.09000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +2677,chr22,21687790,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,73.00000000,0.00000000,-0.80000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,6.20000000 +2678,chr22,21688629,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +2679,chr22,21689620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,1.88000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.01136364,0.00000000,5.71000000 +2680,chr22,21689951,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.27000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.17000000 +2681,chr22,21692498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.24000000 +2682,chr22,21694481,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,5.89000000 +2683,chr22,21697420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,0.00000000,-0.78000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.01234568,0.00000000,6.53000000 +2684,chr22,21698525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.05000000,0.00000000,,0.18627451,102.00000000,4.51327434,0.00000000,0.00000000,6.67000000 +2685,chr22,21699487,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,1.17000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.33000000 +2686,chr22,21704066,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.06000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.28000000 +2687,chr22,21705004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,5.75000000 +2688,chr22,21706086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.23000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.29000000 +2689,chr22,21707469,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.72000000 +2690,chr22,21710106,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.22000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,5.42000000 +2691,chr22,21712639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.25490196,54.00000000,2.38938053,0.03703704,0.00000000,6.68000000 +2692,chr22,21716254,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.37000000,7.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.24000000 +2693,chr22,21725715,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,-1.64000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +2694,chr22,21734003,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.48000000 +2695,chr22,21735361,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,1.42000000,0.00000000,,0.18181818,72.00000000,3.18584071,0.06944444,0.00000000,5.63000000 +2696,chr22,21735898,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.55000000,0.00000000,,0.24691358,86.00000000,3.80530973,0.03488372,0.00000000,6.59000000 +2697,chr22,21741482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.50000000,0.00000000,,0.17857143,57.00000000,2.52212389,0.01754386,0.00000000,2.98000000 +2698,chr22,21742513,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.91000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +2699,chr22,21744398,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +2700,chr22,21747803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,85.00000000,0.00000000,-0.06000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,6.01000000 +2701,chr22,21751104,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +2702,chr22,21752768,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +2703,chr22,21754023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,92.00000000,0.00000000,0.31000000,0.00000000,,0.27536232,72.00000000,3.18584071,0.02777778,0.00000000,5.71000000 +2704,chr22,21755878,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.47000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +2705,chr22,21756338,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.93000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.81000000 +2706,chr22,21757696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.48000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.76000000 +2707,chr22,21759332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.42000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +2708,chr22,21759747,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,4.97000000 +2709,chr22,21765208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +2710,chr22,21765414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +2711,chr22,21771930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,70.00000000,0.00000000,1.18000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.37000000 +2712,chr22,21774646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,58.00000000,0.00000000,-1.44000000,1.81000000,,0.11864407,67.00000000,2.96460177,0.11940299,0.00000000,2.78000000 +2713,chr22,21779744,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-1.50000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +2714,chr22,21780172,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.18000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.60000000 +2715,chr22,21780882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.04000000 +2716,chr22,21785973,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-1.91000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.90000000 +2717,chr22,21790122,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +2718,chr22,21803852,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,78.00000000,0.00000000,2.09000000,0.00000000,,0.19718310,76.00000000,3.36283186,0.05263158,0.00000000,5.77000000 +2719,chr22,21815221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.97000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,5.84000000 +2720,chr22,21819905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,32.00000000,1.41592920,0.12500000,0.00000000,70.00000000,0.00000000,0.84000000,0.00000000,,0.24691358,87.00000000,3.84955752,0.06896552,0.00000000,5.69000000 +2721,chr22,21820418,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.60000000 +2722,chr22,21821696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.20000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.91000000 +2723,chr22,21824045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.10000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.02222222,0.00000000,6.59000000 +2724,chr22,21838283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.14000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.76000000 +2725,chr22,21839307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.33000000,0.00000000,,0.19791667,99.00000000,4.38053097,0.02020202,0.00000000,6.40000000 +2726,chr22,21840463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.67000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.85000000 +2727,chr22,21847872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.19696970,71.00000000,3.14159292,0.07042254,0.00000000,5.45000000 +2728,chr22,21847972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.05000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.34000000 +2729,chr22,21852473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.36000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.02000000 +2730,chr22,21857316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,0.20000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,5.69000000 +2731,chr22,21857591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,5.66000000 +2732,chr22,21874258,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.21739130,48.00000000,2.12389381,0.02083333,0.00000000,6.20000000 +2733,chr22,21874329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-2.16000000,0.00000000,,0.30434783,71.00000000,3.14159292,0.02816901,0.00000000,6.33000000 +2734,chr22,21887699,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.31081081,76.00000000,3.36283186,0.02631579,0.00000000,6.15000000 +2735,chr22,21890724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.16000000 +2736,chr22,21891223,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.52000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,3.17000000,0.00000000,,0.34090909,44.00000000,1.94690265,0.00000000,0.00000000,7.83000000 +2737,chr22,21892697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.74000000,0.00000000,,0.22352941,88.00000000,3.89380531,0.02272727,0.00000000,6.69000000 +2738,chr22,21898230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.58000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.68000000 +2739,chr22,21899704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.82000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.31000000 +2740,chr22,21904834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,68.00000000,0.00000000,-0.05000000,0.00000000,,0.24050633,86.00000000,3.80530973,0.08139535,0.00000000,5.99000000 +2741,chr22,21911870,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,96.00000000,0.00000000,0.04000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.02409639,0.00000000,5.06000000 +2742,chr22,21912096,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.89000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.71000000 +2743,chr22,21912237,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,0.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +2744,chr22,21912468,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,90.00000000,0.00000000,-0.47000000,0.00000000,,0.32500000,82.00000000,3.62831858,0.02439024,0.00000000,7.97000000 +2745,chr22,21912655,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,57.73000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-1.22000000,0.00000000,,0.31372549,57.00000000,2.52212389,0.10526316,0.00000000,8.01000000 +2746,chr22,21914399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-0.24000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.17000000 +2747,chr22,21915334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.58000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.02666667,0.00000000,6.01000000 +2748,chr22,21920372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,1.20000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.03333333,0.00000000,5.26000000 +2749,chr22,21926720,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,2.30000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.69000000 +2750,chr22,21927077,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.40000000 +2751,chr22,21960807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-1.88000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,6.86000000 +2752,chr22,21963982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +2753,chr22,21976637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.32857143,70.00000000,3.09734513,0.00000000,0.00000000,7.99000000 +2754,chr22,21981017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,91.00000000,0.00000000,-0.33000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.02197802,0.00000000,5.46000000 +2755,chr22,21987382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.84000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,6.44000000 +2756,chr22,21987850,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.43000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.60000000 +2757,chr22,22013837,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.48000000 +2758,chr22,22022693,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.31578947,77.00000000,3.40707965,0.01298701,0.00000000,6.88000000 +2759,chr22,22051339,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +2760,chr22,22083244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,100.00000000,0.00000000,-0.45000000,0.00000000,,0.30666667,75.00000000,3.31858407,0.00000000,0.00000000,6.62000000 +2761,chr22,22091590,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.23000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.51000000 +2762,chr22,22100170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.16000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.01265823,0.00000000,5.06000000 +2763,chr22,22100911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.93000000,0.00000000,,0.10000000,71.00000000,3.14159292,0.01408451,0.00000000,5.15000000 +2764,chr22,22101083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-0.39000000,0.00000000,,0.26732673,102.00000000,4.51327434,0.00980392,0.00000000,6.22000000 +2765,chr22,22101882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.06666667,77.00000000,3.40707965,0.01298701,0.00000000,3.67000000 +2766,chr22,22102294,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,-0.65000000,0.00000000,,0.06944444,73.00000000,3.23008850,0.01369863,0.00000000,5.14000000 +2767,chr22,22104581,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.18000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.00000000,0.00000000,6.49000000 +2768,chr22,22104988,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-0.49000000,0.00000000,,0.09589041,74.00000000,3.27433628,0.01351351,0.00000000,4.29000000 +2769,chr22,22105070,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-0.78000000,0.00000000,,0.07575758,66.00000000,2.92035398,0.00000000,0.00000000,5.17000000 +2770,chr22,22105881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.19000000,0.00000000,,0.09090909,67.00000000,2.96460177,0.01492537,0.00000000,5.13000000 +2771,chr22,22107948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.09000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,4.99000000 +2772,chr22,22134321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.84000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.13000000 +2773,chr22,22134584,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,1.48000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.93000000 +2774,chr22,22134587,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,1.71000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.83000000 +2775,chr22,22135230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,0.33000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.01333333,0.00000000,5.66000000 +2776,chr22,22136444,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,0.00000000,,0.06578947,77.00000000,3.40707965,0.01298701,0.00000000,5.31000000 +2777,chr22,22138064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.07042254,72.00000000,3.18584071,0.01388889,0.00000000,5.33000000 +2778,chr22,22140538,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-1.24000000,0.00000000,,0.10144928,69.00000000,3.05309735,0.00000000,0.00000000,5.22000000 +2779,chr22,22143100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.54000000 +2780,chr22,22143231,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,0.24000000,0.00000000,,0.07500000,81.00000000,3.58407080,0.01234568,0.00000000,4.99000000 +2781,chr22,22143549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.75000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.01369863,0.00000000,5.07000000 +2782,chr22,22143647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,67.00000000,0.00000000,1.29000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,5.06000000 +2783,chr22,22144743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,2.41000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.02197802,0.00000000,4.86000000 +2784,chr22,22144937,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.08000000,75.00000000,3.31858407,0.00000000,0.00000000,5.50000000 +2785,chr22,22146303,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.75000000 +2786,chr22,22150553,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.11627907,89.00000000,3.93805310,0.02247191,0.00000000,5.31000000 +2787,chr22,22150629,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.97000000,0.00000000,,0.10126582,81.00000000,3.58407080,0.02469136,0.00000000,4.88000000 +2788,chr22,22150737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,70.00000000,0.00000000,-0.94000000,0.00000000,,0.08750000,85.00000000,3.76106195,0.05882353,0.00000000,4.43000000 +2789,chr22,22151223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.12000000,0.00000000,,0.10000000,81.00000000,3.58407080,0.01234568,0.00000000,5.64000000 +2790,chr22,22151238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.03000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.01219512,0.00000000,5.14000000 +2791,chr22,22156718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,0.43000000,4.45000000,,0.07792208,78.00000000,3.45132743,0.01282051,0.00000000,3.94000000 +2792,chr22,22157074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,1.10000000,0.00000000,,0.09589041,75.00000000,3.31858407,0.02666667,0.00000000,4.84000000 +2793,chr22,22157103,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.08219178,73.00000000,3.23008850,0.00000000,0.00000000,5.20000000 +2794,chr22,22157175,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.03000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.10000000 +2795,chr22,22157195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.24000000,0.00000000,,0.11764706,70.00000000,3.09734513,0.02857143,0.00000000,4.91000000 +2796,chr22,22157326,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,62.00000000,0.00000000,-0.97000000,0.00000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,5.01000000 +2797,chr22,22157931,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.13000000,0.00000000,,0.07042254,73.00000000,3.23008850,0.01369863,0.00000000,4.93000000 +2798,chr22,22158186,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.06000000,102.00000000,4.51327434,0.01960784,0.00000000,5.16000000 +2799,chr22,22158406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,0.14000000,0.00000000,,0.07594937,79.00000000,3.49557522,0.00000000,0.00000000,5.01000000 +2800,chr22,22158670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,1.00000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.55000000 +2801,chr22,22159005,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.86000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,4.18000000 +2802,chr22,22159769,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,1.93000000,0.00000000,,0.08536585,83.00000000,3.67256637,0.01204819,0.00000000,5.17000000 +2803,chr22,22167105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.56000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,5.81000000 +2804,chr22,22167132,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +2805,chr22,22171673,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.92000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.44000000 +2806,chr22,22175614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-0.92000000,0.00000000,,0.20338983,62.00000000,2.74336283,0.03225806,0.00000000,6.39000000 +2807,chr22,22175777,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,1.61000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,6.03000000 +2808,chr22,22176637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.69000000,0.00000000,,0.31746032,63.00000000,2.78761062,0.00000000,0.00000000,7.64000000 +2809,chr22,22176674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.28000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.94000000 +2810,chr22,22177813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.03750000,0.00000000,6.09000000 +2811,chr22,22178083,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.17021277,59.00000000,2.61061947,0.16949153,0.00000000,5.62000000 +2812,chr22,22178249,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,79.00000000,0.00000000,1.11000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.48000000 +2813,chr22,22178375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.91000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.62000000 +2814,chr22,22178915,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.06000000,0.00000000,,0.33333333,72.00000000,3.18584071,0.00000000,0.00000000,8.85000000 +2815,chr22,22178938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.24000000,0.00000000,,0.33823529,68.00000000,3.00884956,0.00000000,0.00000000,9.13000000 +2816,chr22,22178942,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,-0.69000000,0.00000000,,0.34328358,68.00000000,3.00884956,0.01470588,0.00000000,5.19000000 +2817,chr22,22178958,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.34000000,0.00000000,,0.30000000,71.00000000,3.14159292,0.01408451,0.00000000,6.37000000 +2818,chr22,22179648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,98.00000000,0.00000000,-0.25000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,5.15000000 +2819,chr22,22179649,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,97.00000000,0.00000000,-0.15000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,5.15000000 +2820,chr22,22179934,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.16393443,63.00000000,2.78761062,0.03174603,0.00000000,5.30000000 +2821,chr22,22179973,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.14925373,70.00000000,3.09734513,0.02857143,0.00000000,5.32000000 +2822,chr22,22180296,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.24000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.39000000 +2823,chr22,22180747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.34000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +2824,chr22,22180754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.62000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.73000000 +2825,chr22,22180978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,1.43000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.01538462,0.00000000,6.38000000 +2826,chr22,22229175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,-0.34000000,0.00000000,,0.07058824,87.00000000,3.84955752,0.02298851,0.00000000,4.87000000 +2827,chr22,22229620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.40000000,0.00000000,,0.14893617,47.00000000,2.07964602,0.00000000,0.00000000,5.34000000 +2828,chr22,22238541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,-1.58000000,0.00000000,,0.07352941,71.00000000,3.14159292,0.02816901,0.00000000,5.04000000 +2829,chr22,22310486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.33000000,10.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.78000000,0.00000000,,0.10526316,58.00000000,2.56637168,0.01724138,0.00000000,3.03000000 +2830,chr22,22372241,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,-2.68000000,0.00000000,,0.37500000,48.00000000,2.12389381,0.00000000,0.00000000,6.83000000 +2831,chr22,22375834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,77.00000000,0.00000000,-0.04000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.95000000 +2832,chr22,22596905,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.04000000,0.00000000,,0.29687500,68.00000000,3.00884956,0.05882353,0.00000000,6.36000000 +2833,chr22,22598706,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.17000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.92000000 +2834,chr22,22606413,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,100.00000000,0.00000000,-0.26000000,0.00000000,,0.30303030,68.00000000,3.00884956,0.02941176,0.00000000,4.98000000 +2835,chr22,22612454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,93.00000000,0.00000000,-1.37000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.14000000 +2836,chr22,22615435,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,94.00000000,0.00000000,-0.09000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.00000000,0.00000000,6.04000000 +2837,chr22,22615721,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.35294118,69.00000000,3.05309735,0.01449275,0.00000000,8.32000000 +2838,chr22,22622648,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.86000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.18367347,49.00000000,2.16814159,0.00000000,0.00000000,6.55000000 +2839,chr22,22626219,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.02000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,39.00000000,0.00000000,0.16000000,0.00000000,,0.39215686,53.00000000,2.34513274,0.03773585,0.00000000,4.12000000 +2840,chr22,22626231,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.68000000,6.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,43.00000000,0.00000000,-0.55000000,0.00000000,,0.38000000,53.00000000,2.34513274,0.03773585,0.00000000,4.30000000 +2841,chr22,22626757,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,50.00000000,0.00000000,2.49000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,4.10000000 +2842,chr22,22626885,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.32000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.19230769,55.00000000,2.43362832,0.03636364,0.00000000,6.34000000 +2843,chr22,22626894,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.19000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-2.60000000,0.00000000,,0.21153846,55.00000000,2.43362832,0.01818182,0.00000000,6.48000000 +2844,chr22,22628342,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,42.25000000,34.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.28260870,50.00000000,2.21238938,0.08000000,0.00000000,6.73000000 +2845,chr22,22629817,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.49000000,21.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.25862069,61.00000000,2.69911504,0.04918033,0.00000000,6.27000000 +2846,chr22,22632860,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,48.42000000,21.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,0.61000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,4.98000000 +2847,chr22,22635719,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.80000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,1.65000000,0.00000000,,0.18750000,64.00000000,2.83185841,0.00000000,0.00000000,5.81000000 +2848,chr22,22635726,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.24000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.30000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.34000000 +2849,chr22,22635728,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.19000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.87000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.00000000,0.00000000,5.83000000 +2850,chr22,22637467,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,40.15000000,16.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.00000000,17.00000000,0.00000000,-0.44000000,0.00000000,,0.37500000,18.00000000,0.79646018,0.05555556,0.00000000,3.93000000 +2851,chr22,22637741,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,52.06000000,17.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.22000000,0.00000000,,0.27906977,43.00000000,1.90265487,0.00000000,0.00000000,5.08000000 +2852,chr22,22639283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.82000000,15.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.60000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.01000000 +2853,chr22,22642832,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,49.39000000,34.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.80000000,0.00000000,,0.21568627,52.00000000,2.30088496,0.01923077,0.00000000,6.44000000 +2854,chr22,22646606,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,53.03000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.16000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.51000000 +2855,chr22,22817061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-0.48000000,0.00000000,,0.23076923,40.00000000,1.76991150,0.02500000,0.00000000,2.79000000 +2856,chr22,22826214,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.48000000,0.00000000,,0.11111111,37.00000000,1.63716814,0.02702703,0.00000000,5.41000000 +2857,chr22,22826731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.90000000,0.00000000,,0.26190476,42.00000000,1.85840708,0.00000000,0.00000000,6.44000000 +2858,chr22,22906870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,0.08000000,0.00000000,,0.25252525,100.00000000,4.42477876,0.01000000,0.00000000,6.26000000 +2859,chr22,22907184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.45000000 +2860,chr22,22907220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.02000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.80000000 +2861,chr22,22908881,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,0.64000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.02173913,0.00000000,5.39000000 +2862,chr22,22909672,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,92.00000000,0.00000000,0.93000000,0.00000000,,0.35000000,80.00000000,3.53982301,0.00000000,0.00000000,8.19000000 +2863,chr22,22911133,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,83.00000000,0.00000000,-0.01000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,5.22000000 +2864,chr22,22912171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,6.06000000 +2865,chr22,22914089,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03921569,52.00000000,2.30088496,0.01923077,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,4.58000000 +2866,chr22,22914108,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.61000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.32000000 +2867,chr22,22916061,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.24000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.28000000 +2868,chr22,22916130,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.19191919,101.00000000,4.46902655,0.01980198,0.00000000,5.99000000 +2869,chr22,22916824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.76000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.37000000 +2870,chr22,22917062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,-0.51000000,0.00000000,,0.30681818,90.00000000,3.98230088,0.01111111,0.00000000,7.29000000 +2871,chr22,22917331,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,-1.96000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.12000000 +2872,chr22,22917565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.97000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.04651163,0.00000000,6.25000000 +2873,chr22,22918108,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.23456790,87.00000000,3.84955752,0.06896552,0.00000000,6.16000000 +2874,chr22,22918914,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +2875,chr22,22918994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.01298701,0.00000000,6.00000000 +2876,chr22,22919380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.90000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.10000000 +2877,chr22,22919554,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.15789474,96.00000000,4.24778761,0.01041667,0.00000000,5.73000000 +2878,chr22,22919647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,88.00000000,0.00000000,-0.64000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,5.98000000 +2879,chr22,22919684,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,2.42000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.45000000 +2880,chr22,22921079,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.85000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.65000000 +2881,chr22,22921536,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.08000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.94000000 +2882,chr22,22923946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,98.00000000,0.00000000,2.87000000,0.00000000,,0.27184466,103.00000000,4.55752212,0.00000000,0.00000000,6.21000000 +2883,chr22,22925879,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.16000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,5.91000000 +2884,chr22,22930455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.67000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +2885,chr22,22933062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.04545455,0.00000000,5.81000000 +2886,chr22,22934354,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,-0.03000000,0.00000000,,0.28000000,102.00000000,4.51327434,0.01960784,0.00000000,5.92000000 +2887,chr22,22935122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,2.27000000,0.00000000,,0.24210526,95.00000000,4.20353982,0.00000000,0.00000000,6.18000000 +2888,chr22,22938950,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.94000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,6.79000000 +2889,chr22,22940123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.55000000,0.00000000,,0.16483516,94.00000000,4.15929204,0.03191489,0.00000000,5.03000000 +2890,chr22,22940714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.62000000,0.00000000,,0.26373626,91.00000000,4.02654867,0.00000000,0.00000000,6.44000000 +2891,chr22,22943510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.50000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +2892,chr22,22946492,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.24000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +2893,chr22,22953141,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.03000000,0.00000000,,0.36170213,94.00000000,4.15929204,0.00000000,0.00000000,8.59000000 +2894,chr22,22953443,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.48000000 +2895,chr22,22966106,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.98000000,0.00000000,,0.18750000,97.00000000,4.29203540,0.01030928,0.00000000,6.67000000 +2896,chr22,22975231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.27000000 +2897,chr22,23001381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.91000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +2898,chr22,23005946,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.53000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.01149425,0.00000000,6.69000000 +2899,chr22,23019048,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.47000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.54000000 +2900,chr22,23024137,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,1.98000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +2901,chr22,23038999,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.56000000 +2902,chr22,23054836,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.52000000,0.00000000,,0.25842697,92.00000000,4.07079646,0.03260870,0.00000000,6.33000000 +2903,chr22,23075361,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,1.59000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,5.97000000 +2904,chr22,23078872,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,0.34000000,0.00000000,,0.48192771,83.00000000,3.67256637,0.00000000,0.00000000,4.16000000 +2905,chr22,23080704,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,2.28000000,0.00000000,,0.31250000,84.00000000,3.71681416,0.03571429,0.00000000,7.19000000 +2906,chr22,23080921,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.22000000,0.00000000,,0.31325301,83.00000000,3.67256637,0.00000000,0.00000000,7.06000000 +2907,chr22,23081061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +2908,chr22,23083341,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.37000000 +2909,chr22,23083736,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.52000000 +2910,chr22,23083744,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.16470588,87.00000000,3.84955752,0.02298851,0.00000000,5.46000000 +2911,chr22,23084746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.21000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +2912,chr22,23086623,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.63000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.38000000 +2913,chr22,23087037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.71000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +2914,chr22,23087365,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.04000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,6.27000000 +2915,chr22,23087569,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,91.00000000,0.00000000,0.19000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.02150538,0.00000000,5.83000000 +2916,chr22,23087966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.18691589,107.00000000,4.73451327,0.00000000,0.00000000,6.16000000 +2917,chr22,23088223,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,2.11000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.72000000 +2918,chr22,23088506,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,80.00000000,0.00000000,-1.21000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.42000000 +2919,chr22,23089576,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.10000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.43000000 +2920,chr22,23090047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,1.29000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,5.81000000 +2921,chr22,23090457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.76000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.00000000,0.00000000,6.42000000 +2922,chr22,23091056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.54000000,0.00000000,,0.28421053,98.00000000,4.33628319,0.03061224,0.00000000,6.17000000 +2923,chr22,23091676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.18750000,100.00000000,4.42477876,0.03000000,0.00000000,5.97000000 +2924,chr22,23091703,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.94000000,0.00000000,,0.21000000,101.00000000,4.46902655,0.00990099,0.00000000,6.64000000 +2925,chr22,23092406,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,55.00000000,2.43362832,0.00000000,0.00000000,6.65000000 +2926,chr22,23094237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.53000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.24000000 +2927,chr22,23095084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,78.00000000,0.00000000,-0.89000000,0.00000000,,0.17171717,101.00000000,4.46902655,0.00990099,0.00000000,5.59000000 +2928,chr22,23096004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.99000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +2929,chr22,23097343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.09000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +2930,chr22,23097912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.01000000,0.00000000,,0.23404255,98.00000000,4.33628319,0.01020408,0.00000000,6.54000000 +2931,chr22,23098339,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.25000000 +2932,chr22,23100729,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.60000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.01408451,0.00000000,5.38000000 +2933,chr22,23101880,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.70000000 +2934,chr22,23102149,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.73000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.45000000 +2935,chr22,23102609,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.05000000,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.27083333,98.00000000,4.33628319,0.02040816,0.00000000,5.87000000 +2936,chr22,23102896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.34000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.06896552,0.00000000,6.24000000 +2937,chr22,23104199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.85000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.60000000 +2938,chr22,23107768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.23913043,95.00000000,4.20353982,0.02105263,0.00000000,5.67000000 +2939,chr22,23112535,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.16000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.00000000,0.00000000,6.45000000 +2940,chr22,23119113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.12000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.18000000 +2941,chr22,23122623,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.55000000 +2942,chr22,23127731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.11764706,88.00000000,3.89380531,0.02272727,0.00000000,5.43000000 +2943,chr22,23132569,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.03529412,0.00000000,6.37000000 +2944,chr22,23132880,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,83.00000000,0.00000000,0.36000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.02150538,0.00000000,5.90000000 +2945,chr22,23135287,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.16666667,0.00000000,85.00000000,0.00000000,-0.07000000,0.00000000,,0.24590164,69.00000000,3.05309735,0.11594203,0.00000000,5.54000000 +2946,chr22,23140296,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,0.66000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.16000000 +2947,chr22,23145346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,1.32000000,0.00000000,,0.20253165,86.00000000,3.80530973,0.08139535,0.00000000,5.75000000 +2948,chr22,23147498,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.06000000 +2949,chr22,23149457,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,0.25000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,5.53000000 +2950,chr22,23153489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.04000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.02000000 +2951,chr22,23155811,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.35000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,5.75000000 +2952,chr22,23157487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,1.64000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,5.96000000 +2953,chr22,23159492,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,1.01000000,0.00000000,,0.20909091,111.00000000,4.91150442,0.00000000,0.00000000,6.10000000 +2954,chr22,23160934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.51000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +2955,chr22,23161195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.26000000 +2956,chr22,23162218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,1.37000000,0.00000000,,0.19791667,97.00000000,4.29203540,0.01030928,0.00000000,6.60000000 +2957,chr22,23167127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.79000000 +2958,chr22,23168617,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.66000000 +2959,chr22,23169285,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,69.00000000,0.00000000,-0.59000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.21000000 +2960,chr22,23169398,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,5.90000000 +2961,chr22,23170580,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.06000000,0.00000000,,0.17073171,87.00000000,3.84955752,0.05747126,0.00000000,5.72000000 +2962,chr22,23171734,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.02702703,0.00000000,5.63000000 +2963,chr22,23172107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.85000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.59000000 +2964,chr22,23173235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.28000000,0.00000000,,0.23404255,48.00000000,2.12389381,0.02083333,0.00000000,2.91000000 +2965,chr22,23173768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.27000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.82000000 +2966,chr22,23173827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.41000000,0.00000000,,0.28358209,68.00000000,3.00884956,0.01470588,0.00000000,6.16000000 +2967,chr22,23174610,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,78.00000000,0.00000000,1.37000000,0.00000000,,0.24324324,81.00000000,3.58407080,0.08641975,0.00000000,5.63000000 +2968,chr22,23175789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.65000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.63000000 +2969,chr22,23176028,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,0.15000000,0.00000000,,0.23913043,96.00000000,4.24778761,0.03125000,0.00000000,5.81000000 +2970,chr22,23176057,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,81.00000000,0.00000000,0.96000000,0.00000000,,0.19607843,106.00000000,4.69026549,0.03773585,0.00000000,5.79000000 +2971,chr22,23176064,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.73000000,0.00000000,,0.19191919,105.00000000,4.64601770,0.04761905,0.00000000,5.59000000 +2972,chr22,23176859,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.51000000 +2973,chr22,23176997,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.75000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.01041667,0.00000000,6.57000000 +2974,chr22,23181443,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.00000000,0.00000000,6.37000000 +2975,chr22,23182895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,-0.21000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.49000000 +2976,chr22,23185423,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.12000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.00000000,0.00000000,7.36000000 +2977,chr22,23185590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.48000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,2.97000000 +2978,chr22,23185719,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,-1.53000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.18750000,0.00000000,6.21000000 +2979,chr22,23185721,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.24528302,66.00000000,2.92035398,0.19696970,0.00000000,6.22000000 +2980,chr22,23185742,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.66000000,0.00000000,,0.18644068,68.00000000,3.00884956,0.13235294,0.00000000,5.72000000 +2981,chr22,23186584,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +2982,chr22,23187981,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.14000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.19000000 +2983,chr22,23188247,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.22000000,0.00000000,,0.15306122,100.00000000,4.42477876,0.01000000,0.00000000,5.23000000 +2984,chr22,23189844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.48000000,5.83000000,,0.23076923,99.00000000,4.38053097,0.08080808,0.00000000,4.24000000 +2985,chr22,23192948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.60000000 +2986,chr22,23193312,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-1.18000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.00000000,0.00000000,6.60000000 +2987,chr22,23195042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.29000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.87000000 +2988,chr22,23195210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.21000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.75000000 +2989,chr22,23195703,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.97000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.67000000 +2990,chr22,23195836,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.17000000,0.00000000,,0.25000000,106.00000000,4.69026549,0.01886792,0.00000000,6.66000000 +2991,chr22,23196170,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.27000000 +2992,chr22,23196400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.56000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +2993,chr22,23196550,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.24242424,101.00000000,4.46902655,0.00990099,0.00000000,6.07000000 +2994,chr22,23196783,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.13000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.64000000 +2995,chr22,23197124,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.36000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.05000000 +2996,chr22,23197209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.25000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +2997,chr22,23197253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.39000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.24000000 +2998,chr22,23198227,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05405405,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,1.98000000,0.00000000,,0.31707317,84.00000000,3.71681416,0.02380952,0.00000000,6.47000000 +2999,chr22,23198612,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,80.00000000,0.00000000,0.36000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,5.43000000 +3000,chr22,23198726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,-1.14000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +3001,chr22,23198896,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,67.00000000,0.00000000,1.22000000,0.00000000,,0.11538462,82.00000000,3.62831858,0.04878049,0.00000000,4.71000000 +3002,chr22,23198948,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,74.00000000,0.00000000,-1.06000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.68000000 +3003,chr22,23199301,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.26000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.02000000 +3004,chr22,23199912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,51.00000000,0.00000000,0.19000000,0.00000000,,0.33898305,62.00000000,2.74336283,0.03225806,0.00000000,4.30000000 +3005,chr22,23200697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.01086957,0.00000000,5.59000000 +3006,chr22,23216567,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.91000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +3007,chr22,23254843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.28089888,93.00000000,4.11504425,0.00000000,0.00000000,6.50000000 +3008,chr22,23255788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,-1.14000000,0.00000000,,0.28712871,103.00000000,4.55752212,0.00970874,0.00000000,6.24000000 +3009,chr22,23255822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,98.00000000,0.00000000,1.55000000,0.00000000,,0.31250000,97.00000000,4.29203540,0.01030928,0.00000000,7.09000000 +3010,chr22,23256763,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,1.08000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.02666667,0.00000000,6.41000000 +3011,chr22,23260232,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.28000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.50000000 +3012,chr22,23265792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.17894737,95.00000000,4.20353982,0.00000000,0.00000000,5.80000000 +3013,chr22,23280019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,91.00000000,0.00000000,1.34000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,5.80000000 +3014,chr22,23288960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,5.41000000 +3015,chr22,23302444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,0.88000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.08000000 +3016,chr22,23303835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,104.00000000,0.00000000,1.02000000,0.00000000,,0.30769231,96.00000000,4.24778761,0.03125000,0.00000000,13.90000000 +3017,chr22,23304070,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,71.00000000,0.00000000,2.03000000,0.00000000,,0.16250000,94.00000000,4.15929204,0.09574468,0.00000000,5.62000000 +3018,chr22,23304325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.01000000 +3019,chr22,23304766,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.65000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +3020,chr22,23304852,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,67.00000000,0.00000000,0.74000000,0.00000000,,0.12500000,105.00000000,4.64601770,0.00952381,0.00000000,4.95000000 +3021,chr22,23305613,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,-0.83000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +3022,chr22,23305822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.04000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +3023,chr22,23306438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.35000000,0.00000000,,0.22222222,94.00000000,4.15929204,0.03191489,0.00000000,6.06000000 +3024,chr22,23307055,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-1.16000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +3025,chr22,23307182,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,86.00000000,0.00000000,-1.28000000,0.00000000,,0.27027027,74.00000000,3.27433628,0.00000000,0.00000000,6.33000000 +3026,chr22,23307551,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,49.38000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.16000000,0.00000000,,0.11363636,45.00000000,1.99115044,0.02222222,0.00000000,4.80000000 +3027,chr22,23307681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.07000000,17.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,1.10000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.51000000 +3028,chr22,23307807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.88000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.28000000,0.00000000,,0.10294118,69.00000000,3.05309735,0.01449275,0.00000000,5.12000000 +3029,chr22,23308968,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,54.94000000,18.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.43000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.01538462,0.00000000,6.01000000 +3030,chr22,23309717,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.17000000,28.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-1.09000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,4.32000000 +3031,chr22,23310014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.25274725,99.00000000,4.38053097,0.07070707,0.00000000,5.87000000 +3032,chr22,23310025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.41000000 +3033,chr22,23310316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,53.29000000,15.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,-0.49000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.01470588,0.00000000,5.07000000 +3034,chr22,23311368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.54000000,11.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.85000000,0.00000000,,0.11428571,71.00000000,3.14159292,0.01408451,0.00000000,4.94000000 +3035,chr22,23312560,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,54.45000000,14.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,2.11000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,4.91000000 +3036,chr22,23312620,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.88000000,16.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.02000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,4.89000000 +3037,chr22,23312806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.17000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.85000000,0.00000000,,0.17073171,86.00000000,3.80530973,0.02325581,0.00000000,5.87000000 +3038,chr22,23312897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.38000000,19.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.03000000 +3039,chr22,23313032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.31000000,18.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,63.00000000,0.00000000,-1.42000000,0.00000000,,0.06250000,97.00000000,4.29203540,0.01030928,0.00000000,5.12000000 +3040,chr22,23313433,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.13000000,11.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,5.70000000 +3041,chr22,23313961,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.17000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,5.99000000 +3042,chr22,23315079,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,0.49000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,6.07000000 +3043,chr22,23315089,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,84.00000000,0.00000000,0.07000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.00961538,0.00000000,5.81000000 +3044,chr22,23315139,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.69000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.68000000 +3045,chr22,23315308,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.25757576,77.00000000,3.40707965,0.14285714,0.00000000,5.94000000 +3046,chr22,23315408,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,-0.35000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.01219512,0.00000000,6.63000000 +3047,chr22,23315417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +3048,chr22,23315477,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.81000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.26000000 +3049,chr22,23315548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.34000000 +3050,chr22,23315687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-1.83000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +3051,chr22,23315688,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-1.99000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.03000000 +3052,chr22,23315694,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.52000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.22000000 +3053,chr22,23315752,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.90000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,5.89000000 +3054,chr22,23315779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,5.69000000 +3055,chr22,23315793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.78000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.54000000 +3056,chr22,23315820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,59.00000000,0.00000000,1.57000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,3.95000000 +3057,chr22,23315907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,55.73000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.53000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.36000000 +3058,chr22,23318706,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,50.57000000,11.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,25.00000000,0.00000000,-2.78000000,0.00000000,,0.41304348,46.00000000,2.03539823,0.00000000,0.00000000,3.54000000 +3059,chr22,23319047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.05000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.53000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.01886792,0.00000000,6.78000000 +3060,chr22,23319378,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,55.04000000,15.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.13333333,60.00000000,2.65486726,0.00000000,0.00000000,5.12000000 +3061,chr22,23319468,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,46.28000000,45.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.77000000 +3062,chr22,23319709,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,56.63000000,11.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.52000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,5.11000000 +3063,chr22,23321002,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,2.04000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.00000000,0.00000000,6.20000000 +3064,chr22,23321179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.13000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +3065,chr22,23326783,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,35.95000000,41.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.17000000,0.00000000,,0.40000000,30.00000000,1.32743363,0.00000000,0.00000000,8.08000000 +3066,chr22,23327034,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,38.53000000,16.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,39.00000000,0.00000000,-1.07000000,0.00000000,,0.57575758,34.00000000,1.50442478,0.02941176,0.00000000,4.13000000 +3067,chr22,23327076,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,36.92000000,19.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,0.00000000,-0.40000000,0.00000000,,0.56250000,32.00000000,1.41592920,0.00000000,0.00000000,4.09000000 +3068,chr22,23327459,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,49.60000000,11.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,8.00000000,0.00000000,-1.10000000,0.00000000,,0.54347826,46.00000000,2.03539823,0.00000000,0.00000000,3.65000000 +3069,chr22,23327795,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.76000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.71000000,0.00000000,,0.39325843,90.00000000,3.98230088,0.01111111,0.00000000,8.03000000 +3070,chr22,23327819,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.71000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.37000000,0.00000000,,0.37647059,85.00000000,3.76106195,0.00000000,0.00000000,8.01000000 +3071,chr22,23327850,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.85000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.68000000,0.00000000,,0.37500000,81.00000000,3.58407080,0.01234568,0.00000000,8.62000000 +3072,chr22,23327928,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.80000000,3.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,34.00000000,0.00000000,-1.36000000,0.00000000,,0.39436620,76.00000000,3.36283186,0.06578947,0.00000000,3.43000000 +3073,chr22,23328343,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.96000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.39000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,4.27000000 +3074,chr22,23328512,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.40449438,90.00000000,3.98230088,0.01111111,0.00000000,8.35000000 +3075,chr22,23328824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.33000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,45.00000000,0.00000000,-0.05000000,0.00000000,,0.42857143,79.00000000,3.49557522,0.02531646,0.00000000,4.35000000 +3076,chr22,23328833,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.14000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,0.03000000,0.00000000,,0.42424242,69.00000000,3.05309735,0.02898551,0.00000000,3.89000000 +3077,chr22,23329707,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.85000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,-0.67000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,4.22000000 +3078,chr22,23329720,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,47.01000000,25.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,0.46000000,0.00000000,,0.46969697,66.00000000,2.92035398,0.00000000,0.00000000,3.64000000 +3079,chr22,23330375,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,51.65000000,18.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.32758621,59.00000000,2.61061947,0.01694915,0.00000000,7.26000000 +3080,chr22,23330699,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.00000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-2.60000000,0.00000000,,0.43421053,78.00000000,3.45132743,0.02564103,0.00000000,8.07000000 +3081,chr22,23331106,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,58.45000000,5.00000000,ref,1.00000000,0.09677419,31.00000000,1.37168142,0.00000000,0.00000000,37.00000000,0.00000000,-1.97000000,0.00000000,,0.50649351,79.00000000,3.49557522,0.02531646,0.00000000,3.71000000 +3082,chr22,23331163,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,0.02000000,0.00000000,,0.45238095,84.00000000,3.71681416,0.00000000,0.00000000,14.54000000 +3083,chr22,23331297,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.46000000,0.00000000,,0.41538462,67.00000000,2.96460177,0.01492537,0.00000000,7.95000000 +3084,chr22,23331466,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.93000000,4.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.11000000,0.00000000,,0.39189189,75.00000000,3.31858407,0.01333333,0.00000000,8.84000000 +3085,chr22,23331467,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.92000000,4.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,8.52000000 +3086,chr22,23331544,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.25000000,10.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,107.00000000,0.00000000,0.41000000,0.00000000,,0.39473684,76.00000000,3.36283186,0.00000000,0.00000000,13.92000000 +3087,chr22,23331827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.34000000,13.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.52000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.00000000,0.00000000,8.03000000 +3088,chr22,23331873,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.56000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.30000000,0.00000000,,0.38596491,60.00000000,2.65486726,0.05000000,0.00000000,7.90000000 +3089,chr22,23331874,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.59000000,12.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,0.07000000,0.00000000,,0.40000000,58.00000000,2.56637168,0.05172414,0.00000000,7.43000000 +3090,chr22,23331885,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,55.16000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.00000000,0.00000000,,0.33962264,56.00000000,2.47787611,0.05357143,0.00000000,7.18000000 +3091,chr22,23332245,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,53.00000000,0.00000000,-0.57000000,0.00000000,,0.48333333,62.00000000,2.74336283,0.03225806,0.00000000,4.47000000 +3092,chr22,23333167,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,51.00000000,0.00000000,0.69000000,0.00000000,,0.38888889,66.00000000,2.92035398,0.16666667,0.00000000,4.59000000 +3093,chr22,23334231,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.80000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.58620690,87.00000000,3.84955752,0.00000000,0.00000000,8.12000000 +3094,chr22,23334612,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.60000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.64000000,0.00000000,,0.48571429,73.00000000,3.23008850,0.04109589,0.00000000,8.19000000 +3095,chr22,23334615,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,57.62000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.21000000,0.00000000,,0.47887324,74.00000000,3.27433628,0.04054054,0.00000000,8.20000000 +3096,chr22,23335415,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.85000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.05000000,0.00000000,,0.35820896,71.00000000,3.14159292,0.04225352,0.00000000,8.08000000 +3097,chr22,23335586,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.13000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.28000000,0.00000000,,0.47887324,75.00000000,3.31858407,0.05333333,0.00000000,7.57000000 +3098,chr22,23335667,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.34000000,9.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.28000000,0.00000000,,0.48648649,76.00000000,3.36283186,0.02631579,0.00000000,4.36000000 +3099,chr22,23335671,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,55.12000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.28000000,0.00000000,,0.50000000,76.00000000,3.36283186,0.02631579,0.00000000,4.30000000 +3100,chr22,23337566,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,92.00000000,0.00000000,1.64000000,0.00000000,,0.37362637,93.00000000,4.11504425,0.02150538,0.00000000,7.93000000 +3101,chr22,23338426,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.11000000,3.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,50.00000000,0.00000000,0.47000000,0.00000000,,0.46551724,58.00000000,2.56637168,0.00000000,0.00000000,4.04000000 +3102,chr22,23340206,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,57.64000000,7.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,90.00000000,0.00000000,0.72000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.00000000,0.00000000,5.43000000 +3103,chr22,23340343,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.29000000,3.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,26.00000000,0.00000000,-0.21000000,0.00000000,,0.45652174,93.00000000,4.11504425,0.01075269,0.00000000,3.20000000 +3104,chr22,23341609,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.38000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.50537634,94.00000000,4.15929204,0.01063830,0.00000000,8.21000000 +3105,chr22,23343273,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,52.00000000,0.00000000,1.22000000,0.00000000,,0.60317460,67.00000000,2.96460177,0.05970149,0.00000000,4.22000000 +3106,chr22,23344638,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,50.77000000,5.00000000,ref,1.00000000,0.07142857,14.00000000,0.61946903,0.00000000,0.00000000,15.00000000,0.00000000,-1.71000000,0.00000000,,0.62068966,31.00000000,1.37168142,0.06451613,0.00000000,3.80000000 +3107,chr22,23344675,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,52.35000000,2.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,12.00000000,0.00000000,-0.74000000,0.00000000,,0.52173913,25.00000000,1.10619469,0.08000000,0.00000000,3.74000000 +3108,chr22,23345107,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,53.66000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.46000000,0.00000000,,0.43859649,58.00000000,2.56637168,0.01724138,0.00000000,4.42000000 +3109,chr22,23345166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,50.61000000,17.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,-0.25000000,0.00000000,,0.45161290,62.00000000,2.74336283,0.00000000,0.00000000,4.02000000 +3110,chr22,23362626,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,5.59000000 +3111,chr22,23362793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.19000000,0.00000000,,0.21782178,103.00000000,4.55752212,0.01941748,0.00000000,6.34000000 +3112,chr22,23372317,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,79.00000000,0.00000000,-1.37000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +3113,chr22,23395928,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.13333333,76.00000000,3.36283186,0.01315789,0.00000000,5.49000000 +3114,chr22,23407480,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.43000000,0.00000000,,0.20987654,86.00000000,3.80530973,0.03488372,0.00000000,6.22000000 +3115,chr22,23414786,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-0.56000000,0.00000000,,0.13095238,84.00000000,3.71681416,0.00000000,0.00000000,5.62000000 +3116,chr22,23446026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.43000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.75000000 +3117,chr22,23457271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.82000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +3118,chr22,23472675,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,56.49000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,1.19000000,0.00000000,,0.36538462,54.00000000,2.38938053,0.01851852,0.00000000,4.81000000 +3119,chr22,23472940,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.14000000,0.00000000,,0.42857143,72.00000000,3.18584071,0.02777778,0.00000000,7.77000000 +3120,chr22,23472944,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.54000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.01388889,0.00000000,8.09000000 +3121,chr22,23473196,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,1.10000000,0.00000000,,0.45161290,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +3122,chr22,23473327,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.27000000,0.00000000,,0.52439024,84.00000000,3.71681416,0.01190476,0.00000000,8.41000000 +3123,chr22,23473386,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,-1.34000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.01111111,0.00000000,8.43000000 +3124,chr22,23473544,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.10000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,8.09000000 +3125,chr22,23473602,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.88000000,0.00000000,,0.37704918,61.00000000,2.69911504,0.00000000,0.00000000,8.93000000 +3126,chr22,23473958,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.55000000,0.00000000,,0.38461538,91.00000000,4.02654867,0.00000000,0.00000000,8.52000000 +3127,chr22,23474241,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,0.65000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.01162791,0.00000000,8.39000000 +3128,chr22,23474382,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,1.44000000,0.00000000,,0.36144578,87.00000000,3.84955752,0.03448276,0.00000000,4.58000000 +3129,chr22,23475299,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.46666667,92.00000000,4.07079646,0.02173913,0.00000000,8.33000000 +3130,chr22,23476246,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.27000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,9.15000000 +3131,chr22,23476514,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.93000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,8.57000000 +3132,chr22,23477138,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.66000000,0.00000000,,0.48148148,82.00000000,3.62831858,0.01219512,0.00000000,8.76000000 +3133,chr22,23477540,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.82000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.31000000,0.00000000,,0.42222222,94.00000000,4.15929204,0.03191489,0.00000000,8.27000000 +3134,chr22,23482139,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,1.01000000,0.00000000,,0.55555556,56.00000000,2.47787611,0.03571429,0.00000000,6.43000000 +3135,chr22,23485649,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,2.05000000,0.00000000,,0.36619718,71.00000000,3.14159292,0.00000000,0.00000000,8.38000000 +3136,chr22,23486159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.20212766,97.00000000,4.29203540,0.03092784,0.00000000,4.00000000 +3137,chr22,23487076,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.76000000,0.00000000,,0.35443038,80.00000000,3.53982301,0.01250000,0.00000000,8.19000000 +3138,chr22,23487274,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.52000000,2.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,58.00000000,0.00000000,-0.19000000,0.00000000,,0.41666667,85.00000000,3.76106195,0.01176471,0.00000000,6.15000000 +3139,chr22,23489636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,46.00000000,0.00000000,-1.29000000,0.00000000,,0.30769231,76.00000000,3.36283186,0.14473684,0.00000000,2.83000000 +3140,chr22,23489775,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,18.00000000,0.00000000,-0.87000000,0.00000000,,0.49180328,62.00000000,2.74336283,0.01612903,0.00000000,4.15000000 +3141,chr22,23489799,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,-1.75000000,0.00000000,,0.46376812,71.00000000,3.14159292,0.02816901,0.00000000,3.74000000 +3142,chr22,23490322,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.19607843,52.00000000,2.30088496,0.01923077,0.00000000,6.69000000 +3143,chr22,23490385,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.44000000,0.00000000,,0.26000000,51.00000000,2.25663717,0.01960784,0.00000000,6.86000000 +3144,chr22,23490412,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.60000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.01587302,0.00000000,4.59000000 +3145,chr22,23490447,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.87000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.51000000 +3146,chr22,23490943,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.27000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,6.82000000 +3147,chr22,23491152,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,1.93000000,0.00000000,,0.39325843,92.00000000,4.07079646,0.03260870,0.00000000,5.18000000 +3148,chr22,23491402,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.40000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.31000000 +3149,chr22,23491414,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.78000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,6.58000000 +3150,chr22,23491483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.00000000,0.00000000,,0.23529412,70.00000000,3.09734513,0.02857143,0.00000000,6.74000000 +3151,chr22,23491525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.32000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +3152,chr22,23491691,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.32000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,5.74000000 +3153,chr22,23492186,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.94000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.22000000 +3154,chr22,23492253,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,-1.32000000,0.00000000,,0.33846154,65.00000000,2.87610619,0.00000000,0.00000000,4.62000000 +3155,chr22,23492373,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.25333333,80.00000000,3.53982301,0.05000000,0.00000000,5.82000000 +3156,chr22,23492427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23376623,81.00000000,3.58407080,0.04938272,0.00000000,5.81000000 +3157,chr22,23492496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +3158,chr22,23492626,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.27000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.61000000 +3159,chr22,23492702,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.49000000 +3160,chr22,23492852,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,52.00000000,0.00000000,-0.66000000,0.00000000,,0.38805970,67.00000000,2.96460177,0.00000000,0.00000000,4.68000000 +3161,chr22,23493327,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,61.00000000,0.00000000,-1.86000000,0.00000000,,0.13559322,70.00000000,3.09734513,0.12857143,0.00000000,4.89000000 +3162,chr22,23493707,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.00000000,0.00000000,6.54000000 +3163,chr22,23493858,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.23000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,8.72000000 +3164,chr22,23494632,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.74000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,8.09000000 +3165,chr22,23494633,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.56000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.00000000,0.00000000,8.27000000 +3166,chr22,23495203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.37000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.59000000 +3167,chr22,23495472,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.13333333,0.00000000,23.00000000,0.00000000,1.91000000,0.00000000,,0.40322581,65.00000000,2.87610619,0.03076923,0.00000000,4.11000000 +3168,chr22,23495711,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,1.01000000,0.00000000,,0.17647059,103.00000000,4.55752212,0.00970874,0.00000000,5.90000000 +3169,chr22,23496013,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.57000000 +3170,chr22,23496078,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.82000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.02531646,0.00000000,8.42000000 +3171,chr22,23496117,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,51.00000000,0.00000000,-0.04000000,0.00000000,,0.44594595,74.00000000,3.27433628,0.00000000,0.00000000,4.20000000 +3172,chr22,23496125,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,0.46000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,4.74000000 +3173,chr22,23496364,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-2.12000000,0.00000000,,0.48750000,82.00000000,3.62831858,0.02439024,0.00000000,8.32000000 +3174,chr22,23496558,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.97000000,0.00000000,,0.54666667,76.00000000,3.36283186,0.01315789,0.00000000,8.29000000 +3175,chr22,23496646,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,69.00000000,0.00000000,-1.12000000,0.00000000,,0.51428571,75.00000000,3.31858407,0.06666667,0.00000000,8.17000000 +3176,chr22,23496904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.52000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.02272727,0.00000000,6.26000000 +3177,chr22,23497099,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-1.29000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.02000000 +3178,chr22,23497117,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,-0.38000000,0.00000000,,0.39743590,80.00000000,3.53982301,0.02500000,0.00000000,8.46000000 +3179,chr22,23497280,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,2.55000000,0.00000000,,0.35135135,76.00000000,3.36283186,0.01315789,0.00000000,8.30000000 +3180,chr22,23497308,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,0.98000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.52000000 +3181,chr22,23497874,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,45.00000000,0.00000000,-0.53000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.02777778,0.00000000,4.75000000 +3182,chr22,23498296,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,57.00000000,0.00000000,-0.22000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.04597701,0.00000000,4.37000000 +3183,chr22,23498344,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,1.30000000,0.00000000,,0.44000000,76.00000000,3.36283186,0.01315789,0.00000000,4.25000000 +3184,chr22,23499169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.16438356,79.00000000,3.49557522,0.07594937,0.00000000,4.93000000 +3185,chr22,23499365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,2.83000000,0.00000000,,0.20512821,84.00000000,3.71681416,0.02380952,0.00000000,5.65000000 +3186,chr22,23500255,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.61000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.86000000 +3187,chr22,23500334,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-2.45000000,0.00000000,,0.22222222,66.00000000,2.92035398,0.03030303,0.00000000,6.17000000 +3188,chr22,23500353,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,42.00000000,0.00000000,-2.92000000,0.00000000,,0.50000000,60.00000000,2.65486726,0.03333333,0.00000000,4.33000000 +3189,chr22,23500943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,1.66000000,0.00000000,,0.39682540,66.00000000,2.92035398,0.04545455,0.00000000,7.90000000 +3190,chr22,23500997,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,0.96000000,0.00000000,,0.37704918,61.00000000,2.69911504,0.00000000,0.00000000,8.32000000 +3191,chr22,23501488,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,0.76000000,0.00000000,,0.45833333,74.00000000,3.27433628,0.02702703,0.00000000,8.16000000 +3192,chr22,23501800,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,0.30000000,0.00000000,,0.29090909,61.00000000,2.69911504,0.09836066,0.00000000,4.59000000 +3193,chr22,23502038,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,34.00000000,0.00000000,0.80000000,0.00000000,,0.40384615,56.00000000,2.47787611,0.07142857,0.00000000,3.98000000 +3194,chr22,23502039,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,34.00000000,0.00000000,0.32000000,0.00000000,,0.40000000,55.00000000,2.43362832,0.09090909,0.00000000,4.01000000 +3195,chr22,23502179,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.18750000,0.00000000,18.00000000,0.00000000,-0.38000000,0.00000000,,0.42857143,38.00000000,1.68141593,0.02631579,0.00000000,3.69000000 +3196,chr22,23503360,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-1.32000000,0.00000000,,0.50000000,66.00000000,2.92035398,0.03030303,0.00000000,8.24000000 +3197,chr22,23503933,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,1.34000000,0.00000000,,0.54794521,73.00000000,3.23008850,0.00000000,0.00000000,8.49000000 +3198,chr22,23504352,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.49122807,59.00000000,2.61061947,0.03389831,0.00000000,8.34000000 +3199,chr22,23504590,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.72000000,0.00000000,,0.47761194,68.00000000,3.00884956,0.01470588,0.00000000,8.30000000 +3200,chr22,23504924,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.52000000,0.00000000,,0.43478261,73.00000000,3.23008850,0.05479452,0.00000000,8.18000000 +3201,chr22,23504932,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.72000000,0.00000000,,0.41791045,71.00000000,3.14159292,0.05633803,0.00000000,7.98000000 +3202,chr22,23504935,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,55.00000000,0.00000000,-0.94000000,0.00000000,,0.43076923,70.00000000,3.09734513,0.05714286,0.00000000,4.36000000 +3203,chr22,23506580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.28125000,0.00000000,65.00000000,0.00000000,1.59000000,0.00000000,,0.29850746,87.00000000,3.84955752,0.21839080,0.00000000,5.98000000 +3204,chr22,23507943,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.15000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +3205,chr22,23511911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.32000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.65000000 +3206,chr22,23529638,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +3207,chr22,23532872,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.76000000 +3208,chr22,23532997,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.76000000 +3209,chr22,23548049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.02500000,40.00000000,1.76991150,0.00000000,0.00000000,63.00000000,0.00000000,-0.34000000,0.00000000,,0.15625000,96.00000000,4.24778761,0.00000000,0.00000000,5.41000000 +3210,chr22,23574084,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.94000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,0.74000000,0.00000000,,0.35365854,84.00000000,3.71681416,0.02380952,0.00000000,7.50000000 +3211,chr22,23579651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.43000000 +3212,chr22,23592051,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.75000000 +3213,chr22,23592834,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.89000000,6.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,75.00000000,0.00000000,0.89000000,0.00000000,,0.21739130,48.00000000,2.12389381,0.04166667,0.00000000,5.41000000 +3214,chr22,23594295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.05000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.46000000 +3215,chr22,23594386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-1.71000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.72000000 +3216,chr22,23594977,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.62000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.40000000,1.36000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,3.88000000 +3217,chr22,23595076,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.07000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.04285714,0.00000000,5.89000000 +3218,chr22,23595082,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.16000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.20000000,74.00000000,3.27433628,0.04054054,0.00000000,5.70000000 +3219,chr22,23595087,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.23000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,2.26000000,0.58000000,,0.07936508,76.00000000,3.36283186,0.17105263,0.00000000,3.17000000 +3220,chr22,23595105,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,56.34000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.33000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +3221,chr22,23595138,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.53000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.45000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.03750000,0.00000000,6.24000000 +3222,chr22,23595194,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.24000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.05000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.04347826,0.00000000,6.17000000 +3223,chr22,23595545,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.09000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.56000000 +3224,chr22,23596017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.56000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.02247191,0.00000000,6.31000000 +3225,chr22,23596051,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,0.31000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.21000000 +3226,chr22,23596383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.23000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.66000000 +3227,chr22,23596888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.53000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.18000000 +3228,chr22,23598289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.84000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.00000000,0.00000000,6.63000000 +3229,chr22,23601575,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.00000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,2.58000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.06000000 +3230,chr22,23603182,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.28787879,66.00000000,2.92035398,0.00000000,0.00000000,6.40000000 +3231,chr22,23603689,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.09000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.47000000 +3232,chr22,23604803,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.59000000 +3233,chr22,23605165,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.81000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.07000000 +3234,chr22,23605307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.78000000 +3235,chr22,23609741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.76000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.04000000 +3236,chr22,23616668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.96000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.15000000 +3237,chr22,23618000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.75000000 +3238,chr22,23630641,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.08000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +3239,chr22,23637821,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-0.43000000,0.00000000,,0.23188406,75.00000000,3.31858407,0.06666667,0.00000000,5.93000000 +3240,chr22,23641235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.09000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.60000000 +3241,chr22,23646625,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-1.22000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.03030303,0.00000000,5.43000000 +3242,chr22,23655118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.07000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.89000000 +3243,chr22,23662747,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.94000000,0.00000000,,0.29577465,75.00000000,3.31858407,0.04000000,0.00000000,5.97000000 +3244,chr22,23663561,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,1.77000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +3245,chr22,23673144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,2.19000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +3246,chr22,23675107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.41000000,0.00000000,,0.24242424,102.00000000,4.51327434,0.02941176,0.00000000,6.30000000 +3247,chr22,23679706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.39000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,6.57000000 +3248,chr22,23682628,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.16000000,0.00000000,,0.28378378,77.00000000,3.40707965,0.03896104,0.00000000,5.69000000 +3249,chr22,23687459,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.76000000,0.00000000,,0.29629630,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +3250,chr22,23689525,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.08000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.89000000 +3251,chr22,23709668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.15000000 +3252,chr22,23750952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.41000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.02409639,0.00000000,5.37000000 +3253,chr22,23751238,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.01149425,0.00000000,6.15000000 +3254,chr22,23751971,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,2.01000000,0.00000000,,0.23214286,61.00000000,2.69911504,0.08196721,0.00000000,5.67000000 +3255,chr22,23752289,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.88000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.03703704,0.00000000,6.38000000 +3256,chr22,23752298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.55000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.25000000 +3257,chr22,23752649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.14893617,98.00000000,4.33628319,0.04081633,0.00000000,4.97000000 +3258,chr22,23752725,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.17000000,104.00000000,4.60176991,0.03846154,0.00000000,5.66000000 +3259,chr22,23753946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.80000000,0.00000000,,0.30379747,81.00000000,3.58407080,0.02469136,0.00000000,6.44000000 +3260,chr22,23754003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.11000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,7.24000000 +3261,chr22,23754040,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.35000000,0.00000000,,0.32051282,81.00000000,3.58407080,0.02469136,0.00000000,7.25000000 +3262,chr22,23754081,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,5.80000000 +3263,chr22,23754596,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.19000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.02173913,0.00000000,4.97000000 +3264,chr22,23755043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.25000000 +3265,chr22,23756250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,6.31000000 +3266,chr22,23757077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.25000000,100.00000000,4.42477876,0.00000000,0.00000000,6.58000000 +3267,chr22,23761745,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,49.00000000,0.00000000,-0.49000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.03614458,0.00000000,2.75000000 +3268,chr22,23761941,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.04000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.02409639,0.00000000,6.89000000 +3269,chr22,23762449,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +3270,chr22,23762634,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.02000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,5.97000000 +3271,chr22,23762715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.42000000 +3272,chr22,23767239,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +3273,chr22,23767788,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.79000000,0.00000000,,0.26829268,89.00000000,3.93805310,0.06741573,0.00000000,6.18000000 +3274,chr22,23787947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,1.55000000,0.00000000,,0.12765957,95.00000000,4.20353982,0.01052632,0.00000000,4.85000000 +3275,chr22,23792602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-1.33000000,0.00000000,,0.26136364,92.00000000,4.07079646,0.03260870,0.00000000,5.98000000 +3276,chr22,23794784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.28000000 +3277,chr22,23807886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.42000000,1.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.18750000,0.00000000,25.00000000,0.00000000,-0.62000000,0.00000000,,0.34482759,34.00000000,1.50442478,0.14705882,0.00000000,3.64000000 +3278,chr22,23816712,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,97.00000000,0.00000000,0.67000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +3279,chr22,23822213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.31000000 +3280,chr22,23824602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-1.13000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,6.23000000 +3281,chr22,23826811,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.10714286,87.00000000,3.84955752,0.02298851,0.00000000,5.07000000 +3282,chr22,23837312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.04000000,0.00000000,6.31000000 +3283,chr22,23840953,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.39000000 +3284,chr22,23842413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.02000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.33000000 +3285,chr22,23842499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.74000000 +3286,chr22,23842509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,0.33000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.93000000 +3287,chr22,23842663,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.77000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +3288,chr22,23842721,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.39000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3289,chr22,23842728,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.53000000 +3290,chr22,23842976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.09000000,0.00000000,,0.24390244,89.00000000,3.93805310,0.06741573,0.00000000,6.49000000 +3291,chr22,23843024,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.22352941,92.00000000,4.07079646,0.07608696,0.00000000,6.02000000 +3292,chr22,23843189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.79000000,0.00000000,,0.25352113,77.00000000,3.40707965,0.07792208,0.00000000,5.61000000 +3293,chr22,23843197,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.20000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.00000000,6.17000000 +3294,chr22,23843412,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.17910448,76.00000000,3.36283186,0.11842105,0.00000000,5.22000000 +3295,chr22,23843670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,6.17000000 +3296,chr22,23843792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +3297,chr22,23843829,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,84.00000000,0.00000000,0.39000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.01250000,0.00000000,6.63000000 +3298,chr22,23843897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,95.00000000,0.00000000,-0.60000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.02000000 +3299,chr22,23843996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,73.00000000,0.00000000,-0.93000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.00000000,0.00000000,6.79000000 +3300,chr22,23844033,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.49000000 +3301,chr22,23844105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,-0.60000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.32000000 +3302,chr22,23844107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,74.00000000,0.00000000,-0.41000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +3303,chr22,23844244,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-1.00000000,0.00000000,,0.21649485,100.00000000,4.42477876,0.02000000,0.00000000,6.25000000 +3304,chr22,23844436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.44000000 +3305,chr22,23844450,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-0.47000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.02409639,0.00000000,5.57000000 +3306,chr22,23844622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,0.01000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,5.24000000 +3307,chr22,23844636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-0.09000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,5.22000000 +3308,chr22,23845382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,0.34000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,5.93000000 +3309,chr22,23845759,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.00000000,0.00000000,6.48000000 +3310,chr22,23846006,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.87000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.41000000 +3311,chr22,23846756,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.03409091,0.00000000,5.79000000 +3312,chr22,23846881,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,-1.18000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +3313,chr22,23847090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +3314,chr22,23848839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.48000000 +3315,chr22,23848919,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.12000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.29000000 +3316,chr22,23849800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.00000000,0.00000000,6.03000000 +3317,chr22,23850692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +3318,chr22,23850916,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.60000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.02409639,0.00000000,5.09000000 +3319,chr22,23882081,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,54.94000000,8.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,68.00000000,0.00000000,-1.17000000,0.00000000,,0.17857143,64.00000000,2.83185841,0.12500000,0.00000000,5.72000000 +3320,chr22,23892058,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-2.16000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.97000000 +3321,chr22,23892620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.44000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,5.69000000 +3322,chr22,23892672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.25000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.31000000 +3323,chr22,23892747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.25000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.54000000 +3324,chr22,23892748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,6.35000000 +3325,chr22,23893011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.16279070,88.00000000,3.89380531,0.02272727,0.00000000,5.64000000 +3326,chr22,23893116,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.84000000 +3327,chr22,23893119,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.01041667,0.00000000,6.87000000 +3328,chr22,23893173,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.27000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.39000000 +3329,chr22,23893193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.01010101,0.00000000,6.74000000 +3330,chr22,23893279,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.15000000 +3331,chr22,23894205,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.21348315,92.00000000,4.07079646,0.03260870,0.00000000,6.25000000 +3332,chr22,23894632,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,49.00000000,0.00000000,-0.13000000,0.00000000,,0.31147541,73.00000000,3.23008850,0.15068493,0.00000000,4.32000000 +3333,chr22,23895034,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +3334,chr22,23895675,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.51000000,0.00000000,,0.23809524,90.00000000,3.98230088,0.05555556,0.00000000,6.57000000 +3335,chr22,23895892,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,6.67000000 +3336,chr22,23896487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,1.16000000,0.00000000,,0.28000000,79.00000000,3.49557522,0.05063291,0.00000000,5.69000000 +3337,chr22,23896590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,60.00000000,0.00000000,1.30000000,0.00000000,,0.14285714,88.00000000,3.89380531,0.04545455,0.00000000,4.50000000 +3338,chr22,23896636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,67.00000000,0.00000000,-0.37000000,0.00000000,,0.13483146,91.00000000,4.02654867,0.02197802,0.00000000,5.34000000 +3339,chr22,23896643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.14942529,88.00000000,3.89380531,0.01136364,0.00000000,5.58000000 +3340,chr22,23897056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,0.23000000,0.00000000,,0.24691358,85.00000000,3.76106195,0.02352941,0.00000000,5.84000000 +3341,chr22,23915592,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.12000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +3342,chr22,23920289,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-2.30000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.03571429,0.00000000,6.28000000 +3343,chr22,23927525,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,95.00000000,0.00000000,1.02000000,0.00000000,,0.27659574,97.00000000,4.29203540,0.03092784,0.00000000,6.16000000 +3344,chr22,23972069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.34000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,6.17000000 +3345,chr22,24010332,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.99000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,6.44000000 +3346,chr22,24010888,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.50000000 +3347,chr22,24011169,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.21052632,89.00000000,3.93805310,0.14606742,0.00000000,5.91000000 +3348,chr22,24013080,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.64000000,2.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,80.00000000,0.00000000,0.62000000,0.00000000,,0.18018018,120.00000000,5.30973451,0.07500000,0.00000000,5.05000000 +3349,chr22,24018030,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-1.67000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.63000000 +3350,chr22,24021171,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.16000000,0.00000000,,0.27419355,62.00000000,2.74336283,0.00000000,0.00000000,6.41000000 +3351,chr22,24022978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,-0.67000000,0.00000000,,0.22448980,99.00000000,4.38053097,0.01010101,0.00000000,6.54000000 +3352,chr22,24023680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,88.00000000,0.00000000,1.48000000,0.00000000,,0.25742574,105.00000000,4.64601770,0.03809524,0.00000000,5.85000000 +3353,chr22,24023822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.77000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3354,chr22,24027342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-0.80000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.35000000 +3355,chr22,24031377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-0.05000000,0.00000000,,0.16666667,88.00000000,3.89380531,0.04545455,0.00000000,5.33000000 +3356,chr22,24036692,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.38000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.00000000,0.00000000,6.25000000 +3357,chr22,24039395,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.52000000 +3358,chr22,24047235,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.77000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.27000000 +3359,chr22,24050156,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.88000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.66000000 +3360,chr22,24051936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.46000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.77000000 +3361,chr22,24057239,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.42000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.03000000 +3362,chr22,24057368,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.63000000,0.00000000,,0.32051282,80.00000000,3.53982301,0.02500000,0.00000000,7.60000000 +3363,chr22,24059896,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +3364,chr22,24065057,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.24000000,26.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,33.00000000,0.00000000,0.40000000,0.00000000,,0.32558140,44.00000000,1.94690265,0.02272727,0.00000000,3.55000000 +3365,chr22,24065391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.43000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-1.28000000,0.00000000,,0.14285714,68.00000000,3.00884956,0.05882353,0.00000000,5.74000000 +3366,chr22,24067430,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.27000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.39000000 +3367,chr22,24067613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.49000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +3368,chr22,24067797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.03000000 +3369,chr22,24068426,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,50.00000000,0.00000000,0.76000000,0.00000000,,0.30158730,65.00000000,2.87610619,0.03076923,0.00000000,2.79000000 +3370,chr22,24072436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.23611111,77.00000000,3.40707965,0.06493506,0.00000000,6.29000000 +3371,chr22,24073165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,-0.51000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.92000000 +3372,chr22,24074176,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.77000000,0.00000000,,0.34146341,86.00000000,3.80530973,0.04651163,0.00000000,8.43000000 +3373,chr22,24077471,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.92000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.03225806,0.00000000,6.25000000 +3374,chr22,24079509,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.84000000 +3375,chr22,24082730,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.76000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +3376,chr22,24082742,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +3377,chr22,24094702,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.06000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.02898551,0.00000000,6.56000000 +3378,chr22,24094802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.29629630,0.00000000,54.00000000,0.00000000,1.31000000,0.00000000,,0.23076923,83.00000000,3.67256637,0.37349398,0.00000000,2.82000000 +3379,chr22,24101661,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.02469136,0.00000000,5.82000000 +3380,chr22,24103241,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.40000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.62000000 +3381,chr22,24105158,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.71000000 +3382,chr22,24107814,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,103.00000000,0.00000000,1.18000000,0.00000000,,0.32926829,84.00000000,3.71681416,0.02380952,0.00000000,13.13000000 +3383,chr22,24115652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.21000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +3384,chr22,24117553,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,61.00000000,0.00000000,0.38000000,0.00000000,,0.10937500,72.00000000,3.18584071,0.11111111,0.00000000,4.55000000 +3385,chr22,24117979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,0.19000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,5.89000000 +3386,chr22,24118633,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,5.96000000 +3387,chr22,24122161,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.83000000 +3388,chr22,24122761,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-1.39000000,0.00000000,,0.14285714,103.00000000,4.55752212,0.03883495,0.00000000,5.52000000 +3389,chr22,24129269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,5.95000000 +3390,chr22,24135025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,1.50000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.52000000 +3391,chr22,24136175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.55000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,6.63000000 +3392,chr22,24142073,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.53000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.55000000 +3393,chr22,24144314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,85.00000000,0.00000000,0.52000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,5.76000000 +3394,chr22,24149093,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +3395,chr22,24151104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.47000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +3396,chr22,24154622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.20000000,0.00000000,,0.19178082,75.00000000,3.31858407,0.02666667,0.00000000,6.53000000 +3397,chr22,24163771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,-1.37000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.01149425,0.00000000,6.03000000 +3398,chr22,24165396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.01123596,0.00000000,6.57000000 +3399,chr22,24168814,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.09523810,0.00000000,84.00000000,0.00000000,0.99000000,0.00000000,,0.20388350,108.00000000,4.77876106,0.04629630,0.00000000,5.55000000 +3400,chr22,24170926,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +3401,chr22,24176885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.46000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.03260870,0.00000000,6.29000000 +3402,chr22,24183977,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,98.00000000,0.00000000,-0.53000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.57000000 +3403,chr22,24186771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,0.58000000,0.00000000,,0.10000000,91.00000000,4.02654867,0.00000000,0.00000000,4.64000000 +3404,chr22,24192897,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.57000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,3.08000000 +3405,chr22,24197160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.23728814,59.00000000,2.61061947,0.00000000,0.00000000,6.79000000 +3406,chr22,24206383,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-1.02000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,5.74000000 +3407,chr22,24209053,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.02000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +3408,chr22,24210825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,0.43000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.02272727,0.00000000,5.65000000 +3409,chr22,24211936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,61.00000000,0.00000000,1.69000000,0.00000000,,0.09615385,63.00000000,2.78761062,0.17460317,0.00000000,4.42000000 +3410,chr22,24212360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.03000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +3411,chr22,24212956,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.74000000,0.00000000,,0.22988506,92.00000000,4.07079646,0.05434783,0.00000000,6.31000000 +3412,chr22,24214139,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-1.61000000,0.00000000,,0.11538462,80.00000000,3.53982301,0.01250000,0.00000000,5.83000000 +3413,chr22,24214190,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.63000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.02173913,0.00000000,6.14000000 +3414,chr22,24214759,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.87000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.83000000 +3415,chr22,24214812,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.29000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.32000000 +3416,chr22,24215362,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,1.04000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,5.78000000 +3417,chr22,24215376,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,1.90000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.63000000 +3418,chr22,24215388,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.02127660,0.00000000,5.86000000 +3419,chr22,24216147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.42000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,5.95000000 +3420,chr22,24217019,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.03658537,0.00000000,6.29000000 +3421,chr22,24221347,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.09000000 +3422,chr22,24222888,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.79000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.01190476,0.00000000,6.70000000 +3423,chr22,24235431,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.00000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.81000000 +3424,chr22,24240536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.29577465,76.00000000,3.36283186,0.06578947,0.00000000,6.26000000 +3425,chr22,24249986,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,49.53000000,22.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.80000000,0.00000000,,0.16949153,59.00000000,2.61061947,0.00000000,0.00000000,6.16000000 +3426,chr22,24250323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.32000000,8.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,-1.30000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.32000000 +3427,chr22,24250328,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,57.34000000,8.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,0.00000000,-1.44000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.70000000 +3428,chr22,24250901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.32000000,12.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.25000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.00000000,4.83000000 +3429,chr22,24259918,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,44.02000000,36.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.82000000,0.00000000,,0.08474576,60.00000000,2.65486726,0.01666667,0.00000000,4.24000000 +3430,chr22,24280640,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.20253165,90.00000000,3.98230088,0.12222222,0.00000000,4.43000000 +3431,chr22,24290127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.00000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.04000000 +3432,chr22,24349361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.34000000 +3433,chr22,24356930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.18000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,5.92000000 +3434,chr22,24388080,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +3435,chr22,24416304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.33000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.07000000 +3436,chr22,24437310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.01000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +3437,chr22,24454830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,54.00000000,0.00000000,0.86000000,0.00000000,,0.26785714,58.00000000,2.56637168,0.03448276,0.00000000,2.76000000 +3438,chr22,24482040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,83.00000000,0.00000000,0.19000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,5.58000000 +3439,chr22,24495387,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,83.00000000,0.00000000,1.05000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.00000000,0.00000000,6.49000000 +3440,chr22,24499755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,99.00000000,0.00000000,-1.32000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,5.39000000 +3441,chr22,24506180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.93000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.07000000 +3442,chr22,24513098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,-0.09000000,0.00000000,,0.24271845,103.00000000,4.55752212,0.00000000,0.00000000,6.38000000 +3443,chr22,24516264,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.80000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.47000000 +3444,chr22,24516280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,2.16000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +3445,chr22,24517455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.42000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.37000000 +3446,chr22,24530862,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.55000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,5.96000000 +3447,chr22,24544679,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.64000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +3448,chr22,24569470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.34000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +3449,chr22,24585369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.11000000,0.00000000,,0.12658228,81.00000000,3.58407080,0.01234568,0.00000000,5.43000000 +3450,chr22,24585970,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,1.47000000,0.00000000,,0.25531915,97.00000000,4.29203540,0.03092784,0.00000000,5.67000000 +3451,chr22,24586554,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,-0.06000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,7.98000000 +3452,chr22,24594381,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.45000000,0.00000000,,0.42105263,80.00000000,3.53982301,0.02500000,0.00000000,4.41000000 +3453,chr22,24600663,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.14000000,0.00000000,,0.52830189,107.00000000,4.73451327,0.00934579,0.00000000,8.43000000 +3454,chr22,24621069,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.08000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.96000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,3.15000000 +3455,chr22,24652801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.18000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.73000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,5.59000000 +3456,chr22,24670639,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.44000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.42391304,95.00000000,4.20353982,0.03157895,0.00000000,8.23000000 +3457,chr22,24670921,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,57.24000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.34482759,60.00000000,2.65486726,0.01666667,0.00000000,7.45000000 +3458,chr22,24670946,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,55.86000000,6.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.06000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.61000000 +3459,chr22,24670950,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.90000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.84000000,0.00000000,,0.27118644,63.00000000,2.78761062,0.06349206,0.00000000,6.29000000 +3460,chr22,24670951,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,55.90000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.03000000,0.00000000,,0.29310345,63.00000000,2.78761062,0.06349206,0.00000000,6.43000000 +3461,chr22,24671322,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,37.52000000,38.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,11.00000000,0.00000000,0.02000000,0.00000000,,0.48484848,34.00000000,1.50442478,0.02941176,0.00000000,3.73000000 +3462,chr22,24671426,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,38.28000000,51.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,22.00000000,0.00000000,-0.73000000,0.09000000,,0.47058824,35.00000000,1.54867257,0.00000000,0.00000000,3.01000000 +3463,chr22,24671428,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,38.12000000,52.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,23.00000000,0.00000000,-0.22000000,0.24000000,,0.45714286,35.00000000,1.54867257,0.00000000,0.00000000,2.99000000 +3464,chr22,24671853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,33.21000000,42.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,7.00000000,0.00000000,-0.80000000,0.00000000,,0.37037037,27.00000000,1.19469027,0.00000000,0.00000000,3.45000000 +3465,chr22,24672109,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.72000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,43.00000000,0.00000000,-2.44000000,0.00000000,,0.45588235,71.00000000,3.14159292,0.04225352,0.00000000,4.26000000 +3466,chr22,24672267,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,52.06000000,25.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.54000000,0.00000000,,0.36507937,64.00000000,2.83185841,0.01562500,0.00000000,4.38000000 +3467,chr22,24672331,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,47.18000000,34.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,20.00000000,0.00000000,0.07000000,0.00000000,,0.44000000,50.00000000,2.21238938,0.00000000,0.00000000,3.77000000 +3468,chr22,24672362,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.44000000,28.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,-0.16000000,0.00000000,,0.44897959,49.00000000,2.16814159,0.00000000,0.00000000,3.64000000 +3469,chr22,24672592,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.03000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.48717949,83.00000000,3.67256637,0.06024096,0.00000000,8.16000000 +3470,chr22,24673982,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,53.95000000,7.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,36.00000000,0.00000000,-2.63000000,0.00000000,,0.61224490,49.00000000,2.16814159,0.00000000,0.00000000,3.68000000 +3471,chr22,24678811,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,-0.66000000,0.00000000,,0.45762712,59.00000000,2.61061947,0.00000000,0.00000000,4.39000000 +3472,chr22,24683381,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,107.00000000,0.00000000,-0.22000000,0.00000000,,0.35869565,92.00000000,4.07079646,0.00000000,0.00000000,14.60000000 +3473,chr22,24684989,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,110.00000000,0.00000000,-0.25000000,0.00000000,,0.37662338,81.00000000,3.58407080,0.03703704,0.00000000,13.40000000 +3474,chr22,24685137,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,1.30000000,0.00000000,,0.43434343,99.00000000,4.38053097,0.00000000,0.00000000,8.37000000 +3475,chr22,24687947,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.39000000,0.00000000,,0.45555556,93.00000000,4.11504425,0.02150538,0.00000000,8.48000000 +3476,chr22,24688104,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.23000000,0.00000000,,0.41111111,90.00000000,3.98230088,0.00000000,0.00000000,8.50000000 +3477,chr22,24690767,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.45238095,85.00000000,3.76106195,0.01176471,0.00000000,8.51000000 +3478,chr22,24691197,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.79000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.01351351,0.00000000,7.79000000 +3479,chr22,24694743,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-2.21000000,0.00000000,,0.45238095,86.00000000,3.80530973,0.02325581,0.00000000,8.32000000 +3480,chr22,24696806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,81.00000000,0.00000000,1.20000000,0.00000000,,0.20430108,97.00000000,4.29203540,0.04123711,0.00000000,5.57000000 +3481,chr22,24697104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,-1.06000000,0.00000000,,0.26262626,101.00000000,4.46902655,0.00990099,0.00000000,6.57000000 +3482,chr22,24697357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,1.06000000,0.00000000,,0.28723404,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +3483,chr22,24698426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,-0.95000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +3484,chr22,24698512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.33000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,6.72000000 +3485,chr22,24698525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.88000000,0.00000000,,0.29166667,74.00000000,3.27433628,0.02702703,0.00000000,6.43000000 +3486,chr22,24699485,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.57000000 +3487,chr22,24700204,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.70000000 +3488,chr22,24700737,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.03000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.96000000 +3489,chr22,24700846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.71000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,5.89000000 +3490,chr22,24701011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,0.70000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.43000000 +3491,chr22,24701281,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.76000000 +3492,chr22,24702404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.20512821,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.24137931,69.00000000,3.05309735,0.15942029,0.00000000,6.11000000 +3493,chr22,24703931,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,54.00000000,0.00000000,0.35000000,0.00000000,,0.32653061,51.00000000,2.25663717,0.03921569,0.00000000,4.53000000 +3494,chr22,24704477,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,35.00000000,0.00000000,-2.39000000,0.00000000,,0.44871795,80.00000000,3.53982301,0.02500000,0.00000000,3.92000000 +3495,chr22,24704669,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.10000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +3496,chr22,24705603,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.31000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +3497,chr22,24706127,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,51.00000000,0.00000000,-0.24000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,4.19000000 +3498,chr22,24706748,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.53000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,5.82000000 +3499,chr22,24707255,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,80.00000000,0.00000000,-1.57000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.22000000 +3500,chr22,24708388,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.40000000,72.00000000,3.18584071,0.01388889,0.00000000,8.37000000 +3501,chr22,24708803,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.29000000,0.00000000,,0.12280702,57.00000000,2.52212389,0.00000000,0.00000000,4.97000000 +3502,chr22,24709535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.71000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +3503,chr22,24710141,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.99000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,4.51000000 +3504,chr22,24710360,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,2.69000000,0.00000000,,0.35955056,90.00000000,3.98230088,0.01111111,0.00000000,8.22000000 +3505,chr22,24712800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.46000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,4.36000000 +3506,chr22,24713102,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +3507,chr22,24713953,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.26388889,82.00000000,3.62831858,0.12195122,0.00000000,6.00000000 +3508,chr22,24714428,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.51000000 +3509,chr22,24714689,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.33000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,7.93000000 +3510,chr22,24715251,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.26000000,103.00000000,4.55752212,0.01941748,0.00000000,5.93000000 +3511,chr22,24715270,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.23469388,99.00000000,4.38053097,0.01010101,0.00000000,6.54000000 +3512,chr22,24715500,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,1.32000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.42000000 +3513,chr22,24716358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,-0.84000000,0.00000000,,0.29268293,85.00000000,3.76106195,0.02352941,0.00000000,5.99000000 +3514,chr22,24717595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.52000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,7.09000000 +3515,chr22,24717772,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +3516,chr22,24718429,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.12195122,83.00000000,3.67256637,0.01204819,0.00000000,5.03000000 +3517,chr22,24721953,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.12000000,0.00000000,,0.39285714,84.00000000,3.71681416,0.00000000,0.00000000,8.74000000 +3518,chr22,24721996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.84000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +3519,chr22,24722084,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.57000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +3520,chr22,24722722,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +3521,chr22,24723317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.74000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,6.13000000 +3522,chr22,24723333,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.78000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,5.65000000 +3523,chr22,24724536,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.32307692,66.00000000,2.92035398,0.01515152,0.00000000,8.42000000 +3524,chr22,24727064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.48000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.20000000 +3525,chr22,24728176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.30769231,92.00000000,4.07079646,0.00000000,0.00000000,7.65000000 +3526,chr22,24733859,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.63000000,0.00000000,,0.16867470,87.00000000,3.84955752,0.03448276,0.00000000,6.01000000 +3527,chr22,24734848,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,40.00000000,0.00000000,0.26000000,0.00000000,,0.40983607,67.00000000,2.96460177,0.08955224,0.00000000,3.86000000 +3528,chr22,24735058,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.72000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.33000000 +3529,chr22,24735255,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.10000000 +3530,chr22,24735458,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.60000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.51000000 +3531,chr22,24736018,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.38000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +3532,chr22,24741013,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,1.72000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +3533,chr22,24744207,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,0.20000000,0.00000000,,0.20967742,73.00000000,3.23008850,0.15068493,0.00000000,5.36000000 +3534,chr22,24746063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,-0.39000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.07000000 +3535,chr22,24746290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.34000000,0.00000000,,0.14285714,85.00000000,3.76106195,0.00000000,0.00000000,6.20000000 +3536,chr22,24747007,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,87.00000000,0.00000000,0.47000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,5.89000000 +3537,chr22,24748087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.33000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.18000000 +3538,chr22,24748454,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.62000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,6.76000000 +3539,chr22,24748945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.95000000,0.00000000,,0.20618557,99.00000000,4.38053097,0.02020202,0.00000000,6.32000000 +3540,chr22,24749232,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.92000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.62000000 +3541,chr22,24749504,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,93.00000000,0.00000000,-0.51000000,0.00000000,,0.43209877,85.00000000,3.76106195,0.04705882,0.00000000,8.05000000 +3542,chr22,24750567,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,34.00000000,0.00000000,-1.19000000,0.00000000,,0.31111111,49.00000000,2.16814159,0.08163265,0.00000000,3.19000000 +3543,chr22,24751357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,-0.07000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.61000000 +3544,chr22,24753239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.81000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.93000000 +3545,chr22,24754727,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.18000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.58000000 +3546,chr22,24755549,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.03614458,0.00000000,5.96000000 +3547,chr22,24756854,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.71000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +3548,chr22,24757496,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +3549,chr22,24768447,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.24657534,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +3550,chr22,24770612,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.04000000,0.00000000,,0.23214286,66.00000000,2.92035398,0.15151515,0.00000000,6.10000000 +3551,chr22,24778414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,69.00000000,0.00000000,-0.55000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,5.95000000 +3552,chr22,24779691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,67.00000000,0.00000000,-1.11000000,0.00000000,,0.16666667,65.00000000,2.87610619,0.16923077,0.00000000,5.54000000 +3553,chr22,24813410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.62000000 +3554,chr22,24813514,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.22000000,0.00000000,,0.12345679,86.00000000,3.80530973,0.05813953,0.00000000,4.87000000 +3555,chr22,24813786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.41000000 +3556,chr22,24814339,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,0.31000000,0.00000000,,0.23711340,98.00000000,4.33628319,0.01020408,0.00000000,5.98000000 +3557,chr22,24815513,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-2.06000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.57000000 +3558,chr22,24815514,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-1.01000000,0.00000000,,0.42528736,88.00000000,3.89380531,0.01136364,0.00000000,6.13000000 +3559,chr22,24815826,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.18000000,0.00000000,,0.44736842,79.00000000,3.49557522,0.03797468,0.00000000,8.16000000 +3560,chr22,24816735,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,1.53000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,4.95000000 +3561,chr22,24816938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.32000000 +3562,chr22,24816946,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.31000000,0.00000000,,0.09756098,83.00000000,3.67256637,0.01204819,0.00000000,5.12000000 +3563,chr22,24817006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,-1.19000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.18000000 +3564,chr22,24817056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.22000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,5.84000000 +3565,chr22,24817509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.21000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.82000000 +3566,chr22,24817513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.16000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.73000000 +3567,chr22,24817708,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.74000000 +3568,chr22,24817800,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.80000000 +3569,chr22,24818242,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,-1.26000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.06250000,0.00000000,6.24000000 +3570,chr22,24818430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.16000000,0.00000000,,0.17500000,44.00000000,1.94690265,0.09090909,0.00000000,4.70000000 +3571,chr22,24818461,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,31.00000000,0.00000000,-1.15000000,0.00000000,,0.42424242,35.00000000,1.54867257,0.05714286,0.00000000,3.90000000 +3572,chr22,24818766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.71000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.48000000 +3573,chr22,24818910,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,18.00000000,0.00000000,-1.81000000,0.00000000,,0.52500000,42.00000000,1.85840708,0.04761905,0.00000000,4.11000000 +3574,chr22,24819338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.25000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.82000000 +3575,chr22,24819469,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.15000000,0.00000000,,0.38666667,76.00000000,3.36283186,0.01315789,0.00000000,8.33000000 +3576,chr22,24819517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.82000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,6.12000000 +3577,chr22,24819522,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.61000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.01086957,0.00000000,6.07000000 +3578,chr22,24820322,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.29000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.95000000 +3579,chr22,24820752,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +3580,chr22,24820859,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,101.00000000,0.00000000,-0.35000000,0.00000000,,0.34666667,75.00000000,3.31858407,0.00000000,0.00000000,9.25000000 +3581,chr22,24821275,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.69000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +3582,chr22,24821773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-2.55000000,0.00000000,,0.11842105,78.00000000,3.45132743,0.00000000,0.00000000,5.53000000 +3583,chr22,24821923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.39000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,5.95000000 +3584,chr22,24822015,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-0.79000000,0.00000000,,0.12658228,85.00000000,3.76106195,0.04705882,0.00000000,4.94000000 +3585,chr22,24822255,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,56.57000000,13.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.79000000,0.00000000,,0.43243243,76.00000000,3.36283186,0.01315789,0.00000000,7.80000000 +3586,chr22,24823465,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,1.65000000,0.00000000,,0.44155844,78.00000000,3.45132743,0.01282051,0.00000000,4.25000000 +3587,chr22,24823519,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,90.00000000,0.00000000,0.00000000,0.00000000,,0.38095238,84.00000000,3.71681416,0.00000000,0.00000000,7.91000000 +3588,chr22,24823730,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,40.00000000,0.00000000,-1.21000000,0.00000000,,0.52941176,69.00000000,3.05309735,0.01449275,0.00000000,4.44000000 +3589,chr22,24823963,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.35000000,0.00000000,,0.37804878,82.00000000,3.62831858,0.00000000,0.00000000,9.16000000 +3590,chr22,24824633,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,0.82000000,0.00000000,,0.21176471,93.00000000,4.11504425,0.07526882,0.00000000,5.63000000 +3591,chr22,24824639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-0.16000000,0.00000000,,0.20930233,92.00000000,4.07079646,0.05434783,0.00000000,6.29000000 +3592,chr22,24824718,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,0.00000000,1.33000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.01162791,0.00000000,5.87000000 +3593,chr22,24824786,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,-0.21000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.45000000 +3594,chr22,24825948,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.62000000 +3595,chr22,24831982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,6.62000000 +3596,chr22,24842325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.04651163,0.00000000,5.98000000 +3597,chr22,24843590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +3598,chr22,24845414,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.30000000,0.00000000,,0.32432432,74.00000000,3.27433628,0.00000000,0.00000000,9.15000000 +3599,chr22,24846625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,0.43000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,5.80000000 +3600,chr22,24846741,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.76000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +3601,chr22,24847009,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.19000000 +3602,chr22,24848093,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,1.64000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.62000000 +3603,chr22,24848661,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,1.89000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.55000000 +3604,chr22,24848912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,6.17000000 +3605,chr22,24849151,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,90.00000000,3.98230088,0.08888889,0.00000000,6.29000000 +3606,chr22,24850145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.23000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +3607,chr22,24850767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.82000000 +3608,chr22,24850970,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,67.00000000,0.00000000,-0.23000000,0.00000000,,0.17187500,67.00000000,2.96460177,0.02985075,0.00000000,5.73000000 +3609,chr22,24851663,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,83.00000000,0.00000000,1.20000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.17000000 +3610,chr22,24852782,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.15000000,0.00000000,,0.25301205,86.00000000,3.80530973,0.03488372,0.00000000,5.96000000 +3611,chr22,24852798,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.03750000,0.00000000,5.99000000 +3612,chr22,24853154,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.56000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,4.59000000 +3613,chr22,24853667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.77000000 +3614,chr22,24857898,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.56000000 +3615,chr22,24858590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,63.00000000,0.00000000,1.49000000,0.00000000,,0.13725490,65.00000000,2.87610619,0.21538462,0.00000000,4.79000000 +3616,chr22,24858741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.21538462,70.00000000,3.09734513,0.05714286,0.00000000,5.85000000 +3617,chr22,24859308,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.53000000,0.00000000,,0.28571429,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +3618,chr22,24859992,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.44000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +3619,chr22,24860567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.19354839,62.00000000,2.74336283,0.00000000,0.00000000,5.90000000 +3620,chr22,24860757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.73000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,6.96000000 +3621,chr22,24862859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,81.00000000,3.58407080,0.03703704,0.00000000,5.47000000 +3622,chr22,24862860,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.98000000,0.00000000,,0.15384615,81.00000000,3.58407080,0.03703704,0.00000000,5.47000000 +3623,chr22,24862935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,0.27000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,5.85000000 +3624,chr22,24862961,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,5.85000000 +3625,chr22,24865017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,70.00000000,0.00000000,-0.12000000,0.00000000,,0.13761468,111.00000000,4.91150442,0.01801802,0.00000000,4.88000000 +3626,chr22,24865076,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,0.55000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,5.78000000 +3627,chr22,24865892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.85000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +3628,chr22,24865919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +3629,chr22,24866402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.78000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,4.96000000 +3630,chr22,24866510,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.08000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.25000000 +3631,chr22,24866580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.60000000 +3632,chr22,24866595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.96000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +3633,chr22,24866617,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.01538462,0.00000000,6.30000000 +3634,chr22,24866882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,53.00000000,0.00000000,1.89000000,0.00000000,,0.40000000,67.00000000,2.96460177,0.02985075,0.00000000,4.78000000 +3635,chr22,24867273,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,5.91000000 +3636,chr22,24867306,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,6.35000000 +3637,chr22,24869667,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +3638,chr22,24869844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,1.16000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.75000000 +3639,chr22,24869915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.19000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.01063830,0.00000000,5.25000000 +3640,chr22,24871394,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +3641,chr22,24873337,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.14084507,76.00000000,3.36283186,0.06578947,0.00000000,5.15000000 +3642,chr22,24873551,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.15873016,64.00000000,2.83185841,0.01562500,0.00000000,5.42000000 +3643,chr22,24873648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.94000000,0.00000000,,0.17647059,55.00000000,2.43362832,0.07272727,0.00000000,2.81000000 +3644,chr22,24873775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,70.00000000,0.00000000,-0.95000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,4.75000000 +3645,chr22,24873803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.25000000 +3646,chr22,24874488,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,1.06000000,0.00000000,,0.10144928,71.00000000,3.14159292,0.02816901,0.00000000,5.12000000 +3647,chr22,24875956,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,84.00000000,0.00000000,-0.31000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,5.54000000 +3648,chr22,24876486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.55000000 +3649,chr22,24879426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-1.50000000,0.00000000,,0.21176471,92.00000000,4.07079646,0.07608696,0.00000000,5.87000000 +3650,chr22,24881600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +3651,chr22,24882076,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,82.00000000,0.00000000,-0.82000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.01351351,0.00000000,5.31000000 +3652,chr22,24882355,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.30000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,5.91000000 +3653,chr22,24882929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,-0.92000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.07500000,0.00000000,5.73000000 +3654,chr22,24889794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.25490196,51.00000000,2.25663717,0.00000000,0.00000000,6.41000000 +3655,chr22,24889979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,2.66000000,0.00000000,,0.16949153,66.00000000,2.92035398,0.10606061,0.00000000,6.13000000 +3656,chr22,24894676,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-1.40000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.00000000,0.00000000,6.35000000 +3657,chr22,24912832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.22115385,105.00000000,4.64601770,0.00952381,0.00000000,6.22000000 +3658,chr22,24918968,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.62000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.01612903,0.00000000,4.79000000 +3659,chr22,24919675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.03000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.50000000 +3660,chr22,24919693,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.62000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.42000000 +3661,chr22,24919786,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-0.64000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.19000000 +3662,chr22,24920383,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.61000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +3663,chr22,24921272,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,1.28000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.00000000,0.00000000,5.06000000 +3664,chr22,24921769,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,75.00000000,0.00000000,-0.78000000,0.00000000,,0.22727273,73.00000000,3.23008850,0.06849315,0.00000000,6.19000000 +3665,chr22,24922075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.60000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,6.03000000 +3666,chr22,24922267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,0.86000000,0.00000000,,0.28813559,66.00000000,2.92035398,0.10606061,0.00000000,2.86000000 +3667,chr22,24922271,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.27868852,68.00000000,3.00884956,0.10294118,0.00000000,6.62000000 +3668,chr22,24922382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.28000000,0.00000000,,0.22807018,59.00000000,2.61061947,0.03389831,0.00000000,6.28000000 +3669,chr22,24922723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.08000000,0.00000000,,0.26666667,62.00000000,2.74336283,0.03225806,0.00000000,5.62000000 +3670,chr22,24923036,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.58000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,6.57000000 +3671,chr22,24923201,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,-0.87000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.76000000 +3672,chr22,24923277,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +3673,chr22,24923489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.07000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.76000000 +3674,chr22,24923570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.64000000,0.00000000,,0.29069767,89.00000000,3.93805310,0.03370787,0.00000000,6.38000000 +3675,chr22,24923708,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,1.13000000,0.00000000,,0.11392405,81.00000000,3.58407080,0.02469136,0.00000000,4.74000000 +3676,chr22,24923918,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,64.00000000,0.00000000,0.24000000,0.00000000,,0.15476190,89.00000000,3.93805310,0.05617978,0.00000000,5.05000000 +3677,chr22,24924404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.37000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.29000000 +3678,chr22,24924771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,5.48000000 +3679,chr22,24924847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-2.07000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.00000000,0.00000000,5.89000000 +3680,chr22,24925820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.31081081,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +3681,chr22,24926873,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,80.00000000,0.00000000,0.45000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.76000000 +3682,chr22,24928660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.78000000 +3683,chr22,24932832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.28000000,0.00000000,,0.24050633,82.00000000,3.62831858,0.02439024,0.00000000,6.49000000 +3684,chr22,24933445,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,6.64000000 +3685,chr22,24933646,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.34000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.84000000 +3686,chr22,24935972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,0.00000000,0.41000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.06666667,0.00000000,5.66000000 +3687,chr22,24936132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.71000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.67000000 +3688,chr22,24938902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.34000000 +3689,chr22,24939010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +3690,chr22,24939126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,75.00000000,0.00000000,-0.14000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,4.97000000 +3691,chr22,24939827,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.01666667,0.00000000,5.83000000 +3692,chr22,24942531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +3693,chr22,24945236,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,55.00000000,0.00000000,0.29000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,2.83000000 +3694,chr22,24947463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.71000000,0.00000000,,0.24285714,75.00000000,3.31858407,0.06666667,0.00000000,6.33000000 +3695,chr22,24949570,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,-0.97000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.02083333,0.00000000,5.86000000 +3696,chr22,24954120,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.13000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.83000000 +3697,chr22,24955412,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.24000000 +3698,chr22,24955800,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.11000000,0.00000000,,0.33333333,74.00000000,3.27433628,0.02702703,0.00000000,8.72000000 +3699,chr22,24956402,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.57000000 +3700,chr22,24962878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.13000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +3701,chr22,24964703,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.93000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.49000000 +3702,chr22,24966100,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.63000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.47000000 +3703,chr22,24966796,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.53000000,0.00000000,,0.29230769,67.00000000,2.96460177,0.02985075,0.00000000,2.77000000 +3704,chr22,24967303,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.58000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.86000000 +3705,chr22,24967444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.67000000 +3706,chr22,24968740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.16000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,5.41000000 +3707,chr22,24969747,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.32000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +3708,chr22,24970444,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.26000000,0.00000000,,0.15384615,91.00000000,4.02654867,0.00000000,0.00000000,5.38000000 +3709,chr22,24971396,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,1.76000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.12000000 +3710,chr22,24971411,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.15000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,5.78000000 +3711,chr22,24972434,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.32000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.00000000,0.00000000,6.13000000 +3712,chr22,24973352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.97000000,0.00000000,,0.31325301,93.00000000,4.11504425,0.10752688,0.00000000,6.89000000 +3713,chr22,24973539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,6.54000000 +3714,chr22,24973542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.01538462,0.00000000,6.54000000 +3715,chr22,24974818,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.66000000,0.00000000,,0.26865672,71.00000000,3.14159292,0.05633803,0.00000000,6.66000000 +3716,chr22,24977424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.14000000 +3717,chr22,24978018,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,0.00000000,-1.35000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.02564103,0.00000000,6.09000000 +3718,chr22,24978395,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,53.00000000,0.00000000,-1.16000000,0.00000000,,0.40259740,79.00000000,3.49557522,0.02531646,0.00000000,4.75000000 +3719,chr22,24978467,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,56.00000000,0.00000000,-0.01000000,0.00000000,,0.45161290,64.00000000,2.83185841,0.03125000,0.00000000,4.70000000 +3720,chr22,24997509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.12345679,83.00000000,3.67256637,0.02409639,0.00000000,4.69000000 +3721,chr22,24998415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.21000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.01694915,0.00000000,5.52000000 +3722,chr22,24998588,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,1.62000000,0.00000000,,0.22413793,61.00000000,2.69911504,0.04918033,0.00000000,5.84000000 +3723,chr22,25004778,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.24000000,0.00000000,,0.22222222,46.00000000,2.03539823,0.00000000,0.00000000,2.83000000 +3724,chr22,25005470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,6.26000000 +3725,chr22,25007798,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.83000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,4.81000000 +3726,chr22,25010223,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.97000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.24000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,5.76000000 +3727,chr22,25016266,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.30158730,63.00000000,2.78761062,0.00000000,0.00000000,7.08000000 +3728,chr22,25016859,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.14606742,89.00000000,3.93805310,0.00000000,0.00000000,5.36000000 +3729,chr22,25018044,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.25000000,52.00000000,2.30088496,0.00000000,0.00000000,6.34000000 +3730,chr22,25019231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.64000000,0.00000000,,0.27058824,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +3731,chr22,25020056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.25000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,6.30000000 +3732,chr22,25030259,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +3733,chr22,25031151,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.23529412,72.00000000,3.18584071,0.05555556,0.00000000,6.48000000 +3734,chr22,25036911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.71000000,0.00000000,,0.23157895,98.00000000,4.33628319,0.02040816,0.00000000,6.38000000 +3735,chr22,25046181,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.69000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.59000000 +3736,chr22,25046930,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.42000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,5.90000000 +3737,chr22,25051619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,69.00000000,0.00000000,0.34000000,0.00000000,,0.28888889,92.00000000,4.07079646,0.02173913,0.00000000,5.74000000 +3738,chr22,25052231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.14000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.30000000 +3739,chr22,25053246,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +3740,chr22,25054125,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.57000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.02739726,0.00000000,6.40000000 +3741,chr22,25055346,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.09000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.39000000 +3742,chr22,25060339,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.62000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.24000000 +3743,chr22,25060386,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.02000000 +3744,chr22,25060972,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,71.00000000,0.00000000,-0.31000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.61000000 +3745,chr22,25062424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.02150538,0.00000000,6.04000000 +3746,chr22,25063075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.01369863,0.00000000,5.90000000 +3747,chr22,25064237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.26000000,0.00000000,,0.15492958,76.00000000,3.36283186,0.05263158,0.00000000,5.58000000 +3748,chr22,25064805,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.19000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +3749,chr22,25066667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,2.32000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +3750,chr22,25068582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.36000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +3751,chr22,25068598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.09000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.21000000 +3752,chr22,25068899,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.62000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,5.97000000 +3753,chr22,25069289,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,-1.66000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.89000000 +3754,chr22,25070010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.01923077,0.00000000,6.29000000 +3755,chr22,25071665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.98000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.65000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.51000000 +3756,chr22,25072046,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.08000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +3757,chr22,25073858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.01000000 +3758,chr22,25077166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,7.09000000 +3759,chr22,25078363,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.08000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +3760,chr22,25082809,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.80000000,0.00000000,,0.21951220,85.00000000,3.76106195,0.03529412,0.00000000,5.69000000 +3761,chr22,25084904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.04000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.09000000 +3762,chr22,25093094,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.25000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.32000000 +3763,chr22,25100212,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.91000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.05000000 +3764,chr22,25116435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,74.00000000,3.27433628,0.05405405,0.00000000,5.55000000 +3765,chr22,25158969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,5.91000000 +3766,chr22,25160610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,5.91000000 +3767,chr22,25165248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.70000000 +3768,chr22,25167925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,2.46000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.39000000 +3769,chr22,25169059,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +3770,chr22,25169261,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.34000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +3771,chr22,25173713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,2.29000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.21000000 +3772,chr22,25195876,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,1.18000000,0.00000000,,0.36111111,75.00000000,3.31858407,0.04000000,0.00000000,6.86000000 +3773,chr22,25208221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.30000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.00000000,0.00000000,6.66000000 +3774,chr22,25208361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.42000000,0.00000000,,0.13043478,93.00000000,4.11504425,0.01075269,0.00000000,5.45000000 +3775,chr22,25208736,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.08000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.66000000 +3776,chr22,25209100,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,5.90000000 +3777,chr22,25209206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,5.64000000 +3778,chr22,25209621,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.85000000 +3779,chr22,25210698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +3780,chr22,25216012,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,106.00000000,0.00000000,-0.94000000,0.00000000,,0.30927835,98.00000000,4.33628319,0.01020408,0.00000000,11.57000000 +3781,chr22,25216234,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.10000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.04477612,0.00000000,6.26000000 +3782,chr22,25218354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.91000000,0.00000000,,0.22807018,59.00000000,2.61061947,0.03389831,0.00000000,2.80000000 +3783,chr22,25218618,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,40.00000000,0.00000000,0.59000000,0.00000000,,0.27272727,45.00000000,1.99115044,0.02222222,0.00000000,2.80000000 +3784,chr22,25219092,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.28000000,0.00000000,,0.14035088,57.00000000,2.52212389,0.00000000,0.00000000,5.62000000 +3785,chr22,25220246,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.79000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.74000000 +3786,chr22,25221587,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.13000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.19000000 +3787,chr22,25225624,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.81000000,0.00000000,,0.46835443,79.00000000,3.49557522,0.00000000,0.00000000,8.05000000 +3788,chr22,25226918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,1.07000000,0.00000000,,0.29523810,106.00000000,4.69026549,0.00943396,0.00000000,6.55000000 +3789,chr22,25227356,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.33000000,0.00000000,,0.44776119,68.00000000,3.00884956,0.01470588,0.00000000,8.35000000 +3790,chr22,25227377,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.59000000,0.00000000,,0.40277778,75.00000000,3.31858407,0.01333333,0.00000000,8.39000000 +3791,chr22,25227400,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.63000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.30000000 +3792,chr22,25227493,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.48000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.87000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.01449275,0.00000000,6.81000000 +3793,chr22,25228406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,50.45000000,29.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,6.00000000 +3794,chr22,25230976,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.69000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-1.43000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,5.96000000 +3795,chr22,25231167,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,45.00000000,0.00000000,-1.27000000,0.00000000,,0.36904762,85.00000000,3.76106195,0.01176471,0.00000000,4.14000000 +3796,chr22,25231637,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,16.00000000,0.00000000,-0.23000000,0.00000000,,0.37037037,54.00000000,2.38938053,0.00000000,0.00000000,3.37000000 +3797,chr22,25231933,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.35000000,41.00000000,1.81415929,0.00000000,0.00000000,8.65000000 +3798,chr22,25232032,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,26.00000000,0.00000000,0.01000000,0.00000000,,0.54098361,61.00000000,2.69911504,0.00000000,0.00000000,3.32000000 +3799,chr22,25232130,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,32.00000000,1.41592920,0.00000000,0.00000000,54.00000000,0.00000000,1.46000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,4.11000000 +3800,chr22,25232647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +3801,chr22,25232875,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,21.00000000,0.00000000,-0.33000000,0.00000000,,0.46511628,94.00000000,4.15929204,0.08510638,0.00000000,3.50000000 +3802,chr22,25237879,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.06000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.14000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.09000000 +3803,chr22,25240713,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,5.93000000 +3804,chr22,25243891,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,7.01000000 +3805,chr22,25245787,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.12000000,0.00000000,,0.18584071,118.00000000,5.22123894,0.04237288,0.00000000,6.18000000 +3806,chr22,25245854,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.86000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,0.42000000,0.00000000,,0.15533981,109.00000000,4.82300885,0.05504587,0.00000000,4.93000000 +3807,chr22,25245988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.64000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +3808,chr22,25245992,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.25714286,70.00000000,3.09734513,0.00000000,0.00000000,6.46000000 +3809,chr22,25246077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,7.44000000 +3810,chr22,25246160,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.86000000 +3811,chr22,25246239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,61.00000000,0.00000000,1.11000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,4.90000000 +3812,chr22,25246579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.37000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.21000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,6.97000000 +3813,chr22,25246581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.35000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.13000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,7.07000000 +3814,chr22,25247025,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.91000000,0.00000000,,0.21590909,91.00000000,4.02654867,0.03296703,0.00000000,6.21000000 +3815,chr22,25247715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.67000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.48000000 +3816,chr22,25247726,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.13846154,66.00000000,2.92035398,0.01515152,0.00000000,5.24000000 +3817,chr22,25247853,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.97000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.64000000 +3818,chr22,25247899,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.11000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.41000000 +3819,chr22,25247901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.21000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.39000000 +3820,chr22,25248860,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.50000000 +3821,chr22,25252713,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +3822,chr22,25253784,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,7.03000000 +3823,chr22,25254439,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,0.86000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +3824,chr22,25254493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,81.00000000,0.00000000,0.14000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,5.38000000 +3825,chr22,25254919,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,1.16000000,0.00000000,,0.19607843,102.00000000,4.51327434,0.00000000,0.00000000,6.44000000 +3826,chr22,25255099,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,0.00000000,-1.03000000,0.00000000,,0.14285714,87.00000000,3.84955752,0.02298851,0.00000000,4.78000000 +3827,chr22,25256347,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.99000000,0.00000000,,0.18987342,83.00000000,3.67256637,0.03614458,0.00000000,6.24000000 +3828,chr22,25261952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.00000000,0.00000000,6.78000000 +3829,chr22,25264596,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.96000000,0.00000000,,0.12500000,88.00000000,3.89380531,0.00000000,0.00000000,5.52000000 +3830,chr22,25264737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.89000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.00000000,0.00000000,5.56000000 +3831,chr22,25294664,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.85000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.73000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,7.78000000 +3832,chr22,25294716,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.48000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.02597403,0.00000000,8.03000000 +3833,chr22,25294730,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.70000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.38888889,75.00000000,3.31858407,0.04000000,0.00000000,7.97000000 +3834,chr22,25294833,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.77000000,0.00000000,,0.36250000,83.00000000,3.67256637,0.02409639,0.00000000,8.59000000 +3835,chr22,25295463,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.59000000,0.00000000,,0.39285714,87.00000000,3.84955752,0.02298851,0.00000000,8.10000000 +3836,chr22,25295627,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,-1.91000000,0.00000000,,0.32786885,63.00000000,2.78761062,0.03174603,0.00000000,8.04000000 +3837,chr22,25296018,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,102.00000000,0.00000000,-0.18000000,0.00000000,,0.33333333,74.00000000,3.27433628,0.02702703,0.00000000,11.65000000 +3838,chr22,25298419,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,117.00000000,0.00000000,0.52000000,0.00000000,,0.37500000,97.00000000,4.29203540,0.01030928,0.00000000,12.20000000 +3839,chr22,25299305,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.92000000,0.00000000,,0.45977011,92.00000000,4.07079646,0.04347826,0.00000000,4.67000000 +3840,chr22,25299587,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.47252747,93.00000000,4.11504425,0.02150538,0.00000000,8.34000000 +3841,chr22,25299751,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,112.00000000,0.00000000,0.62000000,0.00000000,,0.38202247,93.00000000,4.11504425,0.03225806,0.00000000,13.72000000 +3842,chr22,25300592,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,-1.62000000,0.00000000,,0.48888889,92.00000000,4.07079646,0.02173913,0.00000000,8.45000000 +3843,chr22,25300967,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.89000000,0.00000000,,0.55056180,89.00000000,3.93805310,0.00000000,0.00000000,8.11000000 +3844,chr22,25301030,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.05000000,0.00000000,,0.53012048,84.00000000,3.71681416,0.01190476,0.00000000,8.66000000 +3845,chr22,25301985,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,54.33000000,14.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.20000000,56.00000000,2.47787611,0.01785714,0.00000000,5.88000000 +3846,chr22,25302376,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,47.58000000,31.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.29000000,0.00000000,,0.20000000,50.00000000,2.21238938,0.00000000,0.00000000,7.04000000 +3847,chr22,25302889,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.56000000,13.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,0.48000000,0.00000000,,0.40000000,62.00000000,2.74336283,0.03225806,0.00000000,4.51000000 +3848,chr22,25303393,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,57.75000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.39534884,88.00000000,3.89380531,0.02272727,0.00000000,8.16000000 +3849,chr22,25303421,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.35526316,84.00000000,3.71681416,0.09523810,0.00000000,7.89000000 +3850,chr22,25303422,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.35526316,84.00000000,3.71681416,0.09523810,0.00000000,7.89000000 +3851,chr22,25303424,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.58000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.36363636,84.00000000,3.71681416,0.08333333,0.00000000,7.94000000 +3852,chr22,25303579,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.60000000,0.00000000,,0.46428571,85.00000000,3.76106195,0.01176471,0.01162791,8.80000000 +3853,chr22,25303640,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,-0.68000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.00000000,0.00000000,4.23000000 +3854,chr22,25303760,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,56.90000000,9.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,109.00000000,0.00000000,-0.14000000,0.00000000,,0.40259740,82.00000000,3.62831858,0.02439024,0.00000000,12.60000000 +3855,chr22,25305138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.83000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.04000000 +3856,chr22,25308478,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.77000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.73000000,0.00000000,,0.39560440,92.00000000,4.07079646,0.01086957,0.00000000,7.92000000 +3857,chr22,25311999,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,52.30000000,27.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.87000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,7.56000000 +3858,chr22,25312010,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,51.09000000,31.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.17000000,0.00000000,,0.31578947,59.00000000,2.61061947,0.03389831,0.00000000,6.84000000 +3859,chr22,25312020,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,49.74000000,35.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.20000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.01818182,0.00000000,7.74000000 +3860,chr22,25312803,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,55.00000000,0.00000000,-1.01000000,0.00000000,,0.53763441,95.00000000,4.20353982,0.02105263,0.00000000,4.33000000 +3861,chr22,25313378,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,105.00000000,0.00000000,-3.13000000,0.00000000,,0.35714286,86.00000000,3.80530973,0.02325581,0.00000000,14.25000000 +3862,chr22,25314830,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,1.00000000,0.00000000,,0.39024390,41.00000000,1.81415929,0.00000000,0.00000000,4.40000000 +3863,chr22,25314949,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,-0.90000000,0.00000000,,0.45714286,76.00000000,3.36283186,0.07894737,0.00000000,3.93000000 +3864,chr22,25315745,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.31034483,60.00000000,2.65486726,0.00000000,0.00000000,8.89000000 +3865,chr22,25316206,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-0.54000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,4.54000000 +3866,chr22,25316543,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,2.19000000,0.00000000,,0.40740741,60.00000000,2.65486726,0.10000000,0.00000000,3.83000000 +3867,chr22,25318558,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.35000000,0.00000000,,0.42253521,73.00000000,3.23008850,0.01369863,0.00000000,8.34000000 +3868,chr22,25319268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.46000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.14000000,0.00000000,,0.47142857,70.00000000,3.09734513,0.00000000,0.00000000,4.31000000 +3869,chr22,25319505,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.04000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,0.00000000,0.39000000,0.00000000,,0.37096774,67.00000000,2.96460177,0.07462687,0.00000000,7.57000000 +3870,chr22,25319956,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.29000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.37500000,57.00000000,2.52212389,0.01754386,0.00000000,8.06000000 +3871,chr22,25319964,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.37037037,55.00000000,2.43362832,0.01818182,0.00000000,7.90000000 +3872,chr22,25320202,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.48000000,0.00000000,,0.50704225,73.00000000,3.23008850,0.01369863,0.00000000,7.77000000 +3873,chr22,25320441,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,53.00000000,0.00000000,-2.01000000,0.00000000,,0.34848485,68.00000000,3.00884956,0.02941176,0.00000000,4.55000000 +3874,chr22,25320559,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.70000000,0.00000000,,0.41428571,72.00000000,3.18584071,0.02777778,0.00000000,8.05000000 +3875,chr22,25320658,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.50000000,69.00000000,3.05309735,0.01449275,0.00000000,7.72000000 +3876,chr22,25321224,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.36363636,77.00000000,3.40707965,0.00000000,0.00000000,8.95000000 +3877,chr22,25321929,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,41.00000000,0.00000000,-0.74000000,0.00000000,,0.54687500,66.00000000,2.92035398,0.01515152,0.00000000,3.94000000 +3878,chr22,25322224,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,55.85000000,14.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.92000000,0.00000000,,0.46478873,74.00000000,3.27433628,0.04054054,0.00000000,7.39000000 +3879,chr22,25322369,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.47826087,94.00000000,4.15929204,0.02127660,0.00000000,8.44000000 +3880,chr22,25322453,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.97000000,0.00000000,,0.42682927,87.00000000,3.84955752,0.05747126,0.00000000,8.10000000 +3881,chr22,25322461,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.50000000,0.00000000,,0.45121951,87.00000000,3.84955752,0.05747126,0.00000000,8.10000000 +3882,chr22,25322466,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,-1.73000000,0.00000000,,0.45454545,82.00000000,3.62831858,0.06097561,0.00000000,6.32000000 +3883,chr22,25322524,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.25000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,4.17000000 +3884,chr22,25322656,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,-0.31000000,0.00000000,,0.35937500,71.00000000,3.14159292,0.09859155,0.00000000,4.89000000 +3885,chr22,25322665,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,53.00000000,0.00000000,-0.73000000,0.00000000,,0.32835821,78.00000000,3.45132743,0.14102564,0.00000000,4.46000000 +3886,chr22,25322932,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.38961039,77.00000000,3.40707965,0.00000000,0.00000000,8.16000000 +3887,chr22,25322988,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.37333333,76.00000000,3.36283186,0.01315789,0.00000000,8.58000000 +3888,chr22,25323946,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.38317757,110.00000000,4.86725664,0.01818182,0.00000000,8.15000000 +3889,chr22,25326791,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.38461538,69.00000000,3.05309735,0.05797101,0.00000000,8.12000000 +3890,chr22,25326931,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,-0.31000000,0.00000000,,0.55952381,84.00000000,3.71681416,0.00000000,0.00000000,4.53000000 +3891,chr22,25327075,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05555556,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,2.26000000,0.00000000,,0.40000000,73.00000000,3.23008850,0.02739726,0.00000000,8.07000000 +3892,chr22,25327333,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.09000000,0.00000000,,0.47368421,78.00000000,3.45132743,0.02564103,0.00000000,4.35000000 +3893,chr22,25328800,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,58.00000000,0.00000000,-0.11000000,0.00000000,,0.39024390,82.00000000,3.62831858,0.00000000,0.00000000,5.99000000 +3894,chr22,25328904,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.89000000 +3895,chr22,25329600,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.86000000,0.00000000,,0.50000000,94.00000000,4.15929204,0.02127660,0.00000000,8.20000000 +3896,chr22,25331025,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.96000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,8.93000000 +3897,chr22,25332090,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.55000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.89000000 +3898,chr22,25332471,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,0.92000000,0.00000000,,0.36250000,82.00000000,3.62831858,0.02439024,0.00000000,7.90000000 +3899,chr22,25333289,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.50000000,81.00000000,3.58407080,0.00000000,0.00000000,8.28000000 +3900,chr22,25336087,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.18000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.00000000,0.00000000,4.36000000 +3901,chr22,25340570,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,51.87000000,23.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,44.00000000,0.00000000,-0.69000000,0.00000000,,0.35555556,47.00000000,2.07964602,0.04255319,0.00000000,4.19000000 +3902,chr22,25340846,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,54.82000000,20.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,44.00000000,0.00000000,-0.94000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,3.65000000 +3903,chr22,25341826,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,57.62000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.70000000,0.00000000,,0.46666667,60.00000000,2.65486726,0.00000000,0.00000000,4.34000000 +3904,chr22,25342153,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.23000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,34.00000000,0.00000000,-1.52000000,0.00000000,,0.46808511,47.00000000,2.07964602,0.00000000,0.00000000,3.77000000 +3905,chr22,25342307,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,49.82000000,32.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.24390244,41.00000000,1.81415929,0.00000000,0.00000000,6.73000000 +3906,chr22,25342308,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,49.59000000,32.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.31000000,0.00000000,,0.26829268,41.00000000,1.81415929,0.00000000,0.00000000,6.72000000 +3907,chr22,25347448,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,31.00000000,0.00000000,0.58000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,3.16000000 +3908,chr22,25352719,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,0.16000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,6.14000000 +3909,chr22,25353826,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.34523810,84.00000000,3.71681416,0.00000000,0.00000000,8.32000000 +3910,chr22,25354107,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.00000000,0.00000000,8.28000000 +3911,chr22,25355494,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.33000000,0.00000000,,0.35483871,63.00000000,2.78761062,0.01587302,0.00000000,8.77000000 +3912,chr22,25357354,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.45833333,75.00000000,3.31858407,0.02666667,0.00000000,8.19000000 +3913,chr22,25357810,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.05000000,0.00000000,,0.47297297,77.00000000,3.40707965,0.01298701,0.00000000,8.60000000 +3914,chr22,25358003,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,93.00000000,0.00000000,-0.34000000,0.00000000,,0.34444444,93.00000000,4.11504425,0.03225806,0.00000000,8.16000000 +3915,chr22,25358292,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,0.71000000,0.00000000,,0.46575342,75.00000000,3.31858407,0.02666667,0.00000000,4.17000000 +3916,chr22,25358445,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.89000000,0.00000000,,0.53333333,90.00000000,3.98230088,0.00000000,0.00000000,8.29000000 +3917,chr22,25358538,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.57000000,0.00000000,,0.51250000,82.00000000,3.62831858,0.01219512,0.00000000,7.67000000 +3918,chr22,25359348,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.41000000,0.00000000,,0.39705882,83.00000000,3.67256637,0.14457831,0.00000000,8.45000000 +3919,chr22,25359632,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,55.00000000,0.00000000,0.70000000,0.00000000,,0.38888889,74.00000000,3.27433628,0.02702703,0.00000000,4.91000000 +3920,chr22,25360817,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.41666667,105.00000000,4.64601770,0.08571429,0.00000000,7.99000000 +3921,chr22,25364794,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,109.00000000,0.00000000,-0.16000000,0.00000000,,0.44705882,87.00000000,3.84955752,0.02298851,0.00000000,12.50000000 +3922,chr22,25365291,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.01000000,0.00000000,,0.52000000,75.00000000,3.31858407,0.00000000,0.00000000,8.91000000 +3923,chr22,25367848,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.67000000 +3924,chr22,25370074,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,35.00000000,0.00000000,-0.14000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.00000000,0.00000000,3.57000000 +3925,chr22,25372851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-1.09000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.32000000 +3926,chr22,25373258,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.25000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,4.23000000 +3927,chr22,25374065,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,1.26000000,0.00000000,,0.36842105,77.00000000,3.40707965,0.01298701,0.00000000,8.03000000 +3928,chr22,25379184,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,33.00000000,0.00000000,-0.43000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.66000000 +3929,chr22,25379296,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.17000000,0.00000000,,0.45070423,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +3930,chr22,25379568,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.84000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,4.37000000 +3931,chr22,25380843,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,-2.25000000,0.00000000,,0.46052632,79.00000000,3.49557522,0.03797468,0.00000000,8.28000000 +3932,chr22,25382046,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,-0.03000000,0.00000000,,0.46428571,85.00000000,3.76106195,0.01176471,0.00000000,8.29000000 +3933,chr22,25382054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,98.00000000,0.00000000,0.07000000,0.00000000,,0.44705882,86.00000000,3.80530973,0.01162791,0.00000000,8.12000000 +3934,chr22,25382563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.59000000 +3935,chr22,25382841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,5.91000000 +3936,chr22,25383235,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,5.90000000 +3937,chr22,25383524,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.56000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +3938,chr22,25383787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.33000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.72000000 +3939,chr22,25384150,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,0.25000000,0.00000000,,0.28571429,93.00000000,4.11504425,0.02150538,0.00000000,5.76000000 +3940,chr22,25388166,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.19191919,100.00000000,4.42477876,0.01000000,0.00000000,5.88000000 +3941,chr22,25388217,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,89.00000000,0.00000000,-1.32000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.37000000 +3942,chr22,25388438,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-1.15000000,0.00000000,,0.08602151,94.00000000,4.15929204,0.01063830,0.00000000,5.11000000 +3943,chr22,25388886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.10843373,83.00000000,3.67256637,0.00000000,0.00000000,5.14000000 +3944,chr22,25389745,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.75000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.01075269,0.00000000,6.27000000 +3945,chr22,25390194,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,-1.75000000,0.00000000,,0.40789474,77.00000000,3.40707965,0.00000000,0.00000000,8.88000000 +3946,chr22,25390455,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.80000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-1.72000000,0.00000000,,0.36363636,80.00000000,3.53982301,0.02500000,0.00000000,8.19000000 +3947,chr22,25391430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.28000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.33000000 +3948,chr22,25392575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,0.52000000,0.00000000,,0.52857143,73.00000000,3.23008850,0.02739726,0.00000000,8.07000000 +3949,chr22,25392624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-1.31000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.51000000 +3950,chr22,25392682,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,2.58000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.01315789,0.00000000,8.16000000 +3951,chr22,25392840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.00000000,0.00000000,6.70000000 +3952,chr22,25392887,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,0.15000000,0.00000000,,0.26881720,96.00000000,4.24778761,0.01041667,0.00000000,5.80000000 +3953,chr22,25393070,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.87000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,5.91000000 +3954,chr22,25393357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,1.83000000,0.00000000,,0.26666667,108.00000000,4.77876106,0.02777778,0.00000000,5.89000000 +3955,chr22,25394273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.36000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.00000000,0.00000000,6.60000000 +3956,chr22,25394713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.21666667,65.00000000,2.87610619,0.04615385,0.00000000,6.00000000 +3957,chr22,25394832,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,0.63000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.02857143,0.00000000,5.92000000 +3958,chr22,25395389,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.43000000,0.00000000,,0.51282051,80.00000000,3.53982301,0.02500000,0.00000000,3.88000000 +3959,chr22,25395496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.78000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.76000000 +3960,chr22,25396300,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.52000000 +3961,chr22,25396732,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.83000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,8.70000000 +3962,chr22,25396768,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,1.00000000,0.00000000,,0.40259740,78.00000000,3.45132743,0.01282051,0.00000000,8.42000000 +3963,chr22,25397017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-1.36000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.07000000 +3964,chr22,25398533,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.56000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.59000000 +3965,chr22,25398590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.65000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.97000000 +3966,chr22,25403146,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.17000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +3967,chr22,25405518,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.00000000 +3968,chr22,25407965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.71000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.02631579,0.00000000,6.27000000 +3969,chr22,25409015,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.56000000 +3970,chr22,25409257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.95000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.02325581,0.00000000,7.01000000 +3971,chr22,25410483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,76.00000000,0.00000000,0.48000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.76000000 +3972,chr22,25411235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.79000000 +3973,chr22,25415192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.42000000 +3974,chr22,25417630,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.32000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +3975,chr22,25418467,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.02352941,0.00000000,5.47000000 +3976,chr22,25420448,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.31000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.00000000,0.00000000,7.07000000 +3977,chr22,25420506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,3.09000000,0.00000000,,0.23750000,84.00000000,3.71681416,0.04761905,0.00000000,5.75000000 +3978,chr22,25421046,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.24000000 +3979,chr22,25421417,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-0.81000000,0.00000000,,0.24489796,104.00000000,4.60176991,0.05769231,0.00000000,5.99000000 +3980,chr22,25426468,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,6.21000000 +3981,chr22,25426884,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,1.72000000,0.00000000,,0.37313433,69.00000000,3.05309735,0.01449275,0.00000000,8.24000000 +3982,chr22,25427418,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,56.79000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.42307692,0.00000000,23.00000000,0.00000000,-0.68000000,0.00000000,,0.51162791,57.00000000,2.52212389,0.24561404,0.00000000,3.30000000 +3983,chr22,25428386,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.83000000,0.00000000,,0.44827586,87.00000000,3.84955752,0.00000000,0.00000000,9.11000000 +3984,chr22,25428520,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,58.44000000,4.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,24.00000000,0.00000000,-0.38000000,0.00000000,,0.51724138,59.00000000,2.61061947,0.01694915,0.00000000,3.93000000 +3985,chr22,25429125,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,0.09000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,4.40000000 +3986,chr22,25429888,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,16.00000000,0.00000000,-1.62000000,0.00000000,,0.47222222,72.00000000,3.18584071,0.00000000,0.00000000,3.12000000 +3987,chr22,25430099,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,46.00000000,0.00000000,-2.22000000,0.00000000,,0.42857143,78.00000000,3.45132743,0.01282051,0.00000000,4.07000000 +3988,chr22,25431062,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,49.00000000,0.00000000,1.49000000,0.00000000,,0.43181818,93.00000000,4.11504425,0.05376344,0.00000000,4.22000000 +3989,chr22,25431560,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.50666667,76.00000000,3.36283186,0.01315789,0.00000000,8.52000000 +3990,chr22,25431760,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.33000000,5.00000000,ref,1.00000000,0.04761905,24.00000000,1.06194690,0.12500000,0.00000000,4.00000000,0.00000000,-0.56000000,0.00000000,,0.38775510,62.00000000,2.74336283,0.19354839,0.00000000,3.37000000 +3991,chr22,25432061,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,52.93000000,15.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,29.00000000,0.00000000,1.16000000,0.00000000,,0.43478261,47.00000000,2.07964602,0.02127660,0.00000000,3.43000000 +3992,chr22,25432191,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,46.25000000,31.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.32000000,0.00000000,,0.22000000,52.00000000,2.30088496,0.03846154,0.00000000,2.81000000 +3993,chr22,25433989,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.28000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.01388889,0.00000000,8.41000000 +3994,chr22,25434022,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,0.04000000,0.00000000,,0.47500000,81.00000000,3.58407080,0.01234568,0.00000000,12.70000000 +3995,chr22,25434034,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,104.00000000,0.00000000,0.20000000,0.00000000,,0.50649351,78.00000000,3.45132743,0.01282051,0.00000000,12.66000000 +3996,chr22,25435333,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-1.23000000,0.00000000,,0.42253521,71.00000000,3.14159292,0.00000000,0.00000000,6.11000000 +3997,chr22,25435494,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,1.53000000,0.00000000,,0.41791045,69.00000000,3.05309735,0.02898551,0.00000000,8.06000000 +3998,chr22,25435858,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,33.00000000,0.00000000,0.23000000,0.00000000,,0.45454545,88.00000000,3.89380531,0.00000000,0.00000000,3.16000000 +3999,chr22,25436275,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.16000000,0.00000000,,0.38000000,100.00000000,4.42477876,0.00000000,0.00000000,9.16000000 +4000,chr22,25436452,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.39560440,95.00000000,4.20353982,0.04210526,0.00000000,8.24000000 +4001,chr22,25436728,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,55.19000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.05000000,0.00000000,,0.34375000,70.00000000,3.09734513,0.07142857,0.00000000,8.04000000 +4002,chr22,25437240,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,0.63000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,7.89000000 +4003,chr22,25437629,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-0.49000000,0.00000000,,0.31707317,83.00000000,3.67256637,0.01204819,0.00000000,7.22000000 +4004,chr22,25437851,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.44000000 +4005,chr22,25438375,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,0.88000000,0.00000000,,0.37349398,85.00000000,3.76106195,0.02352941,0.00000000,4.86000000 +4006,chr22,25438634,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,-0.11000000,0.00000000,,0.26923077,82.00000000,3.62831858,0.03658537,0.00000000,5.97000000 +4007,chr22,25439302,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.62000000,0.00000000,,0.37500000,67.00000000,2.96460177,0.02985075,0.00000000,7.58000000 +4008,chr22,25439547,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.31000000,0.00000000,,0.41052632,97.00000000,4.29203540,0.02061856,0.00000000,8.38000000 +4009,chr22,25439833,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,9.00000000,0.00000000,0.49000000,0.00000000,,0.40579710,72.00000000,3.18584071,0.04166667,0.00000000,3.37000000 +4010,chr22,25442219,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,94.00000000,0.00000000,0.08000000,0.00000000,,0.38202247,102.00000000,4.51327434,0.12745098,0.00000000,7.82000000 +4011,chr22,25442528,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.35820896,69.00000000,3.05309735,0.02898551,0.00000000,8.59000000 +4012,chr22,25442814,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.40000000,75.00000000,3.31858407,0.00000000,0.00000000,8.96000000 +4013,chr22,25443113,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,42.00000000,0.00000000,-2.03000000,0.00000000,,0.52054795,84.00000000,3.71681416,0.13095238,0.00000000,4.46000000 +4014,chr22,25443115,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,43.00000000,0.00000000,-1.68000000,0.00000000,,0.53521127,82.00000000,3.62831858,0.13414634,0.00000000,4.48000000 +4015,chr22,25443214,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-2.17000000,0.00000000,,0.58163265,99.00000000,4.38053097,0.01010101,0.00000000,8.63000000 +4016,chr22,25444834,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.46250000,81.00000000,3.58407080,0.01234568,0.00000000,8.40000000 +4017,chr22,25445178,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,71.00000000,0.00000000,-1.62000000,0.00000000,,0.45454545,90.00000000,3.98230088,0.02222222,0.00000000,7.96000000 +4018,chr22,25445484,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.11000000,0.00000000,,0.43589744,79.00000000,3.49557522,0.01265823,0.00000000,8.60000000 +4019,chr22,25445795,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.63000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.01086957,0.00000000,8.48000000 +4020,chr22,25446119,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,64.00000000,0.00000000,0.78000000,0.00000000,,0.41791045,69.00000000,3.05309735,0.02898551,0.00000000,7.72000000 +4021,chr22,25447917,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,49.00000000,0.00000000,-1.00000000,0.00000000,,0.39473684,76.00000000,3.36283186,0.00000000,0.00000000,4.62000000 +4022,chr22,25448054,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,41.00000000,0.00000000,-0.70000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.01234568,0.00000000,4.01000000 +4023,chr22,25448092,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.93000000,0.00000000,,0.16417910,71.00000000,3.14159292,0.04225352,0.00000000,6.09000000 +4024,chr22,25449768,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,31.00000000,0.00000000,1.38000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.01538462,0.00000000,3.18000000 +4025,chr22,25452074,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,94.00000000,0.00000000,-1.82000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.60000000 +4026,chr22,25457529,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.03000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.04000000,0.00000000,,0.11475410,63.00000000,2.78761062,0.03174603,0.00000000,4.89000000 +4027,chr22,25466857,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.06000000,0.00000000,,0.60000000,62.00000000,2.74336283,0.03225806,0.00000000,8.12000000 +4028,chr22,25473239,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,1.02000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.00000000,0.00000000,8.30000000 +4029,chr22,25474327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,1.63000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.42000000 +4030,chr22,25480395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.79000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.76000000,0.00000000,,0.15217391,50.00000000,2.21238938,0.08000000,0.00000000,5.08000000 +4031,chr22,25486459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.90000000,0.00000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,5.04000000 +4032,chr22,25489117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,91.00000000,0.00000000,-1.33000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +4033,chr22,25490694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +4034,chr22,25491925,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,5.90000000 +4035,chr22,25494544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,-0.64000000,0.00000000,,0.12280702,59.00000000,2.61061947,0.03389831,0.00000000,2.84000000 +4036,chr22,25500780,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-1.71000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.71000000 +4037,chr22,25501012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.47000000 +4038,chr22,25501363,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-1.92000000,0.00000000,,0.20289855,74.00000000,3.27433628,0.06756757,0.00000000,6.71000000 +4039,chr22,25502127,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.36000000 +4040,chr22,25502195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.85000000 +4041,chr22,25502792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.78000000,5.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.43000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.72000000 +4042,chr22,25503231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.45000000 +4043,chr22,25503600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,5.91000000 +4044,chr22,25504856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.30000000 +4045,chr22,25505783,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.62000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.09000000 +4046,chr22,25505917,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.52000000,9.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.80000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.12000000 +4047,chr22,25506705,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,54.97000000,14.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-1.35000000,0.00000000,,0.12698413,64.00000000,2.83185841,0.01562500,0.00000000,5.05000000 +4048,chr22,25506749,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.59000000,12.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-1.50000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,6.41000000 +4049,chr22,25506794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.43000000 +4050,chr22,25506970,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,61.00000000,0.00000000,0.26000000,0.00000000,,0.09090909,73.00000000,3.23008850,0.08219178,0.00000000,4.57000000 +4051,chr22,25507219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.78000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-2.18000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +4052,chr22,25508428,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.23595506,93.00000000,4.11504425,0.04301075,0.00000000,6.30000000 +4053,chr22,25508779,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.30000000,0.00000000,,0.31250000,72.00000000,3.18584071,0.11111111,0.00000000,6.41000000 +4054,chr22,25509454,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.13000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.36000000 +4055,chr22,25509701,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.13000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +4056,chr22,25509912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.15000000,101.00000000,4.46902655,0.00990099,0.00000000,5.59000000 +4057,chr22,25509955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,0.47000000,0.00000000,,0.13043478,93.00000000,4.11504425,0.00000000,0.00000000,5.08000000 +4058,chr22,25510350,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.51000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.00000000,0.00000000,6.41000000 +4059,chr22,25510836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.10000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.51000000 +4060,chr22,25510893,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,1.96000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.00000000,0.00000000,5.93000000 +4061,chr22,25510931,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.96000000 +4062,chr22,25510963,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.81000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,7.17000000 +4063,chr22,25511361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.43000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.60000000 +4064,chr22,25512429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,71.00000000,0.00000000,0.91000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.04000000 +4065,chr22,25512474,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,66.00000000,0.00000000,-0.63000000,0.00000000,,0.14864865,83.00000000,3.67256637,0.07228916,0.00000000,5.64000000 +4066,chr22,25512649,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.23000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +4067,chr22,25512812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +4068,chr22,25513136,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.53000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +4069,chr22,25513152,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.26595745,94.00000000,4.15929204,0.00000000,0.00000000,6.59000000 +4070,chr22,25513237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.98000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +4071,chr22,25513710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.12000000,0.00000000,,0.18947368,98.00000000,4.33628319,0.02040816,0.00000000,6.46000000 +4072,chr22,25513769,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,86.00000000,0.00000000,0.96000000,0.00000000,,0.18584071,115.00000000,5.08849558,0.01739130,0.00000000,5.71000000 +4073,chr22,25513772,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,78.00000000,0.00000000,1.52000000,0.00000000,,0.16521739,119.00000000,5.26548673,0.01680672,0.00000000,5.63000000 +4074,chr22,25514224,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,-0.94000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.25000000 +4075,chr22,25514229,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.16666667,87.00000000,3.84955752,0.03448276,0.00000000,5.45000000 +4076,chr22,25514423,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.35000000,0.00000000,,0.19318182,92.00000000,4.07079646,0.04347826,0.00000000,6.20000000 +4077,chr22,25514588,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.96000000 +4078,chr22,25514638,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.34000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.31000000 +4079,chr22,25514877,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,81.00000000,0.00000000,1.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,5.94000000 +4080,chr22,25514912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.34000000 +4081,chr22,25515104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,-2.00000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +4082,chr22,25515333,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-1.02000000,0.00000000,,0.21649485,100.00000000,4.42477876,0.03000000,0.00000000,6.47000000 +4083,chr22,25515775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.16129032,95.00000000,4.20353982,0.02105263,0.00000000,4.62000000 +4084,chr22,25515806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.17894737,95.00000000,4.20353982,0.00000000,0.00000000,5.91000000 +4085,chr22,25516096,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.53000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.00000000,0.00000000,6.21000000 +4086,chr22,25516287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.22000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,4.83000000 +4087,chr22,25516351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,4.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.68000000,0.00000000,,0.13157895,79.00000000,3.49557522,0.03797468,0.00000000,5.49000000 +4088,chr22,25516356,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-0.19000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.02564103,0.00000000,5.54000000 +4089,chr22,25516416,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,1.01000000,0.00000000,,0.12790698,89.00000000,3.93805310,0.03370787,0.00000000,5.08000000 +4090,chr22,25517060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.34000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.96000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.02083333,0.00000000,5.90000000 +4091,chr22,25517174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.95000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.74000000 +4092,chr22,25518760,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,56.48000000,9.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.49000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.46000000 +4093,chr22,25519689,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.16000000,0.00000000,,0.29411765,85.00000000,3.76106195,0.00000000,0.00000000,6.33000000 +4094,chr22,25519883,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-1.06000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.38000000 +4095,chr22,25520117,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.94000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,5.72000000 +4096,chr22,25520152,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,0.06000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.19000000 +4097,chr22,25520168,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,1.18000000,0.00000000,,0.13432836,68.00000000,3.00884956,0.01470588,0.00000000,5.26000000 +4098,chr22,25520530,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.01369863,0.00000000,6.51000000 +4099,chr22,25521227,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.35000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +4100,chr22,25521664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,1.92000000,0.00000000,,0.06493506,78.00000000,3.45132743,0.01282051,0.00000000,5.41000000 +4101,chr22,25521741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.84000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.18000000 +4102,chr22,25521836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.13043478,92.00000000,4.07079646,0.00000000,0.00000000,5.04000000 +4103,chr22,25521888,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,0.00000000,-1.04000000,0.00000000,,0.13095238,90.00000000,3.98230088,0.06666667,0.00000000,4.50000000 +4104,chr22,25521893,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,77.00000000,0.00000000,-1.22000000,0.00000000,,0.16279070,92.00000000,4.07079646,0.05434783,0.00000000,5.18000000 +4105,chr22,25522232,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.73000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +4106,chr22,25522707,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.56000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.30000000 +4107,chr22,25522727,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.72000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,6.35000000 +4108,chr22,25522742,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.04000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +4109,chr22,25523520,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,62.00000000,0.00000000,-0.47000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.53000000 +4110,chr22,25523615,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,53.75000000,19.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.17000000 +4111,chr22,25524762,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.95000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.30000000,0.00000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +4112,chr22,25524771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.11428571,70.00000000,3.09734513,0.00000000,0.00000000,5.31000000 +4113,chr22,25524806,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.22000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.36000000 +4114,chr22,25524939,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.01250000,5.95000000 +4115,chr22,25525152,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.16000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.00000000,0.00000000,5.42000000 +4116,chr22,25525715,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,0.00000000,,0.25531915,95.00000000,4.20353982,0.00000000,0.00000000,7.22000000 +4117,chr22,25525716,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.20000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.25263158,96.00000000,4.24778761,0.00000000,0.00000000,7.16000000 +4118,chr22,25526308,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.32000000,13.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,77.00000000,0.00000000,-0.19000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.04000000 +4119,chr22,25527044,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.18000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.29000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +4120,chr22,25527202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,5.97000000 +4121,chr22,25527535,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.11000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.52000000,0.00000000,,0.19696970,77.00000000,3.40707965,0.14285714,0.00000000,4.80000000 +4122,chr22,25527700,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.05000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.20000000 +4123,chr22,25528477,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.02000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.32000000 +4124,chr22,25529220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.18000000 +4125,chr22,25529242,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.17000000 +4126,chr22,25529300,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,2.30000000,0.00000000,,0.11475410,61.00000000,2.69911504,0.00000000,0.00000000,4.74000000 +4127,chr22,25529469,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +4128,chr22,25529674,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,44.00000000,1.94690265,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.13793103,88.00000000,3.89380531,0.00000000,0.00000000,5.34000000 +4129,chr22,25529793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.44000000,0.00000000,,0.26562500,67.00000000,2.96460177,0.04477612,0.00000000,6.13000000 +4130,chr22,25529801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.93000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.37000000 +4131,chr22,25530545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.91000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.83000000 +4132,chr22,25531393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,4.98000000 +4133,chr22,25532301,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.14000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4134,chr22,25535405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.66000000 +4135,chr22,25535639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.37000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.70000000 +4136,chr22,25548511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.68000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,6.32000000 +4137,chr22,25549209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,7.06000000 +4138,chr22,25552251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.30000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,6.37000000 +4139,chr22,25559670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.01052632,0.00000000,6.02000000 +4140,chr22,25589103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.98000000 +4141,chr22,25593432,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.32000000 +4142,chr22,25617383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,1.54000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.40000000 +4143,chr22,25673245,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.73000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.24000000 +4144,chr22,25675591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +4145,chr22,25677159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.34000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.08000000 +4146,chr22,25679221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.80000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.35000000 +4147,chr22,25685906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-0.89000000,0.00000000,,0.27027027,81.00000000,3.58407080,0.08641975,0.00000000,2.76000000 +4148,chr22,25685991,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.91000000,0.00000000,,0.31343284,67.00000000,2.96460177,0.00000000,0.00000000,3.75000000 +4149,chr22,25688052,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.57000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.58000000 +4150,chr22,25705615,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.15625000,67.00000000,2.96460177,0.04477612,0.00000000,5.36000000 +4151,chr22,25738352,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.11290323,64.00000000,2.83185841,0.03125000,0.00000000,4.83000000 +4152,chr22,25756771,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.95000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.83000000 +4153,chr22,25760587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +4154,chr22,25764403,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.53000000 +4155,chr22,25766808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.18000000 +4156,chr22,25766935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.33000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.53000000 +4157,chr22,25767036,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.04878049,0.00000000,6.33000000 +4158,chr22,25768029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.01408451,0.00000000,6.53000000 +4159,chr22,25772591,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.22000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.59000000 +4160,chr22,25773540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.00000000,0.00000000,,0.11250000,82.00000000,3.62831858,0.01219512,0.00000000,5.32000000 +4161,chr22,25774595,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.37000000 +4162,chr22,25774660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,1.38000000,0.00000000,,0.21052632,99.00000000,4.38053097,0.04040404,0.00000000,6.17000000 +4163,chr22,25775315,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.13580247,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +4164,chr22,25776568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.48000000 +4165,chr22,25776994,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.98000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +4166,chr22,25777217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.01333333,0.00000000,6.06000000 +4167,chr22,25777517,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.07000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.99000000 +4168,chr22,25777921,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-1.32000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,6.12000000 +4169,chr22,25779316,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.49000000,0.00000000,,0.19587629,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +4170,chr22,25780882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +4171,chr22,25781534,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.10526316,0.00000000,75.00000000,0.00000000,-1.43000000,0.00000000,,0.27777778,80.00000000,3.53982301,0.10000000,0.00000000,6.05000000 +4172,chr22,25781535,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.10526316,0.00000000,86.00000000,0.00000000,-1.31000000,0.00000000,,0.26388889,80.00000000,3.53982301,0.10000000,0.00000000,6.03000000 +4173,chr22,25781541,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,87.00000000,0.00000000,-1.47000000,0.00000000,,0.28985507,83.00000000,3.67256637,0.16867470,0.00000000,6.05000000 +4174,chr22,25789450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.99000000,0.00000000,,0.29032258,63.00000000,2.78761062,0.01587302,0.00000000,6.65000000 +4175,chr22,25793956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,65.00000000,0.00000000,1.07000000,0.00000000,,0.21212121,71.00000000,3.14159292,0.07042254,0.00000000,5.87000000 +4176,chr22,25796883,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.06000000 +4177,chr22,25796955,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,5.90000000 +4178,chr22,25798224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,6.27000000 +4179,chr22,25798491,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.71000000 +4180,chr22,25798974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.78000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +4181,chr22,25799514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +4182,chr22,25799990,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.50000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,3.55000000,0.00000000,,0.28947368,82.00000000,3.62831858,0.03658537,0.00000000,7.33000000 +4183,chr22,25800382,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,67.00000000,0.00000000,1.49000000,0.00000000,,0.17171717,99.00000000,4.38053097,0.00000000,0.00000000,5.49000000 +4184,chr22,25801437,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.20000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.92000000 +4185,chr22,25803882,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.26315789,99.00000000,4.38053097,0.03030303,0.00000000,6.23000000 +4186,chr22,25805205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.71000000 +4187,chr22,25806631,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.74000000 +4188,chr22,25807154,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,85.00000000,0.00000000,0.27000000,0.00000000,,0.21739130,95.00000000,4.20353982,0.03157895,0.00000000,5.98000000 +4189,chr22,25807792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.80000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,6.26000000 +4190,chr22,25807885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.60000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.98000000 +4191,chr22,25808217,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.04166667,0.00000000,6.29000000 +4192,chr22,25808617,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,5.68000000 +4193,chr22,25808952,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.47000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.00000000,0.00000000,5.22000000 +4194,chr22,25809978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,71.00000000,0.00000000,1.06000000,0.00000000,,0.18181818,86.00000000,3.80530973,0.10465116,0.00000000,5.70000000 +4195,chr22,25810920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.59000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.62000000 +4196,chr22,25811274,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,6.45000000 +4197,chr22,25811892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4198,chr22,25812241,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.21000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +4199,chr22,25812417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.41000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.13000000 +4200,chr22,25813509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.34000000,0.00000000,,0.25925926,54.00000000,2.38938053,0.00000000,0.00000000,6.45000000 +4201,chr22,25813881,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.34000000 +4202,chr22,25815890,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.53000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.39000000 +4203,chr22,25819296,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.04000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +4204,chr22,25820393,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.00000000,0.00000000,6.34000000 +4205,chr22,25821026,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.02439024,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,5.58000000 +4206,chr22,25821632,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.32692308,54.00000000,2.38938053,0.03703704,0.00000000,7.50000000 +4207,chr22,25821669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,2.29000000,0.00000000,,0.22448980,52.00000000,2.30088496,0.03846154,0.00000000,6.41000000 +4208,chr22,25822197,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.12307692,65.00000000,2.87610619,0.00000000,0.00000000,5.18000000 +4209,chr22,25822636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.31000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.01176471,0.00000000,5.99000000 +4210,chr22,25822709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.08000000,0.00000000,,0.20833333,97.00000000,4.29203540,0.01030928,0.00000000,6.64000000 +4211,chr22,25822920,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,93.00000000,0.00000000,0.75000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,5.71000000 +4212,chr22,25824298,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,-0.54000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.47000000 +4213,chr22,25826054,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.62000000 +4214,chr22,25826280,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.43000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.35000000 +4215,chr22,25827016,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,1.51000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.46000000 +4216,chr22,25828665,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.84000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,6.25000000 +4217,chr22,25830413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,0.51000000,0.00000000,,0.31914894,94.00000000,4.15929204,0.00000000,0.00000000,7.51000000 +4218,chr22,25830873,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,82.00000000,0.00000000,1.78000000,0.00000000,,0.20481928,88.00000000,3.89380531,0.04545455,0.00000000,5.81000000 +4219,chr22,25831221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.40000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.43000000 +4220,chr22,25831800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.63000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.02000000 +4221,chr22,25837143,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.24000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.83000000 +4222,chr22,25855705,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.01000000,0.00000000,,0.23809524,89.00000000,3.93805310,0.05617978,0.00000000,5.79000000 +4223,chr22,25856898,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.91000000 +4224,chr22,25858281,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.98000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.49000000 +4225,chr22,25858289,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.98000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.27000000 +4226,chr22,25859008,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,79.00000000,0.00000000,-2.22000000,0.00000000,,0.19736842,81.00000000,3.58407080,0.04938272,0.00000000,6.11000000 +4227,chr22,25884975,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,47.00000000,0.00000000,0.00000000,0.00000000,,0.47368421,77.00000000,3.40707965,0.01298701,0.00000000,4.19000000 +4228,chr22,25885442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +4229,chr22,25897191,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.02352941,0.00000000,4.86000000 +4230,chr22,25902095,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,-1.31000000,0.00000000,,0.48101266,79.00000000,3.49557522,0.00000000,0.00000000,8.82000000 +4231,chr22,25908090,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,47.00000000,0.00000000,-0.05000000,0.00000000,,0.49462366,104.00000000,4.60176991,0.08653846,0.00000000,4.28000000 +4232,chr22,25909021,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.55000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.00000000,0.00000000,4.33000000 +4233,chr22,25909270,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.52000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,4.15000000 +4234,chr22,25909314,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,2.07000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.01369863,0.00000000,4.54000000 +4235,chr22,25909715,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.68000000,0.00000000,,0.36065574,63.00000000,2.78761062,0.03174603,0.00000000,8.13000000 +4236,chr22,25910783,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,62.00000000,0.00000000,-1.34000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,8.00000000 +4237,chr22,25911680,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.95000000,0.00000000,,0.50617284,82.00000000,3.62831858,0.01219512,0.00000000,8.72000000 +4238,chr22,25912753,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.84000000,0.00000000,,0.54054054,76.00000000,3.36283186,0.01315789,0.00000000,8.58000000 +4239,chr22,25913202,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.50000000,70.00000000,3.09734513,0.00000000,0.00000000,7.94000000 +4240,chr22,25915114,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.10000000,0.00000000,,0.36666667,93.00000000,4.11504425,0.01075269,0.00000000,8.35000000 +4241,chr22,25916178,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.22000000,0.00000000,,0.47777778,90.00000000,3.98230088,0.00000000,0.00000000,8.52000000 +4242,chr22,25916221,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.52000000,0.00000000,,0.47945205,73.00000000,3.23008850,0.00000000,0.00000000,4.27000000 +4243,chr22,25916293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.36000000 +4244,chr22,25918095,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.51648352,92.00000000,4.07079646,0.01086957,0.00000000,8.62000000 +4245,chr22,25918567,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.32000000,0.00000000,,0.47500000,80.00000000,3.53982301,0.00000000,0.00000000,8.37000000 +4246,chr22,25923145,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.04000000,0.00000000,,0.43478261,94.00000000,4.15929204,0.02127660,0.00000000,8.29000000 +4247,chr22,25927233,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.43000000,12.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.46666667,61.00000000,2.69911504,0.01639344,0.00000000,7.84000000 +4248,chr22,25930699,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,48.00000000,0.00000000,0.96000000,0.00000000,,0.40000000,62.00000000,2.74336283,0.03225806,0.00000000,4.38000000 +4249,chr22,25931276,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.08000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,4.20000000 +4250,chr22,25931761,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,58.00000000,0.00000000,-0.43000000,0.00000000,,0.36764706,80.00000000,3.53982301,0.15000000,0.00000000,6.44000000 +4251,chr22,25932637,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.35000000,0.00000000,,0.45833333,72.00000000,3.18584071,0.00000000,0.00000000,4.52000000 +4252,chr22,25958565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.56000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.57000000 +4253,chr22,25972773,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.45588235,68.00000000,3.00884956,0.00000000,0.00000000,9.14000000 +4254,chr22,25972850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.27142857,75.00000000,3.31858407,0.06666667,0.00000000,5.80000000 +4255,chr22,25973392,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.56060606,67.00000000,2.96460177,0.01492537,0.00000000,7.97000000 +4256,chr22,25973968,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,-1.66000000,0.00000000,,0.48913043,94.00000000,4.15929204,0.02127660,0.00000000,8.06000000 +4257,chr22,25975054,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,27.00000000,0.00000000,-0.35000000,0.00000000,,0.42500000,81.00000000,3.58407080,0.00000000,0.00000000,3.96000000 +4258,chr22,25980111,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.43076923,66.00000000,2.92035398,0.01515152,0.00000000,8.01000000 +4259,chr22,25982107,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.47000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.01351351,0.00000000,4.48000000 +4260,chr22,25986038,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.71000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,8.91000000 +4261,chr22,25986798,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,1.33000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,4.33000000 +4262,chr22,25993173,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.32000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.92000000 +4263,chr22,25993689,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,60.00000000,0.00000000,-1.05000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.01388889,0.00000000,7.49000000 +4264,chr22,25995033,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,1.19000000,0.00000000,,0.42500000,84.00000000,3.71681416,0.03571429,0.00000000,7.89000000 +4265,chr22,25996908,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,54.00000000,0.00000000,1.57000000,0.00000000,,0.38554217,84.00000000,3.71681416,0.01190476,0.00000000,4.96000000 +4266,chr22,25999100,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,114.00000000,0.00000000,-0.22000000,0.00000000,,0.43661972,72.00000000,3.18584071,0.00000000,0.00000000,14.26000000 +4267,chr22,26002819,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.20000000,0.00000000,,0.49382716,81.00000000,3.58407080,0.00000000,0.00000000,8.95000000 +4268,chr22,26004219,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-1.49000000,0.00000000,,0.47126437,88.00000000,3.89380531,0.01136364,0.00000000,8.44000000 +4269,chr22,26004353,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,102.00000000,0.00000000,1.70000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,13.15000000 +4270,chr22,26004369,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,0.26000000,0.00000000,,0.37804878,83.00000000,3.67256637,0.00000000,0.00000000,13.96000000 +4271,chr22,26008135,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,110.00000000,0.00000000,0.38000000,0.00000000,,0.40566038,106.00000000,4.69026549,0.00000000,0.00000000,13.76000000 +4272,chr22,26012268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,110.00000000,0.00000000,0.06000000,0.00000000,,0.38356164,73.00000000,3.23008850,0.00000000,0.00000000,15.63000000 +4273,chr22,26015530,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.40540541,74.00000000,3.27433628,0.00000000,0.00000000,8.60000000 +4274,chr22,26015578,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.54000000,0.00000000,,0.37037037,83.00000000,3.67256637,0.02409639,0.00000000,8.08000000 +4275,chr22,26024448,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.49000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.00000000,0.00000000,4.21000000 +4276,chr22,26025503,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.19000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +4277,chr22,26029724,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +4278,chr22,26050232,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,0.00000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,2.87000000 +4279,chr22,26050645,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.38000000 +4280,chr22,26050758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.11000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +4281,chr22,26057064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.38000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +4282,chr22,26059250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +4283,chr22,26059593,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.40000000,0.00000000,,0.30434783,94.00000000,4.15929204,0.02127660,0.00000000,6.25000000 +4284,chr22,26061818,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.20000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,6.53000000 +4285,chr22,26064553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.52000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.72000000 +4286,chr22,26067501,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.34000000 +4287,chr22,26069300,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.19000000,0.00000000,,0.15714286,73.00000000,3.23008850,0.04109589,0.00000000,5.26000000 +4288,chr22,26077426,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,84.00000000,0.00000000,-0.38000000,0.00000000,,0.44117647,70.00000000,3.09734513,0.02857143,0.00000000,7.69000000 +4289,chr22,26078524,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.02898551,0.00000000,4.96000000 +4290,chr22,26159626,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.48000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.30000000 +4291,chr22,26182255,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,112.00000000,0.00000000,0.79000000,0.00000000,,0.37634409,93.00000000,4.11504425,0.00000000,0.00000000,15.44000000 +4292,chr22,26193786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,56.00000000,0.00000000,-0.92000000,0.00000000,,0.47191011,91.00000000,4.02654867,0.02197802,0.00000000,4.50000000 +4293,chr22,26216148,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,1.09000000,0.00000000,,0.45977011,91.00000000,4.02654867,0.03296703,0.00000000,7.67000000 +4294,chr22,26216450,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,30.00000000,0.00000000,-1.97000000,0.00000000,,0.50704225,71.00000000,3.14159292,0.00000000,0.00000000,3.79000000 +4295,chr22,26217192,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.97000000,0.00000000,,0.37634409,94.00000000,4.15929204,0.01063830,0.00000000,8.62000000 +4296,chr22,26221083,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.25000000 +4297,chr22,26221294,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,7.68000000 +4298,chr22,26224278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.48000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.03000000 +4299,chr22,26224525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.12500000,97.00000000,4.29203540,0.01030928,0.00000000,5.08000000 +4300,chr22,26226618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,5.87000000 +4301,chr22,26228750,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.58000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.92000000 +4302,chr22,26229699,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.59000000 +4303,chr22,26231176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.07000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.35000000 +4304,chr22,26232023,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.25000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.64000000 +4305,chr22,26232139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-1.01000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.01587302,0.00000000,6.40000000 +4306,chr22,26232603,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.42000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.45000000 +4307,chr22,26233712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.14606742,94.00000000,4.15929204,0.05319149,0.00000000,5.41000000 +4308,chr22,26234053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.97000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,6.28000000 +4309,chr22,26234345,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,0.48000000,0.00000000,,0.25000000,103.00000000,4.55752212,0.00970874,0.00000000,6.51000000 +4310,chr22,26234489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,1.45000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.03157895,0.00000000,5.78000000 +4311,chr22,26234722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.46000000,0.00000000,,0.31707317,85.00000000,3.76106195,0.03529412,0.00000000,6.89000000 +4312,chr22,26237109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.22000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +4313,chr22,26237212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,1.75000000,0.00000000,,0.15384615,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +4314,chr22,26239582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,-1.12000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.00000000,5.91000000 +4315,chr22,26239873,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,1.51000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,4.94000000 +4316,chr22,26240359,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.18965517,60.00000000,2.65486726,0.03333333,0.00000000,6.64000000 +4317,chr22,26241290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.97000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.76000000 +4318,chr22,26242940,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.56000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +4319,chr22,26243002,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.20879121,94.00000000,4.15929204,0.03191489,0.00000000,6.33000000 +4320,chr22,26243151,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,1.41000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.90000000 +4321,chr22,26243639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.99000000,0.00000000,,0.16853933,91.00000000,4.02654867,0.01098901,0.00000000,5.83000000 +4322,chr22,26243841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.09000000,0.00000000,,0.28787879,68.00000000,3.00884956,0.01470588,0.00000000,6.35000000 +4323,chr22,26244934,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.85000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.02500000,0.00000000,6.01000000 +4324,chr22,26245269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.06000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,7.01000000 +4325,chr22,26247560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.67000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.59000000 +4326,chr22,26247813,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,70.00000000,0.00000000,1.54000000,0.00000000,,0.14473684,80.00000000,3.53982301,0.03750000,0.00000000,5.39000000 +4327,chr22,26248662,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.00000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.01162791,0.00000000,6.09000000 +4328,chr22,26249827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,0.60000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,5.86000000 +4329,chr22,26249962,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.17000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.38000000 +4330,chr22,26250355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.54000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4331,chr22,26250584,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +4332,chr22,26250651,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.01000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +4333,chr22,26250799,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.37000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.35000000 +4334,chr22,26251357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.97000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.78000000 +4335,chr22,26251439,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,1.16000000,0.00000000,,0.15909091,91.00000000,4.02654867,0.03296703,0.00000000,4.89000000 +4336,chr22,26251762,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.76000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.36000000 +4337,chr22,26253480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,2.39000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.44000000 +4338,chr22,26253882,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.40000000,0.00000000,,0.29000000,100.00000000,4.42477876,0.00000000,0.00000000,6.76000000 +4339,chr22,26254403,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.74000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.03278689,0.00000000,4.53000000 +4340,chr22,26254639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.01282051,0.00000000,6.16000000 +4341,chr22,26254696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.90000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.47000000 +4342,chr22,26255583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,5.98000000 +4343,chr22,26255776,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.87000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,5.93000000 +4344,chr22,26255800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.12000000 +4345,chr22,26255863,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.67000000 +4346,chr22,26256157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.33000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,5.37000000 +4347,chr22,26256242,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.66000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.01176471,0.00000000,6.87000000 +4348,chr22,26256740,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,90.00000000,0.00000000,0.36000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.02325581,0.00000000,5.82000000 +4349,chr22,26256964,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.03000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +4350,chr22,26257648,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,1.53000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,5.91000000 +4351,chr22,26261813,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-2.16000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,2.86000000 +4352,chr22,26262333,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.42000000 +4353,chr22,26263635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-1.71000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.05000000 +4354,chr22,26264330,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,6.15000000 +4355,chr22,26264343,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.84000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.53000000 +4356,chr22,26265797,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,2.52000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.02531646,0.00000000,6.66000000 +4357,chr22,26266076,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.16000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.24000000 +4358,chr22,26278221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +4359,chr22,26284739,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-0.41000000,0.00000000,,0.44827586,89.00000000,3.93805310,0.02247191,0.00000000,7.53000000 +4360,chr22,26291186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,1.44000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,5.67000000 +4361,chr22,26291555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,2.62000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.28000000 +4362,chr22,26292326,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.06000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.85000000 +4363,chr22,26292865,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.05000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,5.99000000 +4364,chr22,26294035,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.39000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,7.29000000 +4365,chr22,26295999,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.28125000,68.00000000,3.00884956,0.05882353,0.00000000,6.09000000 +4366,chr22,26302786,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +4367,chr22,26305742,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.07000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,5.91000000 +4368,chr22,26305941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.62000000,0.00000000,,0.19767442,91.00000000,4.02654867,0.02197802,0.00000000,5.49000000 +4369,chr22,26323043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.83000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,5.87000000 +4370,chr22,26323045,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.83000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,5.87000000 +4371,chr22,26323525,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.11594203,74.00000000,3.27433628,0.05405405,0.00000000,5.00000000 +4372,chr22,26323710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,-0.39000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.35000000 +4373,chr22,26324233,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.85000000,0.00000000,,0.20618557,97.00000000,4.29203540,0.00000000,0.00000000,6.68000000 +4374,chr22,26326239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.67000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,6.11000000 +4375,chr22,26328595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.23863636,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +4376,chr22,26329023,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.44000000,0.00000000,,0.28125000,69.00000000,3.05309735,0.07246377,0.00000000,6.39000000 +4377,chr22,26329155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,5.89000000 +4378,chr22,26329160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.28000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.02702703,0.00000000,6.09000000 +4379,chr22,26329350,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +4380,chr22,26330079,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.14285714,98.00000000,4.33628319,0.00000000,0.00000000,5.89000000 +4381,chr22,26331163,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.14000000 +4382,chr22,26331419,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.09000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +4383,chr22,26331485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +4384,chr22,26332153,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,53.00000000,0.00000000,-1.34000000,0.00000000,,0.27659574,56.00000000,2.47787611,0.16071429,0.00000000,2.77000000 +4385,chr22,26333407,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.05000000,0.00000000,,0.50617284,82.00000000,3.62831858,0.01219512,0.00000000,8.62000000 +4386,chr22,26333613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.82000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.57000000 +4387,chr22,26335690,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,-1.11000000,0.00000000,,0.11111111,81.00000000,3.58407080,0.00000000,0.00000000,5.51000000 +4388,chr22,26336178,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,-0.19000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.69000000 +4389,chr22,26338591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.88000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.98000000 +4390,chr22,26339326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.67000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.94000000 +4391,chr22,26339666,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,5.91000000 +4392,chr22,26339847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.50000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +4393,chr22,26340846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +4394,chr22,26354395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.53000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +4395,chr22,26358282,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,0.50000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.37000000 +4396,chr22,26358439,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,5.87000000 +4397,chr22,26370807,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.41000000 +4398,chr22,26371174,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.49000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.83000000 +4399,chr22,26371301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +4400,chr22,26371877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-0.77000000,0.00000000,,0.15555556,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +4401,chr22,26372280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.70000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +4402,chr22,26372630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.41000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,6.71000000 +4403,chr22,26372810,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-0.06000000,0.00000000,,0.25806452,95.00000000,4.20353982,0.01052632,0.00000000,6.16000000 +4404,chr22,26373342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.30000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,5.36000000 +4405,chr22,26374910,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.38000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +4406,chr22,26378896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.53000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +4407,chr22,26379391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.11000000,0.00000000,,0.20618557,97.00000000,4.29203540,0.00000000,0.00000000,6.46000000 +4408,chr22,26379398,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,6.76000000 +4409,chr22,26379543,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.54000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +4410,chr22,26379688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.39000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +4411,chr22,26380154,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.04545455,0.00000000,6.24000000 +4412,chr22,26381128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.88000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.68000000 +4413,chr22,26381985,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.49000000 +4414,chr22,26382319,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,1.30000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.49000000 +4415,chr22,26382543,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +4416,chr22,26382781,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.29591837,100.00000000,4.42477876,0.02000000,0.00000000,6.56000000 +4417,chr22,26383241,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.06000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.00000000,0.00000000,4.79000000 +4418,chr22,26383287,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.58000000,0.00000000,,0.23214286,57.00000000,2.52212389,0.01754386,0.00000000,7.11000000 +4419,chr22,26383679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,-0.12000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.04938272,0.00000000,5.99000000 +4420,chr22,26383841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.03000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.59000000 +4421,chr22,26384222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.64000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.65000000 +4422,chr22,26384275,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.80000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.00000000,0.00000000,6.69000000 +4423,chr22,26384367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,0.93000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.73000000 +4424,chr22,26384378,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.87000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +4425,chr22,26384427,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,-1.38000000,0.00000000,,0.17000000,100.00000000,4.42477876,0.00000000,0.00000000,6.50000000 +4426,chr22,26384790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,-0.56000000,0.00000000,,0.12941176,87.00000000,3.84955752,0.02298851,0.00000000,5.53000000 +4427,chr22,26384853,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,0.08000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.19000000 +4428,chr22,26384939,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,88.00000000,0.00000000,-0.70000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,5.71000000 +4429,chr22,26384953,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,77.00000000,0.00000000,0.08000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.02150538,0.00000000,6.02000000 +4430,chr22,26385332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,63.00000000,0.00000000,-0.10000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.06578947,0.00000000,5.40000000 +4431,chr22,26385358,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-0.41000000,0.00000000,,0.21333333,82.00000000,3.62831858,0.08536585,0.00000000,5.89000000 +4432,chr22,26385360,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,-1.00000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.06172840,0.00000000,5.92000000 +4433,chr22,26385362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.51000000,0.00000000,,0.21052632,83.00000000,3.67256637,0.07228916,0.00000000,5.98000000 +4434,chr22,26385579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +4435,chr22,26385697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.11000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.00000000,0.00000000,6.32000000 +4436,chr22,26385816,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.00000000,0.00000000,6.33000000 +4437,chr22,26386181,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.10000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.28000000 +4438,chr22,26386197,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,1.21000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +4439,chr22,26386457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.93000000,0.00000000,,0.13253012,83.00000000,3.67256637,0.00000000,0.00000000,5.22000000 +4440,chr22,26386695,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.60000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.02469136,0.00000000,4.73000000 +4441,chr22,26387013,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.22000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.11000000 +4442,chr22,26387164,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,6.11000000 +4443,chr22,26387572,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.56000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +4444,chr22,26387758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.11111111,67.00000000,2.96460177,0.05970149,0.00000000,4.94000000 +4445,chr22,26388209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,94.00000000,0.00000000,-0.09000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.08000000 +4446,chr22,26388318,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +4447,chr22,26388353,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,71.00000000,0.00000000,0.92000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.00000000,0.00000000,5.24000000 +4448,chr22,26388841,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.19791667,96.00000000,4.24778761,0.00000000,0.00000000,6.38000000 +4449,chr22,26389355,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.34000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,2.96000000 +4450,chr22,26389375,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.12000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,7.02000000 +4451,chr22,26389523,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.98000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.02352941,0.00000000,6.59000000 +4452,chr22,26389616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.01428571,0.00000000,7.27000000 +4453,chr22,26389792,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-2.31000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.73000000 +4454,chr22,26389900,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,1.12000000,0.00000000,,0.14516129,65.00000000,2.87610619,0.03076923,0.00000000,4.16000000 +4455,chr22,26390028,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,-1.99000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.07000000 +4456,chr22,26390556,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.67000000,0.00000000,,0.47058824,86.00000000,3.80530973,0.01162791,0.00000000,8.58000000 +4457,chr22,26390571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.47000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +4458,chr22,26391097,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.94000000 +4459,chr22,26391234,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.21000000,100.00000000,4.42477876,0.00000000,0.00000000,6.30000000 +4460,chr22,26391343,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.02000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.61000000 +4461,chr22,26392344,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.68000000,0.00000000,,0.19298246,59.00000000,2.61061947,0.01694915,0.00000000,5.51000000 +4462,chr22,26396677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.21818182,58.00000000,2.56637168,0.03448276,0.00000000,6.19000000 +4463,chr22,26409261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,0.94000000,0.00000000,,0.12121212,71.00000000,3.14159292,0.07042254,0.00000000,2.78000000 +4464,chr22,26429231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.14705882,0.00000000,64.00000000,0.00000000,-0.44000000,0.00000000,,0.14117647,96.00000000,4.24778761,0.11458333,0.00000000,4.97000000 +4465,chr22,26429808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,-2.52000000,0.00000000,,0.19318182,94.00000000,4.15929204,0.06382979,0.00000000,6.07000000 +4466,chr22,26429810,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-2.54000000,0.00000000,,0.18823529,93.00000000,4.11504425,0.08602151,0.00000000,6.07000000 +4467,chr22,26436252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.24000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.39000000 +4468,chr22,26444511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.09000000 +4469,chr22,26445313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,0.76000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.33000000 +4470,chr22,26445553,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.10000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.23000000 +4471,chr22,26450338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.29166667,73.00000000,3.23008850,0.01369863,0.00000000,6.14000000 +4472,chr22,26465755,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.71000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,7.31000000 +4473,chr22,26466075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.78000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +4474,chr22,26481497,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +4475,chr22,26500449,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,72.00000000,0.00000000,0.64000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.40000000 +4476,chr22,26523805,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +4477,chr22,26526728,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.84000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +4478,chr22,26527189,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.11000000,0.00000000,,0.29113924,82.00000000,3.62831858,0.03658537,0.00000000,6.31000000 +4479,chr22,26527376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,0.98000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.00000000 +4480,chr22,26529987,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.03529412,0.00000000,6.01000000 +4481,chr22,26532169,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.82000000,0.00000000,,0.25287356,90.00000000,3.98230088,0.03333333,0.00000000,6.29000000 +4482,chr22,26533271,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.69000000 +4483,chr22,26571534,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.54000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.49000000 +4484,chr22,26576212,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,13.00000000,0.00000000,-0.47000000,0.00000000,,0.48214286,56.00000000,2.47787611,0.00000000,0.00000000,3.87000000 +4485,chr22,26577296,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.48000000,0.00000000,,0.22916667,56.00000000,2.47787611,0.12500000,0.00000000,5.91000000 +4486,chr22,26577808,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.99000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.15000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.95000000 +4487,chr22,26579103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.14000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.02380952,0.00000000,6.18000000 +4488,chr22,26579132,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.47619048,87.00000000,3.84955752,0.03448276,0.00000000,8.29000000 +4489,chr22,26580404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.89000000,0.00000000,,0.17977528,93.00000000,4.11504425,0.04301075,0.00000000,6.12000000 +4490,chr22,26580580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.17204301,96.00000000,4.24778761,0.02083333,0.00000000,6.03000000 +4491,chr22,26580806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,5.84000000 +4492,chr22,26581287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.39000000 +4493,chr22,26581871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-2.88000000,0.00000000,,0.20588235,104.00000000,4.60176991,0.01923077,0.00000000,6.68000000 +4494,chr22,26582376,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.69000000 +4495,chr22,26582412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.51000000 +4496,chr22,26582423,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.73000000 +4497,chr22,26582883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.07000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.29000000 +4498,chr22,26583205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,1.42000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,5.92000000 +4499,chr22,26583784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.05555556,0.00000000,5.79000000 +4500,chr22,26584579,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-2.27000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.70000000 +4501,chr22,26585075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.31000000 +4502,chr22,26585276,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.10000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +4503,chr22,26585698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.55000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,6.48000000 +4504,chr22,26585838,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.04545455,0.00000000,6.62000000 +4505,chr22,26585977,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,71.00000000,0.00000000,1.03000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.03030303,0.00000000,5.08000000 +4506,chr22,26586102,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.86000000 +4507,chr22,26586395,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.56000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,5.67000000 +4508,chr22,26586823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.29000000,0.00000000,,0.18181818,93.00000000,4.11504425,0.04301075,0.00000000,6.38000000 +4509,chr22,26587323,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.65000000,0.00000000,,0.26229508,62.00000000,2.74336283,0.01612903,0.00000000,6.35000000 +4510,chr22,26588672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,1.04000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.21000000 +4511,chr22,26590862,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-2.03000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.14000000 +4512,chr22,26596256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.11000000 +4513,chr22,26600003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.22972973,77.00000000,3.40707965,0.03896104,0.00000000,5.65000000 +4514,chr22,26601164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.26000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.15000000 +4515,chr22,26601305,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.75000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.00000000 +4516,chr22,26605751,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,2.65000000,0.00000000,,0.20512821,87.00000000,3.84955752,0.10344828,0.00000000,5.69000000 +4517,chr22,26606259,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.34000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.55000000 +4518,chr22,26607532,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,0.30000000,0.00000000,,0.26153846,72.00000000,3.18584071,0.09722222,0.00000000,5.65000000 +4519,chr22,26610225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.72000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,2.87000000 +4520,chr22,26610344,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +4521,chr22,26613669,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-1.44000000,0.00000000,,0.16666667,98.00000000,4.33628319,0.02040816,0.00000000,5.57000000 +4522,chr22,26614273,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-0.33000000,0.00000000,,0.11250000,80.00000000,3.53982301,0.00000000,0.00000000,5.10000000 +4523,chr22,26615496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,5.54000000 +4524,chr22,26618503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.18000000 +4525,chr22,26621336,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.12000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.32000000 +4526,chr22,26621471,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-0.17000000,0.00000000,,0.22115385,106.00000000,4.69026549,0.01886792,0.00000000,5.98000000 +4527,chr22,26623164,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.19000000,101.00000000,4.46902655,0.00990099,0.00000000,5.94000000 +4528,chr22,26624047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.95000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +4529,chr22,26624871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.65000000 +4530,chr22,26631950,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.74000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4531,chr22,26632485,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.52000000 +4532,chr22,26633581,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.81000000,0.00000000,,0.46969697,67.00000000,2.96460177,0.01492537,0.00000000,8.33000000 +4533,chr22,26634987,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +4534,chr22,26635034,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.50000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +4535,chr22,26637357,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.31000000 +4536,chr22,26637450,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.79000000,0.00000000,,0.52112676,72.00000000,3.18584071,0.01388889,0.00000000,4.48000000 +4537,chr22,26638374,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.54000000,0.00000000,,0.12903226,68.00000000,3.00884956,0.08823529,0.00000000,4.55000000 +4538,chr22,26638410,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.92000000,0.00000000,,0.30769231,67.00000000,2.96460177,0.02985075,0.00000000,6.05000000 +4539,chr22,26639301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,58.00000000,0.00000000,-1.02000000,0.00000000,,0.17647059,93.00000000,4.11504425,0.06451613,0.00000000,3.97000000 +4540,chr22,26641724,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.51000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.99000000 +4541,chr22,26641955,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,52.00000000,0.00000000,-0.15000000,0.00000000,,0.34615385,63.00000000,2.78761062,0.12698413,0.00000000,4.94000000 +4542,chr22,26642335,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,1.32000000,0.00000000,,0.16393443,67.00000000,2.96460177,0.08955224,0.00000000,4.74000000 +4543,chr22,26647847,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.30645161,68.00000000,3.00884956,0.08823529,0.00000000,6.29000000 +4544,chr22,26649934,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.88000000,0.00000000,,0.16831683,102.00000000,4.51327434,0.00980392,0.00000000,6.53000000 +4545,chr22,26650721,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.00000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.02298851,0.00000000,5.99000000 +4546,chr22,26652043,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,48.00000000,0.00000000,0.04000000,0.00000000,,0.38666667,75.00000000,3.31858407,0.00000000,0.00000000,4.36000000 +4547,chr22,26653047,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.18000000,0.00000000,,0.52380952,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +4548,chr22,26654015,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,102.00000000,0.00000000,0.45000000,0.00000000,,0.37288136,59.00000000,2.61061947,0.00000000,0.00000000,13.76000000 +4549,chr22,26656370,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-2.19000000,0.00000000,,0.42028986,74.00000000,3.27433628,0.06756757,0.00000000,4.37000000 +4550,chr22,26657156,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-2.18000000,0.00000000,,0.38554217,83.00000000,3.67256637,0.00000000,0.00000000,8.95000000 +4551,chr22,26657315,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +4552,chr22,26659025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,1.48000000,0.00000000,,0.18446602,105.00000000,4.64601770,0.00952381,0.00000000,6.61000000 +4553,chr22,26660554,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,1.42000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,5.75000000 +4554,chr22,26661475,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.77000000,0.00000000,,0.23214286,57.00000000,2.52212389,0.00000000,0.00000000,7.04000000 +4555,chr22,26666965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,59.00000000,0.00000000,0.24000000,0.00000000,,0.15254237,62.00000000,2.74336283,0.03225806,0.00000000,3.92000000 +4556,chr22,26669405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.83000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.68000000 +4557,chr22,26670771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.21000000,0.00000000,,0.11688312,79.00000000,3.49557522,0.02531646,0.00000000,4.93000000 +4558,chr22,26672739,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.00000000,0.00000000,,0.19191919,99.00000000,4.38053097,0.00000000,0.00000000,6.16000000 +4559,chr22,26673035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.26000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +4560,chr22,26673594,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.82000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.95000000 +4561,chr22,26674341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +4562,chr22,26678340,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-2.06000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.58000000 +4563,chr22,26679318,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.65000000 +4564,chr22,26680070,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.60000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.48000000 +4565,chr22,26681111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.96000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,6.08000000 +4566,chr22,26694216,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.61000000 +4567,chr22,26695787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.94000000 +4568,chr22,26697239,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.56000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +4569,chr22,26697545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.64000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +4570,chr22,26698825,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,7.12000000 +4571,chr22,26699747,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-1.21000000,0.00000000,,0.16666667,99.00000000,4.38053097,0.03030303,0.00000000,5.57000000 +4572,chr22,26699809,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.77000000 +4573,chr22,26700035,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.54000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +4574,chr22,26700930,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.55000000,0.00000000,,0.24000000,105.00000000,4.64601770,0.04761905,0.00000000,5.76000000 +4575,chr22,26701879,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-2.23000000,0.00000000,,0.31250000,98.00000000,4.33628319,0.01020408,0.00000000,8.42000000 +4576,chr22,26704599,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.02000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.28000000 +4577,chr22,26704949,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,79.00000000,0.00000000,-1.55000000,0.00000000,,0.17171717,100.00000000,4.42477876,0.01000000,0.00000000,5.25000000 +4578,chr22,26708477,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.27000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +4579,chr22,26711581,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.25000000 +4580,chr22,26713512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.34000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.12000000 +4581,chr22,26714296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.54000000 +4582,chr22,26714423,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.29000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +4583,chr22,26715358,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,82.00000000,0.00000000,0.21000000,0.00000000,,0.18556701,98.00000000,4.33628319,0.00000000,0.00000000,6.07000000 +4584,chr22,26716005,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.83000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +4585,chr22,26717133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.37000000 +4586,chr22,26724197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.72000000 +4587,chr22,26757283,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,-0.14000000,0.00000000,,0.16853933,91.00000000,4.02654867,0.02197802,0.00000000,6.23000000 +4588,chr22,26765958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.62000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,7.15000000 +4589,chr22,26766944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.29000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.40000000 +4590,chr22,26767327,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,1.51000000,0.00000000,,0.35526316,76.00000000,3.36283186,0.00000000,0.00000000,8.30000000 +4591,chr22,26767719,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,92.00000000,0.00000000,-1.05000000,0.00000000,,0.30952381,86.00000000,3.80530973,0.02325581,0.00000000,6.17000000 +4592,chr22,26767843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.73000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.56000000 +4593,chr22,26771385,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.72000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,5.87000000 +4594,chr22,26771485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.22000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.89000000 +4595,chr22,26774843,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.79000000,0.00000000,,0.21276596,94.00000000,4.15929204,0.00000000,0.00000000,6.97000000 +4596,chr22,26775738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +4597,chr22,26777571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +4598,chr22,26778036,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,4.89000000 +4599,chr22,26779075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +4600,chr22,26781782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,5.89000000 +4601,chr22,26783530,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.68000000,0.00000000,,0.23404255,95.00000000,4.20353982,0.01052632,0.00000000,6.52000000 +4602,chr22,26786576,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.00000000,0.00000000,8.82000000 +4603,chr22,26787528,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.22000000,0.00000000,,0.40206186,100.00000000,4.42477876,0.02000000,0.00000000,8.25000000 +4604,chr22,26788206,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.67000000,0.00000000,,0.42682927,82.00000000,3.62831858,0.00000000,0.00000000,8.24000000 +4605,chr22,26789992,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.44285714,70.00000000,3.09734513,0.00000000,0.00000000,8.56000000 +4606,chr22,26790148,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.52000000,0.00000000,,0.47142857,71.00000000,3.14159292,0.01408451,0.00000000,8.42000000 +4607,chr22,26790250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,1.49000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.09000000 +4608,chr22,26790358,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,0.21000000,0.00000000,,0.37647059,86.00000000,3.80530973,0.01162791,0.00000000,8.43000000 +4609,chr22,26790392,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,0.67000000,0.00000000,,0.40404040,100.00000000,4.42477876,0.01000000,0.00000000,8.45000000 +4610,chr22,26790752,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.44444444,63.00000000,2.78761062,0.00000000,0.00000000,8.61000000 +4611,chr22,26791742,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,8.52000000 +4612,chr22,26794771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.07000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.70000000 +4613,chr22,26796438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.20000000,0.00000000,,0.12195122,86.00000000,3.80530973,0.02325581,0.00000000,5.11000000 +4614,chr22,26796497,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,-0.13000000,0.00000000,,0.10769231,67.00000000,2.96460177,0.02985075,0.00000000,4.98000000 +4615,chr22,26796900,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.12000000,0.00000000,,0.32857143,72.00000000,3.18584071,0.01388889,0.00000000,4.44000000 +4616,chr22,26797867,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.52000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.30000000 +4617,chr22,26798124,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.67000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.67000000 +4618,chr22,26798794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,2.16000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.02127660,0.00000000,5.61000000 +4619,chr22,26814489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.32000000,0.00000000,,0.18750000,96.00000000,4.24778761,0.00000000,0.00000000,6.30000000 +4620,chr22,26815300,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.96000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.00000000,0.00000000,6.46000000 +4621,chr22,26815539,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.93000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +4622,chr22,26830444,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.13000000,0.00000000,,0.47272727,56.00000000,2.47787611,0.01785714,0.00000000,4.22000000 +4623,chr22,26830595,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,8.35000000 +4624,chr22,26831491,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,58.00000000,0.00000000,-0.01000000,0.00000000,,0.45569620,80.00000000,3.53982301,0.01250000,0.00000000,6.30000000 +4625,chr22,26832947,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,0.85000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,8.22000000 +4626,chr22,26833014,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,80.00000000,0.00000000,0.23000000,0.00000000,,0.44736842,81.00000000,3.58407080,0.04938272,0.00000000,7.99000000 +4627,chr22,26833383,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.48717949,79.00000000,3.49557522,0.01265823,0.00000000,8.41000000 +4628,chr22,26834014,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,1.47000000,0.00000000,,0.41860465,92.00000000,4.07079646,0.06521739,0.00000000,8.09000000 +4629,chr22,26834417,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.01136364,0.00000000,8.94000000 +4630,chr22,26834423,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.85000000,0.00000000,,0.38823529,86.00000000,3.80530973,0.01162791,0.00000000,8.93000000 +4631,chr22,26835167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.49000000 +4632,chr22,26835440,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.46067416,90.00000000,3.98230088,0.01111111,0.00000000,7.81000000 +4633,chr22,26835670,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.37000000,0.00000000,,0.47126437,94.00000000,4.15929204,0.04255319,0.00000000,8.26000000 +4634,chr22,26838208,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.78000000,0.00000000,,0.41558442,79.00000000,3.49557522,0.01265823,0.00000000,8.57000000 +4635,chr22,26838459,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,38.00000000,0.00000000,-0.07000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,3.70000000 +4636,chr22,26847702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.52000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.17000000 +4637,chr22,26847956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.55000000 +4638,chr22,26848722,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.67000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.25000000 +4639,chr22,26848913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.40000000 +4640,chr22,26849174,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.06000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.62000000 +4641,chr22,26849379,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.30508475,61.00000000,2.69911504,0.03278689,0.00000000,6.65000000 +4642,chr22,26850107,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,6.58000000 +4643,chr22,26850574,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.23170732,93.00000000,4.11504425,0.11827957,0.00000000,6.03000000 +4644,chr22,26852062,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.70000000 +4645,chr22,26853921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.37000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.51000000 +4646,chr22,26855018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.03000000,0.00000000,,0.25000000,104.00000000,4.60176991,0.00000000,0.00000000,6.43000000 +4647,chr22,26855404,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.20000000 +4648,chr22,26855565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.72000000 +4649,chr22,26856880,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.62000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.16000000 +4650,chr22,26857057,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.16000000,78.00000000,3.45132743,0.03846154,0.00000000,5.54000000 +4651,chr22,26857380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.91000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,5.98000000 +4652,chr22,26857597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +4653,chr22,26859185,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,1.23000000,0.00000000,,0.12345679,83.00000000,3.67256637,0.02409639,0.00000000,4.84000000 +4654,chr22,26859450,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.21000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +4655,chr22,26859727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +4656,chr22,26859972,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.24000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,3.02000000 +4657,chr22,26860117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.55000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.86000000 +4658,chr22,26860332,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.20000000,0.00000000,,0.21276596,98.00000000,4.33628319,0.03061224,0.00000000,6.20000000 +4659,chr22,26860579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,60.00000000,0.00000000,-0.35000000,0.00000000,,0.12222222,91.00000000,4.02654867,0.01098901,0.00000000,4.73000000 +4660,chr22,26860625,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.94000000 +4661,chr22,26860965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.26000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.97000000 +4662,chr22,26860979,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.19000000,0.00000000,,0.14084507,74.00000000,3.27433628,0.04054054,0.00000000,3.59000000 +4663,chr22,26861257,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.61000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.90000000 +4664,chr22,26861448,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-2.45000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.59000000 +4665,chr22,26862690,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.19000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.03571429,0.00000000,5.80000000 +4666,chr22,26863116,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +4667,chr22,26863621,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.72000000,0.00000000,,0.23809524,67.00000000,2.96460177,0.05970149,0.00000000,6.12000000 +4668,chr22,26864676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,75.00000000,0.00000000,-0.27000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.50000000 +4669,chr22,26864720,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,0.15000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.00000000,0.00000000,6.03000000 +4670,chr22,26865086,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,-1.12000000,0.00000000,,0.26213592,103.00000000,4.55752212,0.00000000,0.00000000,7.07000000 +4671,chr22,26868923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,1.36000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.01562500,0.00000000,5.56000000 +4672,chr22,26871648,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,0.28000000,0.00000000,,0.25274725,93.00000000,4.11504425,0.02150538,0.00000000,6.25000000 +4673,chr22,26873286,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,82.00000000,0.00000000,-1.49000000,0.00000000,,0.18556701,97.00000000,4.29203540,0.00000000,0.00000000,5.99000000 +4674,chr22,26873287,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,82.00000000,0.00000000,-1.13000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,5.74000000 +4675,chr22,26876432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,67.00000000,0.00000000,-1.69000000,0.00000000,,0.29292929,114.00000000,5.04424779,0.11403509,0.00000000,5.74000000 +4676,chr22,26877101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.52000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,5.04000000 +4677,chr22,26877133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-1.16000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.12000000 +4678,chr22,26878482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.35000000 +4679,chr22,26878612,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.31000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,6.83000000 +4680,chr22,26878935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.08000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.89000000 +4681,chr22,26879813,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.85000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.67000000 +4682,chr22,26880271,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.23376623,80.00000000,3.53982301,0.03750000,0.00000000,6.30000000 +4683,chr22,26880332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.82000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.36000000 +4684,chr22,26880489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.40000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.37000000 +4685,chr22,26882651,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +4686,chr22,26883739,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-1.13000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.00000000,0.00000000,7.03000000 +4687,chr22,26885517,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.46000000,0.00000000,,0.15662651,85.00000000,3.76106195,0.02352941,0.00000000,5.96000000 +4688,chr22,26897332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.31000000 +4689,chr22,26904121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.95000000,0.00000000,,0.12000000,80.00000000,3.53982301,0.06250000,0.00000000,5.07000000 +4690,chr22,26905174,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,2.57000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,5.62000000 +4691,chr22,26905515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,1.42000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,4.31000000 +4692,chr22,26905968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.01315789,0.00000000,5.23000000 +4693,chr22,26906163,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.31000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +4694,chr22,26906668,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.90000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.75000000 +4695,chr22,26907182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,2.39000000,0.00000000,,0.25000000,103.00000000,4.55752212,0.02912621,0.00000000,6.08000000 +4696,chr22,26907598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.15000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,5.81000000 +4697,chr22,26907792,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.36000000,0.00000000,,0.29885057,93.00000000,4.11504425,0.06451613,0.00000000,6.23000000 +4698,chr22,26908016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.29000000,0.00000000,,0.34375000,72.00000000,3.18584071,0.11111111,0.00000000,7.83000000 +4699,chr22,26908431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.70000000,0.00000000,,0.28985507,70.00000000,3.09734513,0.01428571,0.00000000,5.94000000 +4700,chr22,26908532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.30000000 +4701,chr22,26908709,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.41000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +4702,chr22,26908772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.27000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,6.48000000 +4703,chr22,26908970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-1.25000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.45000000 +4704,chr22,26909217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,-0.87000000,0.00000000,,0.26530612,99.00000000,4.38053097,0.01010101,0.00000000,6.22000000 +4705,chr22,26909599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.71000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +4706,chr22,26909818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,2.01000000,0.00000000,,0.24509804,102.00000000,4.51327434,0.00000000,0.00000000,5.89000000 +4707,chr22,26911759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.92000000 +4708,chr22,26913527,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.44000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.61000000 +4709,chr22,26932168,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.48000000,0.00000000,,0.22916667,99.00000000,4.38053097,0.02020202,0.00000000,6.30000000 +4710,chr22,26938615,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.91000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.02325581,0.00000000,5.89000000 +4711,chr22,26940784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,91.00000000,0.00000000,0.30000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.01123596,0.00000000,5.44000000 +4712,chr22,26941085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.62000000,0.00000000,,0.23636364,57.00000000,2.52212389,0.03508772,0.00000000,6.60000000 +4713,chr22,26942478,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.08000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.22000000 +4714,chr22,26942856,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.73000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +4715,chr22,26943251,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,1.18000000,0.00000000,,0.20689655,62.00000000,2.74336283,0.06451613,0.00000000,5.58000000 +4716,chr22,26952718,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.37000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +4717,chr22,26954203,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,78.00000000,0.00000000,0.02000000,0.00000000,,0.24096386,92.00000000,4.07079646,0.09782609,0.00000000,5.73000000 +4718,chr22,26954401,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.01000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +4719,chr22,26959196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-1.13000000,0.00000000,,0.10309278,97.00000000,4.29203540,0.00000000,0.00000000,5.53000000 +4720,chr22,26959385,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.02000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.71000000 +4721,chr22,26964199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.95000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,6.62000000 +4722,chr22,26965001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,94.00000000,0.00000000,0.13000000,0.00000000,,0.29787234,94.00000000,4.15929204,0.00000000,0.00000000,5.57000000 +4723,chr22,26966185,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.27000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,5.85000000 +4724,chr22,26966271,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +4725,chr22,26966804,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.25000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.34000000 +4726,chr22,26967669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,1.43000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,5.94000000 +4727,chr22,26977373,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.36000000 +4728,chr22,26977599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,72.00000000,0.00000000,1.21000000,0.00000000,,0.13861386,103.00000000,4.55752212,0.00970874,0.00000000,5.16000000 +4729,chr22,26979566,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,0.60000000,0.00000000,,0.37704918,64.00000000,2.83185841,0.04687500,0.00000000,6.92000000 +4730,chr22,26980080,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,0.92000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.93000000 +4731,chr22,26980627,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +4732,chr22,26980947,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.82000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4733,chr22,26980998,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.69000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4734,chr22,26981506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.01000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.66000000 +4735,chr22,26981606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.73000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +4736,chr22,26982368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.54000000 +4737,chr22,26982921,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.91000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.02816901,0.00000000,6.20000000 +4738,chr22,26984498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-0.16000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +4739,chr22,26984767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.49000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.20000000 +4740,chr22,26985426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.13000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.64000000 +4741,chr22,26985874,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,2.01000000,0.00000000,,0.09722222,73.00000000,3.23008850,0.01369863,0.00000000,4.81000000 +4742,chr22,26986169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.76000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +4743,chr22,26987652,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,0.34000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +4744,chr22,26987923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,-0.72000000,0.00000000,,0.21000000,103.00000000,4.55752212,0.02912621,0.00000000,6.10000000 +4745,chr22,26988602,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.00000000,0.00000000,,0.18478261,97.00000000,4.29203540,0.03092784,0.00000000,6.04000000 +4746,chr22,26991097,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,6.25000000 +4747,chr22,26993867,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.58000000,0.00000000,,0.23170732,91.00000000,4.02654867,0.09890110,0.00000000,6.06000000 +4748,chr22,26994868,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.86000000,0.00000000,,0.24038462,107.00000000,4.73451327,0.02803738,0.00000000,6.24000000 +4749,chr22,26995517,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.37000000 +4750,chr22,26996111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,1.46000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,5.74000000 +4751,chr22,26996302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.02469136,0.00000000,4.88000000 +4752,chr22,26996309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,0.89000000,0.00000000,,0.11250000,82.00000000,3.62831858,0.02439024,0.00000000,4.76000000 +4753,chr22,26997418,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.42000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.86000000 +4754,chr22,26997886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.38000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.46000000 +4755,chr22,26997987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.29000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.93000000 +4756,chr22,26998880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.05000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +4757,chr22,26999133,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.70000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.01639344,0.00000000,5.38000000 +4758,chr22,26999263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,5.13000000 +4759,chr22,26999307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.96000000,0.00000000,,0.15714286,72.00000000,3.18584071,0.02777778,0.00000000,5.08000000 +4760,chr22,26999646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.15000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.92000000 +4761,chr22,27000323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.34000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.96000000 +4762,chr22,27007749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.68000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +4763,chr22,27008728,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.22727273,70.00000000,3.09734513,0.04285714,0.00000000,6.21000000 +4764,chr22,27009395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.89000000 +4765,chr22,27010742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.49000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,5.99000000 +4766,chr22,27010949,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-1.51000000,0.00000000,,0.30666667,77.00000000,3.40707965,0.02597403,0.00000000,6.34000000 +4767,chr22,27013726,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,56.00000000,0.00000000,0.52000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.07692308,0.00000000,2.94000000 +4768,chr22,27019050,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,5.72000000 +4769,chr22,27019377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,-1.65000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.76000000 +4770,chr22,27020680,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +4771,chr22,27025880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,0.86000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.18000000 +4772,chr22,27029827,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.77000000,0.00000000,,0.48648649,74.00000000,3.27433628,0.00000000,0.00000000,8.95000000 +4773,chr22,27082695,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.35000000,0.00000000,,0.26373626,92.00000000,4.07079646,0.01086957,0.00000000,5.98000000 +4774,chr22,27096373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.70000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +4775,chr22,27102885,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.31000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.87000000 +4776,chr22,27139269,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,1.43000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,2.77000000 +4777,chr22,27139476,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.31000000,0.00000000,,0.26666667,61.00000000,2.69911504,0.01639344,0.00000000,6.00000000 +4778,chr22,27139610,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.91000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.01000000 +4779,chr22,27141541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.66000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.72000000 +4780,chr22,27158668,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.10000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.03896104,0.00000000,6.08000000 +4781,chr22,27161967,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.68000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,8.93000000 +4782,chr22,27163450,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,50.00000000,0.00000000,-0.42000000,0.00000000,,0.48571429,75.00000000,3.31858407,0.04000000,0.00000000,4.34000000 +4783,chr22,27166948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.31666667,62.00000000,2.74336283,0.03225806,0.00000000,7.33000000 +4784,chr22,27175324,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.17000000 +4785,chr22,27197006,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.21000000,0.00000000,,0.12280702,57.00000000,2.52212389,0.00000000,0.00000000,4.99000000 +4786,chr22,27226684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,-1.36000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +4787,chr22,27226922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.91000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.01075269,0.00000000,6.97000000 +4788,chr22,27226946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.47000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.93000000 +4789,chr22,27227528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.03000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.96000000 +4790,chr22,27230944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.10000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.69000000 +4791,chr22,27231455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.17000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +4792,chr22,27232767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +4793,chr22,27234797,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.32000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.01388889,0.00000000,6.49000000 +4794,chr22,27235738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.00000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.56000000 +4795,chr22,27236635,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.15000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.62000000 +4796,chr22,27238338,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.17000000 +4797,chr22,27238838,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.15000000 +4798,chr22,27239302,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.02000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,7.05000000 +4799,chr22,27240177,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,5.53000000 +4800,chr22,27240185,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.65000000,0.00000000,,0.14754098,63.00000000,2.78761062,0.03174603,0.00000000,5.48000000 +4801,chr22,27245365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.02000000 +4802,chr22,27246957,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.15000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.39000000 +4803,chr22,27249931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.30000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.89000000 +4804,chr22,27251104,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.41000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +4805,chr22,27251328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,0.22000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,5.95000000 +4806,chr22,27252311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.74000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +4807,chr22,27258877,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.47000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.70000000 +4808,chr22,27259519,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.25000000,0.00000000,,0.29213483,91.00000000,4.02654867,0.02197802,0.00000000,6.72000000 +4809,chr22,27259984,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.93000000 +4810,chr22,27262363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,1.29000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.17000000 +4811,chr22,27263782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.15000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.06000000 +4812,chr22,27266376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-2.07000000,0.00000000,,0.14705882,68.00000000,3.00884956,0.00000000,0.00000000,5.21000000 +4813,chr22,27266674,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.98000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.01449275,0.00000000,6.55000000 +4814,chr22,27266876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +4815,chr22,27266973,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.22000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.26000000 +4816,chr22,27267205,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.35000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.31000000 +4817,chr22,27268378,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,58.00000000,0.00000000,-1.40000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,4.72000000 +4818,chr22,27269341,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.25000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.22000000 +4819,chr22,27270737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-0.46000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,5.95000000 +4820,chr22,27270779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19230769,53.00000000,2.34513274,0.01886792,0.00000000,5.73000000 +4821,chr22,27272548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,92.00000000,0.00000000,-0.72000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,5.08000000 +4822,chr22,27273098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,1.48000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,6.41000000 +4823,chr22,27273198,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +4824,chr22,27275121,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +4825,chr22,27275277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,1.38000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,5.69000000 +4826,chr22,27275557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.02531646,0.00000000,6.10000000 +4827,chr22,27275575,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.79000000 +4828,chr22,27275576,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.36000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.02352941,0.00000000,4.79000000 +4829,chr22,27275731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.18000000,0.00000000,,0.19101124,94.00000000,4.15929204,0.04255319,0.00000000,6.27000000 +4830,chr22,27276639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,0.00000000,-0.13000000,0.00000000,,0.35365854,84.00000000,3.71681416,0.01190476,0.00000000,6.38000000 +4831,chr22,27276836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,92.00000000,0.00000000,-0.92000000,0.00000000,,0.22916667,96.00000000,4.24778761,0.00000000,0.00000000,5.54000000 +4832,chr22,27276849,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,95.00000000,0.00000000,-1.37000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,5.79000000 +4833,chr22,27277219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.58000000 +4834,chr22,27277882,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.19000000 +4835,chr22,27277904,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,0.32000000,0.00000000,,0.19047619,88.00000000,3.89380531,0.03409091,0.00000000,5.71000000 +4836,chr22,27278332,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.37000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.95000000 +4837,chr22,27289708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,1.71000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,3.06000000 +4838,chr22,27319973,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.76000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.97000000 +4839,chr22,27322814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.63000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +4840,chr22,27323234,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +4841,chr22,27327098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,84.00000000,0.00000000,0.12000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.03488372,0.00000000,5.83000000 +4842,chr22,27329801,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.07000000 +4843,chr22,27330953,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.41000000 +4844,chr22,27330986,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.22000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,5.86000000 +4845,chr22,27331145,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.75000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.30000000 +4846,chr22,27332444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,62.00000000,0.00000000,0.64000000,0.00000000,,0.08571429,75.00000000,3.31858407,0.06666667,0.00000000,4.54000000 +4847,chr22,27333116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +4848,chr22,27333219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,7.01000000 +4849,chr22,27333473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-1.32000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.01162791,0.00000000,6.68000000 +4850,chr22,27334243,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,0.33000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,5.98000000 +4851,chr22,27334393,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.68000000 +4852,chr22,27334895,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.21000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +4853,chr22,27336703,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.92000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,7.44000000 +4854,chr22,27337028,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +4855,chr22,27338389,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.72000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +4856,chr22,27338444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.66000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +4857,chr22,27338855,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.56000000 +4858,chr22,27338996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.01000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +4859,chr22,27339307,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.91000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.31000000 +4860,chr22,27339614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,73.00000000,0.00000000,-0.58000000,0.00000000,,0.16470588,88.00000000,3.89380531,0.02272727,0.00000000,5.77000000 +4861,chr22,27340664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.26000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.89000000 +4862,chr22,27340807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,-0.81000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.03750000,0.00000000,5.66000000 +4863,chr22,27341063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.09000000,0.00000000,,0.12658228,79.00000000,3.49557522,0.00000000,0.00000000,5.87000000 +4864,chr22,27341196,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.95000000 +4865,chr22,27341293,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.86000000 +4866,chr22,27341613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.25742574,101.00000000,4.46902655,0.00000000,0.00000000,6.41000000 +4867,chr22,27344585,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.14141414,103.00000000,4.55752212,0.03883495,0.00000000,4.92000000 +4868,chr22,27344638,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.66000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +4869,chr22,27344882,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-1.07000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.57000000 +4870,chr22,27345486,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.13000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +4871,chr22,27345493,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.31000000 +4872,chr22,27345811,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.04000000,0.00000000,,0.23404255,95.00000000,4.20353982,0.01052632,0.00000000,6.49000000 +4873,chr22,27348038,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-1.67000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +4874,chr22,27348647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.82000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +4875,chr22,27348998,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.04000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +4876,chr22,27349647,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.15000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.84000000 +4877,chr22,27350678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.88000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,6.17000000 +4878,chr22,27350945,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,2.62000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,6.25000000 +4879,chr22,27351163,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.40000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +4880,chr22,27351290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.18390805,94.00000000,4.15929204,0.06382979,0.00000000,5.82000000 +4881,chr22,27351309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,5.95000000 +4882,chr22,27351342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,5.93000000 +4883,chr22,27351546,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.03947368,0.00000000,6.21000000 +4884,chr22,27351619,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,0.00000000,1.58000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.39000000 +4885,chr22,27352781,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.53000000,0.00000000,,0.24000000,79.00000000,3.49557522,0.01265823,0.00000000,6.54000000 +4886,chr22,27352792,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.35000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +4887,chr22,27352813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.53000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,3.85000000 +4888,chr22,27353417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.70000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.00000000,0.00000000,6.43000000 +4889,chr22,27353531,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.66000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +4890,chr22,27353559,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.92000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.01282051,0.00000000,6.48000000 +4891,chr22,27353654,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,83.00000000,0.00000000,0.92000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,5.85000000 +4892,chr22,27354447,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.25000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,5.67000000 +4893,chr22,27354464,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,1.49000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,5.79000000 +4894,chr22,27354896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,1.13000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.80000000 +4895,chr22,27355022,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.11000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +4896,chr22,27355194,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.95000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,3.22000000 +4897,chr22,27355266,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.01282051,0.00000000,6.75000000 +4898,chr22,27355316,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,48.00000000,0.00000000,0.50000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,2.76000000 +4899,chr22,27355474,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.14000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,6.66000000 +4900,chr22,27355493,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-0.17000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.24000000 +4901,chr22,27355559,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.83000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.75000000 +4902,chr22,27355615,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,74.00000000,0.00000000,-0.20000000,0.00000000,,0.16842105,99.00000000,4.38053097,0.04040404,0.00000000,5.59000000 +4903,chr22,27355618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.15306122,102.00000000,4.51327434,0.03921569,0.00000000,5.25000000 +4904,chr22,27356123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.43000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.17000000 +4905,chr22,27356822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-0.84000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,6.28000000 +4906,chr22,27358177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +4907,chr22,27358813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,0.78000000,0.00000000,,0.25274725,92.00000000,4.07079646,0.01086957,0.00000000,6.29000000 +4908,chr22,27359945,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,91.00000000,0.00000000,-1.13000000,0.00000000,,0.38043478,93.00000000,4.11504425,0.01075269,0.00000000,8.36000000 +4909,chr22,27360118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-0.58000000,0.00000000,,0.27472527,93.00000000,4.11504425,0.02150538,0.00000000,6.25000000 +4910,chr22,27360174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,0.56000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,5.85000000 +4911,chr22,27360339,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,0.99000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.52000000 +4912,chr22,27360478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,86.00000000,0.00000000,-0.14000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.01010101,0.00000000,5.93000000 +4913,chr22,27360552,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,88.00000000,0.00000000,-0.52000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.18000000 +4914,chr22,27361153,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.23000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.62000000 +4915,chr22,27362137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.66000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.66000000 +4916,chr22,27362239,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.38000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.23000000 +4917,chr22,27362352,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-0.01000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.56000000 +4918,chr22,27362529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,77.00000000,0.00000000,-1.21000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00961538,0.00000000,4.99000000 +4919,chr22,27362745,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-1.04000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +4920,chr22,27362880,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,2.07000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.00000000,0.00000000,6.45000000 +4921,chr22,27362930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,1.39000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,6.24000000 +4922,chr22,27362933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.39000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,5.71000000 +4923,chr22,27362977,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.59000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.39000000 +4924,chr22,27363217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,-0.26000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.16000000 +4925,chr22,27363238,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.69000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.75000000 +4926,chr22,27363338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.06000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.16000000 +4927,chr22,27363443,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.31000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,7.01000000 +4928,chr22,27363972,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.45000000 +4929,chr22,27364042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.73000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +4930,chr22,27364058,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.89000000 +4931,chr22,27364075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +4932,chr22,27364100,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.41000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +4933,chr22,27364125,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.00000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,8.95000000 +4934,chr22,27364206,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.30000000 +4935,chr22,27364421,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.61000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.23000000 +4936,chr22,27364536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.20408163,99.00000000,4.38053097,0.00000000,0.00000000,6.30000000 +4937,chr22,27364789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.78000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.04000000 +4938,chr22,27364835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.87000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +4939,chr22,27364893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-2.59000000,0.00000000,,0.28282828,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +4940,chr22,27365167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.23000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +4941,chr22,27365186,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.96000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,7.36000000 +4942,chr22,27365285,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.50000000,0.00000000,,0.31578947,98.00000000,4.33628319,0.03061224,0.00000000,6.98000000 +4943,chr22,27365547,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.72000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.75000000 +4944,chr22,27365653,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,1.27000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +4945,chr22,27365736,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.02000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.64000000 +4946,chr22,27366194,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.62000000,0.00000000,,0.45454545,88.00000000,3.89380531,0.00000000,0.00000000,8.76000000 +4947,chr22,27366253,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,84.00000000,0.00000000,-0.79000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.00000000,0.00000000,6.29000000 +4948,chr22,27366346,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,0.10000000,0.00000000,,0.20212766,98.00000000,4.33628319,0.04081633,0.00000000,5.64000000 +4949,chr22,27366738,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.18085106,94.00000000,4.15929204,0.00000000,0.00000000,6.56000000 +4950,chr22,27367145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.04651163,0.00000000,5.32000000 +4951,chr22,27367206,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.40579710,71.00000000,3.14159292,0.02816901,0.00000000,8.00000000 +4952,chr22,27367816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.63000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.63000000 +4953,chr22,27370797,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.22000000,0.00000000,,0.31250000,66.00000000,2.92035398,0.03030303,0.00000000,6.75000000 +4954,chr22,27373230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.28000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.50000000 +4955,chr22,27373428,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.69000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.90000000 +4956,chr22,27374261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.04347826,0.00000000,6.32000000 +4957,chr22,27375118,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.58000000,0.00000000,,0.43939394,68.00000000,3.00884956,0.02941176,0.00000000,7.92000000 +4958,chr22,27375949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.86000000,4.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.48000000 +4959,chr22,27377362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.68000000,0.00000000,,0.23170732,85.00000000,3.76106195,0.03529412,0.00000000,6.07000000 +4960,chr22,27377876,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,-1.18000000,0.00000000,,0.23913043,94.00000000,4.15929204,0.02127660,0.00000000,5.97000000 +4961,chr22,27378823,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.28000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.86000000 +4962,chr22,27380382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.93000000,0.00000000,,0.28089888,91.00000000,4.02654867,0.02197802,0.00000000,6.66000000 +4963,chr22,27380463,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,0.03000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,6.25000000 +4964,chr22,27381983,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.47500000,82.00000000,3.62831858,0.01219512,0.00000000,7.57000000 +4965,chr22,27383311,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.95000000,0.00000000,,0.31818182,88.00000000,3.89380531,0.00000000,0.00000000,6.84000000 +4966,chr22,27396509,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,61.00000000,0.00000000,1.17000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,5.51000000 +4967,chr22,27397328,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.86000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,5.98000000 +4968,chr22,27418121,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,45.00000000,0.00000000,-0.36000000,0.00000000,,0.49275362,70.00000000,3.09734513,0.01428571,0.00000000,4.19000000 +4969,chr22,27419774,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.50000000,67.00000000,2.96460177,0.01492537,0.00000000,8.22000000 +4970,chr22,27421156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.77000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +4971,chr22,27421339,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.70000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.00000000,0.00000000,5.95000000 +4972,chr22,27423421,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.11764706,0.00000000,20.00000000,0.00000000,-0.79000000,0.00000000,,0.48000000,60.00000000,2.65486726,0.16666667,0.00000000,3.76000000 +4973,chr22,27424790,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,0.00000000,1.75000000,0.00000000,,0.37931034,90.00000000,3.98230088,0.03333333,0.00000000,12.96000000 +4974,chr22,27426082,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,88.00000000,0.00000000,1.33000000,0.00000000,,0.57647059,89.00000000,3.93805310,0.04494382,0.00000000,7.87000000 +4975,chr22,27427372,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.16000000,0.00000000,,0.46153846,80.00000000,3.53982301,0.02500000,0.00000000,4.37000000 +4976,chr22,27427862,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.66000000,0.00000000,,0.42500000,80.00000000,3.53982301,0.00000000,0.00000000,7.94000000 +4977,chr22,27428102,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,97.00000000,0.00000000,0.62000000,0.00000000,,0.35294118,87.00000000,3.84955752,0.02298851,0.00000000,7.99000000 +4978,chr22,27432673,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,109.00000000,0.00000000,1.54000000,0.00000000,,0.41414141,102.00000000,4.51327434,0.02941176,0.00000000,13.52000000 +4979,chr22,27433142,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.56338028,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +4980,chr22,27433575,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,0.65000000,0.00000000,,0.59090909,67.00000000,2.96460177,0.01492537,0.00000000,6.00000000 +4981,chr22,27434813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.27000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.40000000 +4982,chr22,27434995,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.87000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.65000000 +4983,chr22,27435972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.80000000,0.00000000,,0.11111111,63.00000000,2.78761062,0.00000000,0.00000000,5.32000000 +4984,chr22,27437024,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,5.93000000 +4985,chr22,27438539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.01000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.34000000 +4986,chr22,27438578,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.02247191,0.00000000,5.82000000 +4987,chr22,27440141,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.57000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.95000000 +4988,chr22,27448709,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.45000000 +4989,chr22,27451357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.07000000,0.00000000,,0.22413793,59.00000000,2.61061947,0.00000000,0.00000000,6.56000000 +4990,chr22,27459105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.37000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.37000000 +4991,chr22,27462840,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.33000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +4992,chr22,27465961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.09000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.97000000 +4993,chr22,27466001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.63000000,0.00000000,,0.32954545,88.00000000,3.89380531,0.00000000,0.00000000,8.91000000 +4994,chr22,27466847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.03000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.39000000 +4995,chr22,27467014,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.48000000 +4996,chr22,27469101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.12500000,75.00000000,3.31858407,0.02666667,0.00000000,5.31000000 +4997,chr22,27473231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.28000000 +4998,chr22,27486617,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.01562500,0.00000000,6.40000000 +4999,chr22,27487575,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,70.00000000,0.00000000,0.00000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.54000000 +5000,chr22,27504943,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.40000000,0.00000000,,0.27536232,71.00000000,3.14159292,0.02816901,0.00000000,6.06000000 +5001,chr22,27505544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.15000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +5002,chr22,27507011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,62.00000000,0.00000000,-0.99000000,0.00000000,,0.17567568,78.00000000,3.45132743,0.05128205,0.00000000,5.16000000 +5003,chr22,27507146,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.92000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.80000000 +5004,chr22,27514798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.29487179,82.00000000,3.62831858,0.03658537,0.00000000,5.77000000 +5005,chr22,27516019,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.69000000 +5006,chr22,27517685,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,85.00000000,0.00000000,-0.41000000,0.00000000,,0.23000000,103.00000000,4.55752212,0.02912621,0.00000000,5.86000000 +5007,chr22,27517929,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.30000000 +5008,chr22,27518615,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.14000000 +5009,chr22,27519817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.80000000 +5010,chr22,27524805,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.55000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,5.54000000 +5011,chr22,27527438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.91000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.41000000 +5012,chr22,27538329,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.00000000,0.00000000,6.67000000 +5013,chr22,27539408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.32000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.65000000 +5014,chr22,27539863,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,38.00000000,0.00000000,0.05000000,0.00000000,,0.37500000,66.00000000,2.92035398,0.01515152,0.00000000,4.08000000 +5015,chr22,27541720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.02898551,0.00000000,5.35000000 +5016,chr22,27551899,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.56000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.01298701,0.00000000,6.56000000 +5017,chr22,27552006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,0.36000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.61000000 +5018,chr22,27552033,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,1.04000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,5.94000000 +5019,chr22,27553168,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.46000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.20000000 +5020,chr22,27553345,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,68.00000000,0.00000000,0.57000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.08000000 +5021,chr22,27554054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.72000000 +5022,chr22,27554592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,5.94000000 +5023,chr22,27555200,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.02531646,0.00000000,6.73000000 +5024,chr22,27556647,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.37000000,0.00000000,,0.13157895,77.00000000,3.40707965,0.01298701,0.00000000,5.39000000 +5025,chr22,27559449,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.18000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.85000000 +5026,chr22,27562165,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,54.00000000,0.00000000,0.62000000,0.00000000,,0.30909091,55.00000000,2.43362832,0.00000000,0.00000000,2.90000000 +5027,chr22,27563133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.67000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,7.36000000 +5028,chr22,27564348,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,7.09000000 +5029,chr22,27564619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.71000000 +5030,chr22,27564712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.67000000,0.00000000,,0.18644068,60.00000000,2.65486726,0.00000000,0.00000000,4.66000000 +5031,chr22,27564829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.20000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +5032,chr22,27565238,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,2.28000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,6.49000000 +5033,chr22,27565389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,70.00000000,0.00000000,0.22000000,0.00000000,,0.24657534,83.00000000,3.67256637,0.12048193,0.00000000,5.65000000 +5034,chr22,27565917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.19000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.00000000,0.00000000,6.35000000 +5035,chr22,27566270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.34000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.82000000 +5036,chr22,27566556,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.68000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.06000000 +5037,chr22,27567455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.07000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.47000000 +5038,chr22,27567481,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.73000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.00000000,0.00000000,6.40000000 +5039,chr22,27567547,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.30000000,0.00000000,,0.25714286,73.00000000,3.23008850,0.04109589,0.00000000,6.35000000 +5040,chr22,27568420,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.56000000 +5041,chr22,27568465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.74000000 +5042,chr22,27569133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.76000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.63000000 +5043,chr22,27569409,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,1.04000000,0.00000000,,0.41428571,70.00000000,3.09734513,0.00000000,0.00000000,5.86000000 +5044,chr22,27569514,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.78000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +5045,chr22,27570694,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.35000000 +5046,chr22,27571314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.71000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,5.96000000 +5047,chr22,27572098,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.15000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.04000000,0.00000000,6.03000000 +5048,chr22,27572247,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,6.14000000 +5049,chr22,27576518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,3.10000000 +5050,chr22,27583189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +5051,chr22,27583507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.70000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.04000000 +5052,chr22,27583832,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.00000000,0.00000000,7.09000000 +5053,chr22,27584479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.39000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.71000000 +5054,chr22,27588073,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-1.37000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,5.26000000 +5055,chr22,27589528,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,0.97000000,0.00000000,,0.16000000,101.00000000,4.46902655,0.00990099,0.00000000,5.72000000 +5056,chr22,27590049,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.00000000,0.00000000,6.34000000 +5057,chr22,27590751,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,1.88000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,5.95000000 +5058,chr22,27592273,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,0.67000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.94000000 +5059,chr22,27592437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.03000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,6.32000000 +5060,chr22,27593990,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.01000000 +5061,chr22,27596452,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.11000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.00000000,0.00000000,5.91000000 +5062,chr22,27597937,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.81000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +5063,chr22,27603179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.14000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +5064,chr22,27604677,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,44.00000000,0.00000000,1.68000000,0.00000000,,0.36170213,48.00000000,2.12389381,0.00000000,0.00000000,4.20000000 +5065,chr22,27604895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.48000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.00000000,0.00000000,6.68000000 +5066,chr22,27609768,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.11000000 +5067,chr22,27611217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.11000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-2.85000000,0.00000000,,0.06849315,75.00000000,3.31858407,0.01333333,0.00000000,4.32000000 +5068,chr22,27611309,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.86000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-1.21000000,0.00000000,,0.15730337,97.00000000,4.29203540,0.07216495,0.00000000,5.34000000 +5069,chr22,27611780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.74000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.41000000 +5070,chr22,27612144,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,0.95000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.00000000,0.00000000,5.92000000 +5071,chr22,27612897,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.22000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +5072,chr22,27613043,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.39000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +5073,chr22,27615523,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.10000000,0.00000000,,0.26785714,60.00000000,2.65486726,0.06666667,0.00000000,2.79000000 +5074,chr22,27616299,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,5.71000000 +5075,chr22,27617922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.20512821,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.17333333,88.00000000,3.89380531,0.14772727,0.00000000,5.22000000 +5076,chr22,27619167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,75.00000000,0.00000000,-1.06000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.42000000 +5077,chr22,27619184,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-1.24000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.88000000 +5078,chr22,27619529,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.44000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,5.89000000 +5079,chr22,27619885,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,6.36000000 +5080,chr22,27619890,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.36000000 +5081,chr22,27619953,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.29629630,55.00000000,2.43362832,0.01818182,0.00000000,6.58000000 +5082,chr22,27619962,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.31481481,55.00000000,2.43362832,0.01818182,0.00000000,7.57000000 +5083,chr22,27620010,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.38000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.92000000 +5084,chr22,27620025,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.17000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.59000000 +5085,chr22,27620110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.21276596,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +5086,chr22,27620192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.66000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.36000000 +5087,chr22,27620725,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.73000000 +5088,chr22,27620781,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-1.10000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.35000000 +5089,chr22,27626062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.49000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,5.83000000 +5090,chr22,27631167,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.46000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,7.08000000 +5091,chr22,27632218,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.13000000,0.00000000,,0.21666667,64.00000000,2.83185841,0.06250000,0.00000000,6.29000000 +5092,chr22,27632234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.26000000,0.00000000,,0.20634921,68.00000000,3.00884956,0.07352941,0.00000000,6.00000000 +5093,chr22,27632981,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.29000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,5.95000000 +5094,chr22,27633395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.39000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,7.18000000 +5095,chr22,27633718,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.24000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.09000000 +5096,chr22,27634124,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,0.00000000,1.33000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.02272727,0.00000000,5.56000000 +5097,chr22,27634658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.58000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.25000000 +5098,chr22,27634671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,6.33000000 +5099,chr22,27634683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.67000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.41000000 +5100,chr22,27637859,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.14000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +5101,chr22,27637994,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +5102,chr22,27638335,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.19000000 +5103,chr22,27638385,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-0.11000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +5104,chr22,27639281,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,0.58000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,5.47000000 +5105,chr22,27639429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.43000000 +5106,chr22,27639448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,1.67000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,5.93000000 +5107,chr22,27639579,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,0.00000000,-1.49000000,0.00000000,,0.51351351,75.00000000,3.31858407,0.01333333,0.00000000,4.15000000 +5108,chr22,27640044,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.12000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +5109,chr22,27640186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.08000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +5110,chr22,27640243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.04166667,0.00000000,6.33000000 +5111,chr22,27641723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.63000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.53000000 +5112,chr22,27643236,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.31000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.00000000,0.00000000,6.19000000 +5113,chr22,27643518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,81.00000000,0.00000000,1.00000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.85000000 +5114,chr22,27645814,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.78000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +5115,chr22,27646848,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.69000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.01219512,0.00000000,6.14000000 +5116,chr22,27648090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,1.15000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.36000000 +5117,chr22,27650309,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.57000000,0.00000000,,0.17647059,51.00000000,2.25663717,0.00000000,0.00000000,6.03000000 +5118,chr22,27650476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,-1.44000000,0.00000000,,0.28571429,82.00000000,3.62831858,0.06097561,0.00000000,6.30000000 +5119,chr22,27652985,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,0.74000000,0.00000000,,0.18072289,86.00000000,3.80530973,0.02325581,0.00000000,5.78000000 +5120,chr22,27658325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.20000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +5121,chr22,27660137,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.08000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,5.95000000 +5122,chr22,27661503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.82000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.46000000 +5123,chr22,27662772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.89000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,5.74000000 +5124,chr22,27663889,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.93000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.08000000 +5125,chr22,27667264,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.66000000 +5126,chr22,27667383,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.43000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.46000000 +5127,chr22,27670623,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-1.43000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.02777778,0.00000000,5.30000000 +5128,chr22,27671258,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,1.17000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.62000000 +5129,chr22,27671685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,0.00000000,-0.50000000,0.00000000,,0.36956522,47.00000000,2.07964602,0.00000000,0.00000000,4.06000000 +5130,chr22,27672633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.48000000,0.00000000,,0.22807018,60.00000000,2.65486726,0.05000000,0.00000000,6.67000000 +5131,chr22,27672886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.90000000 +5132,chr22,27673662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,73.00000000,0.00000000,0.49000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,4.79000000 +5133,chr22,27673805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.04000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,5.88000000 +5134,chr22,27674138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.41000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5135,chr22,27675292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.04000000,0.00000000,,0.14457831,83.00000000,3.67256637,0.00000000,0.00000000,5.86000000 +5136,chr22,27675539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.08000000,0.00000000,,0.15873016,65.00000000,2.87610619,0.03076923,0.00000000,5.38000000 +5137,chr22,27675849,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +5138,chr22,27677268,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-1.44000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +5139,chr22,27677273,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.12000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +5140,chr22,27682169,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.31000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.04761905,0.00000000,5.35000000 +5141,chr22,27682746,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.17000000,0.00000000,,0.11538462,53.00000000,2.34513274,0.01886792,0.00000000,4.70000000 +5142,chr22,27686718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.15652174,117.00000000,5.17699115,0.01709402,0.00000000,5.34000000 +5143,chr22,27687523,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-2.61000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.48000000 +5144,chr22,27696990,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.44927536,72.00000000,3.18584071,0.02777778,0.00000000,8.50000000 +5145,chr22,27697394,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.52000000,0.00000000,,0.53246753,77.00000000,3.40707965,0.00000000,0.00000000,8.24000000 +5146,chr22,27697714,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.52000000,78.00000000,3.45132743,0.02564103,0.00000000,4.70000000 +5147,chr22,27702146,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.35365854,83.00000000,3.67256637,0.01204819,0.00000000,8.54000000 +5148,chr22,27702680,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.73000000,0.00000000,,0.41666667,88.00000000,3.89380531,0.03409091,0.00000000,8.19000000 +5149,chr22,27702743,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,14.00000000,0.00000000,-0.27000000,0.00000000,,0.42666667,75.00000000,3.31858407,0.00000000,0.00000000,3.14000000 +5150,chr22,27705368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.47000000,0.00000000,,0.24590164,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +5151,chr22,27709853,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,107.00000000,0.00000000,-1.35000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,14.21000000 +5152,chr22,27710210,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.69000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +5153,chr22,27711078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.37000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.37000000 +5154,chr22,27712382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.34000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.28000000 +5155,chr22,27713284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.84000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.92000000 +5156,chr22,27713340,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.68000000 +5157,chr22,27715817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.41000000 +5158,chr22,27718170,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +5159,chr22,27718504,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.00000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.75000000 +5160,chr22,27719063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +5161,chr22,27719358,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.83000000,0.00000000,,0.46575342,78.00000000,3.45132743,0.03846154,0.00000000,8.35000000 +5162,chr22,27719594,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.69000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.46000000 +5163,chr22,27719606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.37000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.44000000 +5164,chr22,27719681,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.75000000,0.00000000,,0.16923077,67.00000000,2.96460177,0.02985075,0.00000000,6.09000000 +5165,chr22,27720781,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +5166,chr22,27721025,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.01000000,0.00000000,,0.32500000,81.00000000,3.58407080,0.01234568,0.00000000,8.69000000 +5167,chr22,27721309,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,120.00000000,0.00000000,-0.80000000,0.00000000,,0.39130435,74.00000000,3.27433628,0.06756757,0.00000000,10.47000000 +5168,chr22,27721795,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,-0.47000000,0.00000000,,0.31578947,77.00000000,3.40707965,0.00000000,0.00000000,8.95000000 +5169,chr22,27721981,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.16000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +5170,chr22,27722319,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.59000000 +5171,chr22,27722817,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.82000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +5172,chr22,27723571,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +5173,chr22,27727282,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,84.00000000,0.00000000,-0.12000000,0.00000000,,0.27027027,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +5174,chr22,27727698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.32000000,78.00000000,3.45132743,0.03846154,0.00000000,8.25000000 +5175,chr22,27728750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.31000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.09000000 +5176,chr22,27729508,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.59000000,0.00000000,,0.26760563,73.00000000,3.23008850,0.02739726,0.00000000,6.89000000 +5177,chr22,27729747,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.66000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +5178,chr22,27730164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +5179,chr22,27730610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.47000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +5180,chr22,27731272,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.02000000,0.00000000,,0.27450980,52.00000000,2.30088496,0.01923077,0.00000000,4.78000000 +5181,chr22,27737442,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.18000000,0.00000000,,0.27777778,93.00000000,4.11504425,0.02150538,0.00000000,6.22000000 +5182,chr22,27739238,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.15000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.39000000 +5183,chr22,27747056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.74000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.84000000 +5184,chr22,27750747,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,62.00000000,0.00000000,1.97000000,0.00000000,,0.10937500,74.00000000,3.27433628,0.13513514,0.00000000,4.23000000 +5185,chr22,27753172,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.63000000 +5186,chr22,27755132,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.34000000 +5187,chr22,27756613,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.13000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.60000000 +5188,chr22,27759464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.05000000 +5189,chr22,27760800,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.00000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.02666667,0.00000000,6.27000000 +5190,chr22,27764419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,90.00000000,0.00000000,0.42000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,5.53000000 +5191,chr22,27764996,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.61000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.03703704,0.00000000,6.29000000 +5192,chr22,27770414,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,2.22000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +5193,chr22,27772359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.15789474,83.00000000,3.67256637,0.08433735,0.00000000,5.52000000 +5194,chr22,27774229,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.23684211,81.00000000,3.58407080,0.06172840,0.00000000,5.94000000 +5195,chr22,27776589,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-2.08000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.75000000 +5196,chr22,27777042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +5197,chr22,27777910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,0.35000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.76000000 +5198,chr22,27779174,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.54000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,6.54000000 +5199,chr22,27779753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.77000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,5.78000000 +5200,chr22,27790075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,6.35000000 +5201,chr22,27868702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.16000000,0.00000000,,0.19587629,97.00000000,4.29203540,0.00000000,0.00000000,6.43000000 +5202,chr22,27896145,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.22000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,5.95000000 +5203,chr22,27903247,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.55000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,6.30000000 +5204,chr22,27945907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-1.35000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.00000000,0.00000000,6.56000000 +5205,chr22,27950866,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.65000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.83000000 +5206,chr22,27978658,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,6.25000000 +5207,chr22,27985819,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.40000000 +5208,chr22,28017413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,6.59000000 +5209,chr22,28040491,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.10000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +5210,chr22,28101559,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.22000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +5211,chr22,28102156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,1.95000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.58000000 +5212,chr22,28112907,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.50000000 +5213,chr22,28156407,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +5214,chr22,28157192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.85000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.78000000 +5215,chr22,28175040,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.17283951,84.00000000,3.71681416,0.02380952,0.00000000,6.10000000 +5216,chr22,28187750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,89.00000000,0.00000000,-0.45000000,0.00000000,,0.19658120,118.00000000,5.22123894,0.00847458,0.00000000,5.64000000 +5217,chr22,28188929,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.27027027,76.00000000,3.36283186,0.02631579,0.00000000,6.44000000 +5218,chr22,28190686,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.73000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.22000000 +5219,chr22,28224919,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.23000000 +5220,chr22,28272636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.05000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.35000000 +5221,chr22,28319989,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.02000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.56000000 +5222,chr22,28326547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.34000000,0.00000000,,0.17204301,93.00000000,4.11504425,0.00000000,0.00000000,6.08000000 +5223,chr22,28333779,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,89.00000000,0.00000000,0.55000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,5.79000000 +5224,chr22,28344595,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,-0.21000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.56000000 +5225,chr22,28351610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,6.96000000 +5226,chr22,28357845,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.00000000 +5227,chr22,28378722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,59.00000000,0.00000000,-0.46000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,4.02000000 +5228,chr22,28380003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.17000000,13.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.01538462,0.00000000,6.96000000 +5229,chr22,28385770,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.09000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,7.01000000 +5230,chr22,28390052,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.43000000,20.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,0.00000000,1.13000000,0.00000000,,0.35714286,14.00000000,0.61946903,0.00000000,0.00000000,3.53000000 +5231,chr22,28392197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.88000000,15.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.84000000 +5232,chr22,28399275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.21739130,0.00000000,51.00000000,0.00000000,0.03000000,0.00000000,,0.22784810,88.00000000,3.89380531,0.06818182,0.00000000,2.78000000 +5233,chr22,28401330,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.00000000,0.00000000,6.56000000 +5234,chr22,28402691,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.75000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +5235,chr22,28403092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.52000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.75000000 +5236,chr22,28405571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-0.05000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.29000000 +5237,chr22,28405875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.31000000 +5238,chr22,28406490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.46000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +5239,chr22,28407403,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.03333333,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.03529412,0.00000000,5.43000000 +5240,chr22,28411637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,90.00000000,0.00000000,-0.43000000,0.00000000,,0.28828829,111.00000000,4.91150442,0.00000000,0.00000000,6.44000000 +5241,chr22,28514533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.01010101,0.00000000,5.79000000 +5242,chr22,28515888,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,0.01000000,0.00000000,,0.26213592,103.00000000,4.55752212,0.00000000,0.00000000,6.23000000 +5243,chr22,28520936,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +5244,chr22,28524319,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.03225806,0.00000000,5.67000000 +5245,chr22,28524663,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.22000000 +5246,chr22,28531117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.29000000,0.00000000,,0.28333333,60.00000000,2.65486726,0.00000000,0.00000000,6.82000000 +5247,chr22,28531123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.67000000,8.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.13000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.04000000 +5248,chr22,28531159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.18000000 +5249,chr22,28546296,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.00000000,0.00000000,6.71000000 +5250,chr22,28559903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.26000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +5251,chr22,28570060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.18000000,0.00000000,,0.17721519,82.00000000,3.62831858,0.03658537,0.00000000,5.61000000 +5252,chr22,28573365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.07000000,0.00000000,,0.24657534,76.00000000,3.36283186,0.03947368,0.00000000,6.30000000 +5253,chr22,28573598,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,0.84000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.90000000 +5254,chr22,28584021,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.60000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.32000000 +5255,chr22,28587607,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,36.00000000,0.00000000,-0.56000000,0.00000000,,0.15384615,40.00000000,1.76991150,0.02500000,0.00000000,2.79000000 +5256,chr22,28588459,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.15000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.56000000 +5257,chr22,28656990,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +5258,chr22,28700373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.06000000,0.00000000,,0.13846154,66.00000000,2.92035398,0.01515152,0.00000000,5.37000000 +5259,chr22,28702588,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,0.13000000,0.00000000,,0.18518519,66.00000000,2.92035398,0.18181818,0.00000000,2.98000000 +5260,chr22,28714771,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,5.80000000 +5261,chr22,28719078,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,-0.72000000,4.13000000,,0.17187500,67.00000000,2.96460177,0.04477612,0.00000000,3.99000000 +5262,chr22,28731424,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.48000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.40000000 +5263,chr22,28734312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,4.31000000 +5264,chr22,28744571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,2.23000000,0.00000000,,0.18750000,67.00000000,2.96460177,0.02985075,0.00000000,6.13000000 +5265,chr22,28768328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,73.00000000,0.00000000,0.74000000,0.00000000,,0.21568627,60.00000000,2.65486726,0.15000000,0.00000000,5.89000000 +5266,chr22,28771101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.17000000,6.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.06666667,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,4.13000000 +5267,chr22,28818039,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.36000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.66000000 +5268,chr22,28856463,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.89000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.02105263,0.00000000,6.33000000 +5269,chr22,28867009,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.48000000,0.00000000,,0.26785714,58.00000000,2.56637168,0.03448276,0.00000000,6.96000000 +5270,chr22,28921571,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.05000000,0.00000000,,0.42045455,89.00000000,3.93805310,0.01123596,0.00000000,8.43000000 +5271,chr22,28922736,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.80000000,0.00000000,,0.54651163,89.00000000,3.93805310,0.03370787,0.00000000,7.70000000 +5272,chr22,28928704,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-1.34000000,0.00000000,,0.47540984,62.00000000,2.74336283,0.01612903,0.00000000,8.22000000 +5273,chr22,28955191,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,0.58000000,0.00000000,,0.44230769,52.00000000,2.30088496,0.00000000,0.00000000,4.26000000 +5274,chr22,28962814,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,0.64000000,0.00000000,,0.38202247,91.00000000,4.02654867,0.02197802,0.00000000,13.02000000 +5275,chr22,29004527,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,96.00000000,0.00000000,0.44000000,0.00000000,,0.40000000,88.00000000,3.89380531,0.01136364,0.00000000,8.04000000 +5276,chr22,29021921,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.40540541,74.00000000,3.27433628,0.00000000,0.00000000,8.41000000 +5277,chr22,29072886,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.17808219,77.00000000,3.40707965,0.02597403,0.00000000,6.32000000 +5278,chr22,29088940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.30000000,0.00000000,,0.29347826,92.00000000,4.07079646,0.00000000,0.00000000,3.04000000 +5279,chr22,29102606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-2.12000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.41000000 +5280,chr22,29135724,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +5281,chr22,29145459,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,0.02000000,0.00000000,,0.41891892,79.00000000,3.49557522,0.06329114,0.00000000,4.64000000 +5282,chr22,29233024,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +5283,chr22,29239413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,1.97000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.00000000,0.00000000,5.27000000 +5284,chr22,29239714,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.02857143,0.00000000,5.66000000 +5285,chr22,29245106,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.39000000,0.00000000,,0.32967033,93.00000000,4.11504425,0.01075269,0.00000000,8.93000000 +5286,chr22,29257622,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.55384615,67.00000000,2.96460177,0.01492537,0.00000000,6.29000000 +5287,chr22,29260400,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.94000000,0.00000000,,0.48888889,91.00000000,4.02654867,0.01098901,0.00000000,8.70000000 +5288,chr22,29268917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.27000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.87000000 +5289,chr22,29273991,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.76000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.00000000,0.00000000,6.30000000 +5290,chr22,29285227,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.12000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-1.59000000,0.00000000,,0.26666667,68.00000000,3.00884956,0.11764706,0.00000000,6.01000000 +5291,chr22,29299939,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.17000000,0.00000000,,0.20370370,56.00000000,2.47787611,0.01785714,0.00000000,6.21000000 +5292,chr22,29304546,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.08000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.82000000 +5293,chr22,29324419,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,85.00000000,0.00000000,-0.57000000,0.00000000,,0.26829268,87.00000000,3.84955752,0.05747126,0.00000000,5.95000000 +5294,chr22,29335595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,82.00000000,0.00000000,0.89000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,5.91000000 +5295,chr22,29342557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,76.00000000,0.00000000,-0.50000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.31000000 +5296,chr22,29346852,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.11000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.71000000 +5297,chr22,29352870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.16470588,90.00000000,3.98230088,0.05555556,0.00000000,5.56000000 +5298,chr22,29356632,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-1.15000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,7.01000000 +5299,chr22,29359899,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.79000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.02531646,0.00000000,6.22000000 +5300,chr22,29362225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.01315789,0.00000000,6.46000000 +5301,chr22,29363537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.84000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,5.97000000 +5302,chr22,29368847,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,-1.67000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,5.82000000 +5303,chr22,29369393,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,92.00000000,0.00000000,-0.21000000,0.00000000,,0.23584906,109.00000000,4.82300885,0.01834862,0.00000000,5.15000000 +5304,chr22,29370175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +5305,chr22,29370345,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.17000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.00000000,0.00000000,2.85000000 +5306,chr22,29370906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,1.56000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.52000000 +5307,chr22,29373317,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.40000000,0.00000000,,0.17525773,97.00000000,4.29203540,0.00000000,0.00000000,6.33000000 +5308,chr22,29376402,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.95000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.01470588,0.00000000,6.82000000 +5309,chr22,29377880,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.88000000,0.00000000,,0.26315789,62.00000000,2.74336283,0.06451613,0.00000000,5.71000000 +5310,chr22,29381515,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,2.14000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.15000000 +5311,chr22,29384823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.27000000,0.00000000,,0.19767442,94.00000000,4.15929204,0.07446809,0.00000000,5.77000000 +5312,chr22,29384895,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.41000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +5313,chr22,29386444,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.69000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.19000000 +5314,chr22,29398500,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-1.04000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +5315,chr22,29398924,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.09000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.49000000 +5316,chr22,29400786,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-0.14000000,0.00000000,,0.22680412,99.00000000,4.38053097,0.02020202,0.00000000,5.96000000 +5317,chr22,29402662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.47000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,-1.49000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,6.00000000 +5318,chr22,29402822,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,56.74000000,6.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,-0.17000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.68000000 +5319,chr22,29404292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.19000000,36.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-1.95000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.80000000 +5320,chr22,29404348,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,48.87000000,35.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.44000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,5.56000000 +5321,chr22,29406001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.26000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,1.86000000,0.00000000,,0.09523810,63.00000000,2.78761062,0.00000000,0.00000000,4.77000000 +5322,chr22,29406812,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,52.75000000,30.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.71000000 +5323,chr22,29407172,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.25000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.52000000 +5324,chr22,29407504,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.90000000,11.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,2.06000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.03488372,0.00000000,5.17000000 +5325,chr22,29408950,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.54000000,5.00000000,ref,1.00000000,0.02631579,41.00000000,1.81415929,0.07317073,0.00000000,85.00000000,0.00000000,1.61000000,0.00000000,,0.26041667,96.00000000,4.24778761,0.00000000,0.00000000,5.71000000 +5326,chr22,29409418,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-0.05000000,0.00000000,,0.22340426,96.00000000,4.24778761,0.01041667,0.00000000,6.09000000 +5327,chr22,29410797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.29000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,7.08000000 +5328,chr22,29413462,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.08000000,8.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,73.00000000,0.00000000,-0.13000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,6.06000000 +5329,chr22,29414933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-1.85000000,0.00000000,,0.19047619,88.00000000,3.89380531,0.04545455,0.00000000,5.94000000 +5330,chr22,29415802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.15116279,86.00000000,3.80530973,0.00000000,0.00000000,5.02000000 +5331,chr22,29416475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,70.00000000,0.00000000,0.80000000,0.00000000,,0.18666667,79.00000000,3.49557522,0.05063291,0.00000000,5.72000000 +5332,chr22,29417128,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.70000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,5.75000000 +5333,chr22,29417264,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.69000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.92000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.00000000,0.00000000,6.98000000 +5334,chr22,29417526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.14000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.09000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,5.97000000 +5335,chr22,29418392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.54000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.75000000 +5336,chr22,29418735,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,5.59000000 +5337,chr22,29420892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.35000000,0.00000000,,0.10294118,68.00000000,3.00884956,0.00000000,0.00000000,5.32000000 +5338,chr22,29422827,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.14666667,81.00000000,3.58407080,0.06172840,0.00000000,5.17000000 +5339,chr22,29422829,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,70.00000000,0.00000000,0.27000000,0.00000000,,0.17333333,80.00000000,3.53982301,0.05000000,0.00000000,5.70000000 +5340,chr22,29422865,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.44000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,5.71000000 +5341,chr22,29423092,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,55.49000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.70000000 +5342,chr22,29464822,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.54000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,6.67000000 +5343,chr22,29469437,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,7.40000000 +5344,chr22,29477386,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.73000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,5.88000000 +5345,chr22,29484060,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,-2.01000000,0.00000000,,0.15686275,52.00000000,2.30088496,0.01923077,0.00000000,5.70000000 +5346,chr22,29492496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.26000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.03614458,0.00000000,5.58000000 +5347,chr22,29502056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.25000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.42000000 +5348,chr22,29511412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.61000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.55000000 +5349,chr22,29514801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,0.20000000,0.00000000,,0.15151515,69.00000000,3.05309735,0.04347826,0.00000000,2.81000000 +5350,chr22,29524309,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,1.42000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.01000000 +5351,chr22,29526290,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.89000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +5352,chr22,29532488,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,85.00000000,0.00000000,-0.53000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,5.30000000 +5353,chr22,29534088,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.54000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,7.06000000 +5354,chr22,29544960,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,2.20000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,5.76000000 +5355,chr22,29548563,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.29000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.02666667,0.00000000,8.15000000 +5356,chr22,29552402,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.42000000,4.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,0.20000000,0.00000000,,0.31666667,65.00000000,2.87610619,0.06153846,0.00000000,4.58000000 +5357,chr22,29553097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.23000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.02000000 +5358,chr22,29553101,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,5.76000000 +5359,chr22,29556237,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.60000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,5.95000000 +5360,chr22,29556609,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.59000000 +5361,chr22,29556610,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.59000000 +5362,chr22,29559444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,72.00000000,0.00000000,-1.26000000,0.00000000,,0.19696970,71.00000000,3.14159292,0.07042254,0.00000000,6.14000000 +5363,chr22,29559821,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.32000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.60000000 +5364,chr22,29560146,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-1.78000000,0.00000000,,0.17073171,87.00000000,3.84955752,0.05747126,0.00000000,5.72000000 +5365,chr22,29560148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,-1.67000000,0.00000000,,0.16867470,88.00000000,3.89380531,0.05681818,0.00000000,5.65000000 +5366,chr22,29561332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,0.52000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,5.86000000 +5367,chr22,29561955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,1.05000000,0.00000000,,0.21428571,59.00000000,2.61061947,0.03389831,0.00000000,5.83000000 +5368,chr22,29566454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.88000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,6.50000000 +5369,chr22,29578890,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.49000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +5370,chr22,29579948,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-2.11000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.29000000 +5371,chr22,29581354,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.97000000,0.00000000,,0.18571429,73.00000000,3.23008850,0.04109589,0.00000000,6.11000000 +5372,chr22,29592790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.77000000 +5373,chr22,29595937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.23913043,47.00000000,2.07964602,0.00000000,0.00000000,6.76000000 +5374,chr22,29596103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.54000000,0.73000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,4.62000000 +5375,chr22,29596962,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-1.14000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,5.79000000 +5376,chr22,29600077,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,66.00000000,0.00000000,-0.95000000,0.00000000,,0.18461538,74.00000000,3.27433628,0.12162162,0.00000000,5.68000000 +5377,chr22,29601150,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-1.50000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.29000000 +5378,chr22,29603795,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.52000000 +5379,chr22,29606088,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.13186813,92.00000000,4.07079646,0.01086957,0.00000000,5.45000000 +5380,chr22,29610758,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.21000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.03448276,0.00000000,6.53000000 +5381,chr22,29619690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.88000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.48000000 +5382,chr22,29621104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +5383,chr22,29639005,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-0.88000000,0.00000000,,0.12500000,90.00000000,3.98230088,0.02222222,0.00000000,4.83000000 +5384,chr22,29641326,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.43000000 +5385,chr22,29649738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.22727273,71.00000000,3.14159292,0.07042254,0.00000000,5.51000000 +5386,chr22,29673218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-0.95000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.01388889,0.00000000,6.09000000 +5387,chr22,29689558,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.49000000,0.00000000,,0.26666667,60.00000000,2.65486726,0.00000000,0.00000000,6.69000000 +5388,chr22,29693962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.13000000,0.00000000,,0.27397260,73.00000000,3.23008850,0.00000000,0.00000000,6.32000000 +5389,chr22,29703969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.30000000,0.00000000,,0.25000000,60.00000000,2.65486726,0.00000000,0.00000000,6.61000000 +5390,chr22,29786186,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,60.00000000,0.00000000,0.23000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.26000000 +5391,chr22,29797609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.41000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +5392,chr22,29812554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.03030303,0.00000000,6.16000000 +5393,chr22,29817125,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.56000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.59000000 +5394,chr22,29828804,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.97000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.19000000 +5395,chr22,29863619,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.36000000,0.00000000,,0.22619048,88.00000000,3.89380531,0.04545455,0.00000000,6.41000000 +5396,chr22,29863982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.26000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.92000000 +5397,chr22,29865230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.35000000 +5398,chr22,29874710,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.96000000,0.00000000,,0.17708333,96.00000000,4.24778761,0.00000000,0.00000000,6.56000000 +5399,chr22,29877405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,1.50000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.23000000 +5400,chr22,29877736,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-1.06000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +5401,chr22,29878438,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.20312500,71.00000000,3.14159292,0.09859155,0.00000000,5.93000000 +5402,chr22,29879102,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.46000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +5403,chr22,29889781,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.43000000 +5404,chr22,29892409,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,0.90000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.28000000 +5405,chr22,29892636,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,92.00000000,0.00000000,-0.93000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +5406,chr22,29895456,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.68000000,0.00000000,,0.24742268,97.00000000,4.29203540,0.00000000,0.00000000,6.72000000 +5407,chr22,29897514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.03000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.53000000 +5408,chr22,29897613,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,6.33000000 +5409,chr22,29904123,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.54000000,0.00000000,,0.13793103,88.00000000,3.89380531,0.01136364,0.00000000,5.86000000 +5410,chr22,29904590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,1.11000000,0.00000000,,0.16279070,90.00000000,3.98230088,0.04444444,0.00000000,5.30000000 +5411,chr22,29912791,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.43000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.33000000 +5412,chr22,29918103,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.21000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.94000000 +5413,chr22,30012721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.23000000 +5414,chr22,30016476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.71000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.21000000 +5415,chr22,30017682,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-1.14000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.01470588,0.00000000,6.36000000 +5416,chr22,30033126,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.39000000 +5417,chr22,30036148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.14000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.86000000 +5418,chr22,30045688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.01000000 +5419,chr22,30051817,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,85.00000000,0.00000000,-0.88000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.07692308,0.00000000,5.99000000 +5420,chr22,30052410,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.98000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.77000000 +5421,chr22,30065270,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.26136364,89.00000000,3.93805310,0.01123596,0.00000000,6.91000000 +5422,chr22,30065753,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.55000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.14000000 +5423,chr22,30071777,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,6.17000000 +5424,chr22,30078227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.40000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.05263158,0.00000000,5.71000000 +5425,chr22,30087975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,2.93000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.56000000 +5426,chr22,30092218,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.35000000 +5427,chr22,30097929,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,0.00000000,-0.50000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.67000000 +5428,chr22,30104969,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,5.92000000 +5429,chr22,30108218,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.95000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +5430,chr22,30116139,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.76000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,7.20000000 +5431,chr22,30116425,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.57000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +5432,chr22,30122839,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.13888889,75.00000000,3.31858407,0.04000000,0.00000000,5.35000000 +5433,chr22,30125458,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.02000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.57000000 +5434,chr22,30125781,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.55000000 +5435,chr22,30126470,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.06000000,0.00000000,,0.25925926,85.00000000,3.76106195,0.04705882,0.00000000,5.98000000 +5436,chr22,30150256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +5437,chr22,30154941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.84000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +5438,chr22,30159227,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.75000000 +5439,chr22,30161292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.34000000 +5440,chr22,30166250,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,87.00000000,0.00000000,-0.46000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.14000000 +5441,chr22,30166998,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,92.00000000,0.00000000,-1.80000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.78000000 +5442,chr22,30174454,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,6.84000000 +5443,chr22,30179823,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.33000000 +5444,chr22,30184263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.54000000,0.00000000,,0.27368421,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +5445,chr22,30185871,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.62000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +5446,chr22,30194233,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,-0.41000000,0.00000000,,0.30120482,85.00000000,3.76106195,0.02352941,0.00000000,5.89000000 +5447,chr22,30201821,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.18965517,61.00000000,2.69911504,0.01639344,0.00000000,5.81000000 +5448,chr22,30201891,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.11000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +5449,chr22,30202563,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.23000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.02272727,0.00000000,6.27000000 +5450,chr22,30203581,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.11000000,0.00000000,,0.13333333,65.00000000,2.87610619,0.06153846,0.00000000,4.77000000 +5451,chr22,30203607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.80000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.25000000 +5452,chr22,30208809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,6.37000000 +5453,chr22,30263536,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.23584906,107.00000000,4.73451327,0.00934579,0.00000000,6.77000000 +5454,chr22,30282127,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-1.48000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +5455,chr22,30292996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,5.19000000 +5456,chr22,30294009,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.76000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +5457,chr22,30294410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,90.00000000,0.00000000,-0.25000000,0.00000000,,0.32530120,85.00000000,3.76106195,0.02352941,0.00000000,7.97000000 +5458,chr22,30300755,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,6.78000000 +5459,chr22,30318902,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.25000000 +5460,chr22,30330365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.18867925,55.00000000,2.43362832,0.03636364,0.00000000,6.56000000 +5461,chr22,30333518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.29000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.44000000 +5462,chr22,30337925,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.46000000 +5463,chr22,30340846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.80000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.25000000 +5464,chr22,30343514,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.24000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,6.04000000 +5465,chr22,30344159,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.86000000,0.00000000,,0.26923077,105.00000000,4.64601770,0.00000000,0.00000000,6.25000000 +5466,chr22,30345899,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-0.52000000,0.00000000,,0.06410256,80.00000000,3.53982301,0.02500000,0.00000000,5.13000000 +5467,chr22,30355197,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.00000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.12000000 +5468,chr22,30362247,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.05000000,0.00000000,,0.18181818,100.00000000,4.42477876,0.00000000,0.00000000,6.72000000 +5469,chr22,30386742,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,-1.67000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +5470,chr22,30388122,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.75000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.14000000 +5471,chr22,30391201,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.37000000 +5472,chr22,30393086,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.14000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +5473,chr22,30393298,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.36000000,0.00000000,,0.12500000,82.00000000,3.62831858,0.02439024,0.00000000,5.43000000 +5474,chr22,30394797,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.30000000,0.00000000,,0.29333333,79.00000000,3.49557522,0.02531646,0.00000000,6.22000000 +5475,chr22,30398730,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,-1.44000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.01219512,0.00000000,5.61000000 +5476,chr22,30398961,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.04000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +5477,chr22,30399900,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-1.21000000,0.00000000,,0.15189873,82.00000000,3.62831858,0.03658537,0.00000000,5.36000000 +5478,chr22,30400433,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +5479,chr22,30403871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.91000000,0.00000000,,0.29411765,68.00000000,3.00884956,0.00000000,0.00000000,7.00000000 +5480,chr22,30404992,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.49000000,0.00000000,,0.21739130,72.00000000,3.18584071,0.02777778,0.00000000,6.09000000 +5481,chr22,30405190,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,1.49000000,0.00000000,,0.34146341,86.00000000,3.80530973,0.03488372,0.00000000,8.30000000 +5482,chr22,30408873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,0.63000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.68000000 +5483,chr22,30412572,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.51000000,0.00000000,,0.14141414,100.00000000,4.42477876,0.01000000,0.00000000,6.03000000 +5484,chr22,30414398,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.49000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.00000000,0.00000000,5.06000000 +5485,chr22,30415123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.85000000,0.00000000,,0.25316456,83.00000000,3.67256637,0.04819277,0.00000000,6.39000000 +5486,chr22,30418738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,0.19000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.31000000 +5487,chr22,30420159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,82.00000000,0.00000000,0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.95000000 +5488,chr22,30424719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-1.41000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.71000000 +5489,chr22,30427126,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.23000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.80000000 +5490,chr22,30429709,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.26000000,0.00000000,,0.20987654,85.00000000,3.76106195,0.03529412,0.00000000,6.58000000 +5491,chr22,30432071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.89000000 +5492,chr22,30432246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.21000000,0.00000000,,0.25301205,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +5493,chr22,30434325,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.47000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.05000000,0.00000000,5.99000000 +5494,chr22,30435865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.23000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.73000000 +5495,chr22,30438263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-1.15000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.78000000 +5496,chr22,30446527,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,1.35000000,0.00000000,,0.12000000,77.00000000,3.40707965,0.01298701,0.00000000,5.22000000 +5497,chr22,30447822,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-2.29000000,0.00000000,,0.29333333,78.00000000,3.45132743,0.03846154,0.00000000,6.33000000 +5498,chr22,30450657,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.59000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.07000000 +5499,chr22,30453702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.36000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.54000000 +5500,chr22,30456079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.40000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.76000000 +5501,chr22,30457095,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,70.00000000,0.00000000,-0.19000000,0.00000000,,0.14634146,84.00000000,3.71681416,0.01190476,0.00000000,5.65000000 +5502,chr22,30458560,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,62.00000000,0.00000000,0.54000000,0.00000000,,0.13265306,103.00000000,4.55752212,0.04854369,0.00000000,4.66000000 +5503,chr22,30458876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.18571429,76.00000000,3.36283186,0.06578947,0.00000000,5.72000000 +5504,chr22,30465944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.10000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,6.36000000 +5505,chr22,30468805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,-1.28000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,6.08000000 +5506,chr22,30471011,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,0.00000000,1.15000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.00000000,0.00000000,5.89000000 +5507,chr22,30472115,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.05000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +5508,chr22,30472431,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +5509,chr22,30493659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.32000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.36000000 +5510,chr22,30540056,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.19000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +5511,chr22,30560432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.42000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +5512,chr22,30560610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,1.19000000,0.00000000,,0.29870130,79.00000000,3.49557522,0.02531646,0.00000000,5.90000000 +5513,chr22,30565658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.52000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.02666667,0.00000000,6.40000000 +5514,chr22,30581366,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.01086957,0.00000000,6.00000000 +5515,chr22,30587881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,6.01000000 +5516,chr22,30594154,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-0.33000000,0.00000000,,0.16091954,87.00000000,3.84955752,0.00000000,0.00000000,5.92000000 +5517,chr22,30595137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.32000000,0.00000000,,0.23809524,105.00000000,4.64601770,0.00000000,0.00000000,6.43000000 +5518,chr22,30596974,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.88000000,0.00000000,,0.19512195,82.00000000,3.62831858,0.00000000,0.00000000,6.53000000 +5519,chr22,30597231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.67000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,7.29000000 +5520,chr22,30597804,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.29487179,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +5521,chr22,30604644,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.03448276,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,0.42000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.08433735,0.00000000,5.56000000 +5522,chr22,30606221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.76000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.93000000 +5523,chr22,30608522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,-0.35000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.96000000 +5524,chr22,30609031,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.12871287,105.00000000,4.64601770,0.03809524,0.00000000,5.06000000 +5525,chr22,30611305,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.39000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.30000000 +5526,chr22,30612253,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,6.06000000 +5527,chr22,30613131,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.00000000,0.00000000,7.12000000 +5528,chr22,30617432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,-0.31000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +5529,chr22,30617802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,1.10000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +5530,chr22,30620552,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.54000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.75000000 +5531,chr22,30622321,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.09000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,6.31000000 +5532,chr22,30622336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.44000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +5533,chr22,30622897,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.01162791,0.00000000,5.95000000 +5534,chr22,30622988,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.56000000,0.00000000,,0.21333333,79.00000000,3.49557522,0.05063291,0.00000000,6.27000000 +5535,chr22,30623715,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.55000000,9.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-2.53000000,0.00000000,,0.09433962,54.00000000,2.38938053,0.01851852,0.00000000,5.15000000 +5536,chr22,30624354,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.64000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.57000000 +5537,chr22,30624453,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.09000000,0.00000000,,0.21917808,77.00000000,3.40707965,0.05194805,0.00000000,6.64000000 +5538,chr22,30624988,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.00000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.04000000,0.00000000,6.56000000 +5539,chr22,30625413,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-1.28000000,0.00000000,,0.16000000,79.00000000,3.49557522,0.03797468,0.00000000,6.32000000 +5540,chr22,30625830,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.65000000,0.00000000,,0.29687500,67.00000000,2.96460177,0.02985075,0.00000000,5.12000000 +5541,chr22,30626314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,0.68000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.58000000 +5542,chr22,30626603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.84000000 +5543,chr22,30626965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +5544,chr22,30627598,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,0.93000000,0.00000000,,0.19512195,97.00000000,4.29203540,0.14432990,0.00000000,5.65000000 +5545,chr22,30627906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +5546,chr22,30628107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.06000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.25000000 +5547,chr22,30628388,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.17721519,84.00000000,3.71681416,0.05952381,0.00000000,5.56000000 +5548,chr22,30628566,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,5.93000000 +5549,chr22,30628947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,5.74000000 +5550,chr22,30629811,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,-0.36000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,2.80000000 +5551,chr22,30629831,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.25675676,77.00000000,3.40707965,0.03896104,0.00000000,5.88000000 +5552,chr22,30631149,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,51.53000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.18000000,50.00000000,2.21238938,0.00000000,0.00000000,6.33000000 +5553,chr22,30631460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,50.15000000,22.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.19000000,0.00000000,,0.16000000,25.00000000,1.10619469,0.00000000,0.00000000,5.69000000 +5554,chr22,30631499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.65000000,23.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.85000000,0.00000000,,0.13333333,30.00000000,1.32743363,0.00000000,0.00000000,5.02000000 +5555,chr22,30631746,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.29000000,14.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,17.00000000,0.00000000,1.30000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.07407407,0.00000000,3.97000000 +5556,chr22,30633212,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.57000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,56.00000000,0.00000000,-1.36000000,0.00000000,,0.15789474,40.00000000,1.76991150,0.05000000,0.00000000,2.86000000 +5557,chr22,30633671,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,6.00000000 +5558,chr22,30634117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.57000000 +5559,chr22,30635146,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.01333333,0.00000000,6.93000000 +5560,chr22,30636342,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.29000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +5561,chr22,30638097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.07000000,0.00000000,,0.11764706,71.00000000,3.14159292,0.04225352,0.00000000,4.19000000 +5562,chr22,30638359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.69000000,0.00000000,,0.17105263,79.00000000,3.49557522,0.03797468,0.00000000,6.33000000 +5563,chr22,30639889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.75000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.02702703,0.00000000,6.14000000 +5564,chr22,30640227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.42000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.30000000 +5565,chr22,30640228,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.70000000,0.00000000,,0.22471910,92.00000000,4.07079646,0.03260870,0.00000000,6.31000000 +5566,chr22,30641035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.04000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,6.24000000 +5567,chr22,30642905,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.26190476,87.00000000,3.84955752,0.03448276,0.00000000,5.79000000 +5568,chr22,30643532,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.49000000 +5569,chr22,30646503,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.33000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.00000000,0.00000000,6.45000000 +5570,chr22,30647497,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.90000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.24000000 +5571,chr22,30647962,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,0.00000000,-0.14000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,5.32000000 +5572,chr22,30648299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,1.01000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.21000000 +5573,chr22,30649658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.07000000,0.00000000,,0.34848485,66.00000000,2.92035398,0.00000000,0.00000000,8.45000000 +5574,chr22,30664042,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.58000000 +5575,chr22,30665296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.43000000 +5576,chr22,30667113,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.26000000,0.00000000,,0.17391304,94.00000000,4.15929204,0.01063830,0.00000000,6.80000000 +5577,chr22,30672827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.43000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.03409091,0.00000000,6.30000000 +5578,chr22,30676766,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,-0.72000000,0.00000000,,0.28888889,90.00000000,3.98230088,0.00000000,0.00000000,6.75000000 +5579,chr22,30678061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.17582418,92.00000000,4.07079646,0.00000000,0.00000000,6.71000000 +5580,chr22,30680399,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +5581,chr22,30680503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.15730337,92.00000000,4.07079646,0.03260870,0.00000000,5.30000000 +5582,chr22,30682354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,2.56000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.41000000 +5583,chr22,30684806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.34000000,0.00000000,,0.24000000,53.00000000,2.34513274,0.05660377,0.00000000,6.00000000 +5584,chr22,30685911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.61000000,0.00000000,,0.14705882,72.00000000,3.18584071,0.05555556,0.00000000,5.56000000 +5585,chr22,30690485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.34000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.60000000 +5586,chr22,30694463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18421053,81.00000000,3.58407080,0.06172840,0.00000000,6.18000000 +5587,chr22,30702430,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.01315789,0.00000000,6.88000000 +5588,chr22,30703454,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.55000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,4.62000000 +5589,chr22,30704095,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-1.68000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.37000000 +5590,chr22,30705659,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.59000000 +5591,chr22,30707471,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.62000000,0.00000000,,0.11320755,54.00000000,2.38938053,0.01851852,0.00000000,4.61000000 +5592,chr22,30709282,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,0.23000000,0.00000000,,0.28378378,76.00000000,3.36283186,0.02631579,0.00000000,5.95000000 +5593,chr22,30710170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.51000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +5594,chr22,30711713,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,65.00000000,0.00000000,-1.62000000,0.00000000,,0.23728814,76.00000000,3.36283186,0.22368421,0.00000000,5.66000000 +5595,chr22,30712237,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,7.02000000 +5596,chr22,30712630,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.43000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.30000000 +5597,chr22,30713139,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,57.00000000,0.00000000,0.97000000,0.00000000,,0.24390244,49.00000000,2.16814159,0.14285714,0.00000000,3.15000000 +5598,chr22,30713931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.77000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.17000000 +5599,chr22,30717017,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.15000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.68000000 +5600,chr22,30717446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.07000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,4.79000000 +5601,chr22,30717677,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.54000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.23000000 +5602,chr22,30719735,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,63.00000000,0.00000000,-1.35000000,0.00000000,,0.12500000,77.00000000,3.40707965,0.15584416,0.00000000,4.87000000 +5603,chr22,30720407,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.18000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.43000000 +5604,chr22,30720706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.12000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +5605,chr22,30720766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.17000000,0.00000000,,0.29411765,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +5606,chr22,30721028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.60000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,6.35000000 +5607,chr22,30721242,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.24000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.97000000 +5608,chr22,30722408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.35000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.01000000 +5609,chr22,30723227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.62000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,7.01000000 +5610,chr22,30723450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,0.73000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.55000000 +5611,chr22,30723831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,6.25000000 +5612,chr22,30724047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.28000000 +5613,chr22,30724405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.61000000,0.00000000,,0.12162162,74.00000000,3.27433628,0.00000000,0.00000000,4.01000000 +5614,chr22,30724727,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,1.05000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.71000000 +5615,chr22,30725659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.01000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.03296703,0.00000000,6.31000000 +5616,chr22,30726561,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.14102564,80.00000000,3.53982301,0.02500000,0.00000000,5.30000000 +5617,chr22,30727119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.20000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +5618,chr22,30729227,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.86000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.76000000 +5619,chr22,30731017,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.68000000,0.00000000,,0.17647059,51.00000000,2.25663717,0.00000000,0.00000000,6.37000000 +5620,chr22,30732066,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.51000000 +5621,chr22,30732067,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.58000000 +5622,chr22,30732776,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +5623,chr22,30737311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,-0.66000000,0.00000000,,0.14754098,66.00000000,2.92035398,0.07575758,0.00000000,3.04000000 +5624,chr22,30737856,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,7.09000000 +5625,chr22,30741525,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.44000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +5626,chr22,30743331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.28000000 +5627,chr22,30748720,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.81000000 +5628,chr22,30748872,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,86.00000000,0.00000000,-1.41000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.06000000 +5629,chr22,30754693,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.53000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,6.47000000 +5630,chr22,30760309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.54000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.00000000,0.00000000,6.24000000 +5631,chr22,30763055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.50000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.01351351,0.00000000,6.81000000 +5632,chr22,30764552,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.79000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,2.91000000 +5633,chr22,30768323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +5634,chr22,30769006,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.00000000,0.00000000,,0.11392405,82.00000000,3.62831858,0.03658537,0.00000000,4.87000000 +5635,chr22,30772328,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,5.91000000 +5636,chr22,30773321,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +5637,chr22,30775287,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.06000000 +5638,chr22,30776479,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.21000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.34000000 +5639,chr22,30777077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +5640,chr22,30778396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.26000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,4.69000000 +5641,chr22,30779206,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.65000000,0.00000000,,0.14000000,54.00000000,2.38938053,0.05555556,0.00000000,3.04000000 +5642,chr22,30780463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,5.85000000 +5643,chr22,30781370,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.94000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,5.97000000 +5644,chr22,30787467,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-1.30000000,0.00000000,,0.19047619,64.00000000,2.83185841,0.00000000,0.00000000,6.75000000 +5645,chr22,30790310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +5646,chr22,30791961,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +5647,chr22,30792334,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,1.63000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,5.67000000 +5648,chr22,30797113,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.57000000 +5649,chr22,30798319,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.25000000,102.00000000,4.51327434,0.01960784,0.00000000,5.73000000 +5650,chr22,30801973,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.62000000,0.00000000,,0.20833333,79.00000000,3.49557522,0.08860759,0.00000000,6.11000000 +5651,chr22,30802050,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,5.90000000 +5652,chr22,30802861,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,-0.39000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.02222222,0.00000000,5.98000000 +5653,chr22,30804212,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.85000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.01282051,0.00000000,5.39000000 +5654,chr22,30805819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,89.00000000,0.00000000,-0.04000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,5.21000000 +5655,chr22,30811706,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-1.18000000,0.00000000,,0.10526316,59.00000000,2.61061947,0.03389831,0.00000000,4.82000000 +5656,chr22,30811775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.71000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.14000000 +5657,chr22,30813968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.19607843,53.00000000,2.34513274,0.03773585,0.00000000,6.07000000 +5658,chr22,30814771,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.95000000 +5659,chr22,30815053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.29000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.23000000 +5660,chr22,30842701,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.35000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +5661,chr22,30858049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.05000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.97000000 +5662,chr22,30869864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.18644068,59.00000000,2.61061947,0.00000000,0.00000000,6.39000000 +5663,chr22,30876943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,90.00000000,0.00000000,-0.07000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.33000000 +5664,chr22,30880928,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.75000000,0.00000000,,0.10714286,88.00000000,3.89380531,0.04545455,0.00000000,4.87000000 +5665,chr22,30883902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.64000000,0.00000000,,0.13414634,85.00000000,3.76106195,0.03529412,0.00000000,5.36000000 +5666,chr22,30885316,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.74000000,0.00000000,,0.20952381,107.00000000,4.73451327,0.00934579,0.00000000,6.56000000 +5667,chr22,30891914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.32000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +5668,chr22,30897945,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.63000000,0.00000000,,0.21428571,67.00000000,2.96460177,0.16417910,0.00000000,6.66000000 +5669,chr22,30900938,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,89.00000000,0.00000000,0.02000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,5.78000000 +5670,chr22,30901171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.55000000 +5671,chr22,30902186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,72.00000000,0.00000000,-0.45000000,0.00000000,,0.35849057,65.00000000,2.87610619,0.18461538,0.00000000,8.52000000 +5672,chr22,30909855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.79000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.17000000 +5673,chr22,30912022,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.10000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.89000000 +5674,chr22,30915188,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-0.05000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +5675,chr22,30915557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,0.00000000,0.76000000,0.00000000,,0.11881188,104.00000000,4.60176991,0.02884615,0.00000000,5.06000000 +5676,chr22,30916797,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.95000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.55000000 +5677,chr22,30922354,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.45000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,7.01000000 +5678,chr22,30924521,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.01000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,6.16000000 +5679,chr22,30933654,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,4.88000000 +5680,chr22,30951105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,0.58000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.58000000 +5681,chr22,30960006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.54000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.59000000 +5682,chr22,30961943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.97000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +5683,chr22,30967827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,89.00000000,0.00000000,0.19000000,0.00000000,,0.23255814,89.00000000,3.93805310,0.02247191,0.00000000,5.85000000 +5684,chr22,30969007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,4.87000000 +5685,chr22,30979736,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,-1.51000000,0.00000000,,0.26000000,100.00000000,4.42477876,0.00000000,0.00000000,6.69000000 +5686,chr22,30981642,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-1.29000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +5687,chr22,30983158,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.41000000,0.00000000,,0.37500000,64.00000000,2.83185841,0.00000000,0.00000000,8.78000000 +5688,chr22,30983208,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,0.54000000,0.00000000,,0.42424242,67.00000000,2.96460177,0.01492537,0.00000000,4.18000000 +5689,chr22,30983689,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,29.00000000,0.00000000,-0.04000000,0.00000000,,0.41772152,80.00000000,3.53982301,0.01250000,0.00000000,3.15000000 +5690,chr22,30984258,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.43617021,95.00000000,4.20353982,0.01052632,0.00000000,8.61000000 +5691,chr22,30986780,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,112.00000000,0.00000000,1.27000000,0.00000000,,0.41304348,92.00000000,4.07079646,0.00000000,0.00000000,15.30000000 +5692,chr22,30988289,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,35.00000000,0.00000000,-0.06000000,0.00000000,,0.47761194,70.00000000,3.09734513,0.04285714,0.00000000,4.00000000 +5693,chr22,30994242,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.53000000,0.00000000,,0.25490196,104.00000000,4.60176991,0.01923077,0.00000000,6.34000000 +5694,chr22,30995860,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,64.00000000,0.00000000,-1.44000000,0.00000000,,0.42528736,89.00000000,3.93805310,0.01123596,0.00000000,7.81000000 +5695,chr22,30999839,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,42.00000000,0.00000000,1.37000000,0.00000000,,0.36842105,78.00000000,3.45132743,0.02564103,0.00000000,3.66000000 +5696,chr22,31000239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.49000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.84000000 +5697,chr22,31000453,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.31000000,0.00000000,,0.45333333,76.00000000,3.36283186,0.01315789,0.00000000,8.39000000 +5698,chr22,31004032,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,1.47000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,8.07000000 +5699,chr22,31005010,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.93000000,8.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.67000000 +5700,chr22,31007044,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.34000000,0.00000000,,0.46774194,62.00000000,2.74336283,0.00000000,0.00000000,4.35000000 +5701,chr22,31008409,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,0.23000000,0.00000000,,0.57317073,87.00000000,3.84955752,0.05747126,0.00000000,6.01000000 +5702,chr22,31008914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.58000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.34000000 +5703,chr22,31009205,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,1.04000000,0.00000000,,0.45000000,64.00000000,2.83185841,0.06250000,0.00000000,4.34000000 +5704,chr22,31009853,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,21.00000000,0.00000000,0.98000000,0.00000000,,0.45161290,68.00000000,3.00884956,0.08823529,0.01449275,3.01000000 +5705,chr22,31010299,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,0.59000000,0.00000000,,0.55405405,74.00000000,3.27433628,0.00000000,0.00000000,4.24000000 +5706,chr22,31010841,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.59000000,15.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.72000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.00000000,0.00000000,6.54000000 +5707,chr22,31012930,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-1.77000000,0.00000000,,0.44927536,71.00000000,3.14159292,0.02816901,0.00000000,8.60000000 +5708,chr22,31013973,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,52.00000000,0.00000000,-0.81000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,4.34000000 +5709,chr22,31015418,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-2.35000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.00000000,0.00000000,8.09000000 +5710,chr22,31017494,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,59.00000000,0.00000000,1.07000000,0.00000000,,0.56000000,77.00000000,3.40707965,0.02597403,0.00000000,6.29000000 +5711,chr22,31017980,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.83000000,0.00000000,,0.52000000,77.00000000,3.40707965,0.02597403,0.00000000,8.38000000 +5712,chr22,31018103,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.45312500,64.00000000,2.83185841,0.00000000,0.00000000,8.95000000 +5713,chr22,31018663,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,0.18000000,0.00000000,,0.42857143,87.00000000,3.84955752,0.02298851,0.00000000,8.09000000 +5714,chr22,31018680,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.44871795,80.00000000,3.53982301,0.02500000,0.00000000,8.05000000 +5715,chr22,31019600,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.82000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +5716,chr22,31019945,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,-0.57000000,0.00000000,,0.44186047,86.00000000,3.80530973,0.00000000,0.00000000,8.89000000 +5717,chr22,31020136,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,66.00000000,0.00000000,-2.08000000,0.00000000,,0.47126437,89.00000000,3.93805310,0.01123596,0.00000000,8.18000000 +5718,chr22,31020208,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,79.00000000,0.00000000,0.51000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.25000000 +5719,chr22,31021615,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,53.00000000,0.00000000,0.10000000,0.00000000,,0.41666667,91.00000000,4.02654867,0.07692308,0.00000000,4.37000000 +5720,chr22,31021624,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.14942529,91.00000000,4.02654867,0.03296703,0.00000000,5.38000000 +5721,chr22,31023047,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.02000000,0.00000000,,0.43137255,104.00000000,4.60176991,0.00961538,0.00000000,8.62000000 +5722,chr22,31024033,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-0.82000000,0.00000000,,0.53246753,78.00000000,3.45132743,0.01282051,0.00000000,4.09000000 +5723,chr22,31028553,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +5724,chr22,31029344,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.02531646,0.00000000,6.03000000 +5725,chr22,31031505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.23000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +5726,chr22,31032867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,71.00000000,0.00000000,-0.70000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.29000000 +5727,chr22,31034918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.27272727,0.00000000,18.00000000,0.00000000,1.45000000,0.00000000,,0.31481481,54.00000000,2.38938053,0.00000000,0.00000000,3.17000000 +5728,chr22,31038907,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.43000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.00000000,0.00000000,6.68000000 +5729,chr22,31039501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.04494382,0.00000000,5.40000000 +5730,chr22,31039664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.21000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +5731,chr22,31040508,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.30927835,100.00000000,4.42477876,0.03000000,0.00000000,5.68000000 +5732,chr22,31040622,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.38000000,0.00000000,,0.23076923,82.00000000,3.62831858,0.03658537,0.00000000,6.52000000 +5733,chr22,31042595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.68000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +5734,chr22,31043007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.05000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,5.84000000 +5735,chr22,31050429,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.10000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.02531646,0.00000000,5.74000000 +5736,chr22,31053516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,1.68000000,0.00000000,,0.28723404,95.00000000,4.20353982,0.01052632,0.00000000,5.94000000 +5737,chr22,31054456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,1.70000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +5738,chr22,31054513,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.09000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +5739,chr22,31055471,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.23684211,81.00000000,3.58407080,0.04938272,0.00000000,5.73000000 +5740,chr22,31057219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.51000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.34000000 +5741,chr22,31063208,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.01111111,0.00000000,6.61000000 +5742,chr22,31072270,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.68000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.83000000 +5743,chr22,31075630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.24137931,0.00000000,59.00000000,0.00000000,0.07000000,0.00000000,,0.32203390,69.00000000,3.05309735,0.13043478,0.00000000,6.28000000 +5744,chr22,31076184,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.04000000,0.00000000,6.13000000 +5745,chr22,31076313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.45000000,0.00000000,,0.20792079,101.00000000,4.46902655,0.00000000,0.00000000,6.46000000 +5746,chr22,31077129,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,6.07000000 +5747,chr22,31077309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.38000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.34000000 +5748,chr22,31077729,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.46000000,4.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,86.00000000,0.00000000,0.25000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,5.60000000 +5749,chr22,31077889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.13000000 +5750,chr22,31077905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.68000000 +5751,chr22,31078033,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.09000000,3.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,71.00000000,0.00000000,-0.69000000,0.00000000,,0.14285714,84.00000000,3.71681416,0.00000000,0.00000000,5.77000000 +5752,chr22,31078103,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,57.39000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,0.75000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,5.45000000 +5753,chr22,31078283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.89000000,0.00000000,,0.22680412,98.00000000,4.33628319,0.01020408,0.00000000,6.65000000 +5754,chr22,31078612,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.70000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.82000000 +5755,chr22,31081577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.87000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,6.00000000 +5756,chr22,31084209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,94.00000000,0.00000000,-0.42000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.68000000 +5757,chr22,31087175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.88000000,0.00000000,,0.29032258,64.00000000,2.83185841,0.03125000,0.00000000,6.27000000 +5758,chr22,31097139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,77.00000000,0.00000000,0.04000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.26000000 +5759,chr22,31097178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.13095238,85.00000000,3.76106195,0.01176471,0.00000000,4.97000000 +5760,chr22,31097636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.45000000,0.00000000,,0.28735632,92.00000000,4.07079646,0.04347826,0.00000000,5.82000000 +5761,chr22,31103769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.73000000 +5762,chr22,31112422,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,1.37000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.70000000 +5763,chr22,31116814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.22000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.89000000 +5764,chr22,31118571,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.34000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,5.83000000 +5765,chr22,31120527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,94.00000000,0.00000000,-1.15000000,0.00000000,,0.23157895,100.00000000,4.42477876,0.05000000,0.00000000,4.98000000 +5766,chr22,31130224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,0.85000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +5767,chr22,31131494,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.17000000,0.00000000,,0.23170732,88.00000000,3.89380531,0.05681818,0.00000000,6.62000000 +5768,chr22,31131999,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +5769,chr22,31140009,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,1.28000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,5.64000000 +5770,chr22,31140694,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.14000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +5771,chr22,31142016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +5772,chr22,31145226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,88.00000000,0.00000000,1.79000000,0.00000000,,0.22093023,90.00000000,3.98230088,0.03333333,0.01098901,5.41000000 +5773,chr22,31145274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.61000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +5774,chr22,31145921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.95000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,7.13000000 +5775,chr22,31147274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,4.86000000 +5776,chr22,31149405,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.74000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.39000000 +5777,chr22,31149549,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,82.00000000,0.00000000,0.37000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,5.96000000 +5778,chr22,31149785,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.19791667,98.00000000,4.33628319,0.02040816,0.00000000,6.17000000 +5779,chr22,31150965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.84000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +5780,chr22,31151131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,0.48000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.50000000 +5781,chr22,31151198,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.30000000 +5782,chr22,31152210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.13000000 +5783,chr22,31154213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,6.62000000 +5784,chr22,31156716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.19000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.51000000 +5785,chr22,31157368,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,87.00000000,0.00000000,0.34000000,0.00000000,,0.20202020,99.00000000,4.38053097,0.00000000,0.00000000,6.05000000 +5786,chr22,31160117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,60.00000000,0.00000000,0.12000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.60000000 +5787,chr22,31160773,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.30000000,0.00000000,,0.30681818,88.00000000,3.89380531,0.00000000,0.00000000,6.45000000 +5788,chr22,31163958,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,1.31000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.13000000 +5789,chr22,31165146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.21000000,0.00000000,,0.19277108,87.00000000,3.84955752,0.04597701,0.00000000,6.03000000 +5790,chr22,31167569,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-1.93000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.36000000 +5791,chr22,31169108,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.27000000 +5792,chr22,31170392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-0.38000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.42000000 +5793,chr22,31181718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.13000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.23880597,67.00000000,2.96460177,0.00000000,0.00000000,6.02000000 +5794,chr22,31181864,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,0.00000000,-1.43000000,0.00000000,,0.43396226,55.00000000,2.43362832,0.03636364,0.00000000,4.03000000 +5795,chr22,31182575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,1.43000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.38000000 +5796,chr22,31184260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.84000000,0.00000000,,0.12903226,68.00000000,3.00884956,0.07352941,0.00000000,5.43000000 +5797,chr22,31184360,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.03000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.60000000 +5798,chr22,31185787,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.10000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.01408451,0.00000000,6.44000000 +5799,chr22,31186676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.26966292,90.00000000,3.98230088,0.01111111,0.00000000,5.67000000 +5800,chr22,31189234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.85000000,0.00000000,,0.22857143,76.00000000,3.36283186,0.06578947,0.00000000,6.53000000 +5801,chr22,31191169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.33000000 +5802,chr22,31191172,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +5803,chr22,31191205,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.75000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +5804,chr22,31195242,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,1.79000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,5.84000000 +5805,chr22,31203985,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.88000000,4.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.29032258,0.00000000,61.00000000,0.00000000,0.96000000,0.00000000,,0.17241379,73.00000000,3.23008850,0.20547945,0.00000000,5.10000000 +5806,chr22,31206786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.56000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,91.00000000,0.00000000,0.15000000,0.00000000,,0.34210526,77.00000000,3.40707965,0.01298701,0.00000000,7.79000000 +5807,chr22,31207479,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-0.34000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +5808,chr22,31214520,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.43000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +5809,chr22,31220183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,80.00000000,0.00000000,-1.57000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.68000000 +5810,chr22,31227456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.27000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.35000000 +5811,chr22,31232003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.35000000,0.00000000,,0.30000000,83.00000000,3.67256637,0.01204819,0.00000000,7.44000000 +5812,chr22,31237036,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.52000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.17000000 +5813,chr22,31241677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.69000000,0.00000000,,0.33333333,81.00000000,3.58407080,0.00000000,0.00000000,8.88000000 +5814,chr22,31243523,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,1.50000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.15000000 +5815,chr22,31248978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-1.18000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +5816,chr22,31252308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.20000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.86000000 +5817,chr22,31258837,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.30000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.00000000,0.00000000,6.98000000 +5818,chr22,31261196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.89000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.29000000 +5819,chr22,31263115,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.27000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +5820,chr22,31264506,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.39000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.34000000 +5821,chr22,31268046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.46000000 +5822,chr22,31269058,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,1.04000000,0.00000000,,0.12500000,67.00000000,2.96460177,0.04477612,0.00000000,4.80000000 +5823,chr22,31269644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.41000000 +5824,chr22,31272168,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,92.00000000,0.00000000,0.10000000,0.00000000,,0.23469388,101.00000000,4.46902655,0.01980198,0.00000000,5.26000000 +5825,chr22,31272264,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.41666667,0.00000000,59.00000000,0.00000000,-0.62000000,0.00000000,,0.28333333,75.00000000,3.31858407,0.18666667,0.00000000,4.55000000 +5826,chr22,31273382,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.25000000 +5827,chr22,31274230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.61000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.79000000 +5828,chr22,31281006,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.22000000,0.00000000,,0.16666667,86.00000000,3.80530973,0.02325581,0.00000000,5.59000000 +5829,chr22,31283463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.66000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,6.00000000 +5830,chr22,31283560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,1.05000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,5.88000000 +5831,chr22,31283683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,1.98000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.03488372,0.00000000,5.40000000 +5832,chr22,31287578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.93000000,0.00000000,,0.22950820,62.00000000,2.74336283,0.01612903,0.00000000,4.78000000 +5833,chr22,31290116,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.68000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.02597403,0.00000000,5.47000000 +5834,chr22,31294935,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.58000000,0.00000000,,0.25316456,82.00000000,3.62831858,0.03658537,0.00000000,6.66000000 +5835,chr22,31297599,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.67000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.89000000 +5836,chr22,31299803,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,1.50000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.01234568,0.00000000,5.92000000 +5837,chr22,31300292,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.52000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.21000000 +5838,chr22,31303716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,5.10000000 +5839,chr22,31315205,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.79000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +5840,chr22,31320205,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,85.00000000,0.00000000,-0.15000000,0.00000000,,0.20879121,97.00000000,4.29203540,0.05154639,0.00000000,5.63000000 +5841,chr22,31329430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.02247191,0.00000000,6.38000000 +5842,chr22,31331484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.18000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.63000000 +5843,chr22,31341450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.98000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.01098901,0.00000000,5.94000000 +5844,chr22,31348013,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +5845,chr22,31351800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.01369863,6.36000000 +5846,chr22,31371072,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.00000000,0.00000000,7.23000000 +5847,chr22,31377587,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.28985507,72.00000000,3.18584071,0.02777778,0.00000000,6.65000000 +5848,chr22,31380260,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,1.04000000,0.00000000,,0.27272727,56.00000000,2.47787611,0.01785714,0.00000000,2.78000000 +5849,chr22,31387920,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.82000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,6.64000000 +5850,chr22,31389983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.52000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.18000000 +5851,chr22,31390790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-2.10000000,0.00000000,,0.22972973,78.00000000,3.45132743,0.03846154,0.00000000,6.65000000 +5852,chr22,31393498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.07407407,0.00000000,6.43000000 +5853,chr22,31393683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,-1.07000000,0.00000000,,0.27184466,107.00000000,4.73451327,0.01869159,0.00000000,5.92000000 +5854,chr22,31394431,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,74.00000000,0.00000000,-0.12000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,5.43000000 +5855,chr22,31396306,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +5856,chr22,31398768,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.70000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.53000000 +5857,chr22,31407501,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,-0.02000000,0.00000000,,0.08695652,70.00000000,3.09734513,0.01428571,0.00000000,4.85000000 +5858,chr22,31410688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.13000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.02222222,0.00000000,6.55000000 +5859,chr22,31412538,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,27.00000000,0.00000000,-1.17000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,3.02000000 +5860,chr22,31417093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.28000000,0.00000000,,0.26027397,76.00000000,3.36283186,0.03947368,0.00000000,6.73000000 +5861,chr22,31418620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.28000000,78.00000000,3.45132743,0.02564103,0.00000000,5.90000000 +5862,chr22,31420751,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.41000000,0.00000000,,0.17582418,94.00000000,4.15929204,0.03191489,0.00000000,6.28000000 +5863,chr22,31420756,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.03191489,0.00000000,6.24000000 +5864,chr22,31423133,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.21000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +5865,chr22,31423156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.58000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.50000000 +5866,chr22,31423942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.93000000,0.00000000,,0.19402985,82.00000000,3.62831858,0.18292683,0.00000000,5.88000000 +5867,chr22,31425733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.52000000,0.00000000,,0.23076923,95.00000000,4.20353982,0.03157895,0.00000000,5.77000000 +5868,chr22,31430164,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.05000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +5869,chr22,31430406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.71000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.03703704,0.00000000,6.33000000 +5870,chr22,31441656,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,63.00000000,0.00000000,-0.28000000,0.00000000,,0.26732673,109.00000000,4.82300885,0.06422018,0.00000000,5.69000000 +5871,chr22,31442099,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.77000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,6.28000000 +5872,chr22,31443165,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,90.00000000,0.00000000,1.13000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +5873,chr22,31443258,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.56000000 +5874,chr22,31443964,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,85.00000000,0.00000000,0.03000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,5.86000000 +5875,chr22,31444393,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,86.00000000,0.00000000,0.19000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.62000000 +5876,chr22,31446104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.61000000,0.00000000,,0.22580645,64.00000000,2.83185841,0.03125000,0.00000000,6.60000000 +5877,chr22,31448387,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.83000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.52000000 +5878,chr22,31449167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +5879,chr22,31451926,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.45000000,0.00000000,,0.29577465,72.00000000,3.18584071,0.01388889,0.00000000,6.53000000 +5880,chr22,31454621,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,1.83000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,6.28000000 +5881,chr22,31455608,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,-1.94000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,6.87000000 +5882,chr22,31456372,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-1.31000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +5883,chr22,31457498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,6.38000000 +5884,chr22,31457546,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.50000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.52000000 +5885,chr22,31458384,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,100.00000000,0.00000000,-0.71000000,0.00000000,,0.28318584,114.00000000,5.04424779,0.00877193,0.00000000,5.84000000 +5886,chr22,31459262,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,0.32000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,5.98000000 +5887,chr22,31462043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +5888,chr22,31463525,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.36000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.87000000 +5889,chr22,31467568,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.10000000 +5890,chr22,31473481,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-1.39000000,0.00000000,,0.18478261,94.00000000,4.15929204,0.02127660,0.00000000,6.24000000 +5891,chr22,31478778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.18000000,0.00000000,,0.14285714,43.00000000,1.90265487,0.02325581,0.00000000,5.38000000 +5892,chr22,31478820,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.57000000,0.00000000,,0.16666667,37.00000000,1.63716814,0.02702703,0.00000000,2.89000000 +5893,chr22,31479668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,84.00000000,0.00000000,-1.82000000,0.00000000,,0.20253165,87.00000000,3.84955752,0.08045977,0.00000000,4.90000000 +5894,chr22,31485183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +5895,chr22,31485747,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.14000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.82000000 +5896,chr22,31485843,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.75000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.24000000 +5897,chr22,31488419,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.14018692,108.00000000,4.77876106,0.00925926,0.00000000,5.04000000 +5898,chr22,31493858,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.61000000,0.00000000,,0.16666667,50.00000000,2.21238938,0.04000000,0.00000000,5.63000000 +5899,chr22,31496135,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.01000000 +5900,chr22,31497004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.92000000,0.00000000,,0.16304348,96.00000000,4.24778761,0.04166667,0.00000000,4.99000000 +5901,chr22,31499288,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.04000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +5902,chr22,31500186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,34.00000000,0.00000000,-0.76000000,0.00000000,,0.27906977,52.00000000,2.30088496,0.17307692,0.00000000,2.76000000 +5903,chr22,31501092,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,1.01000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.31000000 +5904,chr22,31504238,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.52000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,5.82000000 +5905,chr22,31505407,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.18072289,89.00000000,3.93805310,0.06741573,0.00000000,6.01000000 +5906,chr22,31509578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +5907,chr22,31509842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.83000000,0.00000000,,0.22826087,92.00000000,4.07079646,0.00000000,0.00000000,6.64000000 +5908,chr22,31511441,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,-0.32000000,0.00000000,,0.19230769,85.00000000,3.76106195,0.08235294,0.00000000,5.39000000 +5909,chr22,31517285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,1.08000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.70000000 +5910,chr22,31522274,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.60000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,5.92000000 +5911,chr22,31522836,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +5912,chr22,31529742,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.32500000,80.00000000,3.53982301,0.00000000,0.00000000,8.16000000 +5913,chr22,31535411,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.84000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.01562500,0.00000000,7.03000000 +5914,chr22,31542735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.22000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,6.50000000 +5915,chr22,31544106,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.78000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.44000000 +5916,chr22,31545254,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +5917,chr22,31549341,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,27.00000000,1.19469027,0.14814815,0.00000000,57.00000000,0.00000000,2.10000000,0.00000000,,0.22000000,65.00000000,2.87610619,0.15384615,0.00000000,3.31000000 +5918,chr22,31551406,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.30000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5919,chr22,31551407,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.30000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.29000000 +5920,chr22,31555822,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.28000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.68000000 +5921,chr22,31559922,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,0.39000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.81000000 +5922,chr22,31560995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.66000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.32000000 +5923,chr22,31561031,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.11000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +5924,chr22,31561181,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.58000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.45000000 +5925,chr22,31561697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.70000000,0.00000000,,0.27659574,95.00000000,4.20353982,0.01052632,0.00000000,6.66000000 +5926,chr22,31562232,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,0.00000000,-1.02000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,5.76000000 +5927,chr22,31563210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-0.17000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.00000000,0.00000000,5.92000000 +5928,chr22,31563285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.82000000 +5929,chr22,31565122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.73000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +5930,chr22,31567571,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,70.00000000,0.00000000,0.74000000,0.00000000,,0.25352113,84.00000000,3.71681416,0.15476190,0.00000000,5.74000000 +5931,chr22,31568989,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,5.89000000 +5932,chr22,31569068,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.69000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +5933,chr22,31569210,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.85000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.70000000 +5934,chr22,31569345,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,1.51000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,5.85000000 +5935,chr22,31569415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.24000000,0.00000000,,0.10526316,76.00000000,3.36283186,0.00000000,0.00000000,5.09000000 +5936,chr22,31571569,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.01000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.04054054,0.00000000,6.31000000 +5937,chr22,31571719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,1.56000000,0.00000000,,0.18000000,101.00000000,4.46902655,0.00000000,0.00000000,6.30000000 +5938,chr22,31576315,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.04000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.38000000 +5939,chr22,31577138,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.61000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +5940,chr22,31577520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,0.09000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,6.17000000 +5941,chr22,31579077,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,-0.26000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +5942,chr22,31579361,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.23404255,98.00000000,4.33628319,0.04081633,0.00000000,5.67000000 +5943,chr22,31580313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.82000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,6.25000000 +5944,chr22,31581769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.69000000,0.00000000,,0.25352113,75.00000000,3.31858407,0.02666667,0.00000000,6.40000000 +5945,chr22,31582345,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.46000000,0.00000000,,0.20000000,63.00000000,2.78761062,0.04761905,0.00000000,6.14000000 +5946,chr22,31586255,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.52000000,0.00000000,,0.23214286,56.00000000,2.47787611,0.00000000,0.00000000,6.53000000 +5947,chr22,31586270,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.02000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.53000000 +5948,chr22,31586629,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.66000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.01162791,6.79000000 +5949,chr22,31587085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,97.00000000,0.00000000,-0.19000000,0.00000000,,0.31683168,104.00000000,4.60176991,0.01923077,0.00000000,7.38000000 +5950,chr22,31587774,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +5951,chr22,31587917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.63000000,0.00000000,,0.26136364,89.00000000,3.93805310,0.00000000,0.00000000,6.69000000 +5952,chr22,31588490,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.40000000 +5953,chr22,31590314,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.74000000,23.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.79000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,6.42000000 +5954,chr22,31591361,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.92000000,24.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.06000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.08000000 +5955,chr22,31594593,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.00000000,0.00000000,45.00000000,0.00000000,-0.51000000,0.00000000,,0.36000000,51.00000000,2.25663717,0.01960784,0.00000000,4.35000000 +5956,chr22,31594646,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.03000000,0.00000000,,0.18000000,51.00000000,2.25663717,0.01960784,0.00000000,6.11000000 +5957,chr22,31594716,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,36.00000000,0.00000000,0.88000000,0.00000000,,0.31707317,42.00000000,1.85840708,0.02380952,0.00000000,3.39000000 +5958,chr22,31595104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.71000000 +5959,chr22,31595157,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.06000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,5.79000000 +5960,chr22,31595377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,61.00000000,0.00000000,-1.30000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.02247191,0.00000000,5.32000000 +5961,chr22,31596263,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,0.00000000,0.78000000,0.00000000,,0.15662651,85.00000000,3.76106195,0.02352941,0.00000000,5.30000000 +5962,chr22,31596278,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,0.65000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.02439024,0.00000000,5.13000000 +5963,chr22,31596390,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.88000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.29000000 +5964,chr22,31596588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,2.46000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.87000000 +5965,chr22,31597666,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.65000000,0.00000000,,0.12987013,78.00000000,3.45132743,0.00000000,0.00000000,5.48000000 +5966,chr22,31598088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,-1.77000000,0.00000000,,0.10526316,66.00000000,2.92035398,0.13636364,0.00000000,4.96000000 +5967,chr22,31599038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,32.00000000,0.00000000,-1.01000000,0.00000000,,0.31578947,57.00000000,2.52212389,0.00000000,0.00000000,3.06000000 +5968,chr22,31599209,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.17187500,66.00000000,2.92035398,0.03030303,0.00000000,5.61000000 +5969,chr22,31600377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.78000000,0.00000000,,0.22222222,84.00000000,3.71681416,0.03571429,0.00000000,6.00000000 +5970,chr22,31602626,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.85000000 +5971,chr22,31603141,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,94.00000000,0.00000000,1.91000000,0.00000000,,0.37179487,80.00000000,3.53982301,0.01250000,0.00000000,8.26000000 +5972,chr22,31603209,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,5.66000000 +5973,chr22,31605051,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.96000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.50000000 +5974,chr22,31607432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.99000000,0.00000000,,0.21428571,57.00000000,2.52212389,0.01754386,0.00000000,6.90000000 +5975,chr22,31607665,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.61000000 +5976,chr22,31607721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.14000000 +5977,chr22,31607812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.22000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.03750000,0.00000000,6.33000000 +5978,chr22,31609608,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.02000000,0.00000000,,0.49425287,89.00000000,3.93805310,0.02247191,0.00000000,8.41000000 +5979,chr22,31611167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,-0.65000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,5.84000000 +5980,chr22,31613998,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.03030303,84.00000000,0.00000000,0.23000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.01162791,6.37000000 +5981,chr22,31614056,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.94000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +5982,chr22,31615871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,1.49000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +5983,chr22,31616155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.68000000,0.00000000,,0.24731183,96.00000000,4.24778761,0.03125000,0.00000000,5.91000000 +5984,chr22,31617379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.69000000,0.00000000,,0.30136986,75.00000000,3.31858407,0.01333333,0.00000000,7.02000000 +5985,chr22,31617395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,1.47000000,0.00000000,,0.29069767,87.00000000,3.84955752,0.01149425,0.00000000,6.51000000 +5986,chr22,31617456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +5987,chr22,31617473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-0.04000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.24000000 +5988,chr22,31617519,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.14736842,95.00000000,4.20353982,0.00000000,0.00000000,5.44000000 +5989,chr22,31617830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.17708333,100.00000000,4.42477876,0.03000000,0.00000000,6.22000000 +5990,chr22,31619328,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.15000000,0.00000000,,0.23529412,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +5991,chr22,31620106,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.30000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.01075269,0.00000000,6.57000000 +5992,chr22,31620173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.15000000 +5993,chr22,31621310,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.99000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,5.92000000 +5994,chr22,31624062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,5.38000000 +5995,chr22,31624328,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.06000000 +5996,chr22,31624427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +5997,chr22,31624759,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,62.00000000,0.00000000,0.60000000,0.00000000,,0.16438356,85.00000000,3.76106195,0.10588235,0.00000000,5.37000000 +5998,chr22,31624881,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.36000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.03750000,0.00000000,6.32000000 +5999,chr22,31625364,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-2.05000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.58000000 +6000,chr22,31625610,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.43000000 +6001,chr22,31626723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.02325581,43.00000000,1.90265487,0.00000000,0.00000000,95.00000000,0.00000000,-1.82000000,0.00000000,,0.29545455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +6002,chr22,31626862,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.40000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,6.09000000 +6003,chr22,31627023,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,0.55000000,0.00000000,,0.18627451,105.00000000,4.64601770,0.01904762,0.00000000,6.28000000 +6004,chr22,31627103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,-0.07000000,0.00000000,,0.19101124,95.00000000,4.20353982,0.05263158,0.00000000,5.96000000 +6005,chr22,31628994,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-0.09000000,0.00000000,,0.36363636,67.00000000,2.96460177,0.01492537,0.00000000,7.71000000 +6006,chr22,31629069,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.83000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.84000000 +6007,chr22,31629114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.01000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.28000000 +6008,chr22,31630960,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.84000000,0.00000000,,0.19540230,91.00000000,4.02654867,0.04395604,0.00000000,6.13000000 +6009,chr22,31630975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17391304,97.00000000,4.29203540,0.03092784,0.00000000,6.25000000 +6010,chr22,31631906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.15000000,0.00000000,,0.20000000,94.00000000,4.15929204,0.04255319,0.00000000,6.24000000 +6011,chr22,31632004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +6012,chr22,31632042,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,0.65000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,5.42000000 +6013,chr22,31632915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.53000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.64000000 +6014,chr22,31633140,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.05000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +6015,chr22,31633672,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.21052632,59.00000000,2.61061947,0.01694915,0.00000000,6.76000000 +6016,chr22,31633821,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,2.04000000,0.00000000,,0.22222222,94.00000000,4.15929204,0.04255319,0.00000000,6.27000000 +6017,chr22,31634601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.40000000 +6018,chr22,31634707,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.20000000 +6019,chr22,31634762,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,63.00000000,0.00000000,-0.51000000,0.00000000,,0.16216216,88.00000000,3.89380531,0.15909091,0.00000000,4.86000000 +6020,chr22,31634909,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.93000000,0.00000000,,0.15625000,69.00000000,3.05309735,0.07246377,0.00000000,5.84000000 +6021,chr22,31636054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,0.13000000,0.00000000,,0.14583333,98.00000000,4.33628319,0.02040816,0.00000000,5.05000000 +6022,chr22,31636076,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,64.00000000,0.00000000,0.91000000,0.00000000,,0.14444444,93.00000000,4.11504425,0.03225806,0.00000000,4.95000000 +6023,chr22,31636292,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.66000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +6024,chr22,31636456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.01000000 +6025,chr22,31636562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,66.00000000,0.00000000,0.02000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,4.98000000 +6026,chr22,31636989,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.77000000,0.00000000,,0.25000000,53.00000000,2.34513274,0.01886792,0.00000000,6.73000000 +6027,chr22,31639532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.23000000,0.00000000,,0.27368421,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6028,chr22,31641544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.91000000 +6029,chr22,31642840,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-1.61000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.00000000,0.00000000,6.91000000 +6030,chr22,31643325,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,6.33000000 +6031,chr22,31643865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +6032,chr22,31645069,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,2.92000000 +6033,chr22,31646359,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.17777778,93.00000000,4.11504425,0.02150538,0.00000000,5.67000000 +6034,chr22,31646528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,80.00000000,0.00000000,-0.38000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,4.84000000 +6035,chr22,31646746,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-1.32000000,0.00000000,,0.11392405,80.00000000,3.53982301,0.01250000,0.00000000,5.77000000 +6036,chr22,31647625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.34000000,0.00000000,,0.21212121,100.00000000,4.42477876,0.01000000,0.00000000,6.52000000 +6037,chr22,31647849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,87.00000000,0.00000000,-0.13000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,5.65000000 +6038,chr22,31648493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +6039,chr22,31649463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.20987654,85.00000000,3.76106195,0.04705882,0.00000000,6.37000000 +6040,chr22,31650036,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.58000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.03260870,0.00000000,6.23000000 +6041,chr22,31650217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.21212121,99.00000000,4.38053097,0.00000000,0.00000000,6.07000000 +6042,chr22,31650967,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.18000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +6043,chr22,31651124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.19000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.66000000 +6044,chr22,31651412,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.94000000,0.00000000,,0.35714286,84.00000000,3.71681416,0.00000000,0.00000000,8.92000000 +6045,chr22,31651955,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-2.37000000,0.00000000,,0.26966292,93.00000000,4.11504425,0.03225806,0.00000000,6.46000000 +6046,chr22,31653313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.99000000,0.00000000,,0.24468085,97.00000000,4.29203540,0.03092784,0.00000000,6.65000000 +6047,chr22,31656613,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.85000000,4.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-2.05000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +6048,chr22,31656720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,1.16000000,0.00000000,,0.15116279,86.00000000,3.80530973,0.00000000,0.00000000,5.23000000 +6049,chr22,31656752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,1.88000000,0.00000000,,0.17346939,98.00000000,4.33628319,0.00000000,0.00000000,5.46000000 +6050,chr22,31656864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.29000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.70000000 +6051,chr22,31657213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,6.17000000 +6052,chr22,31658040,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.55000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +6053,chr22,31658429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,87.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,93.00000000,4.11504425,0.03225806,0.00000000,5.31000000 +6054,chr22,31662283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,1.24000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.03448276,0.00000000,5.32000000 +6055,chr22,31664852,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.38000000,0.00000000,,0.25454545,57.00000000,2.52212389,0.03508772,0.00000000,6.60000000 +6056,chr22,31664877,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.45000000,0.00000000,,0.23728814,60.00000000,2.65486726,0.01666667,0.00000000,6.60000000 +6057,chr22,31666622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.88000000 +6058,chr22,31667710,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,54.00000000,0.00000000,-0.15000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,2.78000000 +6059,chr22,31668336,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.94000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +6060,chr22,31669094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.94000000 +6061,chr22,31670425,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.01000000,0.00000000,,0.28571429,52.00000000,2.30088496,0.01923077,0.00000000,7.54000000 +6062,chr22,31672931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,92.00000000,0.00000000,-0.66000000,0.00000000,,0.24742268,99.00000000,4.38053097,0.01010101,0.00000000,5.89000000 +6063,chr22,31673428,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.77000000 +6064,chr22,31673447,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.61000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +6065,chr22,31674172,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,-0.07000000,0.00000000,,0.29787234,97.00000000,4.29203540,0.03092784,0.00000000,6.44000000 +6066,chr22,31675133,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.92000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,6.26000000 +6067,chr22,31675209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.76000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.34000000 +6068,chr22,31678406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-2.00000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,4.92000000 +6069,chr22,31678911,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,0.65000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +6070,chr22,31679553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.44000000 +6071,chr22,31679645,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,1.23000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.70000000 +6072,chr22,31679913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.13978495,94.00000000,4.15929204,0.01063830,0.00000000,5.59000000 +6073,chr22,31680933,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.67000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.19000000 +6074,chr22,31680969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,34.00000000,1.50442478,0.05882353,0.00000000,62.00000000,0.00000000,0.51000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,5.55000000 +6075,chr22,31683461,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.64000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +6076,chr22,31685695,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,1.31000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +6077,chr22,31685943,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.23000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.33000000 +6078,chr22,31686168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,68.00000000,0.00000000,0.92000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.54000000 +6079,chr22,31686359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,0.04000000,0.00000000,,0.18518519,88.00000000,3.89380531,0.07954545,0.00000000,5.28000000 +6080,chr22,31686441,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,0.63000000,0.00000000,,0.13333333,91.00000000,4.02654867,0.01098901,0.00000000,5.15000000 +6081,chr22,31687770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.32000000,0.00000000,,0.27083333,49.00000000,2.16814159,0.02040816,0.00000000,6.38000000 +6082,chr22,31688348,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.40000000 +6083,chr22,31688566,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,0.80000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,5.80000000 +6084,chr22,31689479,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.00000000,0.00000000,6.25000000 +6085,chr22,31690383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.11000000,0.00000000,,0.26229508,61.00000000,2.69911504,0.00000000,0.00000000,6.73000000 +6086,chr22,31691057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.83000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,6.89000000 +6087,chr22,31691712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,5.91000000 +6088,chr22,31696995,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.10000000,0.00000000,,0.23157895,95.00000000,4.20353982,0.00000000,0.00000000,6.86000000 +6089,chr22,31697195,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-1.02000000,0.00000000,,0.18181818,82.00000000,3.62831858,0.06097561,0.00000000,6.38000000 +6090,chr22,31699161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.09000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,5.84000000 +6091,chr22,31699513,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.60000000,0.00000000,,0.13402062,98.00000000,4.33628319,0.01020408,0.00000000,5.55000000 +6092,chr22,31701789,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,2.73000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.36000000 +6093,chr22,31703230,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.14000000,0.00000000,,0.24210526,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +6094,chr22,31704564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.55000000,0.00000000,,0.25974026,80.00000000,3.53982301,0.03750000,0.00000000,6.27000000 +6095,chr22,31704871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,90.00000000,0.00000000,0.54000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.01149425,0.00000000,5.81000000 +6096,chr22,31708182,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,0.00000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,5.50000000 +6097,chr22,31708325,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.99000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.20000000 +6098,chr22,31708681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-1.44000000,0.00000000,,0.16666667,75.00000000,3.31858407,0.01333333,0.00000000,6.41000000 +6099,chr22,31709855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-1.06000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.03614458,0.00000000,5.67000000 +6100,chr22,31710018,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.07000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.63000000 +6101,chr22,31710716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,1.35000000,0.00000000,,0.36486486,77.00000000,3.40707965,0.01298701,0.00000000,8.15000000 +6102,chr22,31712489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.58000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +6103,chr22,31712838,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.02000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.06000000 +6104,chr22,31714957,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.85000000,0.00000000,,0.22448980,98.00000000,4.33628319,0.00000000,0.00000000,6.49000000 +6105,chr22,31717968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.28571429,56.00000000,2.47787611,0.12500000,0.00000000,5.66000000 +6106,chr22,31718857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.14000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-1.37000000,0.00000000,,0.16279070,43.00000000,1.90265487,0.00000000,0.00000000,6.23000000 +6107,chr22,31719583,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +6108,chr22,31719664,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.94000000 +6109,chr22,31719983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.21000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.47000000 +6110,chr22,31720397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.74000000,0.00000000,,0.17894737,96.00000000,4.24778761,0.01041667,0.00000000,6.45000000 +6111,chr22,31721546,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,58.00000000,0.00000000,-0.81000000,0.00000000,,0.18518519,74.00000000,3.27433628,0.24324324,0.00000000,4.03000000 +6112,chr22,31724042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.32000000 +6113,chr22,31724387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.69000000 +6114,chr22,31727710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.85000000,0.00000000,,0.22807018,58.00000000,2.56637168,0.00000000,0.00000000,3.83000000 +6115,chr22,31728484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,1.13000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.89000000 +6116,chr22,31728792,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,87.00000000,0.00000000,1.11000000,0.00000000,,0.24761905,115.00000000,5.08849558,0.07826087,0.00000000,5.80000000 +6117,chr22,31730377,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,2.33000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.54000000 +6118,chr22,31732285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.70000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.27000000 +6119,chr22,31733470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.99000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +6120,chr22,31733564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.48000000 +6121,chr22,31734263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.54000000,0.00000000,,0.27956989,93.00000000,4.11504425,0.00000000,0.00000000,6.44000000 +6122,chr22,31734291,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.67000000 +6123,chr22,31735036,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.14678899,111.00000000,4.91150442,0.01801802,0.00000000,5.43000000 +6124,chr22,31735947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-1.48000000,0.00000000,,0.20370370,58.00000000,2.56637168,0.06896552,0.00000000,2.84000000 +6125,chr22,31736198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,52.00000000,0.00000000,-0.94000000,0.00000000,,0.29824561,64.00000000,2.83185841,0.10937500,0.00000000,3.02000000 +6126,chr22,31737857,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.92000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,4.12000000 +6127,chr22,31738228,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.11827957,97.00000000,4.29203540,0.04123711,0.00000000,4.94000000 +6128,chr22,31739596,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.24038462,106.00000000,4.69026549,0.01886792,0.00000000,5.88000000 +6129,chr22,31739826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.12000000 +6130,chr22,31740394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.40000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.39000000 +6131,chr22,31742152,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.01492537,0.00000000,6.34000000 +6132,chr22,31744393,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.64000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.68000000 +6133,chr22,31744948,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.21000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +6134,chr22,31745202,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,6.45000000 +6135,chr22,31747257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.29000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.17000000 +6136,chr22,31748893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,6.53000000 +6137,chr22,31755718,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.21666667,123.00000000,5.44247788,0.02439024,0.00000000,5.86000000 +6138,chr22,31757856,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-0.01000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.95000000 +6139,chr22,31758936,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.19512195,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.14084507,80.00000000,3.53982301,0.10000000,0.00000000,4.47000000 +6140,chr22,31759355,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.70000000,0.00000000,,0.14285714,72.00000000,3.18584071,0.02777778,0.00000000,5.39000000 +6141,chr22,31760166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,52.00000000,0.00000000,-1.40000000,0.00000000,,0.30508475,65.00000000,2.87610619,0.09230769,0.00000000,2.84000000 +6142,chr22,31762435,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.01000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.63000000 +6143,chr22,31764641,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.48000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,6.65000000 +6144,chr22,31765581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.82000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.01333333,0.00000000,6.64000000 +6145,chr22,31769522,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.64000000,0.00000000,,0.32222222,90.00000000,3.98230088,0.00000000,0.00000000,7.69000000 +6146,chr22,31770360,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.03278689,0.00000000,5.98000000 +6147,chr22,31771285,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.59000000 +6148,chr22,31771927,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.66000000,0.00000000,,0.25742574,103.00000000,4.55752212,0.01941748,0.00000000,5.84000000 +6149,chr22,31774912,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.68000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.71000000 +6150,chr22,31780333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.52000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.76000000 +6151,chr22,31781835,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.45000000,0.00000000,,0.26785714,56.00000000,2.47787611,0.00000000,0.00000000,6.62000000 +6152,chr22,31785273,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.43000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +6153,chr22,31786573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.68000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.57000000 +6154,chr22,31786722,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,5.83000000 +6155,chr22,31789443,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,76.00000000,0.00000000,0.68000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.03260870,0.00000000,5.59000000 +6156,chr22,31790711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.57000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,6.08000000 +6157,chr22,31793928,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.17000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +6158,chr22,31797243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.30000000 +6159,chr22,31802876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.56000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.01298701,0.00000000,6.66000000 +6160,chr22,31802982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.31000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +6161,chr22,31803414,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.42000000,0.00000000,,0.32432432,74.00000000,3.27433628,0.00000000,0.00000000,7.97000000 +6162,chr22,31804417,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.94000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.81000000 +6163,chr22,31806893,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.58000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +6164,chr22,31807909,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.62000000 +6165,chr22,31809248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,2.61000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.76000000 +6166,chr22,31809646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.11000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,4.30000000 +6167,chr22,31809848,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.27397260,75.00000000,3.31858407,0.02666667,0.00000000,5.72000000 +6168,chr22,31811217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,1.55000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.98000000 +6169,chr22,31812279,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.74000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.23000000 +6170,chr22,31815464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.15517241,79.00000000,3.49557522,0.26582278,0.00000000,5.19000000 +6171,chr22,31824643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.45000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.73000000 +6172,chr22,31831944,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +6173,chr22,31832165,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.71000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.41000000 +6174,chr22,31833991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +6175,chr22,31834362,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,2.54000000,0.00000000,,0.32051282,78.00000000,3.45132743,0.00000000,0.00000000,7.58000000 +6176,chr22,31834661,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.37000000,0.00000000,,0.29508197,63.00000000,2.78761062,0.01587302,0.00000000,5.50000000 +6177,chr22,31836302,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-1.78000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +6178,chr22,31844141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.22972973,77.00000000,3.40707965,0.02597403,0.00000000,6.67000000 +6179,chr22,31844240,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.44000000 +6180,chr22,31854739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.12000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.77000000 +6181,chr22,31855463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.12857143,80.00000000,3.53982301,0.10000000,0.00000000,4.82000000 +6182,chr22,31862181,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.23000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,6.36000000 +6183,chr22,31867145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,-1.18000000,0.00000000,,0.09411765,86.00000000,3.80530973,0.01162791,0.00000000,5.66000000 +6184,chr22,31877490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.79000000,0.00000000,,0.16071429,65.00000000,2.87610619,0.12307692,0.00000000,5.49000000 +6185,chr22,31881877,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-0.73000000,0.00000000,,0.17187500,66.00000000,2.92035398,0.03030303,0.00000000,5.42000000 +6186,chr22,31886061,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,1.06000000,0.00000000,,0.20000000,79.00000000,3.49557522,0.05063291,0.00000000,6.28000000 +6187,chr22,31908301,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,2.24000000,0.00000000,,0.17500000,85.00000000,3.76106195,0.04705882,0.00000000,5.82000000 +6188,chr22,31961956,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,7.00000000 +6189,chr22,31984081,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.81000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,6.13000000 +6190,chr22,32026142,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,0.65000000,0.00000000,,0.29508197,61.00000000,2.69911504,0.00000000,0.00000000,2.89000000 +6191,chr22,32036659,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.71000000 +6192,chr22,32043287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-1.05000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.39000000 +6193,chr22,32050818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.46000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.95000000 +6194,chr22,32056941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.11000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.85000000 +6195,chr22,32071664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.78000000 +6196,chr22,32075141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.40000000,0.00000000,,0.14814815,61.00000000,2.69911504,0.09836066,0.00000000,4.97000000 +6197,chr22,32120903,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.22000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,5.22000000 +6198,chr22,32142440,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.46000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.87000000 +6199,chr22,32152465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.47000000,15.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,85.00000000,0.00000000,-1.59000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.36000000 +6200,chr22,32165850,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,2.66000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.58000000 +6201,chr22,32181533,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.54000000 +6202,chr22,32182165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,0.42000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,5.81000000 +6203,chr22,32183026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.90000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +6204,chr22,32183198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.40000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.03947368,0.00000000,5.97000000 +6205,chr22,32184143,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-0.90000000,0.00000000,,0.14102564,82.00000000,3.62831858,0.04878049,0.00000000,5.42000000 +6206,chr22,32186377,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,-0.61000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.87000000 +6207,chr22,32189655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05882353,18.00000000,0.79646018,0.00000000,0.00000000,5.00000000,0.00000000,-0.85000000,0.00000000,,0.31168831,79.00000000,3.49557522,0.00000000,0.00000000,3.33000000 +6208,chr22,32193431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,70.00000000,0.00000000,-1.41000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.06000000 +6209,chr22,32197396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.15116279,88.00000000,3.89380531,0.02272727,0.00000000,4.98000000 +6210,chr22,32197419,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.16279070,92.00000000,4.07079646,0.06521739,0.00000000,5.46000000 +6211,chr22,32199903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,90.00000000,0.00000000,0.48000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,5.59000000 +6212,chr22,32199969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.81000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.28000000 +6213,chr22,32203915,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.15789474,0.00000000,36.00000000,0.00000000,-2.80000000,0.00000000,,0.36538462,64.00000000,2.83185841,0.18750000,0.00000000,4.11000000 +6214,chr22,32206601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,-1.30000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,6.39000000 +6215,chr22,32208899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-1.42000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.02469136,0.00000000,5.93000000 +6216,chr22,32210803,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.83000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.40000000 +6217,chr22,32210816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.69000000 +6218,chr22,32210901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,7.01000000 +6219,chr22,32211070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.50000000 +6220,chr22,32211087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +6221,chr22,32211129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.19753086,87.00000000,3.84955752,0.06896552,0.00000000,5.72000000 +6222,chr22,32211187,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +6223,chr22,32211188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.64000000 +6224,chr22,32211678,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-1.47000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,7.18000000 +6225,chr22,32212040,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-1.77000000,0.00000000,,0.18750000,69.00000000,3.05309735,0.05797101,0.00000000,6.28000000 +6226,chr22,32212117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,1.19000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.86000000 +6227,chr22,32212615,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.00000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +6228,chr22,32213236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,1.34000000,0.00000000,,0.11764706,72.00000000,3.18584071,0.05555556,0.00000000,4.63000000 +6229,chr22,32213368,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,5.85000000 +6230,chr22,32213381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.20000000,62.00000000,2.74336283,0.03225806,0.00000000,5.75000000 +6231,chr22,32213528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.09000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.10769231,69.00000000,3.05309735,0.04347826,0.00000000,3.84000000 +6232,chr22,32214034,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,6.82000000,,0.13829787,95.00000000,4.20353982,0.01052632,0.00000000,4.67000000 +6233,chr22,32215041,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.85000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.67000000 +6234,chr22,32215545,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,0.94000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.32000000 +6235,chr22,32216077,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,87.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,5.93000000 +6236,chr22,32216243,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.74000000 +6237,chr22,32217805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +6238,chr22,32220883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,0.68000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +6239,chr22,32221847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.00000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +6240,chr22,32223104,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.50000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +6241,chr22,32223228,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +6242,chr22,32224070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.40000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.00000000,0.00000000,6.76000000 +6243,chr22,32228402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.38000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,6.51000000 +6244,chr22,32229223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-2.07000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.88000000 +6245,chr22,32238890,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,0.29000000,0.00000000,,0.36065574,62.00000000,2.74336283,0.01612903,0.00000000,8.10000000 +6246,chr22,32239801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.22000000,0.00000000,,0.14705882,35.00000000,1.54867257,0.02857143,0.00000000,2.89000000 +6247,chr22,32239804,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-0.22000000,0.00000000,,0.14705882,35.00000000,1.54867257,0.02857143,0.00000000,2.90000000 +6248,chr22,32240893,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.13978495,94.00000000,4.15929204,0.01063830,0.00000000,5.56000000 +6249,chr22,32242340,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.15384615,65.00000000,2.87610619,0.00000000,0.00000000,5.57000000 +6250,chr22,32243251,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,1.78000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,5.66000000 +6251,chr22,32244718,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.70000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.00000000,0.00000000,6.64000000 +6252,chr22,32251345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.48000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,5.83000000 +6253,chr22,32252402,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,0.43000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +6254,chr22,32253444,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.89000000 +6255,chr22,32254587,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.92000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,44.00000000,0.00000000,-0.41000000,0.00000000,,0.36842105,57.00000000,2.52212389,0.00000000,0.00000000,3.97000000 +6256,chr22,32256042,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.01136364,0.00000000,6.48000000 +6257,chr22,32258180,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.57000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.57000000 +6258,chr22,32258794,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +6259,chr22,32260035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.14000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +6260,chr22,32260190,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.62000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.14000000 +6261,chr22,32261117,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,62.00000000,0.00000000,-0.97000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.06172840,0.00000000,5.44000000 +6262,chr22,32261780,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.72000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.01030928,0.00000000,6.87000000 +6263,chr22,32263644,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,80.00000000,0.00000000,-0.43000000,0.00000000,,0.23711340,97.00000000,4.29203540,0.00000000,0.00000000,6.36000000 +6264,chr22,32263897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.39000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.67000000 +6265,chr22,32264425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,1.11000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.22000000 +6266,chr22,32265844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,56.00000000,0.00000000,-0.26000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,4.86000000 +6267,chr22,32266397,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.89000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.66000000 +6268,chr22,32267166,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.27000000,0.00000000,,0.17073171,86.00000000,3.80530973,0.03488372,0.00000000,6.11000000 +6269,chr22,32267949,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.57000000,0.00000000,,0.21875000,68.00000000,3.00884956,0.05882353,0.00000000,6.70000000 +6270,chr22,32269802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-2.22000000,0.00000000,,0.15789474,97.00000000,4.29203540,0.02061856,0.00000000,5.52000000 +6271,chr22,32270020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.86000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,4.72000000 +6272,chr22,32271520,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,89.00000000,0.00000000,1.16000000,0.00000000,,0.38028169,72.00000000,3.18584071,0.01388889,0.00000000,8.16000000 +6273,chr22,32272384,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,8.17000000 +6274,chr22,32273832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.21212121,102.00000000,4.51327434,0.01960784,0.00000000,6.70000000 +6275,chr22,32273846,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.39000000,0.00000000,,0.21875000,98.00000000,4.33628319,0.02040816,0.00000000,6.26000000 +6276,chr22,32277060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-1.26000000,0.00000000,,0.15217391,92.00000000,4.07079646,0.00000000,0.00000000,5.86000000 +6277,chr22,32277472,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.37000000 +6278,chr22,32277542,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.13000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.36000000 +6279,chr22,32280456,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.63000000,0.00000000,,0.14516129,64.00000000,2.83185841,0.03125000,0.00000000,6.07000000 +6280,chr22,32285162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.49000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,5.95000000 +6281,chr22,32286032,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.54000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,5.58000000 +6282,chr22,32286034,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,0.54000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,5.72000000 +6283,chr22,32286192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.32000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.62000000 +6284,chr22,32286221,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.18000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +6285,chr22,32286253,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.07000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.73000000 +6286,chr22,32286328,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.07000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +6287,chr22,32287016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.37000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.01282051,0.00000000,6.90000000 +6288,chr22,32287178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.38000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.08000000 +6289,chr22,32287387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.48000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.09000000 +6290,chr22,32287509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,1.13000000,0.00000000,,0.09090909,89.00000000,3.93805310,0.01123596,0.00000000,4.84000000 +6291,chr22,32288668,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,58.00000000,0.00000000,1.32000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.01123596,0.00000000,4.13000000 +6292,chr22,32288872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-1.60000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.15000000 +6293,chr22,32289236,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,0.18000000,0.00000000,,0.17045455,94.00000000,4.15929204,0.03191489,0.00000000,5.62000000 +6294,chr22,32290112,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.23000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.85000000,0.00000000,,0.24444444,92.00000000,4.07079646,0.01086957,0.00000000,6.22000000 +6295,chr22,32290148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.86000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.02000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.05000000 +6296,chr22,32290207,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.52000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,1.72000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.00000000,0.00000000,6.28000000 +6297,chr22,32290223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.46000000 +6298,chr22,32290586,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.78000000,0.00000000,,0.18556701,97.00000000,4.29203540,0.00000000,0.00000000,6.26000000 +6299,chr22,32290609,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.32000000 +6300,chr22,32290667,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.15584416,77.00000000,3.40707965,0.00000000,0.00000000,5.93000000 +6301,chr22,32290697,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.95000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.00000000,0.00000000,6.63000000 +6302,chr22,32290875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.15000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.34000000 +6303,chr22,32291049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +6304,chr22,32291420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.17000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.64000000 +6305,chr22,32291596,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,6.36000000 +6306,chr22,32291640,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.69000000 +6307,chr22,32291681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.97000000 +6308,chr22,32291693,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +6309,chr22,32291771,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,74.00000000,0.00000000,0.59000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.55000000 +6310,chr22,32291793,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,0.00000000,0.83000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,5.06000000 +6311,chr22,32291830,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,1.30000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,4.67000000 +6312,chr22,32291982,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.37000000,0.00000000,,0.23333333,63.00000000,2.78761062,0.04761905,0.00000000,6.31000000 +6313,chr22,32292030,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.04000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.01562500,0.00000000,6.27000000 +6314,chr22,32292045,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.72000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.37000000 +6315,chr22,32292245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.73000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-2.91000000,0.00000000,,0.11666667,61.00000000,2.69911504,0.01639344,0.00000000,4.34000000 +6316,chr22,32292271,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.68000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-2.86000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.09589041,0.00000000,5.41000000 +6317,chr22,32292475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.00000000 +6318,chr22,32292505,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,79.00000000,0.00000000,1.38000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.01111111,6.08000000 +6319,chr22,32292532,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.57000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.83000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,6.06000000 +6320,chr22,32292570,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.59000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.15625000,97.00000000,4.29203540,0.01030928,0.00000000,5.56000000 +6321,chr22,32292934,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.23300971,104.00000000,4.60176991,0.00961538,0.00000000,5.92000000 +6322,chr22,32293194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,94.00000000,0.00000000,-1.82000000,0.00000000,,0.26595745,95.00000000,4.20353982,0.01052632,0.00000000,6.61000000 +6323,chr22,32293196,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,93.00000000,0.00000000,-1.53000000,0.00000000,,0.27472527,94.00000000,4.15929204,0.02127660,0.00000000,6.68000000 +6324,chr22,32293224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,1.76000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.45000000 +6325,chr22,32293631,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.06000000 +6326,chr22,32293653,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,-1.22000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,5.78000000 +6327,chr22,32293675,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.66000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +6328,chr22,32293683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.77000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.47000000 +6329,chr22,32293736,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,1.03000000,0.00000000,,0.13414634,84.00000000,3.71681416,0.01190476,0.00000000,5.59000000 +6330,chr22,32293900,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,85.00000000,0.00000000,-0.19000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,5.98000000 +6331,chr22,32293976,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,0.00000000,0.04000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,5.64000000 +6332,chr22,32294145,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.57000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,5.96000000 +6333,chr22,32294253,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-1.27000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.07000000 +6334,chr22,32294539,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.94000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.08571429,70.00000000,3.09734513,0.00000000,0.00000000,4.99000000 +6335,chr22,32294609,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.90000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.29000000 +6336,chr22,32300235,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.54000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,2.64000000,,0.07936508,63.00000000,2.78761062,0.00000000,0.00000000,4.42000000 +6337,chr22,32300360,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,60.00000000,0.00000000,0.18000000,2.32000000,,0.09677419,62.00000000,2.74336283,0.00000000,0.00000000,3.49000000 +6338,chr22,32300434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.90000000,2.01000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,4.21000000 +6339,chr22,32300522,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.33000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.23000000,1.59000000,,0.20000000,60.00000000,2.65486726,0.00000000,0.00000000,4.88000000 +6340,chr22,32300525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.24000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.70000000,2.31000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,5.02000000 +6341,chr22,32300614,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.87000000,0.00000000,,0.14925373,72.00000000,3.18584071,0.04166667,0.00000000,5.72000000 +6342,chr22,32300627,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.03000000 +6343,chr22,32300632,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.03896104,0.00000000,5.32000000 +6344,chr22,32300723,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,66.00000000,0.00000000,-0.70000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.86000000 +6345,chr22,32300749,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.53000000,0.00000000,,0.24000000,103.00000000,4.55752212,0.01941748,0.00000000,6.60000000 +6346,chr22,32300750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-0.86000000,0.00000000,,0.25252525,102.00000000,4.51327434,0.01960784,0.00000000,6.05000000 +6347,chr22,32300871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,1.14000000,0.00000000,,0.28048780,85.00000000,3.76106195,0.02352941,0.00000000,6.57000000 +6348,chr22,32300985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.31000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.27000000 +6349,chr22,32301031,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,0.05000000,0.00000000,,0.15789474,95.00000000,4.20353982,0.00000000,0.00000000,5.05000000 +6350,chr22,32301178,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.00000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.60000000 +6351,chr22,32301191,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +6352,chr22,32301402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,-0.73000000,0.00000000,,0.20000000,106.00000000,4.69026549,0.00000000,0.00000000,6.43000000 +6353,chr22,32301590,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.41000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,7.02000000 +6354,chr22,32301612,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.23000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,5.88000000 +6355,chr22,32301767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-1.46000000,0.00000000,,0.21590909,95.00000000,4.20353982,0.04210526,0.00000000,6.03000000 +6356,chr22,32301804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,-1.13000000,0.00000000,,0.24096386,93.00000000,4.11504425,0.10752688,0.00000000,2.81000000 +6357,chr22,32302031,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.40000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.24000000 +6358,chr22,32302374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.28000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.06250000,0.00000000,5.70000000 +6359,chr22,32302493,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.38000000,0.00000000,,0.23863636,90.00000000,3.98230088,0.02222222,0.00000000,6.33000000 +6360,chr22,32302528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.28000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.30000000 +6361,chr22,32302628,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,1.80000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.49000000 +6362,chr22,32302660,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.85000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6363,chr22,32302733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-2.36000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.65000000 +6364,chr22,32303002,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.18000000,0.00000000,,0.16666667,104.00000000,4.60176991,0.01923077,0.00000000,5.65000000 +6365,chr22,32303468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,0.00000000,-1.75000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.01234568,0.00000000,2.76000000 +6366,chr22,32303686,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,5.83000000 +6367,chr22,32303785,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.40000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.71000000 +6368,chr22,32303935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.13114754,62.00000000,2.74336283,0.00000000,0.00000000,5.48000000 +6369,chr22,32304183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +6370,chr22,32304311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.10000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.68000000 +6371,chr22,32304526,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,1.33000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +6372,chr22,32304756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.14000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.37000000 +6373,chr22,32305148,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-2.01000000,0.00000000,,0.20652174,95.00000000,4.20353982,0.03157895,0.00000000,6.08000000 +6374,chr22,32305165,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,65.00000000,0.00000000,-1.21000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.02150538,0.00000000,6.00000000 +6375,chr22,32305290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.11000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.82000000 +6376,chr22,32305666,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.68000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,5.19000000 +6377,chr22,32305783,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.78000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6378,chr22,32305953,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.37000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +6379,chr22,32305966,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.19000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.63000000 +6380,chr22,32305981,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.39000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +6381,chr22,32306036,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.00000000,0.00000000,,0.29787234,97.00000000,4.29203540,0.01030928,0.00000000,7.22000000 +6382,chr22,32306091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.23762376,105.00000000,4.64601770,0.02857143,0.00000000,5.77000000 +6383,chr22,32306391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,51.00000000,0.00000000,0.53000000,0.00000000,,0.27868852,69.00000000,3.05309735,0.11594203,0.00000000,2.87000000 +6384,chr22,32306829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.10000000,72.00000000,3.18584071,0.02777778,0.00000000,5.19000000 +6385,chr22,32306845,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-1.91000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.82000000 +6386,chr22,32306934,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.20000000,89.00000000,3.93805310,0.03370787,0.00000000,5.89000000 +6387,chr22,32306935,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,-0.09000000,0.00000000,,0.20238095,87.00000000,3.84955752,0.03448276,0.00000000,6.19000000 +6388,chr22,32307045,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.20967742,66.00000000,2.92035398,0.06060606,0.00000000,5.69000000 +6389,chr22,32307085,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-1.43000000,0.00000000,,0.16949153,60.00000000,2.65486726,0.01666667,0.00000000,5.70000000 +6390,chr22,32307108,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,-2.07000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.51000000 +6391,chr22,32307828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.61000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.69000000 +6392,chr22,32308244,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +6393,chr22,32308390,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.12000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +6394,chr22,32308459,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,-0.51000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.40000000 +6395,chr22,32308498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-1.14000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.75000000 +6396,chr22,32309033,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.61000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.05000000 +6397,chr22,32309111,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.41000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +6398,chr22,32309476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.21000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.38000000 +6399,chr22,32309484,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.02000000 +6400,chr22,32310234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,5.60000000 +6401,chr22,32311184,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.20000000 +6402,chr22,32311421,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,5.47000000 +6403,chr22,32311425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-0.13000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.46000000 +6404,chr22,32311480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,-1.67000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,5.94000000 +6405,chr22,32313236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +6406,chr22,32313866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.35000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.61000000 +6407,chr22,32318666,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.31000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,6.28000000 +6408,chr22,32319953,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.87000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.18000000 +6409,chr22,32320143,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.33000000,0.00000000,,0.28735632,88.00000000,3.89380531,0.01136364,0.00000000,6.66000000 +6410,chr22,32320272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +6411,chr22,32320359,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.72000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.28000000 +6412,chr22,32320805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,0.78000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.01204819,0.00000000,5.90000000 +6413,chr22,32320940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,1.54000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.00000000,0.00000000,6.30000000 +6414,chr22,32321186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-1.17000000,0.00000000,,0.32222222,90.00000000,3.98230088,0.00000000,0.00000000,8.35000000 +6415,chr22,32321205,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,86.00000000,0.00000000,-1.17000000,0.00000000,,0.28735632,88.00000000,3.89380531,0.01136364,0.00000000,6.43000000 +6416,chr22,32321217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,86.00000000,0.00000000,-0.89000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.38000000 +6417,chr22,32321716,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.49000000,0.00000000,,0.21739130,72.00000000,3.18584071,0.02777778,0.00000000,6.34000000 +6418,chr22,32321751,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.32000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.66000000 +6419,chr22,32324667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.67000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +6420,chr22,32324798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,85.00000000,0.00000000,1.51000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.63000000 +6421,chr22,32325104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.86000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6422,chr22,32325637,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.88000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.61000000 +6423,chr22,32326669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.56000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.23000000 +6424,chr22,32326976,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.96000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,5.32000000 +6425,chr22,32327051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,1.59000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.77000000 +6426,chr22,32328001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.27777778,92.00000000,4.07079646,0.02173913,0.00000000,6.36000000 +6427,chr22,32328016,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.50000000,0.00000000,,0.31325301,87.00000000,3.84955752,0.03448276,0.00000000,7.44000000 +6428,chr22,32328101,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.22000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.60000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,5.67000000 +6429,chr22,32328545,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.53000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,6.03000000 +6430,chr22,32328710,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.09000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +6431,chr22,32331557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.25423729,59.00000000,2.61061947,0.00000000,0.00000000,6.71000000 +6432,chr22,32331558,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.76000000 +6433,chr22,32332548,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.72000000,0.00000000,,0.38372093,87.00000000,3.84955752,0.01149425,0.00000000,8.54000000 +6434,chr22,32332882,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,0.00000000,-0.62000000,0.00000000,,0.43181818,90.00000000,3.98230088,0.02222222,0.00000000,7.62000000 +6435,chr22,32332979,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,58.00000000,0.00000000,0.08000000,0.00000000,,0.43023256,88.00000000,3.89380531,0.01136364,0.00000000,5.95000000 +6436,chr22,32333543,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-2.23000000,0.00000000,,0.43939394,68.00000000,3.00884956,0.01470588,0.00000000,4.72000000 +6437,chr22,32333552,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.17000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.31000000 +6438,chr22,32333786,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-0.68000000,0.00000000,,0.47692308,68.00000000,3.00884956,0.04411765,0.00000000,4.41000000 +6439,chr22,32333995,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.61000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,3.14000000 +6440,chr22,32335494,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.01298701,0.00000000,5.90000000 +6441,chr22,32335505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,5.97000000 +6442,chr22,32335641,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,0.09000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.19000000 +6443,chr22,32335831,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,1.62000000,0.00000000,,0.20547945,77.00000000,3.40707965,0.05194805,0.00000000,5.35000000 +6444,chr22,32335853,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,64.00000000,0.00000000,1.54000000,0.00000000,,0.40789474,82.00000000,3.62831858,0.04878049,0.00000000,7.80000000 +6445,chr22,32335859,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.14705882,0.00000000,73.00000000,0.00000000,1.79000000,0.00000000,,0.39743590,83.00000000,3.67256637,0.06024096,0.00000000,8.11000000 +6446,chr22,32335882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,76.00000000,0.00000000,1.17000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.02439024,0.00000000,5.68000000 +6447,chr22,32335930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.14000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,6.35000000 +6448,chr22,32336182,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.71000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.01265823,0.00000000,6.32000000 +6449,chr22,32336240,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.44000000,0.00000000,,0.26086957,73.00000000,3.23008850,0.04109589,0.00000000,5.55000000 +6450,chr22,32336370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.29000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.60000000 +6451,chr22,32336465,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.15294118,86.00000000,3.80530973,0.00000000,0.00000000,5.46000000 +6452,chr22,32336618,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.54000000,0.00000000,,0.19642857,59.00000000,2.61061947,0.05084746,0.00000000,6.19000000 +6453,chr22,32336657,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,-0.29000000,0.00000000,,0.41509434,56.00000000,2.47787611,0.03571429,0.00000000,4.51000000 +6454,chr22,32336687,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.45000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,4.31000000 +6455,chr22,32337045,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.04000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,7.29000000 +6456,chr22,32337267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.31000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.32000000 +6457,chr22,32337289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.33000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.33000000 +6458,chr22,32337917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,93.00000000,0.00000000,0.06000000,0.00000000,,0.28712871,102.00000000,4.51327434,0.00980392,0.00000000,5.71000000 +6459,chr22,32338622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.00000000,0.00000000,6.18000000 +6460,chr22,32338723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.55000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.70000000 +6461,chr22,32338805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.60000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.02325581,0.00000000,6.71000000 +6462,chr22,32339256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.28000000,0.00000000,,0.11594203,73.00000000,3.23008850,0.02739726,0.00000000,5.32000000 +6463,chr22,32339963,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.91000000,0.00000000,,0.45333333,78.00000000,3.45132743,0.02564103,0.00000000,4.61000000 +6464,chr22,32340389,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.17000000,0.00000000,,0.47435897,81.00000000,3.58407080,0.03703704,0.00000000,8.35000000 +6465,chr22,32340411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.89000000 +6466,chr22,32340680,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.60000000,0.00000000,,0.30555556,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +6467,chr22,32340868,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,16.00000000,0.00000000,-1.35000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.00000000,0.00000000,3.31000000 +6468,chr22,32341244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.27586207,62.00000000,2.74336283,0.06451613,0.00000000,4.92000000 +6469,chr22,32341247,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,-0.63000000,0.00000000,,0.13793103,63.00000000,2.78761062,0.07936508,0.00000000,4.28000000 +6470,chr22,32341746,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.75000000 +6471,chr22,32342178,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.77000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.01176471,0.00000000,6.65000000 +6472,chr22,32342195,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.75000000 +6473,chr22,32342364,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,94.00000000,0.00000000,-0.03000000,0.00000000,,0.27142857,72.00000000,3.18584071,0.02777778,0.00000000,5.55000000 +6474,chr22,32342482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,0.27000000,0.00000000,,0.29213483,90.00000000,3.98230088,0.01111111,0.00000000,6.56000000 +6475,chr22,32342851,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.36000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.31000000 +6476,chr22,32344049,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.13000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,8.36000000 +6477,chr22,32344057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.08000000,0.00000000,,0.22826087,95.00000000,4.20353982,0.03157895,0.00000000,6.58000000 +6478,chr22,32344258,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.09782609,99.00000000,4.38053097,0.05050505,0.00000000,4.84000000 +6479,chr22,32344324,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.75000000,0.00000000,,0.14444444,91.00000000,4.02654867,0.01098901,0.00000000,5.87000000 +6480,chr22,32344454,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.20000000,0.00000000,,0.42000000,102.00000000,4.51327434,0.00980392,0.00000000,8.60000000 +6481,chr22,32344848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,5.84000000 +6482,chr22,32345136,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,84.00000000,0.00000000,0.24000000,0.00000000,,0.18811881,103.00000000,4.55752212,0.00000000,0.00000000,5.92000000 +6483,chr22,32345958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,95.00000000,0.00000000,-0.21000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.07000000 +6484,chr22,32346391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.31000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,1.13000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.01492537,0.00000000,5.65000000 +6485,chr22,32346545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,57.77000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.80000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,2.97000000 +6486,chr22,32346557,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.72000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,47.00000000,0.00000000,1.14000000,0.00000000,,0.40625000,65.00000000,2.87610619,0.01538462,0.00000000,4.24000000 +6487,chr22,32346613,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.02000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.12000000,0.00000000,,0.32258065,62.00000000,2.74336283,0.00000000,0.00000000,7.88000000 +6488,chr22,32347599,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.73000000,7.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,21.00000000,0.00000000,2.20000000,0.00000000,,0.36956522,46.00000000,2.03539823,0.00000000,0.00000000,3.67000000 +6489,chr22,32347936,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.16000000,0.00000000,,0.23076923,94.00000000,4.15929204,0.03191489,0.00000000,6.45000000 +6490,chr22,32347982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.28000000,0.00000000,,0.26213592,106.00000000,4.69026549,0.02830189,0.00000000,6.28000000 +6491,chr22,32348058,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,1.08000000,0.00000000,,0.37777778,93.00000000,4.11504425,0.03225806,0.00000000,7.60000000 +6492,chr22,32348124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-1.60000000,0.00000000,,0.12345679,81.00000000,3.58407080,0.00000000,0.00000000,5.48000000 +6493,chr22,32348424,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.70000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.01219512,0.00000000,5.49000000 +6494,chr22,32348557,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.24000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.02500000,0.00000000,6.24000000 +6495,chr22,32348609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.57000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +6496,chr22,32349175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.88000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,7.05000000 +6497,chr22,32349253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.74000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.27000000 +6498,chr22,32349431,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.23863636,91.00000000,4.02654867,0.03296703,0.00000000,5.72000000 +6499,chr22,32349929,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.01000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.73000000 +6500,chr22,32349966,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.17000000,0.00000000,,0.31944444,73.00000000,3.23008850,0.01369863,0.00000000,7.40000000 +6501,chr22,32350289,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.67000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.96000000 +6502,chr22,32350312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.34000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.72000000 +6503,chr22,32351075,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.48387097,62.00000000,2.74336283,0.00000000,0.00000000,8.52000000 +6504,chr22,32351266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-2.23000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.68000000 +6505,chr22,32351934,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,17.00000000,0.00000000,0.67000000,0.00000000,,0.34146341,42.00000000,1.85840708,0.02380952,0.00000000,2.97000000 +6506,chr22,32352108,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,34.00000000,0.00000000,-0.14000000,0.00000000,,0.54545455,56.00000000,2.47787611,0.01785714,0.00000000,3.90000000 +6507,chr22,32352470,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,25.00000000,0.00000000,-0.39000000,0.00000000,,0.51724138,91.00000000,4.02654867,0.03296703,0.00000000,3.25000000 +6508,chr22,32352603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.09000000 +6509,chr22,32352886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,95.00000000,0.00000000,-1.24000000,0.00000000,,0.24761905,105.00000000,4.64601770,0.00000000,0.00000000,6.38000000 +6510,chr22,32353807,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.24096386,88.00000000,3.89380531,0.04545455,0.00000000,5.99000000 +6511,chr22,32354055,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.25925926,0.00000000,57.00000000,0.00000000,-1.20000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.10256410,0.00000000,2.78000000 +6512,chr22,32354338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.16000000,0.00000000,59.00000000,0.00000000,0.43000000,0.00000000,,0.21621622,48.00000000,2.12389381,0.20833333,0.00000000,4.32000000 +6513,chr22,32354688,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.81000000,0.00000000,,0.22222222,59.00000000,2.61061947,0.08474576,0.00000000,4.89000000 +6514,chr22,32355074,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,-0.94000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +6515,chr22,32355086,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.43000000,0.00000000,,0.28000000,78.00000000,3.45132743,0.03846154,0.00000000,6.19000000 +6516,chr22,32355468,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.79000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.29000000 +6517,chr22,32355928,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,87.00000000,0.00000000,0.99000000,0.00000000,,0.37500000,74.00000000,3.27433628,0.02702703,0.00000000,8.04000000 +6518,chr22,32356506,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,6.06000000 +6519,chr22,32356720,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,1.24000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,2.92000000 +6520,chr22,32357917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.52000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,6.09000000 +6521,chr22,32360473,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.33000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,6.33000000 +6522,chr22,32360757,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-0.50000000,0.00000000,,0.52112676,73.00000000,3.23008850,0.02739726,0.00000000,4.64000000 +6523,chr22,32361496,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.36000000 +6524,chr22,32361805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.69000000 +6525,chr22,32362084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.01052632,0.00000000,6.09000000 +6526,chr22,32363038,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.09000000,0.00000000,,0.26136364,93.00000000,4.11504425,0.04301075,0.00000000,6.33000000 +6527,chr22,32364575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.15000000,0.00000000,,0.42857143,71.00000000,3.14159292,0.01408451,0.00000000,8.13000000 +6528,chr22,32364831,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,60.00000000,0.00000000,1.97000000,0.00000000,,0.41304348,57.00000000,2.52212389,0.19298246,0.00000000,7.03000000 +6529,chr22,32365132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,0.67000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +6530,chr22,32365818,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.71000000 +6531,chr22,32365914,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.69000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.39000000 +6532,chr22,32366164,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.38000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,5.96000000 +6533,chr22,32366271,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,-0.24000000,0.00000000,,0.31168831,77.00000000,3.40707965,0.00000000,0.00000000,6.91000000 +6534,chr22,32366314,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +6535,chr22,32366374,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-1.55000000,0.00000000,,0.45977011,87.00000000,3.84955752,0.00000000,0.00000000,9.10000000 +6536,chr22,32366419,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,77.00000000,0.00000000,0.11000000,0.00000000,,0.17777778,93.00000000,4.11504425,0.03225806,0.00000000,5.37000000 +6537,chr22,32366585,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.74000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.80000000 +6538,chr22,32366750,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.31000000,0.00000000,,0.46875000,66.00000000,2.92035398,0.03030303,0.00000000,8.03000000 +6539,chr22,32366756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-0.65000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.25000000 +6540,chr22,32366915,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.45000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +6541,chr22,32366950,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,78.00000000,0.00000000,-0.32000000,0.00000000,,0.17647059,103.00000000,4.55752212,0.00970874,0.00000000,5.82000000 +6542,chr22,32367005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.35000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.28000000 +6543,chr22,32367125,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.30000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.70000000 +6544,chr22,32367182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.04000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +6545,chr22,32367267,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.30000000 +6546,chr22,32367608,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-1.30000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +6547,chr22,32367800,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.20000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.00000000 +6548,chr22,32367842,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.63000000 +6549,chr22,32368401,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,0.74000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.00000000 +6550,chr22,32368733,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.90000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +6551,chr22,32368882,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.08000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.01369863,0.00000000,6.35000000 +6552,chr22,32368894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.15492958,74.00000000,3.27433628,0.02702703,0.00000000,5.35000000 +6553,chr22,32369584,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.25000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.68000000 +6554,chr22,32369962,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.20000000,0.00000000,,0.25925926,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +6555,chr22,32370777,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.46000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +6556,chr22,32370998,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.70000000,0.00000000,,0.17241379,62.00000000,2.74336283,0.04838710,0.00000000,6.45000000 +6557,chr22,32371439,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.17948718,86.00000000,3.80530973,0.08139535,0.00000000,6.10000000 +6558,chr22,32371473,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.08000000,0.00000000,,0.22857143,76.00000000,3.36283186,0.06578947,0.00000000,3.17000000 +6559,chr22,32371507,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.29000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.03947368,0.00000000,6.07000000 +6560,chr22,32371682,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,2.05000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.77000000 +6561,chr22,32372061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.33000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,6.27000000 +6562,chr22,32372564,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-1.16000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,5.96000000 +6563,chr22,32373001,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.85000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,7.00000000 +6564,chr22,32373018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.55000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.78000000 +6565,chr22,32373111,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-2.23000000,0.00000000,,0.48421053,95.00000000,4.20353982,0.00000000,0.00000000,8.91000000 +6566,chr22,32373171,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.49000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +6567,chr22,32373187,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.02000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.04761905,0.00000000,6.28000000 +6568,chr22,32373364,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.79000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.27000000 +6569,chr22,32373429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.66000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.56000000 +6570,chr22,32373637,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,2.00000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.29000000 +6571,chr22,32373866,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.27272727,0.00000000,67.00000000,0.00000000,-1.17000000,0.00000000,,0.22413793,74.00000000,3.27433628,0.21621622,0.00000000,6.15000000 +6572,chr22,32374007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.04000000,0.00000000,6.33000000 +6573,chr22,32374169,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.00000000,0.00000000,6.36000000 +6574,chr22,32374213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.78000000,0.00000000,,0.24137931,87.00000000,3.84955752,0.00000000,0.00000000,6.70000000 +6575,chr22,32374394,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,1.07000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,5.88000000 +6576,chr22,32374431,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.53000000 +6577,chr22,32374517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.59000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.57000000 +6578,chr22,32374654,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.37000000,0.00000000,,0.30136986,76.00000000,3.36283186,0.03947368,0.00000000,6.37000000 +6579,chr22,32375030,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.50000000,0.00000000,,0.46666667,91.00000000,4.02654867,0.01098901,0.00000000,7.77000000 +6580,chr22,32376125,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,57.00000000,0.00000000,-1.19000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.04761905,0.00000000,4.87000000 +6581,chr22,32376503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.59000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +6582,chr22,32376694,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.00000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +6583,chr22,32376725,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,34.00000000,1.50442478,0.08823529,0.00000000,61.00000000,0.00000000,-0.16000000,0.00000000,,0.38961039,78.00000000,3.45132743,0.01282051,0.00000000,7.59000000 +6584,chr22,32376924,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,-2.40000000,0.00000000,,0.40789474,78.00000000,3.45132743,0.02564103,0.00000000,4.42000000 +6585,chr22,32377182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,5.90000000 +6586,chr22,32377194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.49000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,5.91000000 +6587,chr22,32377279,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.39000000,0.00000000,,0.28571429,74.00000000,3.27433628,0.01351351,0.00000000,7.96000000 +6588,chr22,32377373,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-0.38000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.25000000 +6589,chr22,32377431,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,65.00000000,0.00000000,1.13000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.01234568,0.00000000,5.77000000 +6590,chr22,32378142,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-1.51000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,8.35000000 +6591,chr22,32378957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.24137931,90.00000000,3.98230088,0.02222222,0.00000000,6.42000000 +6592,chr22,32379026,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-1.09000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.62000000 +6593,chr22,32379149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,0.15000000,0.00000000,,0.42168675,86.00000000,3.80530973,0.03488372,0.00000000,4.37000000 +6594,chr22,32379663,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.01369863,0.00000000,4.82000000 +6595,chr22,32380655,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,103.00000000,0.00000000,1.23000000,0.00000000,,0.37362637,94.00000000,4.15929204,0.03191489,0.00000000,13.81000000 +6596,chr22,32380894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.25581395,89.00000000,3.93805310,0.02247191,0.00000000,5.89000000 +6597,chr22,32381377,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,62.00000000,0.00000000,1.44000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,5.41000000 +6598,chr22,32381582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,5.68000000 +6599,chr22,32381865,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.28000000 +6600,chr22,32382267,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.02000000,0.00000000,,0.48148148,81.00000000,3.58407080,0.00000000,0.00000000,4.46000000 +6601,chr22,32383240,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,28.00000000,0.00000000,-0.64000000,0.00000000,,0.32183908,88.00000000,3.89380531,0.01136364,0.00000000,3.49000000 +6602,chr22,32383257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-1.15000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,2.75000000 +6603,chr22,32383937,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.38000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +6604,chr22,32384677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.31034483,60.00000000,2.65486726,0.03333333,0.00000000,6.52000000 +6605,chr22,32386006,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.90000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +6606,chr22,32386609,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-0.27000000,0.00000000,,0.31746032,65.00000000,2.87610619,0.03076923,0.00000000,3.65000000 +6607,chr22,32386999,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.35000000 +6608,chr22,32387137,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.44000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.15151515,0.00000000,4.87000000 +6609,chr22,32390267,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.26041667,97.00000000,4.29203540,0.01030928,0.00000000,6.18000000 +6610,chr22,32390642,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.58000000 +6611,chr22,32391951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.47000000,0.00000000,,0.21505376,96.00000000,4.24778761,0.03125000,0.00000000,6.48000000 +6612,chr22,32392089,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.01162791,0.00000000,8.63000000 +6613,chr22,32393533,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.81000000,0.00000000,,0.28888889,90.00000000,3.98230088,0.00000000,0.00000000,6.70000000 +6614,chr22,32395016,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.79000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,6.17000000 +6615,chr22,32395508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.00000000,0.00000000,,0.21276596,96.00000000,4.24778761,0.02083333,0.00000000,5.99000000 +6616,chr22,32395521,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.83000000,0.00000000,,0.19277108,88.00000000,3.89380531,0.05681818,0.00000000,6.08000000 +6617,chr22,32397547,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.49000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.34000000 +6618,chr22,32399654,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,1.34000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,5.23000000 +6619,chr22,32402578,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.12000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.45000000 +6620,chr22,32402772,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,38.00000000,0.00000000,1.38000000,0.00000000,,0.55172414,59.00000000,2.61061947,0.01694915,0.00000000,3.92000000 +6621,chr22,32402844,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.53000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.00000000,0.00000000,6.72000000 +6622,chr22,32403090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.93000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.02000000 +6623,chr22,32404113,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.46000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.99000000 +6624,chr22,32407604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.75000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.00000000,0.00000000,6.99000000 +6625,chr22,32408189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.00000000,0.00000000,6.83000000 +6626,chr22,32408638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,1.57000000,0.00000000,,0.24489796,99.00000000,4.38053097,0.01010101,0.00000000,5.98000000 +6627,chr22,32412091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.52000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.93000000 +6628,chr22,32412839,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,-1.67000000,0.00000000,,0.10989011,93.00000000,4.11504425,0.01075269,0.00000000,5.49000000 +6629,chr22,32414391,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.12000000,0.00000000,,0.26315789,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6630,chr22,32415243,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.18000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,4.40000000 +6631,chr22,32415965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,55.00000000,0.00000000,0.78000000,0.00000000,,0.45054945,94.00000000,4.15929204,0.03191489,0.00000000,4.16000000 +6632,chr22,32416204,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.21739130,74.00000000,3.27433628,0.06756757,0.00000000,5.84000000 +6633,chr22,32416325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.57000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +6634,chr22,32416471,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.62000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +6635,chr22,32417856,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.28000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.02666667,0.00000000,6.03000000 +6636,chr22,32417947,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.06000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,6.01000000 +6637,chr22,32418179,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +6638,chr22,32418545,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.25490196,52.00000000,2.30088496,0.01923077,0.00000000,6.29000000 +6639,chr22,32419411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,-0.87000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +6640,chr22,32420471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.71000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +6641,chr22,32421160,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,87.00000000,0.00000000,-0.11000000,0.00000000,,0.43333333,91.00000000,4.02654867,0.01098901,0.00000000,8.24000000 +6642,chr22,32422929,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.56000000,0.00000000,,0.12857143,70.00000000,3.09734513,0.00000000,0.00000000,5.22000000 +6643,chr22,32424379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,71.00000000,0.00000000,1.39000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,4.97000000 +6644,chr22,32424970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,31.00000000,0.00000000,-0.97000000,0.00000000,,0.38333333,60.00000000,2.65486726,0.00000000,0.00000000,3.95000000 +6645,chr22,32425085,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.02000000,0.00000000,,0.42857143,57.00000000,2.52212389,0.01754386,0.00000000,4.28000000 +6646,chr22,32425152,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.14000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,4.24000000 +6647,chr22,32425414,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,-0.03000000,0.00000000,,0.40983607,62.00000000,2.74336283,0.01612903,0.00000000,4.62000000 +6648,chr22,32426201,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.41000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.00000000 +6649,chr22,32426298,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.58000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.65000000 +6650,chr22,32426630,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.93000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,5.36000000 +6651,chr22,32428921,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.85000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.79000000 +6652,chr22,32429117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,-0.57000000,0.00000000,,0.32142857,85.00000000,3.76106195,0.01176471,0.00000000,7.56000000 +6653,chr22,32429427,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,73.00000000,0.00000000,1.09000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.10256410,0.00000000,5.96000000 +6654,chr22,32429578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.25000000,0.00000000,57.00000000,0.00000000,-2.91000000,0.00000000,,0.09433962,63.00000000,2.78761062,0.15873016,0.00000000,2.78000000 +6655,chr22,32429612,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,-2.10000000,0.00000000,,0.32786885,71.00000000,3.14159292,0.14084507,0.00000000,8.17000000 +6656,chr22,32429957,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.01250000,0.00000000,6.06000000 +6657,chr22,32430290,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.78000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,8.95000000 +6658,chr22,32431071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.03000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.00000000,0.00000000,6.98000000 +6659,chr22,32431599,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.69000000 +6660,chr22,32432085,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,-0.15000000,0.00000000,,0.48611111,74.00000000,3.27433628,0.02702703,0.00000000,4.36000000 +6661,chr22,32432221,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.22000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.04166667,0.00000000,5.78000000 +6662,chr22,32432237,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.23188406,72.00000000,3.18584071,0.04166667,0.00000000,5.81000000 +6663,chr22,32440645,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.47000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +6664,chr22,32442908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.79000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +6665,chr22,32443775,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.54000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.77000000 +6666,chr22,32444239,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,0.64000000,0.00000000,,0.29032258,63.00000000,2.78761062,0.01587302,0.00000000,6.24000000 +6667,chr22,32444708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,92.00000000,0.00000000,0.17000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.22000000 +6668,chr22,32444754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,0.00000000,0.05000000,0.00000000,,0.28571429,86.00000000,3.80530973,0.02325581,0.00000000,6.30000000 +6669,chr22,32446085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.14000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.83000000 +6670,chr22,32446327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.60000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,4.91000000 +6671,chr22,32446361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.42000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.27000000 +6672,chr22,32447449,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.58000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.84000000 +6673,chr22,32447858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,5.14000000 +6674,chr22,32448727,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-1.17000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,6.47000000 +6675,chr22,32449480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.33000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +6676,chr22,32449970,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-1.09000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.45000000 +6677,chr22,32450632,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,90.00000000,0.00000000,0.33000000,0.00000000,,0.25961538,106.00000000,4.69026549,0.01886792,0.00000000,5.68000000 +6678,chr22,32451129,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,1.43000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +6679,chr22,32452586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,62.00000000,0.00000000,-0.74000000,0.00000000,,0.16923077,71.00000000,3.14159292,0.07042254,0.00000000,5.26000000 +6680,chr22,32452716,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,0.15000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,5.71000000 +6681,chr22,32453142,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.62000000,0.00000000,,0.13095238,87.00000000,3.84955752,0.03448276,0.00000000,5.35000000 +6682,chr22,32453205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-1.02000000,0.00000000,,0.15873016,63.00000000,2.78761062,0.00000000,0.00000000,6.07000000 +6683,chr22,32454813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.86000000 +6684,chr22,32455501,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,86.00000000,0.00000000,-0.30000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.12000000 +6685,chr22,32456471,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-1.63000000,0.00000000,,0.09615385,60.00000000,2.65486726,0.13333333,0.00000000,4.90000000 +6686,chr22,32456837,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.02105263,0.00000000,6.24000000 +6687,chr22,32456937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.73000000 +6688,chr22,32458870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.57000000 +6689,chr22,32461012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6690,chr22,32480752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.84000000,0.00000000,,0.15384615,67.00000000,2.96460177,0.02985075,0.00000000,5.54000000 +6691,chr22,32524703,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,0.00000000,-0.06000000,0.00000000,,0.17021277,94.00000000,4.15929204,0.00000000,0.00000000,5.92000000 +6692,chr22,32527375,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.58000000,0.00000000,,0.30985915,71.00000000,3.14159292,0.00000000,0.00000000,7.85000000 +6693,chr22,32531373,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.22580645,62.00000000,2.74336283,0.00000000,0.00000000,6.77000000 +6694,chr22,32532448,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.02000000,0.00000000,,0.33707865,89.00000000,3.93805310,0.00000000,0.00000000,8.37000000 +6695,chr22,32534156,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.73000000,0.00000000,,0.24242424,70.00000000,3.09734513,0.05714286,0.00000000,6.58000000 +6696,chr22,32534483,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.17647059,71.00000000,3.14159292,0.02816901,0.00000000,5.96000000 +6697,chr22,32534582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.75000000 +6698,chr22,32535882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,1.07000000,0.00000000,,0.11627907,88.00000000,3.89380531,0.01136364,0.00000000,5.03000000 +6699,chr22,32536919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.48000000 +6700,chr22,32538239,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,2.14000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.84000000 +6701,chr22,32538583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.85000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.44000000 +6702,chr22,32538673,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,0.00000000,-0.81000000,0.00000000,,0.12195122,85.00000000,3.76106195,0.02352941,0.00000000,4.75000000 +6703,chr22,32539085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.27000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,2.94000000 +6704,chr22,32539186,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.43000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.32000000 +6705,chr22,32539417,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.72000000,7.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.53000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,4.27000000 +6706,chr22,32539439,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.54000000,7.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.14000000,0.00000000,,0.18181818,56.00000000,2.47787611,0.01785714,0.00000000,5.78000000 +6707,chr22,32539566,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,-1.08000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.00000000,0.00000000,6.65000000 +6708,chr22,32539581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.55000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.91000000 +6709,chr22,32540063,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.14545455,56.00000000,2.47787611,0.01785714,0.00000000,5.15000000 +6710,chr22,32540661,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.22916667,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +6711,chr22,32540827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.02500000,0.00000000,4.88000000 +6712,chr22,32541415,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.61000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.65000000 +6713,chr22,32541754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.00000000,0.00000000,6.98000000 +6714,chr22,32542926,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.01315789,0.00000000,6.23000000 +6715,chr22,32543027,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.54000000,0.00000000,,0.21311475,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +6716,chr22,32543828,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.01538462,0.00000000,6.58000000 +6717,chr22,32544674,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,67.00000000,0.00000000,0.50000000,0.00000000,,0.17204301,95.00000000,4.20353982,0.02105263,0.00000000,5.79000000 +6718,chr22,32545130,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,-1.51000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.71000000 +6719,chr22,32547211,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.24000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +6720,chr22,32547755,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,-0.25000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +6721,chr22,32548792,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.27272727,100.00000000,4.42477876,0.01000000,0.00000000,5.98000000 +6722,chr22,32549820,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,61.00000000,0.00000000,1.07000000,0.00000000,,0.26760563,75.00000000,3.31858407,0.04000000,0.00000000,5.44000000 +6723,chr22,32550127,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.46000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.72000000 +6724,chr22,32553326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.20000000 +6725,chr22,32553396,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.15000000,0.00000000,,0.19587629,99.00000000,4.38053097,0.02020202,0.00000000,5.78000000 +6726,chr22,32554067,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +6727,chr22,32556026,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,1.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.01250000,0.00000000,6.56000000 +6728,chr22,32567596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.95000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,3.04000000 +6729,chr22,32583094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.45000000 +6730,chr22,32583287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-2.00000000,0.00000000,,0.21839080,90.00000000,3.98230088,0.03333333,0.00000000,6.28000000 +6731,chr22,32583806,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.27906977,88.00000000,3.89380531,0.02272727,0.00000000,6.60000000 +6732,chr22,32584055,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.65000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.01388889,0.00000000,6.52000000 +6733,chr22,32584080,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.01408451,0.00000000,6.38000000 +6734,chr22,32584161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.80000000,0.00000000,,0.19607843,102.00000000,4.51327434,0.00000000,0.00000000,6.39000000 +6735,chr22,32584509,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.53000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.01052632,0.00000000,6.81000000 +6736,chr22,32585346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.79000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.02469136,0.00000000,5.44000000 +6737,chr22,32585739,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.01190476,0.00000000,6.49000000 +6738,chr22,32585740,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.31000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.59000000 +6739,chr22,32586073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.81000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +6740,chr22,32586597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-2.14000000,0.00000000,,0.09677419,64.00000000,2.83185841,0.03125000,0.00000000,4.91000000 +6741,chr22,32589488,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,5.91000000 +6742,chr22,32589701,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.88000000,0.00000000,,0.30487805,87.00000000,3.84955752,0.04597701,0.00000000,6.93000000 +6743,chr22,32590245,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.20000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.56000000 +6744,chr22,32592634,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.04000000,0.00000000,,0.23469388,100.00000000,4.42477876,0.02000000,0.00000000,6.02000000 +6745,chr22,32595941,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-1.20000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.68000000 +6746,chr22,32596014,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.77000000 +6747,chr22,32596049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.96000000,0.00000000,,0.32758621,59.00000000,2.61061947,0.01694915,0.00000000,8.69000000 +6748,chr22,32597046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.44000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,2.94000000 +6749,chr22,32602033,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.79000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.71000000 +6750,chr22,32603073,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,51.00000000,0.00000000,-0.53000000,0.00000000,,0.31578947,61.00000000,2.69911504,0.06557377,0.00000000,3.35000000 +6751,chr22,32605191,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.93000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.05000000 +6752,chr22,32610644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.86000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.58000000 +6753,chr22,32610668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.81000000,0.00000000,,0.24137931,59.00000000,2.61061947,0.01694915,0.00000000,6.79000000 +6754,chr22,32611528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.55000000,0.00000000,,0.24561404,57.00000000,2.52212389,0.00000000,0.00000000,6.83000000 +6755,chr22,32612135,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.34000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.69000000 +6756,chr22,32613226,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,0.82000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.85000000 +6757,chr22,32613282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,1.04000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.55000000 +6758,chr22,32613354,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.16000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +6759,chr22,32613422,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.01333333,0.00000000,8.09000000 +6760,chr22,32613549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-1.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.48000000 +6761,chr22,32614086,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-1.01000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +6762,chr22,32617412,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.91000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.52000000 +6763,chr22,32621541,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +6764,chr22,32625012,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.49000000 +6765,chr22,32635198,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.69000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,6.15000000 +6766,chr22,32635318,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.96000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.00000000,0.00000000,6.43000000 +6767,chr22,32635407,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.91000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,6.60000000 +6768,chr22,32638022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.35000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +6769,chr22,32641209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,1.02000000,0.00000000,,0.15189873,79.00000000,3.49557522,0.00000000,0.00000000,5.48000000 +6770,chr22,32641481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.26000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,2.84000000 +6771,chr22,32641762,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.89000000 +6772,chr22,32643330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.81000000,0.00000000,,0.15217391,48.00000000,2.12389381,0.04166667,0.00000000,5.40000000 +6773,chr22,32645291,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.11000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.81000000 +6774,chr22,32645340,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.49000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,4.86000000 +6775,chr22,32646223,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-0.89000000,0.00000000,,0.26086957,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +6776,chr22,32647504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,0.13000000,0.00000000,,0.17441860,91.00000000,4.02654867,0.05494505,0.00000000,2.81000000 +6777,chr22,32647940,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.94000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.89000000 +6778,chr22,32649009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,89.00000000,0.00000000,-0.21000000,0.00000000,,0.30588235,87.00000000,3.84955752,0.01149425,0.00000000,7.08000000 +6779,chr22,32654580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.48000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.25000000 +6780,chr22,32666261,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,94.00000000,0.00000000,0.19000000,0.00000000,,0.31428571,72.00000000,3.18584071,0.01388889,0.00000000,7.61000000 +6781,chr22,32669230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.98000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,6.19000000 +6782,chr22,32670444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.55000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.83000000 +6783,chr22,32670516,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.29000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.60000000 +6784,chr22,32672132,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.47000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.22000000 +6785,chr22,32674361,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,0.47000000,0.00000000,,0.22058824,70.00000000,3.09734513,0.02857143,0.00000000,5.70000000 +6786,chr22,32674797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.31000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.45000000 +6787,chr22,32675097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,-1.21000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.16000000 +6788,chr22,32675437,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.18000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.34000000 +6789,chr22,32676160,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,-0.94000000,0.00000000,,0.25714286,109.00000000,4.82300885,0.03669725,0.00000000,5.84000000 +6790,chr22,32676519,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.25352113,81.00000000,3.58407080,0.08641975,0.00000000,6.12000000 +6791,chr22,32676775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,1.43000000,0.00000000,,0.22000000,54.00000000,2.38938053,0.07407407,0.00000000,5.40000000 +6792,chr22,32676933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,65.00000000,0.00000000,0.75000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.48000000 +6793,chr22,32677771,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.08000000,0.00000000,,0.21518987,83.00000000,3.67256637,0.04819277,0.00000000,6.32000000 +6794,chr22,32678191,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.10000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +6795,chr22,32681460,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.21000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +6796,chr22,32683931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.36000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +6797,chr22,32684767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,6.02000000 +6798,chr22,32688180,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.54000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +6799,chr22,32688359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.92000000,0.00000000,,0.18032787,63.00000000,2.78761062,0.01587302,0.00000000,6.52000000 +6800,chr22,32688994,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.07000000,0.00000000,,0.14516129,63.00000000,2.78761062,0.01587302,0.00000000,5.20000000 +6801,chr22,32693732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,48.00000000,0.00000000,0.05000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.03389831,0.00000000,2.77000000 +6802,chr22,32695345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,83.00000000,0.00000000,-0.33000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,5.56000000 +6803,chr22,32696573,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,76.00000000,0.00000000,-0.10000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +6804,chr22,32699574,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.94000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +6805,chr22,32701676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.18000000,0.00000000,,0.19266055,110.00000000,4.86725664,0.00909091,0.00000000,6.45000000 +6806,chr22,32704547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.12000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,6.53000000 +6807,chr22,32704751,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.35000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.63000000 +6808,chr22,32707932,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.18987342,85.00000000,3.76106195,0.07058824,0.00000000,6.03000000 +6809,chr22,32707982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.18604651,89.00000000,3.93805310,0.03370787,0.00000000,5.65000000 +6810,chr22,32708362,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.13000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.01075269,0.00000000,7.02000000 +6811,chr22,32708391,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.01000000,0.00000000,,0.26666667,90.00000000,3.98230088,0.00000000,0.00000000,6.70000000 +6812,chr22,32708529,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.98000000,0.00000000,,0.21739130,69.00000000,3.05309735,0.00000000,0.00000000,6.61000000 +6813,chr22,32708987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.10447761,67.00000000,2.96460177,0.00000000,0.00000000,4.94000000 +6814,chr22,32710547,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,35.00000000,0.00000000,-2.89000000,0.00000000,,0.43396226,59.00000000,2.61061947,0.06779661,0.00000000,4.01000000 +6815,chr22,32710751,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.55000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.02272727,0.00000000,6.18000000 +6816,chr22,32711325,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,63.00000000,0.00000000,-0.44000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,5.77000000 +6817,chr22,32711970,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-2.09000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.74000000 +6818,chr22,32712164,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.32000000 +6819,chr22,32712379,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.10000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,7.09000000 +6820,chr22,32712880,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.21000000 +6821,chr22,32713396,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.38000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,6.01000000 +6822,chr22,32713997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.00000000,0.00000000,6.69000000 +6823,chr22,32714574,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.07000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +6824,chr22,32714611,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,82.00000000,0.00000000,0.61000000,0.00000000,,0.25287356,90.00000000,3.98230088,0.03333333,0.00000000,5.72000000 +6825,chr22,32716505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.55000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.37000000 +6826,chr22,32717702,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.57000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,5.99000000 +6827,chr22,32720328,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,1.19000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.36000000 +6828,chr22,32720793,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,5.59000000 +6829,chr22,32722343,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,-1.28000000,0.00000000,,0.27397260,75.00000000,3.31858407,0.02666667,0.00000000,6.05000000 +6830,chr22,32725803,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.29000000,0.00000000,,0.17171717,101.00000000,4.46902655,0.01980198,0.00000000,5.45000000 +6831,chr22,32727603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.47000000 +6832,chr22,32728528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.76000000 +6833,chr22,32736910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,1.19000000,0.00000000,,0.26530612,99.00000000,4.38053097,0.01010101,0.00000000,6.48000000 +6834,chr22,32737722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.88000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.41000000 +6835,chr22,32737917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,0.27000000,0.00000000,,0.13432836,68.00000000,3.00884956,0.01470588,0.00000000,2.87000000 +6836,chr22,32737950,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.56000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.00000000,0.00000000,4.20000000 +6837,chr22,32738154,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.01265823,0.00000000,5.16000000 +6838,chr22,32738765,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +6839,chr22,32738866,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.01000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +6840,chr22,32739206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.05633803,0.00000000,6.21000000 +6841,chr22,32739209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.05633803,0.00000000,6.21000000 +6842,chr22,32739528,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.38000000,0.00000000,,0.47692308,67.00000000,2.96460177,0.02985075,0.00000000,7.58000000 +6843,chr22,32739593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,58.00000000,0.00000000,0.29000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,3.98000000 +6844,chr22,32740276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,2.04000000,0.00000000,,0.20370370,54.00000000,2.38938053,0.00000000,0.00000000,6.64000000 +6845,chr22,32742477,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.80000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +6846,chr22,32742604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,-0.33000000,0.00000000,,0.11688312,78.00000000,3.45132743,0.01282051,0.00000000,3.53000000 +6847,chr22,32743183,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,5.58000000 +6848,chr22,32749509,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,60.00000000,0.00000000,1.37000000,0.00000000,,0.23529412,72.00000000,3.18584071,0.05555556,0.00000000,5.22000000 +6849,chr22,32749699,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.88000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.47000000 +6850,chr22,32750255,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.32894737,78.00000000,3.45132743,0.02564103,0.00000000,8.09000000 +6851,chr22,32750824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,5.80000000 +6852,chr22,32752589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.32000000 +6853,chr22,32752590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.05000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.30000000 +6854,chr22,32752591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,1.46000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.32000000 +6855,chr22,32754550,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,43.00000000,0.00000000,-1.37000000,0.00000000,,0.57142857,80.00000000,3.53982301,0.02500000,0.00000000,4.04000000 +6856,chr22,32754783,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.30000000,0.00000000,,0.20388350,103.00000000,4.55752212,0.00000000,0.00000000,6.72000000 +6857,chr22,32756448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.32876712,75.00000000,3.31858407,0.01333333,0.00000000,8.37000000 +6858,chr22,32757219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.23809524,88.00000000,3.89380531,0.03409091,0.00000000,6.25000000 +6859,chr22,32757586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.49000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.59000000 +6860,chr22,32760917,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +6861,chr22,32763380,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.43000000 +6862,chr22,32764190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.83000000 +6863,chr22,32764527,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,0.81000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,5.77000000 +6864,chr22,32765586,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,52.00000000,0.00000000,2.02000000,0.00000000,,0.31818182,67.00000000,2.96460177,0.01492537,0.00000000,3.49000000 +6865,chr22,32765838,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,1.86000000,0.00000000,,0.22950820,64.00000000,2.83185841,0.04687500,0.00000000,2.82000000 +6866,chr22,32770636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.78000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.86000000 +6867,chr22,32775100,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.79000000 +6868,chr22,32777602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.07000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +6869,chr22,32781792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.50000000 +6870,chr22,32783027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.75000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.41000000 +6871,chr22,32786583,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.03000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,6.59000000 +6872,chr22,32787993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.95000000 +6873,chr22,32788337,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,0.00000000,0.42000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,5.85000000 +6874,chr22,32790679,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.70000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.32000000 +6875,chr22,32791912,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.43000000,0.00000000,,0.40298507,70.00000000,3.09734513,0.04285714,0.00000000,8.15000000 +6876,chr22,32797064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,7.69000000 +6877,chr22,32798308,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,-0.52000000,0.00000000,,0.29069767,88.00000000,3.89380531,0.01136364,0.00000000,6.65000000 +6878,chr22,32800526,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-1.36000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +6879,chr22,32805018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.20000000,0.00000000,,0.28571429,77.00000000,3.40707965,0.06493506,0.00000000,3.24000000 +6880,chr22,32807773,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.23529412,68.00000000,3.00884956,0.00000000,0.00000000,6.76000000 +6881,chr22,32811019,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.62000000,0.00000000,,0.30769231,78.00000000,3.45132743,0.00000000,0.00000000,6.50000000 +6882,chr22,32811080,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.34000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.62000000 +6883,chr22,32811322,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.25000000 +6884,chr22,32811711,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,2.19000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.66000000 +6885,chr22,32814019,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,59.00000000,0.00000000,0.34000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,3.75000000 +6886,chr22,32814229,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.40000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,45.00000000,0.00000000,-1.19000000,0.00000000,,0.34482759,61.00000000,2.69911504,0.04918033,0.00000000,4.46000000 +6887,chr22,32815068,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.69000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,6.54000000 +6888,chr22,32817333,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,95.00000000,0.00000000,0.25000000,0.00000000,,0.29213483,92.00000000,4.07079646,0.02173913,0.00000000,5.66000000 +6889,chr22,32817508,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.64000000,0.00000000,,0.13414634,85.00000000,3.76106195,0.03529412,0.00000000,5.09000000 +6890,chr22,32817811,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.30000000 +6891,chr22,32821415,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.97000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.22000000 +6892,chr22,32823901,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.03389831,0.00000000,6.01000000 +6893,chr22,32824226,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,-0.44000000,0.00000000,,0.13888889,84.00000000,3.71681416,0.13095238,0.00000000,3.14000000 +6894,chr22,32825044,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.62000000 +6895,chr22,32825583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,0.00000000,-1.62000000,0.00000000,,0.22222222,58.00000000,2.56637168,0.22413793,0.00000000,5.68000000 +6896,chr22,32827422,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.32000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +6897,chr22,32828453,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +6898,chr22,32830664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.10000000,0.00000000,,0.33333333,67.00000000,2.96460177,0.01492537,0.00000000,8.58000000 +6899,chr22,32831512,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.56000000,0.00000000,,0.17333333,78.00000000,3.45132743,0.02564103,0.00000000,6.19000000 +6900,chr22,32832706,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.56000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.05000000 +6901,chr22,32833520,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.69000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.57000000 +6902,chr22,32833610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.76000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.99000000 +6903,chr22,32833699,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.46000000,0.00000000,,0.35443038,79.00000000,3.49557522,0.00000000,0.00000000,8.45000000 +6904,chr22,32833844,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,38.00000000,0.00000000,0.93000000,0.00000000,,0.54320988,81.00000000,3.58407080,0.00000000,0.00000000,3.58000000 +6905,chr22,32834363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,1.05000000,0.00000000,,0.20588235,76.00000000,3.36283186,0.10526316,0.00000000,5.65000000 +6906,chr22,32834806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.61000000 +6907,chr22,32834918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.24000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,6.57000000 +6908,chr22,32834997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-1.01000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +6909,chr22,32835400,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.97000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.51000000 +6910,chr22,32836560,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.11000000,0.00000000,,0.22666667,79.00000000,3.49557522,0.05063291,0.00000000,6.80000000 +6911,chr22,32838192,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.20689655,60.00000000,2.65486726,0.01666667,0.00000000,5.77000000 +6912,chr22,32839316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.71000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,3.03000000 +6913,chr22,32839530,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.43000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.27000000 +6914,chr22,32840409,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.96000000,0.00000000,,0.17460317,63.00000000,2.78761062,0.00000000,0.00000000,6.09000000 +6915,chr22,32841125,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +6916,chr22,32841204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.45000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.01123596,0.00000000,6.38000000 +6917,chr22,32842120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.47000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.95000000 +6918,chr22,32842121,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.14000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.00000000,0.00000000,6.95000000 +6919,chr22,32845381,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.40000000,0.00000000,,0.24137931,62.00000000,2.74336283,0.06451613,0.00000000,5.95000000 +6920,chr22,32845856,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-1.55000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +6921,chr22,32846617,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.49000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.70000000 +6922,chr22,32852068,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,1.05000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +6923,chr22,32852660,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.80000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.23000000 +6924,chr22,32853624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.93000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.22000000 +6925,chr22,32853901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +6926,chr22,32858642,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.18000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.99000000 +6927,chr22,32861480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.81000000 +6928,chr22,32864399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.09000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.92000000 +6929,chr22,32867620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.12000000,0.00000000,,0.16393443,63.00000000,2.78761062,0.03174603,0.00000000,4.73000000 +6930,chr22,32867828,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.56000000 +6931,chr22,32869601,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,1.65000000,0.00000000,,0.17647059,73.00000000,3.23008850,0.05479452,0.00000000,5.69000000 +6932,chr22,32870922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,1.04000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,5.80000000 +6933,chr22,32875646,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.65000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.51000000 +6934,chr22,32877066,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-2.30000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.89000000 +6935,chr22,32877339,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.61000000,0.00000000,,0.27472527,91.00000000,4.02654867,0.00000000,0.00000000,6.73000000 +6936,chr22,32878555,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.35000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.24000000 +6937,chr22,32879460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-1.01000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +6938,chr22,32885068,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.38000000,0.00000000,,0.19587629,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +6939,chr22,32885796,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.70000000,0.00000000,,0.25882353,85.00000000,3.76106195,0.00000000,0.00000000,6.61000000 +6940,chr22,32902630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.50000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.56000000 +6941,chr22,32909496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.49000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +6942,chr22,32917382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-0.58000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +6943,chr22,32923223,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.03000000 +6944,chr22,32926292,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,0.29000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.55000000 +6945,chr22,32929818,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.54000000,0.00000000,,0.19101124,89.00000000,3.93805310,0.00000000,0.00000000,6.35000000 +6946,chr22,32946732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.13000000 +6947,chr22,32947435,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.38000000 +6948,chr22,32947970,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.85000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.01204819,0.00000000,4.80000000 +6949,chr22,32948526,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.23529412,70.00000000,3.09734513,0.02857143,0.00000000,6.35000000 +6950,chr22,32951637,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.62000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.85000000 +6951,chr22,32951907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,2.78000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.03571429,0.00000000,5.71000000 +6952,chr22,32952108,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.03000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +6953,chr22,32954192,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.58000000,0.00000000,,0.09459459,77.00000000,3.40707965,0.03896104,0.00000000,5.07000000 +6954,chr22,32955901,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.30000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.00000000,0.00000000,6.70000000 +6955,chr22,32956204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,74.00000000,0.00000000,0.72000000,0.00000000,,0.19672131,67.00000000,2.96460177,0.08955224,0.00000000,5.90000000 +6956,chr22,32956689,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.02702703,0.00000000,6.32000000 +6957,chr22,32957858,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +6958,chr22,32957928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.55000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +6959,chr22,32958615,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.40000000 +6960,chr22,32959870,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,5.99000000 +6961,chr22,32962292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.30158730,63.00000000,2.78761062,0.00000000,0.00000000,6.79000000 +6962,chr22,32965690,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.01408451,0.00000000,6.46000000 +6963,chr22,32967370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.00000000,0.00000000,5.63000000 +6964,chr22,32968014,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,6.69000000 +6965,chr22,32968472,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.29000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.71000000 +6966,chr22,32970066,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +6967,chr22,32970995,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.67000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,7.05000000 +6968,chr22,32972048,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,79.00000000,0.00000000,1.75000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.86000000 +6969,chr22,32975350,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.25000000,0.00000000,68.00000000,0.00000000,0.07000000,0.00000000,,0.30769231,92.00000000,4.07079646,0.15217391,0.00000000,6.14000000 +6970,chr22,32975608,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.59000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +6971,chr22,32977231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.13000000,0.00000000,,0.29577465,74.00000000,3.27433628,0.02702703,0.00000000,6.42000000 +6972,chr22,32977520,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,-1.13000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.01234568,0.00000000,6.62000000 +6973,chr22,32977636,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-0.59000000,0.00000000,,0.24675325,81.00000000,3.58407080,0.01234568,0.00000000,4.27000000 +6974,chr22,32978602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.35087719,58.00000000,2.56637168,0.01724138,0.00000000,8.12000000 +6975,chr22,32978917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,90.00000000,0.00000000,-0.86000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.11000000 +6976,chr22,32982645,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +6977,chr22,32982997,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.15384615,82.00000000,3.62831858,0.03658537,0.00000000,5.60000000 +6978,chr22,32984191,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.20289855,76.00000000,3.36283186,0.06578947,0.00000000,5.45000000 +6979,chr22,32984390,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.77000000,0.00000000,,0.24074074,55.00000000,2.43362832,0.01818182,0.00000000,6.16000000 +6980,chr22,32986156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.51000000,0.00000000,,0.17647059,52.00000000,2.30088496,0.01923077,0.00000000,6.34000000 +6981,chr22,32986568,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,3.01000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.32000000 +6982,chr22,32988277,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.15000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-1.55000000,0.00000000,,0.18292683,86.00000000,3.80530973,0.04651163,0.00000000,5.84000000 +6983,chr22,32990613,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,2.01000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.45000000 +6984,chr22,32990821,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.43000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.55000000 +6985,chr22,32991111,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.85000000,0.00000000,,0.26470588,71.00000000,3.14159292,0.04225352,0.00000000,6.65000000 +6986,chr22,32993753,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-1.11000000,0.00000000,,0.45945946,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +6987,chr22,32996033,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,-1.10000000,0.00000000,,0.46268657,71.00000000,3.14159292,0.04225352,0.00000000,7.79000000 +6988,chr22,32996091,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-0.44000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +6989,chr22,32996194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,49.00000000,0.00000000,-0.66000000,0.00000000,,0.34285714,71.00000000,3.14159292,0.01408451,0.00000000,4.50000000 +6990,chr22,32997753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-1.29000000,0.00000000,,0.19672131,61.00000000,2.69911504,0.00000000,0.00000000,6.43000000 +6991,chr22,32998082,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.98000000 +6992,chr22,32999311,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.32394366,72.00000000,3.18584071,0.01388889,0.00000000,8.01000000 +6993,chr22,32999634,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.06000000,0.00000000,,0.18750000,69.00000000,3.05309735,0.07246377,0.00000000,6.31000000 +6994,chr22,32999733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.16000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,7.13000000 +6995,chr22,32999866,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.26000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.68000000 +6996,chr22,32999983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.26000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.61000000 +6997,chr22,33000450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.10000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,7.19000000 +6998,chr22,33000868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.28000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.56000000 +6999,chr22,33000919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.06000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.04109589,0.00000000,6.24000000 +7000,chr22,33001060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,1.11000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.66000000 +7001,chr22,33001440,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.46000000,0.00000000,,0.53333333,61.00000000,2.69911504,0.00000000,0.00000000,8.04000000 +7002,chr22,33001874,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,1.12000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.13000000 +7003,chr22,33002084,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +7004,chr22,33002102,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,76.00000000,0.00000000,-2.08000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.22000000 +7005,chr22,33002318,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.28000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.38000000 +7006,chr22,33002372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.41000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,6.05000000 +7007,chr22,33002727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.08000000,0.00000000,,0.22093023,90.00000000,3.98230088,0.04444444,0.00000000,6.31000000 +7008,chr22,33003134,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.42000000 +7009,chr22,33004388,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.70000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.48000000 +7010,chr22,33005040,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-2.10000000,0.00000000,,0.55714286,70.00000000,3.09734513,0.00000000,0.00000000,8.89000000 +7011,chr22,33005230,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.85000000,0.00000000,,0.42307692,79.00000000,3.49557522,0.01265823,0.00000000,4.12000000 +7012,chr22,33005370,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.48000000,0.00000000,,0.47126437,90.00000000,3.98230088,0.03333333,0.00000000,8.29000000 +7013,chr22,33005799,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.68000000,0.00000000,,0.42352941,85.00000000,3.76106195,0.00000000,0.00000000,8.47000000 +7014,chr22,33005880,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.71000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.73000000 +7015,chr22,33005983,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.19000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,7.26000000 +7016,chr22,33006858,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.43000000 +7017,chr22,33007293,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,1.45000000,0.00000000,,0.18000000,102.00000000,4.51327434,0.01960784,0.00000000,5.59000000 +7018,chr22,33007444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,0.37000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.01149425,0.00000000,5.87000000 +7019,chr22,33008561,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,9.00000000,0.00000000,-1.03000000,0.00000000,,0.36842105,76.00000000,3.36283186,0.00000000,0.00000000,3.30000000 +7020,chr22,33008773,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,1.01000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.10000000 +7021,chr22,33009288,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.45000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7022,chr22,33010456,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.37000000 +7023,chr22,33010544,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,2.05000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.00000000,0.00000000,5.56000000 +7024,chr22,33010782,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,0.74000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +7025,chr22,33012683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.18000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.02173913,0.00000000,6.18000000 +7026,chr22,33012814,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.98000000 +7027,chr22,33012958,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.40000000,0.00000000,,0.36781609,88.00000000,3.89380531,0.01136364,0.00000000,8.46000000 +7028,chr22,33014923,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,-0.17000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.01960784,0.00000000,5.88000000 +7029,chr22,33015007,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.33333333,89.00000000,3.93805310,0.04494382,0.00000000,7.48000000 +7030,chr22,33015448,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.44000000,0.00000000,,0.18681319,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +7031,chr22,33015461,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.58000000,0.00000000,,0.46067416,89.00000000,3.93805310,0.00000000,0.00000000,8.91000000 +7032,chr22,33015509,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-2.07000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.69000000 +7033,chr22,33015891,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.08510638,0.00000000,77.00000000,0.00000000,0.20000000,0.00000000,,0.17073171,96.00000000,4.24778761,0.14583333,0.00000000,5.00000000 +7034,chr22,33015936,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,93.00000000,0.00000000,0.16000000,0.00000000,,0.43209877,89.00000000,3.93805310,0.08988764,0.00000000,6.26000000 +7035,chr22,33016001,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.14634146,84.00000000,3.71681416,0.01190476,0.00000000,5.26000000 +7036,chr22,33016275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,60.00000000,0.00000000,1.01000000,0.00000000,,0.41538462,65.00000000,2.87610619,0.00000000,0.00000000,7.83000000 +7037,chr22,33017064,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,1.19000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +7038,chr22,33017111,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.98000000,0.00000000,,0.33707865,90.00000000,3.98230088,0.01111111,0.00000000,8.72000000 +7039,chr22,33017214,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.16000000 +7040,chr22,33017325,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,104.00000000,0.00000000,0.76000000,0.00000000,,0.34146341,83.00000000,3.67256637,0.01204819,0.00000000,13.50000000 +7041,chr22,33018179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,7.12000000 +7042,chr22,33018374,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.50000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.49000000 +7043,chr22,33019413,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.37000000 +7044,chr22,33020216,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.05000000 +7045,chr22,33020472,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.69000000 +7046,chr22,33020493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.11000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.03658537,0.00000000,6.56000000 +7047,chr22,33020504,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.74000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.76000000 +7048,chr22,33021724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.37000000,0.00000000,,0.20792079,103.00000000,4.55752212,0.01941748,0.00000000,6.46000000 +7049,chr22,33022579,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,-0.10000000,0.00000000,,0.40789474,76.00000000,3.36283186,0.00000000,0.00000000,8.02000000 +7050,chr22,33022871,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,117.00000000,0.00000000,0.51000000,0.00000000,,0.35632184,87.00000000,3.84955752,0.00000000,0.00000000,14.08000000 +7051,chr22,33022906,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-2.33000000,0.00000000,,0.24038462,104.00000000,4.60176991,0.00000000,0.00000000,6.68000000 +7052,chr22,33023187,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,30.00000000,0.00000000,1.16000000,0.00000000,,0.33846154,66.00000000,2.92035398,0.01515152,0.00000000,3.06000000 +7053,chr22,33023297,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,0.00000000,0.68000000,0.00000000,,0.07692308,80.00000000,3.53982301,0.02500000,0.00000000,5.06000000 +7054,chr22,33023411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,96.00000000,0.00000000,-1.31000000,0.00000000,,0.30000000,91.00000000,4.02654867,0.00000000,0.00000000,6.83000000 +7055,chr22,33023547,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.29000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.00000000,0.00000000,6.66000000 +7056,chr22,33023718,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.89000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,7.22000000 +7057,chr22,33025110,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.37000000,0.00000000,,0.29090909,56.00000000,2.47787611,0.01785714,0.00000000,6.40000000 +7058,chr22,33025194,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.12000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.70000000 +7059,chr22,33026105,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.07000000,0.00000000,,0.50000000,79.00000000,3.49557522,0.01265823,0.00000000,7.79000000 +7060,chr22,33026131,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.17000000,0.00000000,,0.25000000,77.00000000,3.40707965,0.00000000,0.00000000,6.48000000 +7061,chr22,33026233,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-2.15000000,0.00000000,,0.48648649,76.00000000,3.36283186,0.02631579,0.00000000,8.42000000 +7062,chr22,33026521,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,0.24000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.41000000 +7063,chr22,33027865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.76000000 +7064,chr22,33028012,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.55000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +7065,chr22,33028764,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.74000000,0.00000000,,0.45312500,68.00000000,3.00884956,0.05882353,0.00000000,4.83000000 +7066,chr22,33030634,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +7067,chr22,33031049,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,5.93000000 +7068,chr22,33033409,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.86000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +7069,chr22,33035179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-1.15000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.01369863,0.00000000,5.49000000 +7070,chr22,33035743,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.91000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.67000000 +7071,chr22,33036325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.84000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.82000000 +7072,chr22,33036480,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,3.23000000 +7073,chr22,33037659,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.28070175,58.00000000,2.56637168,0.01724138,0.00000000,6.05000000 +7074,chr22,33038081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.61000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.36000000 +7075,chr22,33038679,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.31000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.52000000 +7076,chr22,33038851,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.48000000,0.00000000,,0.30357143,57.00000000,2.52212389,0.01754386,0.00000000,6.92000000 +7077,chr22,33038885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.30000000,0.00000000,,0.29090909,57.00000000,2.52212389,0.03508772,0.00000000,6.42000000 +7078,chr22,33039237,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.20000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7079,chr22,33040454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.68000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +7080,chr22,33040848,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.55000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,7.04000000 +7081,chr22,33040977,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.35000000,0.00000000,,0.27450980,53.00000000,2.34513274,0.01886792,0.00000000,6.49000000 +7082,chr22,33041029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.48000000,0.00000000,,0.28846154,55.00000000,2.43362832,0.05454545,0.00000000,5.66000000 +7083,chr22,33041405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,75.00000000,0.00000000,-0.64000000,0.00000000,,0.26415094,56.00000000,2.47787611,0.03571429,0.00000000,6.19000000 +7084,chr22,33047035,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,2.10000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.64000000 +7085,chr22,33049251,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.30000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,5.49000000 +7086,chr22,33049732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.41000000 +7087,chr22,33049771,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.14000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,7.10000000 +7088,chr22,33050951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-1.51000000,0.00000000,,0.25000000,96.00000000,4.24778761,0.00000000,0.00000000,6.79000000 +7089,chr22,33051960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +7090,chr22,33053663,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.03000000 +7091,chr22,33054511,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.47000000,0.00000000,,0.15730337,90.00000000,3.98230088,0.01111111,0.00000000,5.83000000 +7092,chr22,33055165,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.34000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.30000000 +7093,chr22,33055872,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-2.73000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.93000000 +7094,chr22,33056502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +7095,chr22,33056640,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.98000000,0.00000000,,0.21590909,92.00000000,4.07079646,0.04347826,0.00000000,6.31000000 +7096,chr22,33056801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.99000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.10000000 +7097,chr22,33057547,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.94000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.01388889,0.00000000,2.95000000 +7098,chr22,33057845,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.06000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,5.69000000 +7099,chr22,33058334,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.20000000,62.00000000,2.74336283,0.01612903,0.00000000,6.44000000 +7100,chr22,33058455,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.03000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.83000000 +7101,chr22,33059450,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.44000000,0.00000000,,0.28000000,76.00000000,3.36283186,0.01315789,0.00000000,6.57000000 +7102,chr22,33062394,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,-0.45000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.89000000 +7103,chr22,33063145,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.90000000,0.00000000,,0.46153846,80.00000000,3.53982301,0.02500000,0.00000000,4.72000000 +7104,chr22,33064358,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.04000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +7105,chr22,33064506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.13953488,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.22807018,63.00000000,2.78761062,0.07936508,0.00000000,5.43000000 +7106,chr22,33066380,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.15000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.37000000 +7107,chr22,33066753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.05000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +7108,chr22,33070837,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.38000000,0.00000000,,0.19047619,64.00000000,2.83185841,0.01562500,0.00000000,6.29000000 +7109,chr22,33071021,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.49000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.79000000 +7110,chr22,33072123,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.89000000,0.00000000,,0.32432432,78.00000000,3.45132743,0.03846154,0.00000000,8.07000000 +7111,chr22,33074606,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,77.00000000,0.00000000,1.51000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,5.79000000 +7112,chr22,33075552,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.25000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.29000000 +7113,chr22,33077004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.52000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,6.36000000 +7114,chr22,33077580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-2.26000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,6.03000000 +7115,chr22,33078477,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.73000000 +7116,chr22,33078803,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.25000000,0.00000000,,0.40449438,89.00000000,3.93805310,0.00000000,0.00000000,8.93000000 +7117,chr22,33079153,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,85.00000000,0.00000000,2.90000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,5.78000000 +7118,chr22,33079716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.19000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.96000000 +7119,chr22,33080023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,7.03000000 +7120,chr22,33081934,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.05000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.80000000 +7121,chr22,33082208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.13000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,7.16000000 +7122,chr22,33085225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.12000000 +7123,chr22,33086126,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.22000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.00000000,0.00000000,6.43000000 +7124,chr22,33086273,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.03000000,0.00000000,,0.53086420,82.00000000,3.62831858,0.01219512,0.00000000,8.58000000 +7125,chr22,33086322,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.01515152,0.00000000,6.54000000 +7126,chr22,33086535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,0.65000000,0.00000000,,0.23750000,85.00000000,3.76106195,0.05882353,0.00000000,5.94000000 +7127,chr22,33087258,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +7128,chr22,33089778,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.96000000,0.00000000,,0.42857143,86.00000000,3.80530973,0.02325581,0.01149425,8.24000000 +7129,chr22,33093982,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.12698413,63.00000000,2.78761062,0.00000000,0.00000000,5.27000000 +7130,chr22,33094567,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.53000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.01315789,0.00000000,8.50000000 +7131,chr22,33096834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.34000000,0.00000000,,0.25757576,69.00000000,3.05309735,0.04347826,0.00000000,5.93000000 +7132,chr22,33097275,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.58000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.51000000 +7133,chr22,33098397,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,57.00000000,0.00000000,1.06000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,2.83000000 +7134,chr22,33099346,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.18461538,68.00000000,3.00884956,0.04411765,0.00000000,6.10000000 +7135,chr22,33099348,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,1.05000000,0.00000000,,0.18461538,68.00000000,3.00884956,0.04411765,0.00000000,6.03000000 +7136,chr22,33099479,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,28.00000000,0.00000000,0.33000000,0.00000000,,0.59259259,54.00000000,2.38938053,0.00000000,0.00000000,3.91000000 +7137,chr22,33101046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.41000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +7138,chr22,33103004,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.02000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +7139,chr22,33103038,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.32000000,0.00000000,,0.20000000,58.00000000,2.56637168,0.01724138,0.00000000,6.50000000 +7140,chr22,33103560,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,6.17000000 +7141,chr22,33105391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.38000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,6.46000000 +7142,chr22,33105723,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,1.79000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.15000000 +7143,chr22,33106567,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,80.00000000,0.00000000,0.97000000,0.00000000,,0.43661972,80.00000000,3.53982301,0.11250000,0.00000000,7.80000000 +7144,chr22,33109169,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +7145,chr22,33109512,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.47000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.38000000 +7146,chr22,33111579,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-2.65000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.65000000 +7147,chr22,33121680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.52000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +7148,chr22,33122660,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.48000000 +7149,chr22,33123593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,84.00000000,0.00000000,0.31000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.67000000 +7150,chr22,33127568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.86000000,0.00000000,,0.31168831,80.00000000,3.53982301,0.02500000,0.00000000,7.69000000 +7151,chr22,33128060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.32000000,0.00000000,,0.22500000,81.00000000,3.58407080,0.01234568,0.00000000,6.66000000 +7152,chr22,33130462,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +7153,chr22,33130929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,68.00000000,0.00000000,-0.87000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.10126582,0.00000000,6.06000000 +7154,chr22,33130957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,64.00000000,0.00000000,0.27000000,0.00000000,,0.18181818,75.00000000,3.31858407,0.12000000,0.00000000,5.70000000 +7155,chr22,33160142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,1.32000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.58000000 +7156,chr22,33163244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.29000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.46000000 +7157,chr22,33165397,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.60000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,5.89000000 +7158,chr22,33165405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.37000000 +7159,chr22,33277139,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.17000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +7160,chr22,33303845,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,27.00000000,1.19469027,0.11111111,0.00000000,60.00000000,0.00000000,-1.54000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.73000000 +7161,chr22,33310959,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.22000000,0.00000000,,0.24637681,73.00000000,3.23008850,0.05479452,0.00000000,5.73000000 +7162,chr22,33311128,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.99000000 +7163,chr22,33328558,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,0.00000000,-1.70000000,0.00000000,,0.10909091,58.00000000,2.56637168,0.05172414,0.00000000,4.72000000 +7164,chr22,33343549,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.78000000,0.00000000,,0.47619048,84.00000000,3.71681416,0.00000000,0.00000000,8.75000000 +7165,chr22,33351370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.32000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +7166,chr22,33352376,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.51000000,0.00000000,,0.53846154,53.00000000,2.34513274,0.01886792,0.00000000,6.02000000 +7167,chr22,33354935,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,-1.14000000,0.00000000,,0.25555556,91.00000000,4.02654867,0.01098901,0.00000000,6.78000000 +7168,chr22,33355877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.89000000,0.00000000,,0.36231884,69.00000000,3.05309735,0.00000000,0.00000000,7.54000000 +7169,chr22,33356434,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.39000000 +7170,chr22,33357391,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,0.00000000,0.77000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.56000000 +7171,chr22,33358782,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,-1.31000000,2.54000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,4.66000000 +7172,chr22,33360030,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.18867925,53.00000000,2.34513274,0.00000000,0.00000000,6.62000000 +7173,chr22,33360037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.20000000,56.00000000,2.47787611,0.00000000,0.00000000,7.09000000 +7174,chr22,33372132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.52000000,0.00000000,,0.25581395,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7175,chr22,33383987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.78000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,6.83000000 +7176,chr22,33412439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18390805,89.00000000,3.93805310,0.02247191,0.00000000,6.23000000 +7177,chr22,33412523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-1.09000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +7178,chr22,33415673,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,6.88000000 +7179,chr22,33416862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.79000000,0.00000000,,0.20588235,74.00000000,3.27433628,0.06756757,0.00000000,5.95000000 +7180,chr22,33420236,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.79000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +7181,chr22,33420374,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-1.47000000,0.00000000,,0.14666667,78.00000000,3.45132743,0.02564103,0.00000000,5.69000000 +7182,chr22,33427423,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,68.00000000,0.00000000,0.43000000,0.00000000,,0.15151515,100.00000000,4.42477876,0.01000000,0.00000000,5.17000000 +7183,chr22,33430335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.32000000 +7184,chr22,33432446,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.22000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.00000000,0.00000000,6.86000000 +7185,chr22,33433324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.24137931,58.00000000,2.56637168,0.00000000,0.00000000,6.41000000 +7186,chr22,33438756,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.23000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.73000000 +7187,chr22,33442986,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.71000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.80000000 +7188,chr22,33444555,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.59000000,0.00000000,,0.18309859,75.00000000,3.31858407,0.05333333,0.00000000,6.15000000 +7189,chr22,33444629,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.47000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,5.84000000 +7190,chr22,33446257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.41000000 +7191,chr22,33446652,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,1.35000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.03750000,0.00000000,5.50000000 +7192,chr22,33448354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.73000000,0.00000000,,0.22471910,93.00000000,4.11504425,0.02150538,0.00000000,6.32000000 +7193,chr22,33451891,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,2.30000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.47000000 +7194,chr22,33452024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-1.07000000,0.00000000,,0.28000000,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +7195,chr22,33452274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.73000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.06000000 +7196,chr22,33452384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-0.40000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.57000000 +7197,chr22,33453139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,0.92000000,0.00000000,,0.20000000,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7198,chr22,33455519,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.43000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.60000000 +7199,chr22,33461558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,0.77000000,0.00000000,,0.17105263,79.00000000,3.49557522,0.03797468,0.00000000,5.32000000 +7200,chr22,33464908,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.24489796,52.00000000,2.30088496,0.03846154,0.00000000,6.20000000 +7201,chr22,33473415,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.81000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,4.78000000 +7202,chr22,33489911,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.63000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.19000000 +7203,chr22,33495580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.38000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.00000000,0.00000000,5.07000000 +7204,chr22,33499050,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,109.00000000,0.00000000,0.31000000,0.00000000,,0.34939759,85.00000000,3.76106195,0.02352941,0.00000000,13.49000000 +7205,chr22,33500083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.14000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.36000000 +7206,chr22,33502441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,1.76000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,4.14000000 +7207,chr22,33504951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-0.91000000,0.00000000,,0.29213483,89.00000000,3.93805310,0.00000000,0.00000000,6.79000000 +7208,chr22,33558346,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.02000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.01298701,0.00000000,6.51000000 +7209,chr22,33561460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.70000000 +7210,chr22,33572382,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.32000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.01136364,0.00000000,6.93000000 +7211,chr22,33573528,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,-1.57000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.45000000 +7212,chr22,33576452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.31325301,84.00000000,3.71681416,0.01190476,0.00000000,8.02000000 +7213,chr22,33577102,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.16000000 +7214,chr22,33577132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.37000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.39000000 +7215,chr22,33577429,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,2.61000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.00000000,5.99000000 +7216,chr22,33577919,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.31000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +7217,chr22,33579853,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.85000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +7218,chr22,33580012,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-1.04000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +7219,chr22,33582090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.69000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +7220,chr22,33582145,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.94000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.39000000 +7221,chr22,33582325,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-0.50000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.28000000 +7222,chr22,33582472,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-2.08000000,0.00000000,,0.18085106,96.00000000,4.24778761,0.02083333,0.00000000,5.75000000 +7223,chr22,33583619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.54000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.60000000 +7224,chr22,33583951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.68000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.65000000 +7225,chr22,33584733,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,0.46000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,3.87000000 +7226,chr22,33585613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.40000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.01315789,0.00000000,6.39000000 +7227,chr22,33587608,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,-0.87000000,0.00000000,,0.29591837,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +7228,chr22,33588343,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.05000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.02105263,0.00000000,5.99000000 +7229,chr22,33588408,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.62000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.82000000 +7230,chr22,33588771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.86000000 +7231,chr22,33589024,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.20000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.89000000 +7232,chr22,33589374,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.28000000,0.00000000,,0.20192308,104.00000000,4.60176991,0.00000000,0.00000000,7.01000000 +7233,chr22,33589643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.54000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,5.74000000 +7234,chr22,33590507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +7235,chr22,33590557,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.93000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,6.73000000 +7236,chr22,33590682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,1.53000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +7237,chr22,33591022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,0.00000000,0.09000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.40000000 +7238,chr22,33593872,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.00000000,0.00000000,6.57000000 +7239,chr22,33594217,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.68000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,7.05000000 +7240,chr22,33595444,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.42000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.89000000 +7241,chr22,33595585,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,1.03000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.31000000 +7242,chr22,33595970,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.57831325,84.00000000,3.71681416,0.00000000,0.00000000,8.63000000 +7243,chr22,33599480,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.92000000 +7244,chr22,33601565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.76000000 +7245,chr22,33604244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.27368421,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +7246,chr22,33608486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,0.18000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.00000000,0.00000000,5.91000000 +7247,chr22,33609920,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.60000000 +7248,chr22,33614279,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.30769231,93.00000000,4.11504425,0.02150538,0.00000000,6.39000000 +7249,chr22,33625477,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.45000000,0.00000000,,0.26086957,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +7250,chr22,33625587,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.43000000,0.00000000,,0.14117647,86.00000000,3.80530973,0.01162791,0.00000000,4.47000000 +7251,chr22,33626107,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.21000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.43000000 +7252,chr22,33628220,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.79000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +7253,chr22,33629289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,77.00000000,0.00000000,-1.13000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.07000000 +7254,chr22,33632607,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.98000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,5.81000000 +7255,chr22,33636453,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-0.58000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +7256,chr22,33653952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7257,chr22,33660399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.73000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +7258,chr22,33670230,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,63.00000000,0.00000000,-1.33000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,4.93000000 +7259,chr22,33670860,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,5.72000000 +7260,chr22,33688860,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,60.00000000,0.00000000,0.62000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,7.59000000 +7261,chr22,33690249,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.86000000 +7262,chr22,33690430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,-2.08000000,0.00000000,,0.43661972,73.00000000,3.23008850,0.02739726,0.00000000,7.98000000 +7263,chr22,33693196,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,2.10000000,0.00000000,,0.42352941,87.00000000,3.84955752,0.02298851,0.00000000,3.96000000 +7264,chr22,33693274,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.97000000,0.00000000,,0.38666667,78.00000000,3.45132743,0.03846154,0.00000000,8.31000000 +7265,chr22,33693362,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,0.00000000,0.00000000,,0.34939759,92.00000000,4.07079646,0.08695652,0.00000000,7.61000000 +7266,chr22,33695762,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.26000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.07000000 +7267,chr22,33696505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.22000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,7.00000000 +7268,chr22,33759851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.01369863,0.00000000,6.15000000 +7269,chr22,33768699,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.10000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,5.51000000 +7270,chr22,33773407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.50000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.69000000 +7271,chr22,33775903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.23880597,72.00000000,3.18584071,0.06944444,0.00000000,5.74000000 +7272,chr22,33776290,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.73000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.89000000 +7273,chr22,33778642,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-2.77000000,0.00000000,,0.31506849,73.00000000,3.23008850,0.00000000,0.00000000,8.73000000 +7274,chr22,33779767,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.55000000,5.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,-0.58000000,0.00000000,,0.28571429,73.00000000,3.23008850,0.04109589,0.00000000,5.58000000 +7275,chr22,33782172,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.20000000 +7276,chr22,33784250,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.32000000 +7277,chr22,33785018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,1.05000000,0.00000000,,0.27380952,90.00000000,3.98230088,0.06666667,0.00000000,2.89000000 +7278,chr22,33788172,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +7279,chr22,33788578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.93000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.50000000 +7280,chr22,33790993,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,0.68000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,6.13000000 +7281,chr22,33791106,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.95000000 +7282,chr22,33794915,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-3.04000000,0.00000000,,0.13953488,88.00000000,3.89380531,0.02272727,0.00000000,5.30000000 +7283,chr22,33795648,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,0.17000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.03076923,0.00000000,5.67000000 +7284,chr22,33797245,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.01204819,0.00000000,6.16000000 +7285,chr22,33797894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.46000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.45000000 +7286,chr22,33801004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.56000000,0.00000000,,0.29268293,82.00000000,3.62831858,0.00000000,0.00000000,6.80000000 +7287,chr22,33801200,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.98000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.64000000 +7288,chr22,33801815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.62000000 +7289,chr22,33802520,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.74000000,0.00000000,,0.27941176,68.00000000,3.00884956,0.00000000,0.00000000,6.69000000 +7290,chr22,33830594,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.59000000,0.00000000,,0.14285714,77.00000000,3.40707965,0.00000000,0.00000000,5.31000000 +7291,chr22,33831054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,72.00000000,0.00000000,0.40000000,0.00000000,,0.16842105,99.00000000,4.38053097,0.03030303,0.00000000,5.59000000 +7292,chr22,33834485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.50000000,0.00000000,,0.32203390,63.00000000,2.78761062,0.06349206,0.00000000,7.07000000 +7293,chr22,33838313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,5.83000000 +7294,chr22,33840029,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.25757576,67.00000000,2.96460177,0.01492537,0.00000000,6.38000000 +7295,chr22,33844808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,73.00000000,0.00000000,-2.89000000,0.00000000,,0.27777778,57.00000000,2.52212389,0.05263158,0.00000000,5.88000000 +7296,chr22,33844995,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.87000000,0.00000000,,0.14705882,70.00000000,3.09734513,0.01428571,0.00000000,5.43000000 +7297,chr22,33845823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.20512821,82.00000000,3.62831858,0.04878049,0.00000000,6.46000000 +7298,chr22,33846064,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.01000000 +7299,chr22,33846578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,58.15000000,7.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-1.60000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.93000000 +7300,chr22,33846737,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.84000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,4.28000000 +7301,chr22,33847654,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.57000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +7302,chr22,33850988,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.44000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +7303,chr22,33851076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.46000000 +7304,chr22,33851929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.28000000,0.00000000,,0.16901408,75.00000000,3.31858407,0.05333333,0.00000000,5.58000000 +7305,chr22,33852618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.23000000,0.00000000,,0.24242424,66.00000000,2.92035398,0.00000000,0.00000000,6.32000000 +7306,chr22,33852676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,1.22000000,0.00000000,,0.14545455,55.00000000,2.43362832,0.00000000,0.00000000,5.48000000 +7307,chr22,33853729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-0.41000000,0.00000000,,0.15662651,83.00000000,3.67256637,0.00000000,0.00000000,5.73000000 +7308,chr22,33854483,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.63000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,5.28000000 +7309,chr22,33855117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,-1.63000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,6.04000000 +7310,chr22,33863390,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.53000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.03125000,0.00000000,6.28000000 +7311,chr22,33864750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.57000000,0.00000000,,0.25581395,86.00000000,3.80530973,0.00000000,0.00000000,6.32000000 +7312,chr22,33866428,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,75.00000000,0.00000000,0.22000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +7313,chr22,33871578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,65.00000000,0.00000000,-0.49000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,5.79000000 +7314,chr22,33873196,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.71000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.92000000 +7315,chr22,33873338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.10000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.03529412,0.00000000,2.90000000 +7316,chr22,33873455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,0.00000000,-0.74000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +7317,chr22,33874580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,1.25000000,0.00000000,,0.15652174,116.00000000,5.13274336,0.00862069,0.00000000,5.43000000 +7318,chr22,33880107,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.22000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.26000000 +7319,chr22,33880975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.80000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.15000000 +7320,chr22,33894728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.01333333,0.00000000,7.67000000 +7321,chr22,33899422,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-1.13000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.59000000 +7322,chr22,33901563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.25000000,0.00000000,,0.25000000,99.00000000,4.38053097,0.01010101,0.00000000,6.61000000 +7323,chr22,33904564,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-1.48000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,7.00000000 +7324,chr22,33907389,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.16666667,96.00000000,4.24778761,0.00000000,0.00000000,5.23000000 +7325,chr22,33908085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.61000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +7326,chr22,33908703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,54.00000000,0.00000000,0.94000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,2.81000000 +7327,chr22,33909631,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.06000000,0.00000000,,0.19230769,84.00000000,3.71681416,0.07142857,0.00000000,5.67000000 +7328,chr22,33910804,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.74000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +7329,chr22,33922078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.06000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +7330,chr22,33923521,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-0.26000000,0.00000000,,0.19387755,98.00000000,4.33628319,0.00000000,0.00000000,6.61000000 +7331,chr22,33923748,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +7332,chr22,33926330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.82000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.01149425,0.00000000,6.40000000 +7333,chr22,33927511,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.64000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +7334,chr22,33929558,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.66000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.63000000 +7335,chr22,33931720,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.27380952,88.00000000,3.89380531,0.03409091,0.00000000,6.61000000 +7336,chr22,33933614,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.70000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +7337,chr22,33938368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.95000000,0.00000000,,0.22535211,75.00000000,3.31858407,0.05333333,0.00000000,6.32000000 +7338,chr22,33938543,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.93000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +7339,chr22,33941394,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,2.09000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.79000000 +7340,chr22,33941635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.28000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.40000000 +7341,chr22,33944873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.39000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.02247191,0.00000000,6.33000000 +7342,chr22,33945645,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.18181818,70.00000000,3.09734513,0.05714286,0.00000000,5.57000000 +7343,chr22,33948207,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.04411765,0.00000000,6.38000000 +7344,chr22,33954476,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-1.28000000,0.00000000,,0.21538462,68.00000000,3.00884956,0.04411765,0.00000000,5.95000000 +7345,chr22,33957265,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,46.00000000,0.00000000,-0.47000000,0.00000000,,0.37931034,60.00000000,2.65486726,0.03333333,0.00000000,4.64000000 +7346,chr22,33960516,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,-1.09000000,0.00000000,,0.13829787,94.00000000,4.15929204,0.00000000,0.00000000,5.55000000 +7347,chr22,33963729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.55000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.42000000 +7348,chr22,33967297,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.92000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +7349,chr22,33968260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.12000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.01000000 +7350,chr22,33968691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +7351,chr22,33972557,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,68.00000000,0.00000000,-0.06000000,0.00000000,,0.18367347,60.00000000,2.65486726,0.18333333,0.00000000,5.83000000 +7352,chr22,33972561,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16981132,63.00000000,2.78761062,0.15873016,0.00000000,5.22000000 +7353,chr22,33973972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.94000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.73000000 +7354,chr22,33978446,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,36.00000000,0.00000000,1.25000000,0.00000000,,0.37777778,47.00000000,2.07964602,0.04255319,0.00000000,3.62000000 +7355,chr22,33978567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,49.00000000,0.00000000,0.80000000,0.00000000,,0.30508475,62.00000000,2.74336283,0.01612903,0.00000000,4.21000000 +7356,chr22,33979209,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.29213483,89.00000000,3.93805310,0.00000000,0.00000000,5.86000000 +7357,chr22,33979259,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.10000000,0.00000000,,0.27368421,98.00000000,4.33628319,0.03061224,0.00000000,6.19000000 +7358,chr22,33983160,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.87000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.32000000 +7359,chr22,33987676,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.62000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.48000000 +7360,chr22,33990094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.79000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +7361,chr22,33990484,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.50000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +7362,chr22,33991521,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.79000000,0.00000000,,0.45679012,85.00000000,3.76106195,0.04705882,0.00000000,7.66000000 +7363,chr22,33993966,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.01136364,0.00000000,6.66000000 +7364,chr22,33994613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.10000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.03030303,0.00000000,6.85000000 +7365,chr22,34000682,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.75000000,0.00000000,,0.15463918,99.00000000,4.38053097,0.01010101,0.00000000,5.70000000 +7366,chr22,34006198,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.14000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,7.04000000 +7367,chr22,34009778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.24137931,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.24615385,76.00000000,3.36283186,0.13157895,0.00000000,5.33000000 +7368,chr22,34017284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.18000000 +7369,chr22,34036787,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +7370,chr22,34106800,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,0.00000000,-0.39000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,4.78000000 +7371,chr22,34107070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.46000000 +7372,chr22,34108875,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,63.00000000,0.00000000,2.08000000,0.00000000,,0.16923077,75.00000000,3.31858407,0.13333333,0.00000000,5.07000000 +7373,chr22,34123811,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,-1.36000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.14000000 +7374,chr22,34136895,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,5.91000000 +7375,chr22,34138015,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-1.29000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.61000000 +7376,chr22,34138118,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.43000000,0.00000000,,0.22058824,75.00000000,3.31858407,0.09333333,0.00000000,5.75000000 +7377,chr22,34140731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.98000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.76000000 +7378,chr22,34140979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.56000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.47000000 +7379,chr22,34143397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-1.99000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +7380,chr22,34143889,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-1.32000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.62000000 +7381,chr22,34144292,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.87000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +7382,chr22,34147521,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.41000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.04411765,0.00000000,5.94000000 +7383,chr22,34149063,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.33000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.73000000 +7384,chr22,34149560,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,0.04000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.01538462,0.00000000,5.45000000 +7385,chr22,34149793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.43000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +7386,chr22,34150514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.56000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.48000000 +7387,chr22,34151420,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,60.00000000,0.00000000,0.15000000,0.00000000,,0.32258065,70.00000000,3.09734513,0.11428571,0.00000000,7.03000000 +7388,chr22,34152193,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,4.76000000 +7389,chr22,34152453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,1.11000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.11000000 +7390,chr22,34152561,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-1.26000000,0.00000000,,0.12500000,82.00000000,3.62831858,0.02439024,0.00000000,5.33000000 +7391,chr22,34152893,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.98000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.96000000 +7392,chr22,34152978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.34000000 +7393,chr22,34153451,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.06000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.31000000 +7394,chr22,34153506,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.15000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,6.98000000 +7395,chr22,34153646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.13000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.61000000 +7396,chr22,34153787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.26000000,0.00000000,,0.23076923,52.00000000,2.30088496,0.00000000,0.00000000,6.16000000 +7397,chr22,34154351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,2.11000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,5.02000000 +7398,chr22,34154411,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-1.30000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.00000000,0.00000000,5.73000000 +7399,chr22,34154534,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,-0.22000000,0.00000000,,0.28000000,79.00000000,3.49557522,0.05063291,0.00000000,2.79000000 +7400,chr22,34154586,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.91000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.38000000 +7401,chr22,34154601,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.16000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.60000000 +7402,chr22,34155115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.37000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.01176471,0.00000000,6.97000000 +7403,chr22,34155472,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,-0.83000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,5.82000000 +7404,chr22,34155833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.08000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +7405,chr22,34156416,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.61000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.04225352,0.00000000,5.89000000 +7406,chr22,34156426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.13000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,5.65000000 +7407,chr22,34156487,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.28000000 +7408,chr22,34156492,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,0.67000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,4.42000000 +7409,chr22,34156712,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,2.04000000,0.00000000,,0.21428571,59.00000000,2.61061947,0.03389831,0.00000000,5.79000000 +7410,chr22,34157665,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.64000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.41000000 +7411,chr22,34157835,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.23437500,71.00000000,3.14159292,0.09859155,0.00000000,6.10000000 +7412,chr22,34158249,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,5.59000000 +7413,chr22,34164387,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.01098901,0.00000000,6.85000000 +7414,chr22,34167330,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,2.20000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.37000000 +7415,chr22,34169857,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-2.10000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.69000000 +7416,chr22,34170664,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,1.30000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.24000000 +7417,chr22,34178049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.52000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +7418,chr22,34188025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.90000000 +7419,chr22,34189863,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-1.04000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,2.91000000 +7420,chr22,34190213,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.48000000,0.00000000,,0.20634921,64.00000000,2.83185841,0.01562500,0.00000000,6.63000000 +7421,chr22,34190576,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-1.54000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.76000000 +7422,chr22,34191167,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +7423,chr22,34191372,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.82000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.46000000 +7424,chr22,34191458,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.36000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +7425,chr22,34191514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.76000000 +7426,chr22,34191997,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-1.08000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.00000000,0.00000000,6.55000000 +7427,chr22,34193425,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.72000000,0.00000000,,0.32203390,59.00000000,2.61061947,0.00000000,0.00000000,8.03000000 +7428,chr22,34193881,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-1.02000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.40000000 +7429,chr22,34193899,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.60000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.56000000 +7430,chr22,34194170,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.27142857,74.00000000,3.27433628,0.05405405,0.00000000,6.50000000 +7431,chr22,34196167,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.20000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.84000000 +7432,chr22,34197023,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.25757576,67.00000000,2.96460177,0.01492537,0.00000000,6.25000000 +7433,chr22,34198313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.27000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,5.87000000 +7434,chr22,34200567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.26000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.37000000 +7435,chr22,34200901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,77.00000000,0.00000000,0.69000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.00000000,0.00000000,5.80000000 +7436,chr22,34201427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.00000000,0.00000000,6.71000000 +7437,chr22,34202007,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-0.68000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.18000000 +7438,chr22,34202320,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,1.90000000,0.00000000,,0.28358209,73.00000000,3.23008850,0.08219178,0.00000000,5.55000000 +7439,chr22,34202579,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.13725490,106.00000000,4.69026549,0.01886792,0.00000000,5.42000000 +7440,chr22,34202673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-0.73000000,0.00000000,,0.09183673,102.00000000,4.51327434,0.03921569,0.00000000,5.48000000 +7441,chr22,34203628,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.70000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.35000000 +7442,chr22,34204024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.14000000,0.00000000,,0.30136986,73.00000000,3.23008850,0.00000000,0.00000000,6.33000000 +7443,chr22,34204476,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-1.20000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,5.15000000 +7444,chr22,34204477,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,4.96000000 +7445,chr22,34204695,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.46000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.94000000 +7446,chr22,34204945,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.95000000,0.00000000,,0.21428571,68.00000000,3.00884956,0.14705882,0.00000000,6.70000000 +7447,chr22,34207244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.64000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +7448,chr22,34208264,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.96000000 +7449,chr22,34209968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.24000000,0.00000000,,0.30588235,86.00000000,3.80530973,0.01162791,0.00000000,6.02000000 +7450,chr22,34210310,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,-0.64000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,6.10000000 +7451,chr22,34210850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.82000000,0.00000000,,0.13888889,72.00000000,3.18584071,0.00000000,0.00000000,5.10000000 +7452,chr22,34211724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.92000000,0.00000000,,0.24137931,59.00000000,2.61061947,0.01694915,0.00000000,6.60000000 +7453,chr22,34212523,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,-2.44000000,0.00000000,,0.32432432,76.00000000,3.36283186,0.02631579,0.00000000,8.38000000 +7454,chr22,34214105,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.88000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,6.68000000 +7455,chr22,34214916,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,0.73000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +7456,chr22,34215630,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.22000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.93000000 +7457,chr22,34215943,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.27000000,0.00000000,,0.33333333,75.00000000,3.31858407,0.02666667,0.00000000,9.24000000 +7458,chr22,34216946,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.20000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +7459,chr22,34217680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.89000000 +7460,chr22,34217911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-1.10000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,5.67000000 +7461,chr22,34217930,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,-1.20000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.01000000 +7462,chr22,34218264,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,5.68000000 +7463,chr22,34218931,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.24000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.25000000 +7464,chr22,34219207,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.80000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.73000000 +7465,chr22,34220874,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.44000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,7.15000000 +7466,chr22,34222809,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.77000000,0.00000000,,0.10810811,74.00000000,3.27433628,0.00000000,0.00000000,5.38000000 +7467,chr22,34222830,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.50000000,0.00000000,,0.15068493,73.00000000,3.23008850,0.00000000,0.00000000,6.15000000 +7468,chr22,34223456,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.06000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.01136364,0.00000000,6.02000000 +7469,chr22,34243064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +7470,chr22,34251521,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,27.00000000,0.00000000,1.06000000,0.00000000,,0.44444444,81.00000000,3.58407080,0.00000000,0.00000000,3.21000000 +7471,chr22,34252923,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,20.00000000,0.00000000,-0.17000000,0.00000000,,0.46268657,67.00000000,2.96460177,0.00000000,0.00000000,3.13000000 +7472,chr22,34254793,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,57.00000000,0.00000000,-0.28000000,0.00000000,,0.47761194,67.00000000,2.96460177,0.00000000,0.00000000,4.21000000 +7473,chr22,34255553,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,-0.25000000,0.00000000,,0.40697674,90.00000000,3.98230088,0.03333333,0.00000000,8.29000000 +7474,chr22,34258911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.36000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.88000000 +7475,chr22,34259658,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.81000000,0.00000000,,0.44680851,94.00000000,4.15929204,0.00000000,0.00000000,4.26000000 +7476,chr22,34264927,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,1.35000000,0.00000000,,0.40000000,81.00000000,3.58407080,0.01234568,0.00000000,7.91000000 +7477,chr22,34265829,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.42682927,84.00000000,3.71681416,0.01190476,0.00000000,8.64000000 +7478,chr22,34265988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.47000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.89000000 +7479,chr22,34266141,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,50.00000000,0.00000000,-1.89000000,0.00000000,,0.43750000,70.00000000,3.09734513,0.08571429,0.00000000,4.53000000 +7480,chr22,34267078,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,0.70000000,0.00000000,,0.46575342,75.00000000,3.31858407,0.02666667,0.00000000,4.65000000 +7481,chr22,34270882,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.16000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,2.87000000 +7482,chr22,34272341,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.11000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,4.46000000 +7483,chr22,34279399,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.40000000,0.00000000,,0.38297872,50.00000000,2.21238938,0.04000000,0.00000000,4.72000000 +7484,chr22,34279400,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.29000000,0.00000000,,0.37500000,50.00000000,2.21238938,0.04000000,0.00000000,4.81000000 +7485,chr22,34281901,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,51.00000000,0.00000000,-0.09000000,0.00000000,,0.37142857,70.00000000,3.09734513,0.00000000,0.00000000,4.66000000 +7486,chr22,34282150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.20270270,80.00000000,3.53982301,0.07500000,0.00000000,6.60000000 +7487,chr22,34283400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.79000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.01250000,0.00000000,6.67000000 +7488,chr22,34285173,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.35000000,0.00000000,,0.48648649,75.00000000,3.31858407,0.01333333,0.00000000,4.57000000 +7489,chr22,34287449,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.70000000,0.00000000,,0.52941176,87.00000000,3.84955752,0.02298851,0.00000000,8.04000000 +7490,chr22,34288899,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,48.00000000,0.00000000,-0.46000000,0.00000000,,0.37078652,92.00000000,4.07079646,0.03260870,0.00000000,4.68000000 +7491,chr22,34290908,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.47000000,0.00000000,,0.53125000,66.00000000,2.92035398,0.03030303,0.00000000,8.00000000 +7492,chr22,34290969,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.92000000,0.00000000,,0.50943396,54.00000000,2.38938053,0.01851852,0.00000000,7.54000000 +7493,chr22,34291040,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,0.80000000,0.00000000,,0.43103448,60.00000000,2.65486726,0.01666667,0.00000000,4.31000000 +7494,chr22,34293199,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.44000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.64000000 +7495,chr22,34294658,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,0.16000000,0.00000000,,0.46478873,71.00000000,3.14159292,0.00000000,0.00000000,4.27000000 +7496,chr22,34295045,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-1.83000000,0.00000000,,0.42424242,99.00000000,4.38053097,0.00000000,0.00000000,8.96000000 +7497,chr22,34299196,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.09000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,4.00000000 +7498,chr22,34299419,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,-0.47000000,0.00000000,,0.42682927,85.00000000,3.76106195,0.03529412,0.00000000,8.14000000 +7499,chr22,34300419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.45000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,1.34000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.64000000 +7500,chr22,34306500,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.17000000,0.00000000,,0.33333333,77.00000000,3.40707965,0.02597403,0.00000000,8.00000000 +7501,chr22,34309076,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,-0.42000000,0.00000000,,0.43661972,74.00000000,3.27433628,0.04054054,0.00000000,4.52000000 +7502,chr22,34313133,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,60.00000000,0.00000000,-2.00000000,0.00000000,,0.48571429,73.00000000,3.23008850,0.04109589,0.00000000,7.44000000 +7503,chr22,34313631,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.37179487,80.00000000,3.53982301,0.02500000,0.00000000,8.41000000 +7504,chr22,34319890,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,43.00000000,1.90265487,0.00000000,0.00000000,58.00000000,0.00000000,-0.53000000,0.00000000,,0.53012048,86.00000000,3.80530973,0.03488372,0.00000000,5.64000000 +7505,chr22,34320509,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.02000000,0.00000000,,0.40000000,86.00000000,3.80530973,0.01162791,0.00000000,8.63000000 +7506,chr22,34323889,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.55000000,0.00000000,,0.18750000,99.00000000,4.38053097,0.03030303,0.00000000,6.74000000 +7507,chr22,34325145,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,-1.59000000,0.00000000,,0.46969697,68.00000000,3.00884956,0.02941176,0.00000000,4.68000000 +7508,chr22,34325284,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.83000000,0.00000000,,0.46753247,81.00000000,3.58407080,0.02469136,0.00000000,8.38000000 +7509,chr22,34326226,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.23300971,103.00000000,4.55752212,0.00000000,0.00000000,7.09000000 +7510,chr22,34332188,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.81000000,0.00000000,,0.53658537,83.00000000,3.67256637,0.01204819,0.00000000,8.30000000 +7511,chr22,34332223,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-1.08000000,0.00000000,,0.58620690,89.00000000,3.93805310,0.02247191,0.00000000,8.32000000 +7512,chr22,34332241,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-1.43000000,0.00000000,,0.57303371,91.00000000,4.02654867,0.02197802,0.00000000,8.10000000 +7513,chr22,34332357,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.62000000,0.00000000,,0.44318182,89.00000000,3.93805310,0.01123596,0.00000000,4.03000000 +7514,chr22,34332596,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-1.76000000,0.00000000,,0.49382716,84.00000000,3.71681416,0.02380952,0.00000000,3.94000000 +7515,chr22,34332759,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-1.10000000,0.00000000,,0.54166667,72.00000000,3.18584071,0.00000000,0.00000000,8.75000000 +7516,chr22,34333801,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,44.00000000,0.00000000,-1.83000000,0.00000000,,0.45901639,63.00000000,2.78761062,0.03174603,0.00000000,4.04000000 +7517,chr22,34333835,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.75000000,0.00000000,,0.40000000,65.00000000,2.87610619,0.00000000,0.00000000,6.03000000 +7518,chr22,34335041,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.35000000 +7519,chr22,34335060,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.47435897,79.00000000,3.49557522,0.01265823,0.00000000,8.27000000 +7520,chr22,34335855,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.10000000,0.00000000,,0.53846154,78.00000000,3.45132743,0.00000000,0.00000000,8.82000000 +7521,chr22,34336032,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,0.80000000,0.00000000,,0.47058824,85.00000000,3.76106195,0.00000000,0.00000000,4.14000000 +7522,chr22,34336108,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,-0.13000000,0.00000000,,0.46341463,85.00000000,3.76106195,0.03529412,0.00000000,8.16000000 +7523,chr22,34337188,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,34.00000000,0.00000000,-1.30000000,0.00000000,,0.37142857,73.00000000,3.23008850,0.04109589,0.00000000,3.91000000 +7524,chr22,34337520,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,20.00000000,0.00000000,0.61000000,0.00000000,,0.43939394,66.00000000,2.92035398,0.00000000,0.00000000,3.96000000 +7525,chr22,34338381,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,0.00000000,-0.62000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,14.35000000 +7526,chr22,34338883,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.17000000,0.00000000,,0.49350649,79.00000000,3.49557522,0.02531646,0.00000000,4.34000000 +7527,chr22,34339149,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,-2.58000000,0.00000000,,0.55813953,88.00000000,3.89380531,0.02272727,0.00000000,7.67000000 +7528,chr22,34339383,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.39534884,90.00000000,3.98230088,0.04444444,0.00000000,8.07000000 +7529,chr22,34339742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.70000000,0.00000000,,0.13846154,69.00000000,3.05309735,0.05797101,0.00000000,5.37000000 +7530,chr22,34340795,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.45121951,83.00000000,3.67256637,0.01204819,0.00000000,8.43000000 +7531,chr22,34341303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,0.43000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,5.56000000 +7532,chr22,34341311,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,51.00000000,0.00000000,-1.02000000,0.00000000,,0.38235294,68.00000000,3.00884956,0.00000000,0.00000000,4.08000000 +7533,chr22,34345550,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.17000000,0.00000000,,0.26436782,90.00000000,3.98230088,0.03333333,0.00000000,5.84000000 +7534,chr22,34346809,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.63000000,0.00000000,,0.46666667,77.00000000,3.40707965,0.02597403,0.00000000,4.30000000 +7535,chr22,34347084,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,2.47000000,0.00000000,,0.39080460,89.00000000,3.93805310,0.02247191,0.00000000,4.62000000 +7536,chr22,34347513,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.48000000,0.00000000,,0.47297297,77.00000000,3.40707965,0.03896104,0.00000000,4.76000000 +7537,chr22,34348646,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.40000000,82.00000000,3.62831858,0.02439024,0.00000000,8.20000000 +7538,chr22,34348859,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,0.00000000,-1.27000000,0.00000000,,0.45161290,95.00000000,4.20353982,0.02105263,0.00000000,4.41000000 +7539,chr22,34348916,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,0.08000000,0.00000000,,0.48684211,77.00000000,3.40707965,0.01298701,0.00000000,4.28000000 +7540,chr22,34349208,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,45.00000000,0.00000000,0.58000000,0.00000000,,0.51515152,70.00000000,3.09734513,0.04285714,0.00000000,4.33000000 +7541,chr22,34351519,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,55.00000000,0.00000000,0.04000000,0.00000000,,0.41538462,66.00000000,2.92035398,0.01515152,0.00000000,4.80000000 +7542,chr22,34352396,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-0.02000000,0.00000000,,0.48333333,61.00000000,2.69911504,0.01639344,0.00000000,4.35000000 +7543,chr22,34352730,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.17000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,8.49000000 +7544,chr22,34352977,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,29.00000000,0.00000000,-0.85000000,0.00000000,,0.43661972,71.00000000,3.14159292,0.00000000,0.00000000,3.60000000 +7545,chr22,34353202,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,1.46000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,8.05000000 +7546,chr22,34353976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.82000000,0.00000000,,0.28865979,98.00000000,4.33628319,0.00000000,0.00000000,6.76000000 +7547,chr22,34354883,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.40697674,88.00000000,3.89380531,0.02272727,0.00000000,8.21000000 +7548,chr22,34354930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.26000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.46000000 +7549,chr22,34376884,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,65.00000000,0.00000000,-0.68000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,5.43000000 +7550,chr22,34384313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.64000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.26000000 +7551,chr22,34384700,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,78.00000000,0.00000000,1.31000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.02898551,0.00000000,5.73000000 +7552,chr22,34385208,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,96.00000000,0.00000000,1.47000000,0.00000000,,0.27906977,89.00000000,3.93805310,0.01123596,0.00000000,5.75000000 +7553,chr22,34394551,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.28000000 +7554,chr22,34397040,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.52000000,0.00000000,,0.20000000,45.00000000,1.99115044,0.00000000,0.00000000,5.12000000 +7555,chr22,34398628,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.30000000,11.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.42000000,0.00000000,,0.16363636,58.00000000,2.56637168,0.05172414,0.00000000,4.82000000 +7556,chr22,34401129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,6.32000000 +7557,chr22,34402293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,90.00000000,0.00000000,2.81000000,0.00000000,,0.24096386,87.00000000,3.84955752,0.04597701,0.00000000,6.05000000 +7558,chr22,34426450,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.54000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7559,chr22,34436149,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,1.65000000,0.00000000,,0.22727273,70.00000000,3.09734513,0.05714286,0.00000000,5.71000000 +7560,chr22,34448584,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,72.00000000,0.00000000,0.87000000,0.00000000,,0.18840580,76.00000000,3.36283186,0.06578947,0.00000000,5.74000000 +7561,chr22,34518725,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.25000000 +7562,chr22,34547994,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.16000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +7563,chr22,34592231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.67000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,6.29000000 +7564,chr22,34592895,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.97000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +7565,chr22,34597410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.64000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.81000000 +7566,chr22,34598309,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-1.54000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,6.53000000 +7567,chr22,34600489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.00000000,0.00000000,6.46000000 +7568,chr22,34601461,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,75.00000000,0.00000000,1.77000000,0.00000000,,0.30337079,91.00000000,4.02654867,0.02197802,0.00000000,6.08000000 +7569,chr22,34625752,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,40.93000000,54.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,29.00000000,0.00000000,-1.19000000,0.00000000,,0.34375000,33.00000000,1.46017699,0.03030303,0.00000000,3.77000000 +7570,chr22,34626822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.45000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.55000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,5.62000000 +7571,chr22,34627420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,85.00000000,0.00000000,0.85000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,8.09000000 +7572,chr22,34631593,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.97000000,0.00000000,,0.25490196,102.00000000,4.51327434,0.00000000,0.00000000,6.72000000 +7573,chr22,34635887,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,-0.91000000,0.00000000,,0.22580645,68.00000000,3.00884956,0.08823529,0.00000000,5.93000000 +7574,chr22,34650700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.74000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.00000000,0.00000000,6.47000000 +7575,chr22,34651224,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.13000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.23000000 +7576,chr22,34653047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.04000000,0.00000000,,0.15942029,69.00000000,3.05309735,0.00000000,0.00000000,5.69000000 +7577,chr22,34661637,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.93000000,1.68000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.62000000 +7578,chr22,34672035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,0.24000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.96000000 +7579,chr22,34677348,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.08000000,0.00000000,,0.14130435,92.00000000,4.07079646,0.00000000,0.00000000,5.82000000 +7580,chr22,34685001,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,50.76000000,29.00000000,ref,1.00000000,0.11764706,17.00000000,0.75221239,0.00000000,0.00000000,14.00000000,0.00000000,-0.44000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,3.38000000 +7581,chr22,34688214,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.09000000 +7582,chr22,34689598,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-2.04000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,6.73000000 +7583,chr22,34690145,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,5.82000000 +7584,chr22,34694531,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.69000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.03370787,0.00000000,5.91000000 +7585,chr22,34694838,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,1.24000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.93000000 +7586,chr22,34696418,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.16000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.44000000 +7587,chr22,34697149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.33000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,7.05000000 +7588,chr22,34702934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.15000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.74000000 +7589,chr22,34711932,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.99000000,0.00000000,,0.31428571,73.00000000,3.23008850,0.04109589,0.00000000,6.53000000 +7590,chr22,34726322,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.77000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.01219512,0.00000000,6.90000000 +7591,chr22,34728988,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.64000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.41000000 +7592,chr22,34735623,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.71000000,0.00000000,,0.15306122,98.00000000,4.33628319,0.00000000,0.00000000,5.56000000 +7593,chr22,34745814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.13000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,50.00000000,0.00000000,-1.40000000,0.00000000,,0.17777778,57.00000000,2.52212389,0.19298246,0.00000000,2.78000000 +7594,chr22,34746793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.43000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,6.12000000 +7595,chr22,34748492,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,6.18000000 +7596,chr22,34752992,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.20000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.03225806,0.00000000,6.32000000 +7597,chr22,34753937,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-1.10000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,6.19000000 +7598,chr22,34768729,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.80000000 +7599,chr22,34780014,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,31.00000000,0.00000000,-0.03000000,0.00000000,,0.34883721,44.00000000,1.94690265,0.02272727,0.00000000,3.87000000 +7600,chr22,34799388,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.20000000,0.00000000,,0.25000000,60.00000000,2.65486726,0.00000000,0.00000000,6.41000000 +7601,chr22,34801363,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.24000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.31000000 +7602,chr22,34804960,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,0.03000000,0.00000000,,0.22222222,99.00000000,4.38053097,0.00000000,0.00000000,6.13000000 +7603,chr22,34845607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +7604,chr22,34846128,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.26315789,0.00000000,34.00000000,0.00000000,0.06000000,0.00000000,,0.33333333,72.00000000,3.18584071,0.23611111,0.00000000,3.88000000 +7605,chr22,34869265,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,-2.43000000,0.00000000,,0.44086022,96.00000000,4.24778761,0.02083333,0.00000000,7.56000000 +7606,chr22,34869546,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,54.00000000,0.00000000,1.25000000,0.00000000,,0.37662338,81.00000000,3.58407080,0.01234568,0.00000000,4.55000000 +7607,chr22,34894677,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,1.93000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.13000000 +7608,chr22,34896665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.38000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.66000000 +7609,chr22,34908625,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.75000000,0.00000000,,0.25555556,93.00000000,4.11504425,0.03225806,0.00000000,5.84000000 +7610,chr22,34937806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.16000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7611,chr22,34954905,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.25000000,0.00000000,,0.28333333,60.00000000,2.65486726,0.00000000,0.00000000,6.70000000 +7612,chr22,34956574,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.85000000,0.00000000,,0.14285714,92.00000000,4.07079646,0.01086957,0.00000000,5.82000000 +7613,chr22,34961978,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.51000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.02000000 +7614,chr22,34976639,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,0.64000000,0.00000000,,0.12790698,88.00000000,3.89380531,0.02272727,0.00000000,4.71000000 +7615,chr22,34976788,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,90.00000000,0.00000000,0.86000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.00000000,0.00000000,6.07000000 +7616,chr22,34976832,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,88.00000000,0.00000000,2.24000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.91000000 +7617,chr22,34977894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.46000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +7618,chr22,34977903,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.22000000 +7619,chr22,34982267,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.33000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,7.08000000 +7620,chr22,34993644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,-1.18000000,0.00000000,,0.18750000,97.00000000,4.29203540,0.01030928,0.00000000,6.18000000 +7621,chr22,34994406,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.25000000,0.00000000,,0.18279570,94.00000000,4.15929204,0.01063830,0.00000000,6.26000000 +7622,chr22,35004579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-0.37000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.23000000 +7623,chr22,35010293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.18000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,6.26000000 +7624,chr22,35011693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,60.00000000,0.00000000,1.13000000,0.00000000,,0.12500000,75.00000000,3.31858407,0.04000000,0.00000000,4.41000000 +7625,chr22,35012904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.02000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.07000000 +7626,chr22,35014861,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.25000000,0.00000000,,0.19354839,66.00000000,2.92035398,0.04545455,0.00000000,5.68000000 +7627,chr22,35019584,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.85000000 +7628,chr22,35036907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,0.00000000,-1.46000000,0.00000000,,0.11764706,85.00000000,3.76106195,0.00000000,0.00000000,5.61000000 +7629,chr22,35039988,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.03000000,0.00000000,,0.24137931,87.00000000,3.84955752,0.00000000,0.00000000,6.93000000 +7630,chr22,35041832,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,-0.15000000,0.00000000,,0.18867925,107.00000000,4.73451327,0.00934579,0.00000000,6.65000000 +7631,chr22,35043514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.90000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +7632,chr22,35044097,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +7633,chr22,35045744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.88000000,0.00000000,,0.17977528,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +7634,chr22,35046825,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,6.61000000 +7635,chr22,35047302,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.04000000,0.00000000,,0.24675325,80.00000000,3.53982301,0.03750000,0.00000000,6.28000000 +7636,chr22,35053699,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.01000000,0.00000000,,0.16923077,67.00000000,2.96460177,0.02985075,0.00000000,5.80000000 +7637,chr22,35054311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.83000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.30000000 +7638,chr22,35054520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,102.00000000,0.00000000,0.91000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,12.77000000 +7639,chr22,35054947,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,-0.79000000,0.00000000,,0.28070175,58.00000000,2.56637168,0.01724138,0.00000000,6.27000000 +7640,chr22,35055959,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.02666667,0.00000000,5.52000000 +7641,chr22,35057270,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.91000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +7642,chr22,35057834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.49000000,0.00000000,,0.16666667,99.00000000,4.38053097,0.02020202,0.00000000,6.14000000 +7643,chr22,35058735,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,0.00000000,0.82000000,0.00000000,,0.23684211,82.00000000,3.62831858,0.02439024,0.00000000,4.21000000 +7644,chr22,35058755,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.38000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.59000000 +7645,chr22,35058758,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.01000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.22000000 +7646,chr22,35058829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,62.00000000,0.00000000,-1.69000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,5.78000000 +7647,chr22,35059117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,86.00000000,0.00000000,-0.66000000,0.00000000,,0.20353982,114.00000000,5.04424779,0.00877193,0.00000000,5.63000000 +7648,chr22,35059370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.14000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.49000000 +7649,chr22,35059589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.43000000 +7650,chr22,35059860,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.26000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.58000000 +7651,chr22,35059996,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.72000000,0.00000000,,0.21428571,58.00000000,2.56637168,0.01724138,0.00000000,6.40000000 +7652,chr22,35062863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.28000000,0.00000000,,0.22500000,84.00000000,3.71681416,0.04761905,0.00000000,6.66000000 +7653,chr22,35064374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.36000000,7.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,1.19000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,5.54000000 +7654,chr22,35064529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.22000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +7655,chr22,35067169,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.06185567,0.00000000,6.08000000 +7656,chr22,35067186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.16091954,92.00000000,4.07079646,0.04347826,0.00000000,5.87000000 +7657,chr22,35071100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,2.18000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.46000000 +7658,chr22,35071858,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-0.84000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.20000000 +7659,chr22,35072747,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.15000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,6.65000000 +7660,chr22,35072886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.66000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,6.57000000 +7661,chr22,35076157,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,89.00000000,0.00000000,1.44000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,5.26000000 +7662,chr22,35079135,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,86.00000000,0.00000000,-0.24000000,0.00000000,,0.30927835,98.00000000,4.33628319,0.01020408,0.00000000,6.75000000 +7663,chr22,35080843,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.22000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.00000000,0.00000000,6.51000000 +7664,chr22,35083705,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,1.15000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.02000000 +7665,chr22,35084899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,1.74000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.00000000,0.00000000,4.35000000 +7666,chr22,35091549,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.73000000 +7667,chr22,35092674,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.15000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +7668,chr22,35096320,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-1.64000000,0.00000000,,0.19417476,105.00000000,4.64601770,0.01904762,0.00000000,6.23000000 +7669,chr22,35096565,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.66000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,6.72000000 +7670,chr22,35098961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.63000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +7671,chr22,35100571,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.49000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,5.95000000 +7672,chr22,35104061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,2.22000000,0.00000000,,0.23287671,77.00000000,3.40707965,0.05194805,0.00000000,6.24000000 +7673,chr22,35104270,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.29000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.94000000 +7674,chr22,35111838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7675,chr22,35112181,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.52000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,5.67000000 +7676,chr22,35113528,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.26136364,91.00000000,4.02654867,0.03296703,0.00000000,5.96000000 +7677,chr22,35115596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +7678,chr22,35118133,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.63000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,6.81000000 +7679,chr22,35119272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-1.79000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +7680,chr22,35119414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +7681,chr22,35120563,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.23000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +7682,chr22,35120686,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.58000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +7683,chr22,35120738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,-1.45000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.45000000 +7684,chr22,35121182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-1.81000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.02500000,0.00000000,6.35000000 +7685,chr22,35121397,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-1.40000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.02352941,0.00000000,5.76000000 +7686,chr22,35121640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.14000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.03529412,0.00000000,5.61000000 +7687,chr22,35121680,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.04000000,0.00000000,,0.18478261,96.00000000,4.24778761,0.04166667,0.00000000,6.01000000 +7688,chr22,35121693,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.03000000,0.00000000,,0.18478261,96.00000000,4.24778761,0.03125000,0.00000000,6.43000000 +7689,chr22,35121775,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.52000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.60000000 +7690,chr22,35122049,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,0.00000000,-0.64000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,4.43000000 +7691,chr22,35122592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +7692,chr22,35122789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,83.00000000,0.00000000,0.53000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.01000000 +7693,chr22,35122896,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,-0.99000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.74000000 +7694,chr22,35122957,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,68.00000000,0.00000000,0.65000000,0.00000000,,0.16438356,80.00000000,3.53982301,0.08750000,0.00000000,4.99000000 +7695,chr22,35122994,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,73.00000000,0.00000000,-1.03000000,0.00000000,,0.17910448,76.00000000,3.36283186,0.11842105,0.00000000,5.60000000 +7696,chr22,35123091,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,65.00000000,0.00000000,-0.28000000,0.00000000,,0.25454545,73.00000000,3.23008850,0.24657534,0.00000000,5.63000000 +7697,chr22,35123104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,77.00000000,0.00000000,0.83000000,0.00000000,,0.25862069,72.00000000,3.18584071,0.19444444,0.00000000,5.63000000 +7698,chr22,35123285,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.00000000,0.00000000,6.69000000 +7699,chr22,35123470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.22368421,79.00000000,3.49557522,0.03797468,0.00000000,5.94000000 +7700,chr22,35123519,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,6.70000000 +7701,chr22,35123732,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05882353,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.39000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +7702,chr22,35123857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.72000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +7703,chr22,35124083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,0.29000000,0.00000000,,0.27956989,95.00000000,4.20353982,0.02105263,0.00000000,6.22000000 +7704,chr22,35124891,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,0.00000000,1.41000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.11000000 +7705,chr22,35127380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.39000000,0.00000000,,0.20879121,95.00000000,4.20353982,0.03157895,0.00000000,6.50000000 +7706,chr22,35127875,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.32000000 +7707,chr22,35131086,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.15000000,0.00000000,,0.27397260,76.00000000,3.36283186,0.03947368,0.00000000,6.65000000 +7708,chr22,35132132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.02000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,5.97000000 +7709,chr22,35132465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,46.00000000,0.00000000,-1.49000000,0.00000000,,0.30000000,76.00000000,3.36283186,0.05263158,0.00000000,3.80000000 +7710,chr22,35132470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-0.78000000,0.00000000,,0.32307692,70.00000000,3.09734513,0.05714286,0.00000000,5.09000000 +7711,chr22,35132509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,0.00000000,-1.59000000,0.00000000,,0.33333333,71.00000000,3.14159292,0.02816901,0.00000000,4.85000000 +7712,chr22,35133148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,1.15000000,0.00000000,,0.13793103,59.00000000,2.61061947,0.01694915,0.00000000,4.60000000 +7713,chr22,35135401,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.20000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +7714,chr22,35135619,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.53000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.02000000 +7715,chr22,35135705,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.56000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,7.05000000 +7716,chr22,35136066,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,0.00000000,0.58000000,0.00000000,,0.25352113,74.00000000,3.27433628,0.01351351,0.00000000,5.61000000 +7717,chr22,35136154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-0.77000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.99000000 +7718,chr22,35138137,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.37000000,0.00000000,,0.22077922,80.00000000,3.53982301,0.03750000,0.00000000,6.15000000 +7719,chr22,35138579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.97000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,6.31000000 +7720,chr22,35141974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.51000000,0.00000000,,0.20000000,91.00000000,4.02654867,0.01098901,0.00000000,6.58000000 +7721,chr22,35183913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.01136364,0.00000000,6.39000000 +7722,chr22,35201033,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.30000000,0.00000000,,0.27272727,68.00000000,3.00884956,0.02941176,0.00000000,6.15000000 +7723,chr22,35202386,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.95000000,0.00000000,,0.25555556,93.00000000,4.11504425,0.03225806,0.00000000,6.27000000 +7724,chr22,35203000,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.84000000,0.00000000,,0.28571429,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +7725,chr22,35203541,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,0.67000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.35000000 +7726,chr22,35203789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.39000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +7727,chr22,35205831,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.13000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,6.25000000 +7728,chr22,35205832,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.02000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.66000000 +7729,chr22,35206589,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.96000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +7730,chr22,35206905,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.00000000,0.00000000,5.43000000 +7731,chr22,35206969,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,0.00000000,-0.27000000,0.00000000,,0.13888889,72.00000000,3.18584071,0.00000000,0.00000000,5.89000000 +7732,chr22,35207029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.15000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,5.67000000 +7733,chr22,35207369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.72000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +7734,chr22,35207600,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.42000000 +7735,chr22,35207803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.44000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.38000000 +7736,chr22,35208429,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.78000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +7737,chr22,35208509,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.26000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,5.82000000 +7738,chr22,35210118,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.02000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.41000000 +7739,chr22,35210399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-1.93000000,0.00000000,,0.25242718,104.00000000,4.60176991,0.00961538,0.00000000,6.85000000 +7740,chr22,35212219,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.30000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.94000000 +7741,chr22,35212592,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.83000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.01063830,0.00000000,6.48000000 +7742,chr22,35213787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.96000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.02105263,0.00000000,6.29000000 +7743,chr22,35215235,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,1.33000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.01098901,0.00000000,7.18000000 +7744,chr22,35215702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.39000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.53000000 +7745,chr22,35216575,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.12000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +7746,chr22,35217023,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.91000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.98000000 +7747,chr22,35217050,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.02439024,0.00000000,6.73000000 +7748,chr22,35218485,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.02000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,6.38000000 +7749,chr22,35219967,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,50.00000000,0.00000000,0.27000000,0.00000000,,0.26415094,64.00000000,2.83185841,0.17187500,0.00000000,2.81000000 +7750,chr22,35220058,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,0.10000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,5.87000000 +7751,chr22,35220195,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,92.00000000,0.00000000,-0.15000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,5.06000000 +7752,chr22,35221600,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,68.00000000,0.00000000,-0.22000000,0.00000000,,0.17283951,95.00000000,4.20353982,0.14736842,0.00000000,5.68000000 +7753,chr22,35226623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.25000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.54000000 +7754,chr22,35227928,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.09090909,0.00000000,92.00000000,0.00000000,-0.36000000,0.00000000,,0.26315789,80.00000000,3.53982301,0.03750000,0.00000000,4.97000000 +7755,chr22,35228308,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,-1.57000000,0.00000000,,0.27173913,96.00000000,4.24778761,0.04166667,0.00000000,5.89000000 +7756,chr22,35228924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,90.00000000,0.00000000,-1.44000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.78000000 +7757,chr22,35229187,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,43.00000000,1.90265487,0.06976744,0.00000000,69.00000000,0.00000000,-1.39000000,0.00000000,,0.24210526,98.00000000,4.33628319,0.03061224,0.00000000,5.43000000 +7758,chr22,35229569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.26000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +7759,chr22,35229852,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,100.00000000,0.00000000,0.56000000,0.00000000,,0.32142857,86.00000000,3.80530973,0.02325581,0.00000000,6.98000000 +7760,chr22,35230229,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,0.00000000,-0.74000000,0.00000000,,0.21782178,101.00000000,4.46902655,0.00000000,0.00000000,6.12000000 +7761,chr22,35343342,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,56.63000000,14.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,58.00000000,0.00000000,-0.94000000,0.00000000,,0.13043478,89.00000000,3.93805310,0.22471910,0.00000000,3.97000000 +7762,chr22,35344281,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.54000000,0.00000000,,0.21428571,100.00000000,4.42477876,0.01000000,0.00000000,6.54000000 +7763,chr22,35344449,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.02127660,0.00000000,6.34000000 +7764,chr22,35345827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.78000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.04347826,0.00000000,6.23000000 +7765,chr22,35348479,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,79.00000000,0.00000000,-0.37000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,4.78000000 +7766,chr22,35348772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,1.20000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.24000000 +7767,chr22,35350159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,62.00000000,0.00000000,0.06000000,0.00000000,,0.17307692,62.00000000,2.74336283,0.14516129,0.00000000,5.39000000 +7768,chr22,35351507,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.93000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.02500000,0.00000000,6.29000000 +7769,chr22,35354753,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,0.98000000,0.00000000,,0.10447761,77.00000000,3.40707965,0.12987013,0.00000000,4.56000000 +7770,chr22,35354755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,61.00000000,0.00000000,1.53000000,0.00000000,,0.10606061,76.00000000,3.36283186,0.11842105,0.00000000,4.66000000 +7771,chr22,35354760,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,61.00000000,0.00000000,1.31000000,0.00000000,,0.10144928,78.00000000,3.45132743,0.10256410,0.00000000,4.73000000 +7772,chr22,35360290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.10000000,0.00000000,,0.26315789,59.00000000,2.61061947,0.01694915,0.00000000,6.33000000 +7773,chr22,35362653,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.24000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.28000000 +7774,chr22,35467114,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.33000000 +7775,chr22,35469225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,84.00000000,0.00000000,-0.33000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.89000000 +7776,chr22,35483088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.28000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.56000000 +7777,chr22,35488161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,77.00000000,0.00000000,-0.38000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,5.86000000 +7778,chr22,35490107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.11578947,95.00000000,4.20353982,0.00000000,0.00000000,5.04000000 +7779,chr22,35495055,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.72000000 +7780,chr22,35497109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.03000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,5.79000000 +7781,chr22,35505248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.15714286,75.00000000,3.31858407,0.04000000,0.01315789,5.53000000 +7782,chr22,35505326,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.12000000,1.41000000,,0.15517241,62.00000000,2.74336283,0.03225806,0.00000000,4.41000000 +7783,chr22,35506470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.20000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.30000000 +7784,chr22,35507105,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,77.00000000,0.00000000,-1.44000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,4.90000000 +7785,chr22,35507281,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.00000000,6.22000000 +7786,chr22,35507688,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,62.00000000,2.74336283,0.01612903,0.00000000,6.25000000 +7787,chr22,35507784,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.24000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.26000000 +7788,chr22,35509020,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.58000000 +7789,chr22,35509497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.94000000,0.00000000,,0.18181818,82.00000000,3.62831858,0.01219512,0.00000000,6.10000000 +7790,chr22,35509502,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.24000000,0.90000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,4.24000000 +7791,chr22,35510088,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,1.17000000,0.00000000,,0.29850746,68.00000000,3.00884956,0.00000000,0.00000000,6.06000000 +7792,chr22,35511940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.97000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.06000000,0.00000000,,0.32530120,87.00000000,3.84955752,0.04597701,0.00000000,7.11000000 +7793,chr22,35513171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.20224719,93.00000000,4.11504425,0.03225806,0.00000000,6.62000000 +7794,chr22,35534700,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.19000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.18000000 +7795,chr22,35537756,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.78000000,0.00000000,,0.40298507,69.00000000,3.05309735,0.02898551,0.00000000,8.31000000 +7796,chr22,35537815,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,59.00000000,0.00000000,-0.41000000,0.00000000,,0.47435897,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +7797,chr22,35538024,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.63000000,0.00000000,,0.48936170,97.00000000,4.29203540,0.03092784,0.00000000,8.29000000 +7798,chr22,35547675,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.12000000,0.00000000,,0.44210526,95.00000000,4.20353982,0.00000000,0.00000000,6.16000000 +7799,chr22,35547761,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.12000000,0.00000000,,0.44565217,96.00000000,4.24778761,0.04166667,0.00000000,8.06000000 +7800,chr22,35549656,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,98.00000000,0.00000000,-1.95000000,0.00000000,,0.41250000,80.00000000,3.53982301,0.00000000,0.00000000,8.99000000 +7801,chr22,35551538,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.59000000,0.00000000,,0.42105263,57.00000000,2.52212389,0.00000000,0.00000000,8.04000000 +7802,chr22,35552950,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,22.00000000,0.00000000,-0.50000000,0.00000000,,0.45161290,63.00000000,2.78761062,0.01587302,0.00000000,3.98000000 +7803,chr22,35554101,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.63000000,0.00000000,,0.47560976,83.00000000,3.67256637,0.01204819,0.00000000,7.79000000 +7804,chr22,35555829,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.47142857,71.00000000,3.14159292,0.00000000,0.00000000,8.91000000 +7805,chr22,35556943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,38.00000000,0.00000000,0.34000000,0.00000000,,0.44871795,78.00000000,3.45132743,0.00000000,0.00000000,3.92000000 +7806,chr22,35559256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.33000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.05000000 +7807,chr22,35559321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-1.47000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.20000000 +7808,chr22,35559335,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,53.00000000,0.00000000,-1.39000000,0.00000000,,0.44705882,85.00000000,3.76106195,0.00000000,0.00000000,4.00000000 +7809,chr22,35559851,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.41176471,70.00000000,3.09734513,0.02857143,0.00000000,8.01000000 +7810,chr22,35560057,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.02000000,0.00000000,,0.42253521,72.00000000,3.18584071,0.01388889,0.00000000,8.76000000 +7811,chr22,35561395,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.04000000,0.00000000,,0.47368421,76.00000000,3.36283186,0.00000000,0.00000000,4.64000000 +7812,chr22,35563023,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.47435897,80.00000000,3.53982301,0.02500000,0.00000000,8.20000000 +7813,chr22,35563038,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.79000000,0.00000000,,0.47887324,73.00000000,3.23008850,0.02739726,0.00000000,8.13000000 +7814,chr22,35563195,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.26000000,0.00000000,,0.45977011,87.00000000,3.84955752,0.00000000,0.00000000,8.67000000 +7815,chr22,35564238,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.10000000,0.00000000,,0.41095890,76.00000000,3.36283186,0.03947368,0.00000000,8.42000000 +7816,chr22,35566046,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,93.00000000,0.00000000,-0.13000000,0.00000000,,0.31034483,87.00000000,3.84955752,0.00000000,0.00000000,6.87000000 +7817,chr22,35568005,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,-0.80000000,0.00000000,,0.34177215,83.00000000,3.67256637,0.04819277,0.00000000,8.09000000 +7818,chr22,35568111,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.33000000,0.00000000,,0.35714286,58.00000000,2.56637168,0.03448276,0.00000000,8.44000000 +7819,chr22,35568675,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.44000000,0.00000000,,0.42857143,85.00000000,3.76106195,0.01176471,0.00000000,8.95000000 +7820,chr22,35569030,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,56.00000000,0.00000000,-0.84000000,0.00000000,,0.51764706,87.00000000,3.84955752,0.02298851,0.00000000,4.33000000 +7821,chr22,35572173,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.56179775,89.00000000,3.93805310,0.00000000,0.00000000,8.57000000 +7822,chr22,35573396,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.77000000,0.00000000,,0.27272727,91.00000000,4.02654867,0.03296703,0.00000000,6.27000000 +7823,chr22,35574157,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.25757576,66.00000000,2.92035398,0.00000000,0.00000000,6.41000000 +7824,chr22,35574262,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,1.22000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.02325581,0.00000000,6.48000000 +7825,chr22,35574780,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,1.38000000,0.00000000,,0.27906977,88.00000000,3.89380531,0.02272727,0.00000000,6.24000000 +7826,chr22,35575162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.15000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.35000000 +7827,chr22,35575731,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.90000000,0.00000000,,0.43750000,83.00000000,3.67256637,0.02409639,0.00000000,8.06000000 +7828,chr22,35575809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,70.00000000,0.00000000,-1.09000000,0.00000000,,0.15053763,94.00000000,4.15929204,0.00000000,0.00000000,6.13000000 +7829,chr22,35577536,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,50.00000000,0.00000000,-1.37000000,0.00000000,,0.51388889,76.00000000,3.36283186,0.01315789,0.00000000,4.19000000 +7830,chr22,35578245,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.88000000,0.00000000,,0.14545455,58.00000000,2.56637168,0.01724138,0.00000000,5.68000000 +7831,chr22,35578894,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.28000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,2.98000000 +7832,chr22,35579169,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,0.94000000,0.00000000,,0.10526316,78.00000000,3.45132743,0.02564103,0.00000000,4.68000000 +7833,chr22,35580124,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.22000000,0.00000000,,0.40259740,81.00000000,3.58407080,0.04938272,0.00000000,8.44000000 +7834,chr22,35580525,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.08000000,0.00000000,,0.47887324,73.00000000,3.23008850,0.02739726,0.00000000,8.06000000 +7835,chr22,35581111,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,1.37000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.23000000 +7836,chr22,35582568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.83000000,0.00000000,,0.16901408,71.00000000,3.14159292,0.00000000,0.00000000,6.59000000 +7837,chr22,35594140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.64000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.77000000 +7838,chr22,35596849,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.24242424,76.00000000,3.36283186,0.11842105,0.00000000,5.75000000 +7839,chr22,35597536,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,88.00000000,0.00000000,-0.53000000,0.00000000,,0.30555556,83.00000000,3.67256637,0.13253012,0.00000000,5.88000000 +7840,chr22,35597736,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-1.22000000,0.00000000,,0.28235294,85.00000000,3.76106195,0.00000000,0.00000000,6.70000000 +7841,chr22,35598064,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,-1.49000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.83000000 +7842,chr22,35598991,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,3.19000000,0.00000000,,0.27272727,69.00000000,3.05309735,0.02898551,0.00000000,3.14000000 +7843,chr22,35599003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,3.42000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.18000000 +7844,chr22,35600629,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,91.00000000,0.00000000,1.22000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,5.59000000 +7845,chr22,35601153,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,73.00000000,0.00000000,-2.42000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.01234568,0.00000000,6.04000000 +7846,chr22,35601340,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.96000000 +7847,chr22,35605813,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.70000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.45000000 +7848,chr22,35606373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-1.55000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.01333333,0.00000000,6.66000000 +7849,chr22,35607892,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.54000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,5.99000000 +7850,chr22,35609961,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,-0.46000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,6.17000000 +7851,chr22,35610998,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.63000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.00000000,0.00000000,6.25000000 +7852,chr22,35611028,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.05000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +7853,chr22,35611374,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,6.25000000 +7854,chr22,35614833,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.96000000,5.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,82.00000000,0.00000000,0.80000000,0.00000000,,0.21428571,102.00000000,4.51327434,0.03921569,0.00000000,5.54000000 +7855,chr22,35615982,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,-0.61000000,0.00000000,,0.10000000,92.00000000,4.07079646,0.02173913,0.00000000,4.79000000 +7856,chr22,35616817,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.71000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.95000000 +7857,chr22,35628924,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,-0.13000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.11000000 +7858,chr22,35651044,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.21359223,106.00000000,4.69026549,0.02830189,0.00000000,6.56000000 +7859,chr22,35696652,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.10000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.00000000,0.00000000,6.37000000 +7860,chr22,35698719,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.56000000,0.00000000,,0.19047619,69.00000000,3.05309735,0.08695652,0.00000000,5.61000000 +7861,chr22,35701597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.02000000,0.00000000,,0.22619048,89.00000000,3.93805310,0.05617978,0.00000000,5.99000000 +7862,chr22,35701617,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,-0.35000000,0.00000000,,0.23809524,91.00000000,4.02654867,0.06593407,0.00000000,5.98000000 +7863,chr22,35704844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.08000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.87000000 +7864,chr22,35707938,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,0.83000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +7865,chr22,35718774,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.49000000 +7866,chr22,35726677,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,85.00000000,0.00000000,0.76000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.47000000 +7867,chr22,35752292,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,1.19000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +7868,chr22,35777072,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,59.00000000,0.00000000,0.74000000,0.00000000,,0.28358209,74.00000000,3.27433628,0.09459459,0.00000000,4.58000000 +7869,chr22,35778700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.03000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.92000000 +7870,chr22,35780530,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,1.38000000,0.00000000,,0.30952381,84.00000000,3.71681416,0.00000000,0.00000000,6.57000000 +7871,chr22,35794526,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,5.72000000 +7872,chr22,35794528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.31000000 +7873,chr22,35806094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.68000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.00000000,0.00000000,6.91000000 +7874,chr22,35806312,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.52000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.02105263,0.00000000,6.33000000 +7875,chr22,35808475,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.00000000,0.00000000,5.90000000 +7876,chr22,35811237,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,84.00000000,0.00000000,-1.66000000,0.00000000,,0.29268293,85.00000000,3.76106195,0.03529412,0.00000000,5.99000000 +7877,chr22,35835310,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.07000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +7878,chr22,35921132,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,92.00000000,0.00000000,-0.33000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,5.93000000 +7879,chr22,35942290,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.35000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.73000000 +7880,chr22,35946342,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-2.47000000,0.00000000,,0.50000000,90.00000000,3.98230088,0.01111111,0.00000000,8.90000000 +7881,chr22,35959979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.45000000,0.00000000,,0.29411765,106.00000000,4.69026549,0.03773585,0.00000000,6.30000000 +7882,chr22,35986366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.24770642,111.00000000,4.91150442,0.01801802,0.00000000,6.34000000 +7883,chr22,36014323,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.25301205,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +7884,chr22,36016233,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,41.00000000,0.00000000,-0.42000000,0.00000000,,0.50000000,69.00000000,3.05309735,0.01449275,0.00000000,4.48000000 +7885,chr22,36031436,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.04000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,8.39000000 +7886,chr22,36043581,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,72.00000000,0.00000000,-1.47000000,0.00000000,,0.30120482,83.00000000,3.67256637,0.00000000,0.00000000,6.46000000 +7887,chr22,36059731,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.36000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.98000000 +7888,chr22,36060004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,-0.60000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,5.86000000 +7889,chr22,36061961,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,1.50000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.95000000 +7890,chr22,36070488,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,0.15000000,0.00000000,,0.18181818,57.00000000,2.52212389,0.22807018,0.00000000,5.45000000 +7891,chr22,36077815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.26000000 +7892,chr22,36094437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.09000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.00000000,0.00000000,5.87000000 +7893,chr22,36094660,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,5.82000000 +7894,chr22,36102932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-1.35000000,0.00000000,,0.14130435,92.00000000,4.07079646,0.00000000,0.00000000,5.86000000 +7895,chr22,36107268,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,-0.28000000,0.00000000,,0.30000000,64.00000000,2.83185841,0.04687500,0.00000000,5.70000000 +7896,chr22,36108216,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.30000000,0.00000000,,0.14473684,81.00000000,3.58407080,0.04938272,0.00000000,5.32000000 +7897,chr22,36109722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.14000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +7898,chr22,36111469,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,1.68000000,0.00000000,,0.28571429,93.00000000,4.11504425,0.02150538,0.00000000,6.42000000 +7899,chr22,36113914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,0.21000000,0.00000000,,0.20481928,88.00000000,3.89380531,0.05681818,0.00000000,5.98000000 +7900,chr22,36117367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,5.90000000 +7901,chr22,36117577,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +7902,chr22,36119221,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.25000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.90000000 +7903,chr22,36119755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +7904,chr22,36121006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.11000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.32000000 +7905,chr22,36122051,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.40000000,0.00000000,,0.19402985,67.00000000,2.96460177,0.00000000,0.00000000,6.38000000 +7906,chr22,36122913,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-1.38000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.42000000 +7907,chr22,36122954,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.01000000 +7908,chr22,36123556,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.43000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.46000000 +7909,chr22,36127043,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.13000000,0.00000000,,0.25423729,60.00000000,2.65486726,0.01666667,0.00000000,3.00000000 +7910,chr22,36127863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.00000000,0.00000000,6.96000000 +7911,chr22,36129789,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,1.04000000,0.00000000,,0.22471910,89.00000000,3.93805310,0.00000000,0.00000000,6.40000000 +7912,chr22,36129933,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,91.00000000,0.00000000,-2.37000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00000000,0.00000000,6.43000000 +7913,chr22,36131919,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.53000000,0.00000000,,0.36470588,86.00000000,3.80530973,0.00000000,0.00000000,8.41000000 +7914,chr22,36136603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,0.93000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.56000000 +7915,chr22,36143804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.53000000,0.00000000,,0.24561404,116.00000000,5.13274336,0.01724138,0.00000000,6.28000000 +7916,chr22,36148968,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.23000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.65000000 +7917,chr22,36150374,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-0.43000000,0.00000000,,0.13580247,81.00000000,3.58407080,0.00000000,0.00000000,5.23000000 +7918,chr22,36152893,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,1.00000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.66000000 +7919,chr22,36153957,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.53000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +7920,chr22,36154186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,0.37000000,0.00000000,,0.24675325,82.00000000,3.62831858,0.03658537,0.00000000,5.77000000 +7921,chr22,36160650,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.19101124,92.00000000,4.07079646,0.02173913,0.00000000,5.76000000 +7922,chr22,36160916,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,88.00000000,0.00000000,0.94000000,0.00000000,,0.26086957,73.00000000,3.23008850,0.05479452,0.00000000,5.70000000 +7923,chr22,36161452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,4.88000000 +7924,chr22,36161473,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,4.98000000 +7925,chr22,36163251,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.43000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,6.64000000 +7926,chr22,36167280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.03125000,0.00000000,6.16000000 +7927,chr22,36168923,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,96.00000000,0.00000000,-0.22000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,5.34000000 +7928,chr22,36171791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.01000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.00000000,0.00000000,6.57000000 +7929,chr22,36172830,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.03000000 +7930,chr22,36190418,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,57.55000000,8.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.28358209,67.00000000,2.96460177,0.00000000,0.00000000,6.46000000 +7931,chr22,36197199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.65000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,1.22000000,0.00000000,,0.31645570,81.00000000,3.58407080,0.02469136,0.00000000,6.66000000 +7932,chr22,36202744,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,48.00000000,0.00000000,-0.61000000,0.00000000,,0.42622951,65.00000000,2.87610619,0.06153846,0.00000000,4.83000000 +7933,chr22,36203498,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-0.95000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.01204819,0.00000000,4.71000000 +7934,chr22,36203613,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-0.34000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,7.11000000 +7935,chr22,36205011,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.85000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,6.13000000 +7936,chr22,36205517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,5.74000000 +7937,chr22,36206137,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.42000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.02173913,0.00000000,5.43000000 +7938,chr22,36206548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,68.00000000,0.00000000,0.05000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.23000000 +7939,chr22,36219137,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +7940,chr22,36230716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,1.14000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,6.36000000 +7941,chr22,36237948,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.69000000,0.00000000,,0.30120482,85.00000000,3.76106195,0.02352941,0.00000000,6.02000000 +7942,chr22,36238986,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.21794872,82.00000000,3.62831858,0.04878049,0.00000000,5.74000000 +7943,chr22,36248062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,5.51000000 +7944,chr22,36249624,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,96.00000000,0.00000000,0.75000000,0.00000000,,0.28358209,67.00000000,2.96460177,0.00000000,0.00000000,5.76000000 +7945,chr22,36258966,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.99000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,6.57000000 +7946,chr22,36262758,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,6.07000000 +7947,chr22,36266608,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.18518519,56.00000000,2.47787611,0.03571429,0.00000000,5.68000000 +7948,chr22,36266676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.07000000,0.00000000,,0.17307692,52.00000000,2.30088496,0.00000000,0.00000000,5.80000000 +7949,chr22,36268499,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,80.00000000,0.00000000,-1.09000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.02469136,0.00000000,5.60000000 +7950,chr22,36272137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.87000000,0.00000000,,0.37142857,72.00000000,3.18584071,0.01388889,0.00000000,7.82000000 +7951,chr22,36276230,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,34.00000000,0.00000000,-0.11000000,0.00000000,,0.44000000,106.00000000,4.69026549,0.05660377,0.00000000,2.98000000 +7952,chr22,36276249,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,81.00000000,0.00000000,-0.91000000,0.00000000,,0.43434343,103.00000000,4.55752212,0.03883495,0.00000000,7.01000000 +7953,chr22,36276581,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,42.00000000,0.00000000,0.70000000,0.00000000,,0.46753247,79.00000000,3.49557522,0.02531646,0.00000000,4.20000000 +7954,chr22,36276693,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,48.00000000,0.00000000,-0.18000000,0.00000000,,0.48051948,78.00000000,3.45132743,0.01282051,0.00000000,4.45000000 +7955,chr22,36277203,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.52702703,83.00000000,3.67256637,0.08433735,0.00000000,7.54000000 +7956,chr22,36278965,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,-1.82000000,0.00000000,,0.40243902,85.00000000,3.76106195,0.03529412,0.00000000,8.24000000 +7957,chr22,36279104,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.51851852,81.00000000,3.58407080,0.00000000,0.00000000,8.30000000 +7958,chr22,36279306,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,2.29000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,6.16000000 +7959,chr22,36279318,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,1.98000000,0.00000000,,0.38636364,91.00000000,4.02654867,0.03296703,0.00000000,7.99000000 +7960,chr22,36282072,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,99.00000000,0.00000000,-0.16000000,0.00000000,,0.37373737,101.00000000,4.46902655,0.00990099,0.00000000,8.61000000 +7961,chr22,36283012,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.67000000,0.00000000,,0.53750000,81.00000000,3.58407080,0.01234568,0.00000000,8.54000000 +7962,chr22,36283169,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,107.00000000,0.00000000,0.51000000,0.00000000,,0.34444444,92.00000000,4.07079646,0.02173913,0.00000000,13.75000000 +7963,chr22,36283593,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,34.00000000,0.00000000,1.21000000,0.00000000,,0.37037037,89.00000000,3.93805310,0.08988764,0.00000000,3.76000000 +7964,chr22,36286572,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.65000000,0.00000000,,0.17894737,101.00000000,4.46902655,0.05940594,0.00000000,6.12000000 +7965,chr22,36292132,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,1.10000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.00000000,0.00000000,5.10000000 +7966,chr22,36302369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,1.84000000,0.00000000,,0.21428571,87.00000000,3.84955752,0.02298851,0.00000000,5.93000000 +7967,chr22,36303451,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,-0.91000000,0.00000000,,0.28070175,60.00000000,2.65486726,0.05000000,0.00000000,4.78000000 +7968,chr22,36303733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,58.00000000,0.00000000,0.61000000,0.00000000,,0.24561404,78.00000000,3.45132743,0.24358974,0.00000000,4.32000000 +7969,chr22,36305441,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-0.88000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.01075269,0.00000000,5.87000000 +7970,chr22,36309058,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.50000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +7971,chr22,36312579,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,1.99000000,0.00000000,,0.14516129,65.00000000,2.87610619,0.03076923,0.00000000,3.70000000 +7972,chr22,36317029,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.20000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,48.00000000,0.00000000,-2.75000000,0.00000000,,0.32142857,58.00000000,2.56637168,0.03448276,0.00000000,4.05000000 +7973,chr22,36317709,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,90.00000000,0.00000000,0.11000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.00000000,0.00000000,5.93000000 +7974,chr22,36318614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,1.22000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.35000000 +7975,chr22,36322070,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,77.00000000,0.00000000,-0.25000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,5.59000000 +7976,chr22,36323677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.51000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.00000000,0.00000000,6.56000000 +7977,chr22,36323996,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.07000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.64000000 +7978,chr22,36337016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.80000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.50000000 +7979,chr22,36341894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.49000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.29000000 +7980,chr22,36348767,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.94000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.61000000 +7981,chr22,36358029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.56000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.18000000 +7982,chr22,36361067,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.97000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.93000000 +7983,chr22,36366917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.90000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.50000000 +7984,chr22,36367195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.24000000 +7985,chr22,36369855,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.33000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.02083333,0.00000000,5.92000000 +7986,chr22,36369923,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.66000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.34000000 +7987,chr22,36374567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.34000000,0.00000000,,0.15662651,86.00000000,3.80530973,0.02325581,0.00000000,5.54000000 +7988,chr22,36376023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.32352941,0.00000000,63.00000000,0.00000000,0.26000000,0.00000000,,0.17241379,82.00000000,3.62831858,0.29268293,0.00000000,5.19000000 +7989,chr22,36377769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.56000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,8.45000000 +7990,chr22,36378307,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.95000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,6.69000000 +7991,chr22,36378767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,-0.13000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.01111111,0.00000000,6.18000000 +7992,chr22,36378956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.77000000,0.00000000,,0.16304348,95.00000000,4.20353982,0.03157895,0.00000000,5.75000000 +7993,chr22,36379504,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,-0.85000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.84000000 +7994,chr22,36381324,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,0.07000000,0.00000000,,0.08791209,92.00000000,4.07079646,0.01086957,0.00000000,5.25000000 +7995,chr22,36383230,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,0.73000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,5.68000000 +7996,chr22,36383775,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-0.28000000,0.00000000,,0.21621622,84.00000000,3.71681416,0.10714286,0.00000000,5.89000000 +7997,chr22,36385087,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,69.00000000,0.00000000,-1.05000000,0.00000000,,0.16438356,77.00000000,3.40707965,0.05194805,0.00000000,5.31000000 +7998,chr22,36386886,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-1.16000000,0.00000000,,0.10526316,99.00000000,4.38053097,0.04040404,0.00000000,5.15000000 +7999,chr22,36386899,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.86000000,0.00000000,,0.16504854,106.00000000,4.69026549,0.01886792,0.00000000,6.10000000 +8000,chr22,36388342,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,6.30000000 +8001,chr22,36388385,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.31000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.01123596,0.00000000,7.01000000 +8002,chr22,36388875,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.40000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.23000000 +8003,chr22,36390895,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.32000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.76000000 +8004,chr22,36391704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.09000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.73000000 +8005,chr22,36392507,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.77000000,0.00000000,,0.18072289,92.00000000,4.07079646,0.09782609,0.00000000,5.76000000 +8006,chr22,36395005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.94000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.90000000 +8007,chr22,36397503,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.56000000 +8008,chr22,36397757,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-1.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.01136364,0.00000000,6.36000000 +8009,chr22,36398518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.74000000 +8010,chr22,36399959,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,72.00000000,0.00000000,0.59000000,0.00000000,,0.18055556,76.00000000,3.36283186,0.05263158,0.00000000,5.55000000 +8011,chr22,36406510,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.32000000,0.00000000,,0.21621622,75.00000000,3.31858407,0.01333333,0.00000000,6.63000000 +8012,chr22,36408344,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.81000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.20000000 +8013,chr22,36410404,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.94000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,7.07000000 +8014,chr22,36410413,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.86000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.65000000 +8015,chr22,36412682,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.76000000,0.00000000,,0.17073171,85.00000000,3.76106195,0.03529412,0.00000000,5.84000000 +8016,chr22,36417540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.49000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,5.65000000 +8017,chr22,36425681,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-1.16000000,0.00000000,,0.30000000,82.00000000,3.62831858,0.01219512,0.00000000,6.80000000 +8018,chr22,36426502,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,2.15000000,0.00000000,,0.17283951,84.00000000,3.71681416,0.03571429,0.00000000,6.16000000 +8019,chr22,36427391,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.02000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +8020,chr22,36427643,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,2.15000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,6.06000000 +8021,chr22,36428312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.21000000,0.00000000,,0.23456790,89.00000000,3.93805310,0.08988764,0.00000000,5.86000000 +8022,chr22,36429516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-1.11000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.31000000 +8023,chr22,36429838,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.62000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,87.00000000,0.00000000,0.18000000,0.00000000,,0.23148148,115.00000000,5.08849558,0.06086957,0.00000000,5.53000000 +8024,chr22,36432984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,75.00000000,0.00000000,-0.10000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.59000000 +8025,chr22,36436523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,-0.96000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,5.95000000 +8026,chr22,36438493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,2.08000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.13000000 +8027,chr22,36439230,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.46000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +8028,chr22,36439383,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.19791667,97.00000000,4.29203540,0.01030928,0.01020408,6.29000000 +8029,chr22,36439401,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-1.42000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.01030928,0.00000000,6.87000000 +8030,chr22,36440855,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-0.96000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,5.47000000 +8031,chr22,36440961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +8032,chr22,36441075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.26000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.57000000 +8033,chr22,36441643,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.49000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,4.78000000 +8034,chr22,36442432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,81.00000000,0.00000000,-0.76000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.01333333,0.00000000,6.17000000 +8035,chr22,36443585,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,0.00000000,-1.65000000,3.26000000,,0.10909091,62.00000000,2.74336283,0.11290323,0.00000000,2.83000000 +8036,chr22,36443587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,58.00000000,0.00000000,-0.90000000,3.25000000,,0.10909091,63.00000000,2.78761062,0.11111111,0.00000000,2.84000000 +8037,chr22,36443930,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-2.93000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.01000000 +8038,chr22,36444147,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.21000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.60000000 +8039,chr22,36445431,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.17647059,104.00000000,4.60176991,0.01923077,0.00000000,5.85000000 +8040,chr22,36447478,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.15000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +8041,chr22,36453154,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,65.00000000,0.00000000,-1.26000000,0.00000000,,0.17857143,74.00000000,3.27433628,0.24324324,0.00000000,5.84000000 +8042,chr22,36453713,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.02000000,0.00000000,,0.23076923,69.00000000,3.05309735,0.04347826,0.00000000,6.61000000 +8043,chr22,36455348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.02000000,0.00000000,,0.12658228,82.00000000,3.62831858,0.02439024,0.00000000,5.13000000 +8044,chr22,36456983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.27868852,62.00000000,2.74336283,0.01612903,0.00000000,6.28000000 +8045,chr22,36458817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,0.00000000,-0.06000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.03333333,0.00000000,5.14000000 +8046,chr22,36459140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.74000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.25000000 +8047,chr22,36459716,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.18181818,101.00000000,4.46902655,0.01980198,0.00000000,5.09000000 +8048,chr22,36462853,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,59.00000000,0.00000000,0.68000000,0.00000000,,0.55882353,71.00000000,3.14159292,0.02816901,0.00000000,6.45000000 +8049,chr22,36463901,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-2.02000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.01176471,0.00000000,4.47000000 +8050,chr22,36464472,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-1.15000000,0.00000000,,0.17333333,81.00000000,3.58407080,0.07407407,0.00000000,5.94000000 +8051,chr22,36464477,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,-0.68000000,0.00000000,,0.16000000,82.00000000,3.62831858,0.08536585,0.00000000,5.54000000 +8052,chr22,36464563,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,97.00000000,0.00000000,0.45000000,0.00000000,,0.44444444,84.00000000,3.71681416,0.02380952,0.00000000,7.84000000 +8053,chr22,36465099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.01923077,0.00000000,6.38000000 +8054,chr22,36465325,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.65000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.41000000 +8055,chr22,36467113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.70000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +8056,chr22,36467444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,87.00000000,0.00000000,-0.29000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.05000000 +8057,chr22,36467658,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.58000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,7.23000000 +8058,chr22,36468016,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.26000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.87000000 +8059,chr22,36468924,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.62000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,5.86000000 +8060,chr22,36468943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.20270270,78.00000000,3.45132743,0.03846154,0.00000000,6.26000000 +8061,chr22,36469105,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.64000000,0.00000000,,0.23148148,109.00000000,4.82300885,0.00917431,0.00000000,6.48000000 +8062,chr22,36469112,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.90000000,0.00000000,,0.24107143,114.00000000,5.04424779,0.01754386,0.00000000,5.81000000 +8063,chr22,36469151,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.77000000,0.00000000,,0.22115385,105.00000000,4.64601770,0.00952381,0.00000000,6.77000000 +8064,chr22,36469261,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.66000000,0.00000000,,0.24210526,95.00000000,4.20353982,0.00000000,0.00000000,6.68000000 +8065,chr22,36469338,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.23000000,0.00000000,,0.26262626,100.00000000,4.42477876,0.01000000,0.00000000,6.59000000 +8066,chr22,36469557,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.25510204,100.00000000,4.42477876,0.02000000,0.00000000,6.34000000 +8067,chr22,36469566,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.64000000,0.00000000,,0.22580645,94.00000000,4.15929204,0.01063830,0.00000000,6.61000000 +8068,chr22,36469575,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.01041667,0.00000000,6.68000000 +8069,chr22,36469597,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-1.34000000,0.00000000,,0.22916667,97.00000000,4.29203540,0.01030928,0.00000000,6.81000000 +8070,chr22,36469749,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.26000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.00000000,0.00000000,6.92000000 +8071,chr22,36470230,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.67000000 +8072,chr22,36470273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,5.95000000 +8073,chr22,36470660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.61000000,0.00000000,,0.25316456,84.00000000,3.71681416,0.05952381,0.00000000,5.86000000 +8074,chr22,36470761,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,0.00000000,1.20000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.11764706,0.00000000,5.61000000 +8075,chr22,36471086,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,88.00000000,0.00000000,-1.52000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.28000000 +8076,chr22,36471689,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,5.87000000 +8077,chr22,36471784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-1.11000000,0.00000000,,0.12307692,66.00000000,2.92035398,0.01515152,0.00000000,5.36000000 +8078,chr22,36471843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,-0.07000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,5.61000000 +8079,chr22,36471892,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,68.00000000,0.00000000,0.93000000,0.00000000,,0.16438356,87.00000000,3.84955752,0.14942529,0.00000000,5.41000000 +8080,chr22,36473848,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.64000000,0.00000000,,0.25531915,94.00000000,4.15929204,0.00000000,0.00000000,6.72000000 +8081,chr22,36485370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,-0.58000000,0.00000000,,0.21212121,71.00000000,3.14159292,0.07042254,0.00000000,3.07000000 +8082,chr22,36493069,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,1.09000000,0.00000000,,0.15116279,87.00000000,3.84955752,0.01149425,0.00000000,5.72000000 +8083,chr22,36499618,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.77000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +8084,chr22,36500973,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.12765957,99.00000000,4.38053097,0.04040404,0.00000000,5.33000000 +8085,chr22,36501214,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.32000000 +8086,chr22,36501906,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.39000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,4.66000000 +8087,chr22,36508103,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.70000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,5.86000000 +8088,chr22,36523328,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,-0.83000000,0.00000000,,0.14444444,91.00000000,4.02654867,0.01098901,0.00000000,6.20000000 +8089,chr22,36529225,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02040816,50.00000000,2.21238938,0.00000000,0.00000000,84.00000000,0.00000000,0.42000000,0.00000000,,0.23584906,107.00000000,4.73451327,0.00934579,0.00000000,5.64000000 +8090,chr22,36532368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,1.50000000,0.00000000,,0.14285714,99.00000000,4.38053097,0.01010101,0.00000000,5.57000000 +8091,chr22,36534527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.88000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.00980392,0.00000000,6.63000000 +8092,chr22,36535932,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.26086957,77.00000000,3.40707965,0.10389610,0.00000000,5.71000000 +8093,chr22,36538549,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.02777778,0.00000000,6.20000000 +8094,chr22,36543189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.91000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +8095,chr22,36558558,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.17391304,95.00000000,4.20353982,0.03157895,0.00000000,5.97000000 +8096,chr22,36558563,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.17582418,95.00000000,4.20353982,0.04210526,0.00000000,6.02000000 +8097,chr22,36559576,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.21782178,102.00000000,4.51327434,0.00980392,0.00000000,6.84000000 +8098,chr22,36560300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.85000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.75000000 +8099,chr22,36560703,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-1.05000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.55000000 +8100,chr22,36561094,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.84000000,0.00000000,,0.22093023,86.00000000,3.80530973,0.00000000,0.00000000,5.91000000 +8101,chr22,36562021,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.16000000,102.00000000,4.51327434,0.00980392,0.00000000,5.61000000 +8102,chr22,36562573,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,5.65000000 +8103,chr22,36563807,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,71.00000000,0.00000000,-1.03000000,0.00000000,,0.19718310,86.00000000,3.80530973,0.17441860,0.00000000,5.84000000 +8104,chr22,36564175,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,76.00000000,0.00000000,-1.13000000,0.00000000,,0.18181818,95.00000000,4.20353982,0.06315789,0.00000000,5.71000000 +8105,chr22,36565434,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.26470588,72.00000000,3.18584071,0.01388889,0.00000000,5.94000000 +8106,chr22,36567018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.47000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +8107,chr22,36567243,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.42000000,0.00000000,,0.23529412,103.00000000,4.55752212,0.00970874,0.00000000,6.64000000 +8108,chr22,36568175,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,60.00000000,0.00000000,-0.93000000,0.00000000,,0.13580247,81.00000000,3.58407080,0.00000000,0.00000000,5.43000000 +8109,chr22,36568507,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.07000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.20000000 +8110,chr22,36568729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.13953488,89.00000000,3.93805310,0.03370787,0.00000000,5.42000000 +8111,chr22,36573087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.37000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8112,chr22,36576607,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,6.20000000 +8113,chr22,36577422,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.64000000,0.00000000,,0.21538462,66.00000000,2.92035398,0.01515152,0.00000000,6.75000000 +8114,chr22,36580463,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,0.36000000,0.00000000,,0.14285714,79.00000000,3.49557522,0.02531646,0.00000000,5.09000000 +8115,chr22,36582213,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.91000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.28000000 +8116,chr22,36591271,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.50000000,0.00000000,,0.18666667,80.00000000,3.53982301,0.06250000,0.00000000,6.43000000 +8117,chr22,36591321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.44000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.27000000 +8118,chr22,36591814,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.90000000,0.00000000,,0.24528302,55.00000000,2.43362832,0.03636364,0.00000000,6.51000000 +8119,chr22,36594753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.11904762,86.00000000,3.80530973,0.02325581,0.00000000,4.70000000 +8120,chr22,36597041,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,-0.27000000,0.00000000,,0.30000000,62.00000000,2.74336283,0.03225806,0.00000000,5.97000000 +8121,chr22,36599573,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.52000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.28000000 +8122,chr22,36601824,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,1.66000000,0.00000000,,0.19417476,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8123,chr22,36603966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,1.15000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +8124,chr22,36608124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.40000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.04166667,0.00000000,6.41000000 +8125,chr22,36610084,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.95000000,0.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,62.00000000,0.00000000,-0.24000000,0.00000000,,0.23809524,68.00000000,3.00884956,0.07352941,0.00000000,5.33000000 +8126,chr22,36610270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.39000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,0.00000000,0.24000000,0.00000000,,0.09803922,55.00000000,2.43362832,0.05454545,0.00000000,3.70000000 +8127,chr22,36610364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.17000000,0.00000000,,0.23809524,69.00000000,3.05309735,0.07246377,0.00000000,6.20000000 +8128,chr22,36612283,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-0.63000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.02409639,0.00000000,5.91000000 +8129,chr22,36612440,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.81000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.23000000 +8130,chr22,36612881,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +8131,chr22,36615601,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-0.07000000,0.00000000,,0.32978723,94.00000000,4.15929204,0.00000000,0.00000000,8.57000000 +8132,chr22,36616172,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.12000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.32000000 +8133,chr22,36616274,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,1.16000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.27000000 +8134,chr22,36616906,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.92000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,6.24000000 +8135,chr22,36617120,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.18000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,5.68000000 +8136,chr22,36617346,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.06000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,5.98000000 +8137,chr22,36617562,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.42000000 +8138,chr22,36617647,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.37000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +8139,chr22,36617772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.22641509,106.00000000,4.69026549,0.00000000,0.00000000,5.84000000 +8140,chr22,36618650,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.56000000 +8141,chr22,36618695,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,1.31000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.45000000 +8142,chr22,36618716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,1.89000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.02247191,0.00000000,5.34000000 +8143,chr22,36618778,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,64.00000000,0.00000000,-1.54000000,0.00000000,,0.08196721,66.00000000,2.92035398,0.07575758,0.00000000,4.91000000 +8144,chr22,36619224,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,-0.90000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.05000000 +8145,chr22,36619282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.32000000 +8146,chr22,36619471,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.59000000,0.00000000,,0.26363636,110.00000000,4.86725664,0.00000000,0.00000000,6.70000000 +8147,chr22,36622787,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.84000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.01562500,0.00000000,6.56000000 +8148,chr22,36622815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,1.40000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.00000000,0.00000000,6.26000000 +8149,chr22,36623871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.13000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.75000000 +8150,chr22,36625168,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.23762376,104.00000000,4.60176991,0.02884615,0.00000000,5.71000000 +8151,chr22,36625351,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.20000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.64000000 +8152,chr22,36625490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.44000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.31000000 +8153,chr22,36625748,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,83.00000000,0.00000000,0.94000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +8154,chr22,36626439,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,72.00000000,0.00000000,0.46000000,0.00000000,,0.15730337,92.00000000,4.07079646,0.03260870,0.00000000,4.98000000 +8155,chr22,36627049,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.79000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +8156,chr22,36628906,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,88.00000000,0.00000000,0.36000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,5.86000000 +8157,chr22,36629227,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.53000000 +8158,chr22,36629545,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,1.03000000,0.00000000,,0.21538462,69.00000000,3.05309735,0.05797101,0.00000000,5.79000000 +8159,chr22,36629772,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.20000000 +8160,chr22,36630948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.30263158,76.00000000,3.36283186,0.00000000,0.00000000,6.47000000 +8161,chr22,36631420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.54000000,0.00000000,,0.28333333,61.00000000,2.69911504,0.01639344,0.00000000,6.25000000 +8162,chr22,36631633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.42105263,79.00000000,3.49557522,0.02531646,0.00000000,8.18000000 +8163,chr22,36685352,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.41000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +8164,chr22,36685650,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.18000000 +8165,chr22,36688788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.27272727,55.00000000,2.43362832,0.00000000,0.00000000,6.76000000 +8166,chr22,36689890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.75000000 +8167,chr22,36694298,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.35000000 +8168,chr22,36709329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.32000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,6.30000000 +8169,chr22,36726235,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.01111111,0.00000000,6.07000000 +8170,chr22,36739371,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.71000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.77000000 +8171,chr22,36764322,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,89.00000000,0.00000000,-0.17000000,0.00000000,,0.25773196,100.00000000,4.42477876,0.03000000,0.00000000,5.72000000 +8172,chr22,36774856,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,86.00000000,0.00000000,0.96000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.02150538,0.00000000,5.21000000 +8173,chr22,36781489,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,76.00000000,0.00000000,0.85000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,5.78000000 +8174,chr22,36797496,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.43000000,0.00000000,,0.16393443,65.00000000,2.87610619,0.04615385,0.00000000,5.61000000 +8175,chr22,36799011,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.18000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.01041667,0.00000000,5.98000000 +8176,chr22,36799729,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.80000000,0.00000000,,0.17647059,90.00000000,3.98230088,0.04444444,0.00000000,6.07000000 +8177,chr22,36802330,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.92000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,4.86000000 +8178,chr22,36802357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.71000000 +8179,chr22,36803762,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.33000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.54000000 +8180,chr22,36804090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.51000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +8181,chr22,36804791,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.76000000,0.00000000,,0.13793103,89.00000000,3.93805310,0.02247191,0.00000000,5.58000000 +8182,chr22,36805773,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,67.00000000,0.00000000,1.54000000,0.00000000,,0.13924051,80.00000000,3.53982301,0.00000000,0.00000000,5.06000000 +8183,chr22,36805847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-2.67000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.00000000,0.00000000,6.99000000 +8184,chr22,36806504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.14000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +8185,chr22,36806787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,5.99000000 +8186,chr22,36807253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.18000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +8187,chr22,36809106,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.84000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,6.25000000 +8188,chr22,36810297,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,48.00000000,0.00000000,-3.27000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,2.76000000 +8189,chr22,36811136,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.65000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,5.74000000 +8190,chr22,36811623,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,0.00000000,0.74000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,4.74000000 +8191,chr22,36812036,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.64000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.38000000 +8192,chr22,36821310,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +8193,chr22,36825758,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.44000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.68000000 +8194,chr22,36825808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02272727,45.00000000,1.99115044,0.02222222,0.00000000,71.00000000,0.00000000,0.77000000,0.00000000,,0.18181818,92.00000000,4.07079646,0.04347826,0.00000000,5.23000000 +8195,chr22,36825816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.15662651,88.00000000,3.89380531,0.05681818,0.00000000,4.88000000 +8196,chr22,36825915,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.45000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,6.68000000 +8197,chr22,36826192,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.83000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.75000000 +8198,chr22,36827290,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.22000000,0.00000000,,0.24390244,85.00000000,3.76106195,0.03529412,0.00000000,6.62000000 +8199,chr22,36827622,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,98.00000000,0.00000000,-0.96000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.02409639,0.00000000,5.69000000 +8200,chr22,36827630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,105.00000000,0.00000000,-0.65000000,0.00000000,,0.33333333,84.00000000,3.71681416,0.03571429,0.00000000,12.84000000 +8201,chr22,36827888,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.24000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.02298851,0.00000000,6.00000000 +8202,chr22,36828288,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.47000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.57000000 +8203,chr22,36828314,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.21348315,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +8204,chr22,36828505,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.77000000,0.00000000,,0.13483146,90.00000000,3.98230088,0.01111111,0.00000000,5.91000000 +8205,chr22,36828547,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.63000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.83000000 +8206,chr22,36828826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,79.00000000,0.00000000,0.74000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.12000000 +8207,chr22,36829056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.51000000,0.00000000,,0.23880597,70.00000000,3.09734513,0.04285714,0.00000000,6.30000000 +8208,chr22,36829446,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.10000000,0.00000000,,0.27500000,83.00000000,3.67256637,0.03614458,0.00000000,6.35000000 +8209,chr22,36829587,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,59.00000000,0.00000000,-1.00000000,0.00000000,,0.13636364,85.00000000,3.76106195,0.22352941,0.00000000,3.90000000 +8210,chr22,36833414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.17283951,85.00000000,3.76106195,0.02352941,0.00000000,5.85000000 +8211,chr22,36834165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-1.56000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.41000000 +8212,chr22,36836926,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,76.00000000,0.00000000,0.07000000,0.00000000,,0.32051282,84.00000000,3.71681416,0.07142857,0.00000000,6.92000000 +8213,chr22,36841148,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.49000000 +8214,chr22,36843509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,71.00000000,0.00000000,0.53000000,0.00000000,,0.14432990,97.00000000,4.29203540,0.00000000,0.00000000,5.22000000 +8215,chr22,36845745,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,-1.90000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.02272727,0.00000000,6.03000000 +8216,chr22,36845851,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,1.60000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,5.79000000 +8217,chr22,36846262,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,-0.60000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.13000000 +8218,chr22,36846433,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,1.44000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.83000000 +8219,chr22,36847542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.47000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.39000000 +8220,chr22,36847620,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.40000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.02469136,0.00000000,5.98000000 +8221,chr22,36848197,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.90000000 +8222,chr22,36848245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.14000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.40000000 +8223,chr22,36848514,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.70000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.90000000 +8224,chr22,36848835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,0.43000000,0.00000000,,0.18987342,83.00000000,3.67256637,0.02409639,0.00000000,5.66000000 +8225,chr22,36848978,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.31250000,50.00000000,2.21238938,0.04000000,0.00000000,6.48000000 +8226,chr22,36849662,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.20000000 +8227,chr22,36850287,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,6.33000000 +8228,chr22,36855968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.29473684,97.00000000,4.29203540,0.00000000,0.00000000,7.21000000 +8229,chr22,36859500,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.75000000 +8230,chr22,36860220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,96.00000000,0.00000000,1.84000000,0.00000000,,0.28571429,91.00000000,4.02654867,0.00000000,0.00000000,6.15000000 +8231,chr22,36860434,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.22000000,0.00000000,,0.23469388,98.00000000,4.33628319,0.00000000,0.00000000,6.96000000 +8232,chr22,36860804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.80000000 +8233,chr22,36863491,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,-2.02000000,0.00000000,,0.22222222,36.00000000,1.59292035,0.00000000,0.00000000,2.85000000 +8234,chr22,36869019,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.83000000,0.00000000,,0.44736842,78.00000000,3.45132743,0.02564103,0.00000000,4.14000000 +8235,chr22,36879513,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.81000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,5.95000000 +8236,chr22,36880113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.19387755,99.00000000,4.38053097,0.00000000,0.00000000,6.68000000 +8237,chr22,36883026,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.76000000,0.00000000,,0.17241379,58.00000000,2.56637168,0.00000000,0.00000000,6.16000000 +8238,chr22,36911552,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,77.00000000,0.00000000,-1.09000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.00000000,0.00000000,5.58000000 +8239,chr22,36925038,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.47000000,0.00000000,,0.23913043,94.00000000,4.15929204,0.02127660,0.00000000,6.35000000 +8240,chr22,36927946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,0.62000000,0.00000000,,0.12328767,73.00000000,3.23008850,0.00000000,0.00000000,4.90000000 +8241,chr22,36951568,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,76.00000000,0.00000000,-0.11000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +8242,chr22,36951569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +8243,chr22,36953218,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.27272727,70.00000000,3.09734513,0.05714286,0.00000000,5.96000000 +8244,chr22,36953592,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,-0.61000000,0.00000000,,0.24528302,62.00000000,2.74336283,0.09677419,0.00000000,4.41000000 +8245,chr22,36959440,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.65000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,6.26000000 +8246,chr22,36959458,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.37000000 +8247,chr22,36959875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.28000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.21000000 +8248,chr22,36959940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.44000000 +8249,chr22,36962357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.10000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.02597403,0.00000000,5.44000000 +8250,chr22,36963913,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.90000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.00000000,0.00000000,6.98000000 +8251,chr22,36964511,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.30000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.97000000 +8252,chr22,36965734,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,1.90000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.91000000 +8253,chr22,36965816,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-1.21000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +8254,chr22,36965911,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.31000000 +8255,chr22,36965961,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.88000000,0.00000000,,0.15942029,74.00000000,3.27433628,0.04054054,0.00000000,5.62000000 +8256,chr22,36965965,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,1.48000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.08000000 +8257,chr22,36965969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,2.04000000,0.00000000,,0.18181818,69.00000000,3.05309735,0.04347826,0.00000000,5.66000000 +8258,chr22,36966038,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.23000000,0.00000000,,0.11267606,72.00000000,3.18584071,0.01388889,0.00000000,4.03000000 +8259,chr22,36966132,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,-1.47000000,0.00000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,5.35000000 +8260,chr22,36966213,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-1.47000000,0.00000000,,0.25974026,81.00000000,3.58407080,0.04938272,0.00000000,5.94000000 +8261,chr22,36966244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.68000000,0.00000000,,0.25274725,97.00000000,4.29203540,0.06185567,0.00000000,5.98000000 +8262,chr22,36966245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.83000000,0.00000000,,0.24444444,97.00000000,4.29203540,0.07216495,0.00000000,5.98000000 +8263,chr22,36966327,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,1.40000000,0.00000000,,0.17948718,82.00000000,3.62831858,0.04878049,0.00000000,5.65000000 +8264,chr22,36966634,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.00000000,0.00000000,6.38000000 +8265,chr22,36966675,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,-1.18000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.55000000 +8266,chr22,36966834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.66000000,0.00000000,,0.13253012,84.00000000,3.71681416,0.01190476,0.00000000,5.42000000 +8267,chr22,36966916,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-1.16000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,4.51000000 +8268,chr22,36967080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.03000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,5.98000000 +8269,chr22,36967114,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.57000000 +8270,chr22,36967159,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.66000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,6.64000000 +8271,chr22,36967361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.94000000,0.00000000,,0.29113924,80.00000000,3.53982301,0.01250000,0.00000000,6.34000000 +8272,chr22,36967417,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,1.12000000,0.00000000,,0.21739130,76.00000000,3.36283186,0.05263158,0.00000000,5.79000000 +8273,chr22,36967671,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-0.16000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.86000000 +8274,chr22,36967740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.39000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.02000000 +8275,chr22,36967923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-1.14000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.00000000,0.00000000,8.35000000 +8276,chr22,36968005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.79000000,0.00000000,,0.27368421,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +8277,chr22,36968083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-1.82000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,5.92000000 +8278,chr22,36968099,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.10000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +8279,chr22,36968391,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,80.00000000,0.00000000,1.55000000,0.00000000,,0.17894737,96.00000000,4.24778761,0.01041667,0.00000000,6.32000000 +8280,chr22,36969233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,0.47000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.49000000 +8281,chr22,36971495,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.10000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.02000000 +8282,chr22,36974880,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,0.41000000,0.00000000,,0.26984127,66.00000000,2.92035398,0.03030303,0.00000000,6.28000000 +8283,chr22,36976286,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.47000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.00000000,0.00000000,6.15000000 +8284,chr22,36978388,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.40000000,0.00000000,,0.26744186,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +8285,chr22,36978710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.55000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +8286,chr22,36979076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.00000000,0.00000000,6.00000000 +8287,chr22,36979627,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.81000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.44000000 +8288,chr22,36979717,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-1.00000000,0.00000000,,0.17460317,67.00000000,2.96460177,0.04477612,0.00000000,5.98000000 +8289,chr22,36979992,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,70.00000000,0.00000000,-0.26000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.70000000 +8290,chr22,36981053,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,44.00000000,0.00000000,0.89000000,0.00000000,,0.42352941,89.00000000,3.93805310,0.04494382,0.00000000,3.78000000 +8291,chr22,36981651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,1.51000000,0.00000000,,0.27500000,86.00000000,3.80530973,0.06976744,0.00000000,5.53000000 +8292,chr22,36981696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,95.00000000,0.00000000,1.24000000,0.00000000,,0.22988506,99.00000000,4.38053097,0.12121212,0.00000000,4.71000000 +8293,chr22,36982167,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.87000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.00000000,0.00000000,5.89000000 +8294,chr22,36982410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.02702703,0.00000000,6.36000000 +8295,chr22,36982702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.04705882,0.00000000,6.22000000 +8296,chr22,36983498,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.56000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,6.16000000 +8297,chr22,36983648,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-2.10000000,0.00000000,,0.34117647,87.00000000,3.84955752,0.02298851,0.00000000,8.12000000 +8298,chr22,36983979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,71.00000000,0.00000000,-0.35000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.92000000 +8299,chr22,36984027,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.55000000 +8300,chr22,36984103,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.30000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +8301,chr22,36984256,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,88.00000000,0.00000000,0.09000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.01098901,0.00000000,6.49000000 +8302,chr22,36984991,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.90000000,0.00000000,,0.29166667,76.00000000,3.36283186,0.05263158,0.00000000,6.39000000 +8303,chr22,36985302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.76000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,6.66000000 +8304,chr22,36985410,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.34000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.38000000 +8305,chr22,36985633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,6.09000000 +8306,chr22,36985848,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.21000000,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +8307,chr22,36987006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-1.61000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +8308,chr22,36987362,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,62.00000000,0.00000000,-1.13000000,0.00000000,,0.08571429,87.00000000,3.84955752,0.18390805,0.00000000,4.88000000 +8309,chr22,36987373,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,62.00000000,0.00000000,-2.19000000,0.00000000,,0.11842105,92.00000000,4.07079646,0.17391304,0.00000000,4.76000000 +8310,chr22,36987436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,83.00000000,0.00000000,-1.82000000,0.00000000,,0.21276596,103.00000000,4.55752212,0.08737864,0.00000000,6.18000000 +8311,chr22,36987574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,1.60000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.80000000 +8312,chr22,36987768,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,70.00000000,0.00000000,1.88000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.20000000 +8313,chr22,36988062,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +8314,chr22,36988295,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.19000000 +8315,chr22,36988372,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,1.42000000,0.00000000,,0.26086957,71.00000000,3.14159292,0.02816901,0.00000000,5.81000000 +8316,chr22,36988474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.01123596,0.00000000,5.30000000 +8317,chr22,36989008,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.53000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.34000000 +8318,chr22,36990016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.68000000 +8319,chr22,36990493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-0.43000000,0.00000000,,0.17525773,98.00000000,4.33628319,0.01020408,0.00000000,6.33000000 +8320,chr22,36990606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,-0.34000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,5.97000000 +8321,chr22,36990753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,-0.91000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,5.81000000 +8322,chr22,36990879,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.89000000,0.00000000,,0.24657534,76.00000000,3.36283186,0.01315789,0.00000000,6.20000000 +8323,chr22,36991078,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,-1.17000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.02000000 +8324,chr22,36991420,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,2.13000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.11000000 +8325,chr22,36991464,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.08000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.58000000 +8326,chr22,36991716,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,-0.25000000,0.00000000,,0.25882353,88.00000000,3.89380531,0.01136364,0.00000000,6.23000000 +8327,chr22,36993486,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,81.00000000,0.00000000,1.18000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,5.60000000 +8328,chr22,36994293,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,89.00000000,0.00000000,0.17000000,0.00000000,,0.22330097,103.00000000,4.55752212,0.00000000,0.00000000,5.89000000 +8329,chr22,36995514,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05714286,36.00000000,1.59292035,0.02777778,0.00000000,37.00000000,0.00000000,-2.88000000,0.00000000,,0.40909091,67.00000000,2.96460177,0.01492537,0.00000000,3.46000000 +8330,chr22,36995594,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.70000000 +8331,chr22,36995956,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.20000000,101.00000000,4.46902655,0.00990099,0.00000000,6.67000000 +8332,chr22,36998253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-0.95000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.60000000 +8333,chr22,36998294,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.72000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.05000000 +8334,chr22,36998350,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.24000000,0.00000000,,0.19672131,65.00000000,2.87610619,0.06153846,0.00000000,6.28000000 +8335,chr22,36998460,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +8336,chr22,36998467,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.41000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +8337,chr22,36998679,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.16000000,0.00000000,,0.20183486,111.00000000,4.91150442,0.00900901,0.00000000,6.53000000 +8338,chr22,36998690,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.18348624,114.00000000,5.04424779,0.02631579,0.00000000,6.30000000 +8339,chr22,36998978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.23076923,92.00000000,4.07079646,0.01086957,0.00000000,6.79000000 +8340,chr22,37000376,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.72000000 +8341,chr22,37001386,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,0.01000000,0.00000000,,0.44285714,74.00000000,3.27433628,0.05405405,0.00000000,4.34000000 +8342,chr22,37001389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.59000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.06666667,0.00000000,2.84000000 +8343,chr22,37001509,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.46153846,68.00000000,3.00884956,0.01470588,0.00000000,8.34000000 +8344,chr22,37002154,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.91000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.16000000 +8345,chr22,37002160,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.00000000,0.00000000,5.77000000 +8346,chr22,37002601,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.02000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.44000000 +8347,chr22,37004368,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.69000000,0.00000000,,0.46250000,84.00000000,3.71681416,0.04761905,0.00000000,7.83000000 +8348,chr22,37004519,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.48235294,85.00000000,3.76106195,0.00000000,0.00000000,8.26000000 +8349,chr22,37004916,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,0.25000000,0.00000000,,0.48051948,77.00000000,3.40707965,0.00000000,0.00000000,8.35000000 +8350,chr22,37004935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.46000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.23000000 +8351,chr22,37004997,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.47368421,96.00000000,4.24778761,0.01041667,0.00000000,8.49000000 +8352,chr22,37005010,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.45054945,92.00000000,4.07079646,0.01086957,0.00000000,8.17000000 +8353,chr22,37005060,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.17000000,0.00000000,,0.43298969,98.00000000,4.33628319,0.01020408,0.00000000,8.52000000 +8354,chr22,37005218,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,-0.34000000,0.00000000,,0.40963855,85.00000000,3.76106195,0.02352941,0.00000000,8.25000000 +8355,chr22,37005323,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-0.78000000,0.00000000,,0.48750000,82.00000000,3.62831858,0.02439024,0.00000000,8.38000000 +8356,chr22,37005477,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,114.00000000,0.00000000,0.02000000,0.00000000,,0.39000000,103.00000000,4.55752212,0.02912621,0.00000000,12.64000000 +8357,chr22,37005491,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.81000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,115.00000000,0.00000000,-0.17000000,0.00000000,,0.35922330,111.00000000,4.91150442,0.07207207,0.00000000,11.92000000 +8358,chr22,37005596,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,62.00000000,0.00000000,1.80000000,0.00000000,,0.43010753,105.00000000,4.64601770,0.09523810,0.00000000,7.89000000 +8359,chr22,37005751,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,110.00000000,0.00000000,0.77000000,0.00000000,,0.35779817,110.00000000,4.86725664,0.00909091,0.00000000,14.94000000 +8360,chr22,37006170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,94.00000000,0.00000000,-0.84000000,0.00000000,,0.33333333,100.00000000,4.42477876,0.01000000,0.00000000,8.42000000 +8361,chr22,37006739,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,104.00000000,0.00000000,0.41000000,0.00000000,,0.40000000,107.00000000,4.73451327,0.01869159,0.00000000,15.14000000 +8362,chr22,37006869,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,0.00000000,-0.48000000,0.00000000,,0.50000000,87.00000000,3.84955752,0.03448276,0.00000000,6.32000000 +8363,chr22,37007261,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.41000000,0.00000000,,0.39393939,100.00000000,4.42477876,0.01000000,0.00000000,8.59000000 +8364,chr22,37008208,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,41.00000000,1.81415929,0.02439024,0.00000000,92.00000000,0.00000000,-2.87000000,0.00000000,,0.42352941,87.00000000,3.84955752,0.01149425,0.00000000,8.41000000 +8365,chr22,37008796,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.58000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.49000000 +8366,chr22,37009367,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.52000000,0.00000000,,0.14563107,104.00000000,4.60176991,0.00961538,0.00000000,5.11000000 +8367,chr22,37009376,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,89.00000000,0.00000000,0.45000000,0.00000000,,0.42000000,102.00000000,4.51327434,0.01960784,0.00000000,7.76000000 +8368,chr22,37009400,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.40206186,98.00000000,4.33628319,0.01020408,0.00000000,8.58000000 +8369,chr22,37009589,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.59000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.63000000 +8370,chr22,37009824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-0.21000000,0.00000000,,0.50000000,89.00000000,3.93805310,0.01123596,0.00000000,8.27000000 +8371,chr22,37010293,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.99000000,0.00000000,,0.57647059,86.00000000,3.80530973,0.01162791,0.00000000,8.60000000 +8372,chr22,37010360,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,19.00000000,0.00000000,-0.36000000,0.00000000,,0.51388889,76.00000000,3.36283186,0.02631579,0.00000000,3.14000000 +8373,chr22,37011486,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,36.00000000,0.00000000,0.89000000,0.00000000,,0.44943820,91.00000000,4.02654867,0.02197802,0.00000000,3.41000000 +8374,chr22,37012094,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.18000000,0.00000000,,0.48314607,91.00000000,4.02654867,0.02197802,0.00000000,8.26000000 +8375,chr22,37012189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.39000000,0.00000000,,0.44565217,94.00000000,4.15929204,0.02127660,0.00000000,8.06000000 +8376,chr22,37012358,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,-1.20000000,0.00000000,,0.47500000,83.00000000,3.67256637,0.03614458,0.00000000,12.00000000 +8377,chr22,37012678,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06250000,33.00000000,1.46017699,0.03030303,0.00000000,54.00000000,0.00000000,-0.01000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,4.12000000 +8378,chr22,37012788,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.33000000 +8379,chr22,37012866,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.25000000,0.00000000,,0.50684932,74.00000000,3.27433628,0.00000000,0.00000000,8.49000000 +8380,chr22,37013037,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.31081081,77.00000000,3.40707965,0.01298701,0.00000000,8.36000000 +8381,chr22,37013185,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.15000000,0.00000000,,0.51470588,69.00000000,3.05309735,0.01449275,0.00000000,7.72000000 +8382,chr22,37013278,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.00000000,0.00000000,8.89000000 +8383,chr22,37013535,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.45945946,81.00000000,3.58407080,0.08641975,0.00000000,8.29000000 +8384,chr22,37013537,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,0.00000000,-0.85000000,0.00000000,,0.45945946,81.00000000,3.58407080,0.08641975,0.00000000,7.57000000 +8385,chr22,37014168,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,0.38000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,8.19000000 +8386,chr22,37014327,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-1.34000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,8.93000000 +8387,chr22,37014388,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,102.00000000,0.00000000,-2.11000000,0.00000000,,0.46666667,90.00000000,3.98230088,0.00000000,0.00000000,13.31000000 +8388,chr22,37014926,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.40697674,87.00000000,3.84955752,0.00000000,0.00000000,8.15000000 +8389,chr22,37015139,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.41772152,82.00000000,3.62831858,0.03658537,0.00000000,7.91000000 +8390,chr22,37015149,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-1.04000000,0.00000000,,0.44871795,82.00000000,3.62831858,0.04878049,0.00000000,7.66000000 +8391,chr22,37015166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.40000000,0.00000000,,0.50588235,87.00000000,3.84955752,0.02298851,0.00000000,4.60000000 +8392,chr22,37015541,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,21.00000000,0.92920354,0.00000000,0.00000000,31.00000000,0.00000000,-2.38000000,0.00000000,,0.52380952,85.00000000,3.76106195,0.01176471,0.00000000,3.62000000 +8393,chr22,37016092,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.96000000,0.00000000,,0.19642857,56.00000000,2.47787611,0.00000000,0.00000000,7.05000000 +8394,chr22,37016103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.22807018,57.00000000,2.52212389,0.00000000,0.00000000,6.59000000 +8395,chr22,37018942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,1.45000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +8396,chr22,37020759,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.09000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.14000000 +8397,chr22,37021156,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.00000000,0.00000000,6.72000000 +8398,chr22,37022220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.11111111,90.00000000,3.98230088,0.00000000,0.00000000,5.21000000 +8399,chr22,37023179,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,0.23000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,6.32000000 +8400,chr22,37024082,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,1.34000000,0.00000000,,0.26262626,100.00000000,4.42477876,0.01000000,0.00000000,6.68000000 +8401,chr22,37025428,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.49000000 +8402,chr22,37025661,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +8403,chr22,37029160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.51000000,0.00000000,,0.21875000,99.00000000,4.38053097,0.03030303,0.00000000,6.28000000 +8404,chr22,37029161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,-0.51000000,0.00000000,,0.21875000,99.00000000,4.38053097,0.03030303,0.00000000,6.30000000 +8405,chr22,37031452,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,-0.13000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.01250000,0.00000000,6.22000000 +8406,chr22,37031542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.02000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.00000000,0.00000000,6.45000000 +8407,chr22,37031552,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.38000000,0.00000000,,0.28378378,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +8408,chr22,37039860,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.69000000 +8409,chr22,37066592,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.05000000,0.00000000,,0.16304348,94.00000000,4.15929204,0.02127660,0.00000000,5.62000000 +8410,chr22,37067410,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.11000000,0.00000000,,0.24489796,100.00000000,4.42477876,0.02000000,0.00000000,6.32000000 +8411,chr22,37073551,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,0.24000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.94000000 +8412,chr22,37073781,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.72000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.47000000 +8413,chr22,37074001,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,0.70000000,0.00000000,,0.25581395,88.00000000,3.89380531,0.02272727,0.00000000,5.74000000 +8414,chr22,37074184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,75.00000000,0.00000000,-0.95000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.14000000 +8415,chr22,37074564,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,-0.85000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,5.89000000 +8416,chr22,37087441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,73.00000000,0.00000000,-1.60000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.00000000,0.00000000,5.62000000 +8417,chr22,37087651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02040816,51.00000000,2.25663717,0.03921569,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.14473684,86.00000000,3.80530973,0.08139535,0.00000000,4.57000000 +8418,chr22,37088297,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-1.00000000,0.00000000,,0.26923077,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +8419,chr22,37088334,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.17000000,0.00000000,,0.30555556,76.00000000,3.36283186,0.05263158,0.00000000,6.31000000 +8420,chr22,37088904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.36000000 +8421,chr22,37089153,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.83000000,0.00000000,,0.21348315,92.00000000,4.07079646,0.02173913,0.00000000,6.47000000 +8422,chr22,37089684,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,1.69000000,0.00000000,,0.28571429,96.00000000,4.24778761,0.04166667,0.00000000,6.20000000 +8423,chr22,37090165,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.30681818,91.00000000,4.02654867,0.01098901,0.00000000,8.02000000 +8424,chr22,37090826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.49000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,6.78000000 +8425,chr22,37091489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,-1.13000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,6.04000000 +8426,chr22,37091619,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.94000000 +8427,chr22,37091647,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-2.46000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.83000000 +8428,chr22,37091770,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,91.00000000,0.00000000,2.19000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.48000000 +8429,chr22,37092534,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.42000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.41000000 +8430,chr22,37092810,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,1.61000000,0.00000000,,0.27500000,82.00000000,3.62831858,0.01219512,0.00000000,5.86000000 +8431,chr22,37092941,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,1.29000000,0.00000000,,0.28235294,86.00000000,3.80530973,0.01162791,0.00000000,5.90000000 +8432,chr22,37093234,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.90000000,0.00000000,,0.26153846,66.00000000,2.92035398,0.01515152,0.00000000,6.45000000 +8433,chr22,37093690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.16000000,0.00000000,,0.30232558,44.00000000,1.94690265,0.02272727,0.00000000,6.36000000 +8434,chr22,37093733,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.23000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.23000000 +8435,chr22,37093840,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.43000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.49000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,4.98000000 +8436,chr22,37093965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.11000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.94000000 +8437,chr22,37093993,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,1.08000000,0.00000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,5.85000000 +8438,chr22,37094356,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,75.00000000,0.00000000,0.94000000,0.00000000,,0.17431193,110.00000000,4.86725664,0.00909091,0.00000000,5.57000000 +8439,chr22,37095100,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.82000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.52000000 +8440,chr22,37095110,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.00000000,0.00000000,6.39000000 +8441,chr22,37095505,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,5.95000000 +8442,chr22,37095799,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,0.00000000,1.08000000,0.00000000,,0.08860759,84.00000000,3.71681416,0.04761905,0.00000000,4.60000000 +8443,chr22,37096161,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.26000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,6.63000000 +8444,chr22,37096545,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,97.00000000,0.00000000,0.42000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.00000000 +8445,chr22,37100243,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.46000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.83000000 +8446,chr22,37100370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.28000000,0.00000000,,0.22891566,86.00000000,3.80530973,0.03488372,0.00000000,6.29000000 +8447,chr22,37100807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.31000000,0.00000000,,0.35714286,57.00000000,2.52212389,0.01754386,0.00000000,8.02000000 +8448,chr22,37114705,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.90000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,7.01000000 +8449,chr22,37137490,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.09000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.60000000 +8450,chr22,37148205,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-1.23000000,0.00000000,,0.19148936,96.00000000,4.24778761,0.02083333,0.00000000,6.61000000 +8451,chr22,37148305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.22000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.47000000 +8452,chr22,37148446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.92000000,0.00000000,,0.08888889,90.00000000,3.98230088,0.00000000,0.00000000,5.28000000 +8453,chr22,37148770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.91000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +8454,chr22,37149465,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,78.00000000,0.00000000,0.68000000,0.00000000,,0.18888889,95.00000000,4.20353982,0.02105263,0.00000000,5.58000000 +8455,chr22,37155447,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.36000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.75000000 +8456,chr22,37155567,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.12000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +8457,chr22,37156854,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.17777778,91.00000000,4.02654867,0.01098901,0.00000000,6.35000000 +8458,chr22,37157579,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,1.51000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,5.98000000 +8459,chr22,37157685,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,-1.93000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.63000000 +8460,chr22,37158659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.54000000,0.00000000,,0.10869565,95.00000000,4.20353982,0.03157895,0.00000000,4.63000000 +8461,chr22,37158799,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.36000000 +8462,chr22,37159006,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,96.00000000,0.00000000,-1.07000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.02222222,0.00000000,4.63000000 +8463,chr22,37160971,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.22000000,0.00000000,,0.24509804,103.00000000,4.55752212,0.00970874,0.00000000,6.67000000 +8464,chr22,37161922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.31000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.18000000 +8465,chr22,37162316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,74.00000000,0.00000000,0.60000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,4.69000000 +8466,chr22,37163761,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.94000000 +8467,chr22,37174744,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,0.76000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.57000000 +8468,chr22,37174805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.03000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +8469,chr22,37174974,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.41000000,0.00000000,,0.27777778,94.00000000,4.15929204,0.04255319,0.00000000,6.30000000 +8470,chr22,37177389,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.25000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.02000000 +8471,chr22,37177672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.26027397,73.00000000,3.23008850,0.00000000,0.00000000,6.73000000 +8472,chr22,37177754,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-0.46000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,4.24000000 +8473,chr22,37177807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-1.26000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.28000000 +8474,chr22,37179429,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.64000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +8475,chr22,37181105,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.73000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.46000000 +8476,chr22,37181697,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.51000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,6.44000000 +8477,chr22,37182767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.42000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.02061856,0.00000000,6.35000000 +8478,chr22,37183763,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,0.77000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +8479,chr22,37184294,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,74.00000000,0.00000000,-0.18000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.33000000 +8480,chr22,37185382,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.42000000,0.00000000,,0.19318182,91.00000000,4.02654867,0.03296703,0.00000000,5.95000000 +8481,chr22,37185445,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,106.00000000,0.00000000,0.98000000,0.00000000,,0.33734940,84.00000000,3.71681416,0.01190476,0.00000000,14.32000000 +8482,chr22,37185637,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,0.08000000,0.00000000,,0.36956522,94.00000000,4.15929204,0.01063830,0.00000000,8.39000000 +8483,chr22,37186126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.26000000 +8484,chr22,37186165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.68000000 +8485,chr22,37187056,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.06000000 +8486,chr22,37188312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,0.72000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.06250000,0.00000000,6.28000000 +8487,chr22,37189696,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,109.00000000,0.00000000,-1.41000000,0.00000000,,0.35643564,102.00000000,4.51327434,0.00980392,0.00000000,14.33000000 +8488,chr22,37190632,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.12500000,0.00000000,30.00000000,0.00000000,0.38000000,0.00000000,,0.44594595,83.00000000,3.67256637,0.10843373,0.00000000,3.50000000 +8489,chr22,37190636,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.15384615,0.00000000,58.00000000,0.00000000,0.95000000,0.00000000,,0.44000000,83.00000000,3.67256637,0.09638554,0.00000000,6.30000000 +8490,chr22,37190921,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,101.00000000,0.00000000,1.06000000,0.00000000,,0.25454545,111.00000000,4.91150442,0.00900901,0.00000000,5.15000000 +8491,chr22,37191071,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.26000000,0.00000000,,0.42222222,90.00000000,3.98230088,0.00000000,0.00000000,8.95000000 +8492,chr22,37191331,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.59000000,0.00000000,,0.19000000,101.00000000,4.46902655,0.00990099,0.00000000,5.46000000 +8493,chr22,37191973,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,82.00000000,0.00000000,-0.70000000,0.00000000,,0.17647059,102.00000000,4.51327434,0.00000000,0.00000000,5.50000000 +8494,chr22,37192526,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,1.43000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,5.99000000 +8495,chr22,37192780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,93.00000000,0.00000000,0.55000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,5.65000000 +8496,chr22,37193388,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.00000000,0.00000000,84.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.00000000,0.00000000,6.82000000 +8497,chr22,37193478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.13000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.22000000 +8498,chr22,37193765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.25000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.02500000,0.00000000,6.61000000 +8499,chr22,37193829,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.37000000,0.00000000,,0.51136364,92.00000000,4.07079646,0.03260870,0.00000000,8.16000000 +8500,chr22,37194163,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.68000000,0.00000000,,0.23684211,115.00000000,5.08849558,0.00869565,0.00000000,6.12000000 +8501,chr22,37194167,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,2.10000000,0.00000000,,0.21739130,116.00000000,5.13274336,0.00862069,0.00000000,6.10000000 +8502,chr22,37194262,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,79.00000000,0.00000000,0.29000000,0.00000000,,0.16981132,107.00000000,4.73451327,0.00000000,0.00000000,5.79000000 +8503,chr22,37194509,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-0.54000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,5.86000000 +8504,chr22,37194678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,65.00000000,0.00000000,-1.66000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.53000000 +8505,chr22,37195221,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,1.83000000,0.00000000,,0.14736842,98.00000000,4.33628319,0.03061224,0.00000000,4.95000000 +8506,chr22,37195250,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.07000000,0.00000000,,0.41237113,102.00000000,4.51327434,0.04901961,0.00000000,8.35000000 +8507,chr22,37195278,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,111.00000000,0.00000000,-0.55000000,0.00000000,,0.42307692,105.00000000,4.64601770,0.00952381,0.00000000,14.43000000 +8508,chr22,37195621,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,73.00000000,0.00000000,-1.71000000,0.00000000,,0.15463918,100.00000000,4.42477876,0.03000000,0.00000000,5.41000000 +8509,chr22,37196066,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.01923077,52.00000000,2.30088496,0.00000000,0.00000000,85.00000000,0.00000000,-0.93000000,0.00000000,,0.46341463,82.00000000,3.62831858,0.00000000,0.00000000,6.74000000 +8510,chr22,37197051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,42.00000000,1.85840708,0.07142857,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.23584906,106.00000000,4.69026549,0.00000000,0.00000000,5.90000000 +8511,chr22,37197116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,83.00000000,0.00000000,-0.61000000,0.00000000,,0.20000000,103.00000000,4.55752212,0.01941748,0.00000000,5.81000000 +8512,chr22,37197648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.86000000 +8513,chr22,37199446,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.44000000 +8514,chr22,37200194,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-0.85000000,0.00000000,,0.21428571,90.00000000,3.98230088,0.06666667,0.00000000,5.99000000 +8515,chr22,37203666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.23913043,95.00000000,4.20353982,0.02105263,0.00000000,6.49000000 +8516,chr22,37204523,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.01492537,0.00000000,5.57000000 +8517,chr22,37205266,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.42000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.19000000 +8518,chr22,37206982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,82.00000000,0.00000000,-0.68000000,0.00000000,,0.18181818,102.00000000,4.51327434,0.02941176,0.00000000,5.07000000 +8519,chr22,37207012,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,91.00000000,0.00000000,-0.31000000,0.00000000,,0.20952381,108.00000000,4.77876106,0.02777778,0.00000000,5.16000000 +8520,chr22,37207351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,0.00000000,0.76000000,0.00000000,,0.14678899,109.00000000,4.82300885,0.00000000,0.00000000,5.06000000 +8521,chr22,37207705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,89.00000000,0.00000000,-0.03000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,5.76000000 +8522,chr22,37207911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,70.00000000,0.00000000,0.26000000,0.00000000,,0.12643678,88.00000000,3.89380531,0.01136364,0.00000000,4.67000000 +8523,chr22,37209757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,85.00000000,0.00000000,1.21000000,0.00000000,,0.32941176,85.00000000,3.76106195,0.00000000,0.00000000,8.08000000 +8524,chr22,37213008,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,82.00000000,0.00000000,-1.49000000,0.00000000,,0.17391304,117.00000000,5.17699115,0.01709402,0.00000000,5.20000000 +8525,chr22,37213302,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.25675676,77.00000000,3.40707965,0.02597403,0.00000000,6.20000000 +8526,chr22,37214379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.41000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.44000000 +8527,chr22,37215180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.13725490,103.00000000,4.55752212,0.00970874,0.00000000,5.09000000 +8528,chr22,37215767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,-0.90000000,0.00000000,,0.22222222,75.00000000,3.31858407,0.04000000,0.00000000,6.30000000 +8529,chr22,37215822,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,1.15000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.40000000 +8530,chr22,37215911,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.26000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8531,chr22,37215947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.75000000 +8532,chr22,37216002,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.01111111,0.00000000,6.56000000 +8533,chr22,37216015,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.56000000 +8534,chr22,37216063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,-1.22000000,0.00000000,,0.19607843,104.00000000,4.60176991,0.00961538,0.00000000,6.52000000 +8535,chr22,37216225,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,53.00000000,0.00000000,0.66000000,0.00000000,,0.26086957,54.00000000,2.38938053,0.14814815,0.00000000,2.92000000 +8536,chr22,37216870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,-1.02000000,0.00000000,,0.27450980,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8537,chr22,37217119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.79000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.38000000 +8538,chr22,37217269,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-1.64000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.20000000 +8539,chr22,37217956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.50000000 +8540,chr22,37218168,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,0.08000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.01000000 +8541,chr22,37218665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-1.33000000,0.00000000,,0.25581395,93.00000000,4.11504425,0.07526882,0.00000000,5.96000000 +8542,chr22,37219208,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.19318182,88.00000000,3.89380531,0.00000000,0.00000000,7.01000000 +8543,chr22,37219316,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,83.00000000,0.00000000,0.59000000,0.00000000,,0.18181818,102.00000000,4.51327434,0.02941176,0.00000000,5.04000000 +8544,chr22,37219574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,78.00000000,0.00000000,0.77000000,0.00000000,,0.19480519,81.00000000,3.58407080,0.04938272,0.00000000,5.52000000 +8545,chr22,37219642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,79.00000000,0.00000000,0.35000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.35000000 +8546,chr22,37220050,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,97.00000000,0.00000000,0.72000000,0.00000000,,0.26000000,102.00000000,4.51327434,0.01960784,0.00000000,5.33000000 +8547,chr22,37221104,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.41000000,0.00000000,,0.30434783,92.00000000,4.07079646,0.00000000,0.00000000,6.63000000 +8548,chr22,37221362,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.13684211,95.00000000,4.20353982,0.00000000,0.00000000,5.86000000 +8549,chr22,37222449,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,5.95000000 +8550,chr22,37222893,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,1.43000000,0.00000000,,0.13953488,91.00000000,4.02654867,0.05494505,0.00000000,5.33000000 +8551,chr22,37222981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,0.00000000,-2.16000000,0.00000000,,0.15853659,89.00000000,3.93805310,0.07865169,0.00000000,5.40000000 +8552,chr22,37223245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,66.00000000,0.00000000,-0.16000000,0.00000000,,0.16455696,83.00000000,3.67256637,0.04819277,0.00000000,5.31000000 +8553,chr22,37224432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +8554,chr22,37224493,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.39000000,0.00000000,,0.23863636,92.00000000,4.07079646,0.03260870,0.00000000,6.35000000 +8555,chr22,37225911,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,-0.74000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,5.62000000 +8556,chr22,37226270,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.46000000,0.00000000,,0.23880597,70.00000000,3.09734513,0.04285714,0.00000000,5.72000000 +8557,chr22,37226435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-1.01000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.68000000 +8558,chr22,37226537,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.65000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,6.56000000 +8559,chr22,37226550,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.96000000,0.00000000,,0.28378378,75.00000000,3.31858407,0.00000000,0.00000000,6.51000000 +8560,chr22,37226775,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.91000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,4.93000000 +8561,chr22,37228009,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,-0.08000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.15000000 +8562,chr22,37228196,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.04938272,0.00000000,5.56000000 +8563,chr22,37229037,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,91.00000000,0.00000000,0.35000000,0.00000000,,0.26530612,101.00000000,4.46902655,0.01980198,0.00000000,6.25000000 +8564,chr22,37229604,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.04000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.03448276,0.00000000,4.94000000 +8565,chr22,37230062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.91000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +8566,chr22,37231194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.68000000,0.00000000,,0.29333333,77.00000000,3.40707965,0.02597403,0.00000000,6.26000000 +8567,chr22,37231206,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.09000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,5.76000000 +8568,chr22,37231805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-1.64000000,0.00000000,,0.16867470,88.00000000,3.89380531,0.05681818,0.00000000,6.01000000 +8569,chr22,37234239,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.92000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +8570,chr22,37234278,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.71000000,0.00000000,,0.28985507,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +8571,chr22,37234443,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.02380952,0.00000000,6.68000000 +8572,chr22,37234822,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.77000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,6.17000000 +8573,chr22,37241613,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-0.10000000,0.00000000,,0.24731183,98.00000000,4.33628319,0.05102041,0.00000000,5.85000000 +8574,chr22,37242256,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.86000000 +8575,chr22,37245228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-1.19000000,0.00000000,,0.21348315,90.00000000,3.98230088,0.01111111,0.00000000,6.97000000 +8576,chr22,37245370,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-0.15000000,0.00000000,,0.13636364,90.00000000,3.98230088,0.01111111,0.00000000,5.79000000 +8577,chr22,37245584,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +8578,chr22,37245956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.77000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +8579,chr22,37246161,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,0.46000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,5.71000000 +8580,chr22,37246174,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,79.00000000,0.00000000,1.89000000,0.00000000,,0.16504854,106.00000000,4.69026549,0.02830189,0.00000000,5.06000000 +8581,chr22,37246195,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,75.00000000,0.00000000,1.52000000,0.00000000,,0.14563107,106.00000000,4.69026549,0.02830189,0.00000000,4.89000000 +8582,chr22,37246274,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,74.00000000,0.00000000,-1.72000000,0.00000000,,0.15384615,93.00000000,4.11504425,0.02150538,0.00000000,4.53000000 +8583,chr22,37246308,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,-0.49000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,6.17000000 +8584,chr22,37246334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.90000000,0.00000000,,0.19402985,70.00000000,3.09734513,0.04285714,0.00000000,5.67000000 +8585,chr22,37246376,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,1.38000000,0.00000000,,0.13513514,76.00000000,3.36283186,0.02631579,0.00000000,5.35000000 +8586,chr22,37246484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,0.00000000,-0.20000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,5.01000000 +8587,chr22,37246485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,0.00000000,-0.20000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,4.79000000 +8588,chr22,37246829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.19047619,108.00000000,4.77876106,0.02777778,0.00000000,5.86000000 +8589,chr22,37246885,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.17857143,112.00000000,4.95575221,0.00000000,0.00000000,6.56000000 +8590,chr22,37246904,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.38000000,0.00000000,,0.15841584,102.00000000,4.51327434,0.00980392,0.00000000,6.06000000 +8591,chr22,37246960,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,-1.05000000,0.00000000,,0.19117647,73.00000000,3.23008850,0.06849315,0.00000000,6.21000000 +8592,chr22,37246989,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.79000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,6.52000000 +8593,chr22,37246991,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.88000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.02000000 +8594,chr22,37247193,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.34000000,0.00000000,,0.15492958,80.00000000,3.53982301,0.10000000,0.00000000,4.61000000 +8595,chr22,37247806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.90000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.04347826,0.00000000,6.85000000 +8596,chr22,37247808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.85000000 +8597,chr22,37254280,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-1.07000000,0.00000000,,0.26865672,70.00000000,3.09734513,0.02857143,0.00000000,6.18000000 +8598,chr22,37256235,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.19000000,0.00000000,,0.25000000,94.00000000,4.15929204,0.02127660,0.00000000,6.16000000 +8599,chr22,37256722,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,47.00000000,2.07964602,0.02127660,0.00000000,81.00000000,0.00000000,1.15000000,0.00000000,,0.21739130,94.00000000,4.15929204,0.02127660,0.00000000,5.22000000 +8600,chr22,37262417,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,-0.56000000,0.00000000,,0.15957447,96.00000000,4.24778761,0.02083333,0.00000000,5.33000000 +8601,chr22,37262659,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-1.92000000,0.00000000,,0.20879121,92.00000000,4.07079646,0.01086957,0.00000000,6.65000000 +8602,chr22,37262764,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,1.10000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.59000000 +8603,chr22,37263015,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.22000000,0.00000000,,0.20833333,98.00000000,4.33628319,0.02040816,0.00000000,6.65000000 +8604,chr22,37263247,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.37000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,6.89000000 +8605,chr22,37263266,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.20000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.74000000 +8606,chr22,37263371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,62.00000000,0.00000000,-1.23000000,0.00000000,,0.21311475,77.00000000,3.40707965,0.20779221,0.00000000,5.42000000 +8607,chr22,37263380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.21428571,0.00000000,63.00000000,0.00000000,-1.87000000,0.00000000,,0.22950820,76.00000000,3.36283186,0.19736842,0.00000000,5.33000000 +8608,chr22,37263757,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.88000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,7.04000000 +8609,chr22,37264214,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.83000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.01282051,0.00000000,5.96000000 +8610,chr22,37265578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.01020408,0.00000000,6.31000000 +8611,chr22,37267308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.44000000 +8612,chr22,37267349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.03409091,0.00000000,5.03000000 +8613,chr22,37269806,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,0.55000000,0.00000000,,0.13636364,94.00000000,4.15929204,0.06382979,0.00000000,5.41000000 +8614,chr22,37270230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,-1.11000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.69000000 +8615,chr22,37271595,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.13000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.11000000 +8616,chr22,37272537,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-0.51000000,0.00000000,,0.15384615,67.00000000,2.96460177,0.02985075,0.00000000,5.19000000 +8617,chr22,37272690,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,52.00000000,0.00000000,-0.31000000,0.00000000,,0.28301887,58.00000000,2.56637168,0.08620690,0.00000000,2.81000000 +8618,chr22,37273280,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.22000000 +8619,chr22,37276407,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.38000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.64000000 +8620,chr22,37277066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-0.16000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.22000000 +8621,chr22,37286324,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +8622,chr22,37286914,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-2.21000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,6.82000000 +8623,chr22,37286923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-3.00000000,0.00000000,,0.32000000,77.00000000,3.40707965,0.01298701,0.00000000,8.16000000 +8624,chr22,37286969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.17000000 +8625,chr22,37287177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-0.62000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.22000000 +8626,chr22,37287239,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.20754717,53.00000000,2.34513274,0.00000000,0.00000000,6.55000000 +8627,chr22,37287255,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.48000000,0.00000000,,0.22641509,53.00000000,2.34513274,0.00000000,0.00000000,6.06000000 +8628,chr22,37287335,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.30000000,0.00000000,,0.26865672,67.00000000,2.96460177,0.00000000,0.00000000,7.13000000 +8629,chr22,37287642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,57.00000000,0.00000000,-0.03000000,0.00000000,,0.18750000,67.00000000,2.96460177,0.04477612,0.00000000,3.15000000 +8630,chr22,37288031,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.50000000 +8631,chr22,37288148,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.37000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.91000000 +8632,chr22,37289698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-1.03000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,6.01000000 +8633,chr22,37289855,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.42000000 +8634,chr22,37290072,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-1.41000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +8635,chr22,37290669,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,0.00000000,-0.51000000,0.00000000,,0.12195122,83.00000000,3.67256637,0.01204819,0.00000000,5.29000000 +8636,chr22,37295274,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,80.00000000,0.00000000,0.56000000,0.00000000,,0.30769231,81.00000000,3.58407080,0.03703704,0.00000000,5.93000000 +8637,chr22,37295866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.67000000,0.00000000,,0.18867925,106.00000000,4.69026549,0.00000000,0.00000000,6.72000000 +8638,chr22,37296897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.04000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.96000000 +8639,chr22,37296970,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,1.03000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.02000000 +8640,chr22,37298236,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.21621622,77.00000000,3.40707965,0.03896104,0.00000000,6.50000000 +8641,chr22,37299215,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.49000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,5.75000000 +8642,chr22,37300514,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +8643,chr22,37301270,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.98000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.23000000 +8644,chr22,37303127,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.80000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,6.52000000 +8645,chr22,37307488,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.01176471,0.00000000,6.54000000 +8646,chr22,37322025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.68000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.23000000 +8647,chr22,37358982,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-1.43000000,0.00000000,,0.17741935,64.00000000,2.83185841,0.03125000,0.00000000,6.25000000 +8648,chr22,37369770,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,1.18000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.89000000 +8649,chr22,37370156,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.41000000,0.00000000,,0.38983051,60.00000000,2.65486726,0.01666667,0.00000000,8.20000000 +8650,chr22,37374026,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.44329897,101.00000000,4.46902655,0.02970297,0.00000000,8.23000000 +8651,chr22,37374317,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.27000000,0.00000000,,0.39024390,83.00000000,3.67256637,0.01204819,0.00000000,8.53000000 +8652,chr22,37375118,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,56.00000000,0.00000000,-0.06000000,0.00000000,,0.37681159,70.00000000,3.09734513,0.01428571,0.00000000,4.41000000 +8653,chr22,37375945,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.64000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.58000000,0.00000000,,0.51948052,81.00000000,3.58407080,0.03703704,0.00000000,8.18000000 +8654,chr22,37378045,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.37837838,76.00000000,3.36283186,0.02631579,0.00000000,7.73000000 +8655,chr22,37378318,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.46000000,0.00000000,,0.48936170,96.00000000,4.24778761,0.02083333,0.00000000,8.33000000 +8656,chr22,37379188,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.29000000 +8657,chr22,37379850,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,23.00000000,0.00000000,-1.67000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.14000000 +8658,chr22,37385551,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.33000000,0.00000000,,0.42241379,116.00000000,5.13274336,0.00000000,0.00000000,8.37000000 +8659,chr22,37387311,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,-2.16000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.03225806,0.00000000,5.55000000 +8660,chr22,37388121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,6.28000000 +8661,chr22,37388189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.71000000 +8662,chr22,37388470,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.36000000,0.00000000,,0.22093023,88.00000000,3.89380531,0.02272727,0.00000000,5.93000000 +8663,chr22,37390670,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.88000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.19000000 +8664,chr22,37391285,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,8.79000000 +8665,chr22,37392166,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.29761905,86.00000000,3.80530973,0.01162791,0.00000000,7.24000000 +8666,chr22,37394463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,-0.24000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.69000000 +8667,chr22,37398028,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-2.14000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,6.31000000 +8668,chr22,37399132,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.17000000 +8669,chr22,37399189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.33000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.36000000 +8670,chr22,37399243,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,1.51000000,0.00000000,,0.22857143,74.00000000,3.27433628,0.05405405,0.00000000,2.86000000 +8671,chr22,37400992,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.66000000 +8672,chr22,37403624,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,2.95000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.86000000 +8673,chr22,37403817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,82.00000000,0.00000000,-0.09000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,5.87000000 +8674,chr22,37404129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.31000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +8675,chr22,37406043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.39000000,0.00000000,,0.14018692,108.00000000,4.77876106,0.00925926,0.00000000,5.20000000 +8676,chr22,37406307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.48000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.02197802,0.00000000,4.65000000 +8677,chr22,37407850,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,1.75000000,0.00000000,,0.28767123,77.00000000,3.40707965,0.02597403,0.00000000,6.26000000 +8678,chr22,37409239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,1.86000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.81000000 +8679,chr22,37409835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.14457831,84.00000000,3.71681416,0.01190476,0.00000000,5.56000000 +8680,chr22,37413199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.18000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.76000000 +8681,chr22,37413396,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.67000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,5.61000000 +8682,chr22,37414668,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,1.12000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,5.47000000 +8683,chr22,37416131,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.34000000,0.00000000,,0.15294118,85.00000000,3.76106195,0.00000000,0.00000000,5.89000000 +8684,chr22,37416456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.13000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.20000000 +8685,chr22,37420163,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +8686,chr22,37420899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.02000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.50000000 +8687,chr22,37422201,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.66000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.00000000,0.00000000,2.88000000 +8688,chr22,37422292,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.79000000,0.00000000,,0.24242424,68.00000000,3.00884956,0.02941176,0.00000000,5.61000000 +8689,chr22,37423947,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.39000000,0.00000000,,0.18947368,97.00000000,4.29203540,0.02061856,0.00000000,6.23000000 +8690,chr22,37424776,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,0.99000000,0.00000000,,0.20481928,87.00000000,3.84955752,0.04597701,0.00000000,5.92000000 +8691,chr22,37430598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.51000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.82000000 +8692,chr22,37431160,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.72000000,0.00000000,,0.25842697,92.00000000,4.07079646,0.02173913,0.00000000,5.72000000 +8693,chr22,37435883,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.15000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.46000000 +8694,chr22,37479919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,0.85000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.47000000 +8695,chr22,37484612,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,-0.46000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.05128205,0.00000000,5.48000000 +8696,chr22,37506493,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,79.00000000,0.00000000,-1.12000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.02272727,0.00000000,5.26000000 +8697,chr22,37506919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,0.23000000,0.00000000,,0.10144928,69.00000000,3.05309735,0.00000000,0.00000000,4.89000000 +8698,chr22,37509278,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,0.34000000,0.00000000,,0.14084507,75.00000000,3.31858407,0.05333333,0.00000000,5.00000000 +8699,chr22,37513199,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.28000000,0.00000000,,0.20634921,66.00000000,2.92035398,0.04545455,0.00000000,6.32000000 +8700,chr22,37553313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,75.00000000,0.00000000,-0.55000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.33000000 +8701,chr22,37554117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-2.35000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,5.98000000 +8702,chr22,37556772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.49000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.84000000 +8703,chr22,37556871,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.64000000 +8704,chr22,37557060,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +8705,chr22,37563207,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.22000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.19000000 +8706,chr22,37564358,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.14000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +8707,chr22,37574465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.18309859,83.00000000,3.67256637,0.14457831,0.00000000,5.87000000 +8708,chr22,37581474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,81.00000000,0.00000000,-0.36000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,5.27000000 +8709,chr22,37581706,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,2.30000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +8710,chr22,37583257,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.00000000,0.00000000,,0.22535211,74.00000000,3.27433628,0.04054054,0.00000000,6.01000000 +8711,chr22,37587405,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.89000000,0.00000000,,0.27160494,84.00000000,3.71681416,0.02380952,0.00000000,6.53000000 +8712,chr22,37588516,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,74.00000000,0.00000000,0.44000000,0.00000000,,0.14666667,77.00000000,3.40707965,0.01298701,0.00000000,5.10000000 +8713,chr22,37591677,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,0.71000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.49000000 +8714,chr22,37591809,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.02000000,4.03000000,,0.11111111,64.00000000,2.83185841,0.01562500,0.00000000,3.90000000 +8715,chr22,37593206,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.33000000 +8716,chr22,37593944,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.82000000,0.00000000,,0.20588235,102.00000000,4.51327434,0.00000000,0.00000000,6.41000000 +8717,chr22,37596697,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,0.79000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.01149425,0.00000000,5.94000000 +8718,chr22,37602351,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.43000000,0.00000000,,0.19767442,95.00000000,4.20353982,0.09473684,0.00000000,5.26000000 +8719,chr22,37602558,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.37000000 +8720,chr22,37633716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,73.00000000,0.00000000,-0.61000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,5.91000000 +8721,chr22,37636755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,-0.87000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,5.66000000 +8722,chr22,37638746,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,-0.78000000,0.00000000,,0.27906977,91.00000000,4.02654867,0.04395604,0.00000000,5.78000000 +8723,chr22,37639342,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,71.00000000,0.00000000,0.41000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.23000000 +8724,chr22,37645008,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.65000000,0.00000000,,0.20588235,105.00000000,4.64601770,0.02857143,0.00000000,5.76000000 +8725,chr22,37648490,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,87.00000000,3.84955752,0.02298851,0.00000000,5.97000000 +8726,chr22,37649700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,86.00000000,0.00000000,0.28000000,0.00000000,,0.19417476,106.00000000,4.69026549,0.02830189,0.00000000,5.52000000 +8727,chr22,37655198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.37000000 +8728,chr22,37662079,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.14285714,76.00000000,3.36283186,0.07894737,0.00000000,4.85000000 +8729,chr22,37687094,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,52.00000000,0.00000000,1.05000000,0.00000000,,0.32500000,81.00000000,3.58407080,0.00000000,0.00000000,4.19000000 +8730,chr22,37696885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.79000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,6.16000000 +8731,chr22,37700046,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.68000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,6.18000000 +8732,chr22,37700327,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.19565217,0.00000000,76.00000000,0.00000000,0.89000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.21951220,0.00000000,5.27000000 +8733,chr22,37700690,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,0.84000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,5.95000000 +8734,chr22,37701352,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.64000000 +8735,chr22,37707538,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,77.00000000,0.00000000,-2.60000000,0.00000000,,0.21126761,78.00000000,3.45132743,0.05128205,0.00000000,5.90000000 +8736,chr22,37708602,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,-1.89000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,7.16000000 +8737,chr22,37709246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.54000000 +8738,chr22,37710101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,75.00000000,0.00000000,1.14000000,0.00000000,,0.26027397,79.00000000,3.49557522,0.07594937,0.00000000,5.63000000 +8739,chr22,37713108,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-1.83000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.40000000 +8740,chr22,37717871,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.19000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,4.13000000,,0.10958904,74.00000000,3.27433628,0.01351351,0.00000000,4.16000000 +8741,chr22,37719685,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.58000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.02409639,0.00000000,6.07000000 +8742,chr22,37720772,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,6.66000000 +8743,chr22,37726960,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,67.00000000,0.00000000,-0.70000000,0.00000000,,0.30000000,77.00000000,3.40707965,0.07792208,0.00000000,6.54000000 +8744,chr22,37727357,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.19402985,71.00000000,3.14159292,0.04225352,0.00000000,6.14000000 +8745,chr22,37730575,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.00000000,0.00000000,,0.28333333,63.00000000,2.78761062,0.03174603,0.00000000,6.13000000 +8746,chr22,37731620,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.51000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.90000000 +8747,chr22,37731943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.02000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.34000000 +8748,chr22,37734452,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-1.28000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.62000000 +8749,chr22,37738159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.24000000 +8750,chr22,37740669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,0.27000000,0.00000000,,0.19791667,99.00000000,4.38053097,0.03030303,0.00000000,5.70000000 +8751,chr22,37742372,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.19277108,90.00000000,3.98230088,0.07777778,0.00000000,6.60000000 +8752,chr22,37744345,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.69000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.00000000,0.00000000,7.01000000 +8753,chr22,37748228,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.39000000,0.00000000,,0.12359551,92.00000000,4.07079646,0.03260870,0.00000000,5.14000000 +8754,chr22,37752875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,6.25000000 +8755,chr22,37754183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.41000000,0.00000000,,0.29069767,87.00000000,3.84955752,0.01149425,0.00000000,6.73000000 +8756,chr22,37758683,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.35000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.42000000 +8757,chr22,37762702,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,0.00000000,1.74000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,5.76000000 +8758,chr22,37764787,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.13131313,100.00000000,4.42477876,0.01000000,0.00000000,5.58000000 +8759,chr22,37767006,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.09523810,0.00000000,80.00000000,0.00000000,0.28000000,0.00000000,,0.19354839,99.00000000,4.38053097,0.06060606,0.00000000,5.67000000 +8760,chr22,37768099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,75.00000000,0.00000000,0.26000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.94000000 +8761,chr22,37769580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.28421053,97.00000000,4.29203540,0.01030928,0.00000000,6.64000000 +8762,chr22,37776206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-2.08000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +8763,chr22,37776373,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.51000000 +8764,chr22,37779948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.24000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.02777778,0.00000000,6.06000000 +8765,chr22,37780209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.83000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.59000000 +8766,chr22,37783466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.21000000,0.00000000,,0.25000000,91.00000000,4.02654867,0.02197802,0.00000000,5.99000000 +8767,chr22,37783883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.12000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +8768,chr22,37784480,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,76.00000000,0.00000000,0.66000000,0.00000000,,0.28000000,80.00000000,3.53982301,0.05000000,0.00000000,5.68000000 +8769,chr22,37785108,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.81000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.48000000 +8770,chr22,37786539,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.40000000,14.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,60.00000000,2.65486726,0.03333333,0.00000000,4.33000000 +8771,chr22,37787365,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,47.62000000,37.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.74000000,0.45000000,,0.13888889,38.00000000,1.68141593,0.05263158,0.00000000,3.73000000 +8772,chr22,37787990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.16666667,52.00000000,2.30088496,0.07692308,0.00000000,5.37000000 +8773,chr22,37788678,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.02000000,0.00000000,,0.29411765,87.00000000,3.84955752,0.02298851,0.00000000,6.19000000 +8774,chr22,37788865,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.02247191,0.00000000,6.25000000 +8775,chr22,37789964,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.88000000,0.00000000,,0.25287356,91.00000000,4.02654867,0.04395604,0.00000000,6.27000000 +8776,chr22,37790393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.58000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +8777,chr22,37792277,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,0.12000000,0.00000000,,0.13043478,69.00000000,3.05309735,0.00000000,0.00000000,4.71000000 +8778,chr22,37799589,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.19512195,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.22058824,86.00000000,3.80530973,0.20930233,0.00000000,5.63000000 +8779,chr22,37799789,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,58.00000000,0.00000000,-0.81000000,0.00000000,,0.10204082,61.00000000,2.69911504,0.19672131,0.00000000,3.75000000 +8780,chr22,37799812,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.11864407,65.00000000,2.87610619,0.09230769,0.00000000,5.30000000 +8781,chr22,37800566,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,5.82000000 +8782,chr22,37802307,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,5.63000000 +8783,chr22,37803047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,2.25000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.33000000 +8784,chr22,37804117,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.28000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,7.03000000 +8785,chr22,37807789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,-0.18000000,0.00000000,,0.16666667,87.00000000,3.84955752,0.03448276,0.00000000,5.29000000 +8786,chr22,37808252,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.75000000,0.00000000,,0.14444444,92.00000000,4.07079646,0.01086957,0.00000000,5.87000000 +8787,chr22,37808533,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,-1.91000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.44000000 +8788,chr22,37808633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.11000000,0.00000000,,0.22471910,90.00000000,3.98230088,0.01111111,0.00000000,6.64000000 +8789,chr22,37809777,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.12987013,81.00000000,3.58407080,0.04938272,0.00000000,5.01000000 +8790,chr22,37809887,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.14285714,94.00000000,4.15929204,0.03191489,0.00000000,4.94000000 +8791,chr22,37809982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.00000000,0.00000000,6.42000000 +8792,chr22,37810832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.51000000 +8793,chr22,37811412,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.61000000,0.00000000,,0.16393443,72.00000000,3.18584071,0.15277778,0.00000000,2.86000000 +8794,chr22,37811549,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.92000000,0.00000000,,0.17948718,88.00000000,3.89380531,0.11363636,0.00000000,5.61000000 +8795,chr22,37812253,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.24731183,96.00000000,4.24778761,0.03125000,0.00000000,5.79000000 +8796,chr22,37814556,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.00000000,0.00000000,5.70000000 +8797,chr22,37825025,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,90.00000000,0.00000000,0.69000000,0.00000000,,0.22549020,104.00000000,4.60176991,0.00961538,0.00000000,5.59000000 +8798,chr22,37867986,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.25714286,73.00000000,3.23008850,0.04109589,0.00000000,6.15000000 +8799,chr22,37872915,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,73.00000000,0.00000000,2.49000000,0.00000000,,0.16000000,102.00000000,4.51327434,0.01960784,0.00000000,4.94000000 +8800,chr22,37876922,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.29000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.19000000 +8801,chr22,37877296,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.02816901,0.00000000,6.25000000 +8802,chr22,37877742,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,58.00000000,0.00000000,0.96000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,3.69000000 +8803,chr22,37882772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.81000000 +8804,chr22,37882773,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.10000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.52000000 +8805,chr22,37882805,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,1.18000000,0.00000000,,0.19047619,87.00000000,3.84955752,0.03448276,0.00000000,6.38000000 +8806,chr22,37884304,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,-0.80000000,0.00000000,,0.20388350,103.00000000,4.55752212,0.00000000,0.00000000,6.70000000 +8807,chr22,37887598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,5.95000000 +8808,chr22,37889293,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.05000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.02127660,0.00000000,6.24000000 +8809,chr22,37890137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.18000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,6.60000000 +8810,chr22,37895067,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.35000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,7.08000000 +8811,chr22,37895658,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,60.00000000,0.00000000,-0.54000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.01000000 +8812,chr22,37896967,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.06000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.50000000 +8813,chr22,37897419,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.24000000,0.00000000,,0.28395062,83.00000000,3.67256637,0.02409639,0.00000000,6.30000000 +8814,chr22,37899510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.40000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.26000000 +8815,chr22,37900161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.41000000 +8816,chr22,37900976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.24000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,5.55000000 +8817,chr22,37901256,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.15476190,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +8818,chr22,37904467,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,86.00000000,0.00000000,-0.45000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.09000000 +8819,chr22,37904960,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.11904762,87.00000000,3.84955752,0.01149425,0.00000000,5.21000000 +8820,chr22,37908851,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +8821,chr22,37910699,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +8822,chr22,37910764,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,6.62000000 +8823,chr22,37911902,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,0.00000000,0.69000000,0.00000000,,0.31111111,91.00000000,4.02654867,0.00000000,0.00000000,6.88000000 +8824,chr22,37912284,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,2.02000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.69000000 +8825,chr22,37912987,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.33000000,0.00000000,,0.21311475,68.00000000,3.00884956,0.08823529,0.00000000,5.69000000 +8826,chr22,37913931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,63.00000000,0.00000000,0.68000000,0.00000000,,0.07692308,90.00000000,3.98230088,0.13333333,0.00000000,4.63000000 +8827,chr22,37916413,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,68.00000000,0.00000000,0.72000000,0.00000000,,0.08910891,103.00000000,4.55752212,0.01941748,0.00000000,4.76000000 +8828,chr22,37916720,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,0.93000000,0.00000000,,0.17647059,102.00000000,4.51327434,0.00000000,0.00000000,6.17000000 +8829,chr22,37918171,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,93.00000000,0.00000000,-0.10000000,0.00000000,,0.26262626,99.00000000,4.38053097,0.00000000,0.00000000,6.59000000 +8830,chr22,37919462,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.03191489,0.00000000,5.91000000 +8831,chr22,37923349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.19148936,95.00000000,4.20353982,0.01052632,0.00000000,6.63000000 +8832,chr22,37926343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-0.32000000,0.00000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,6.01000000 +8833,chr22,37926388,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.62000000 +8834,chr22,37928316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.53000000,0.00000000,,0.26086957,74.00000000,3.27433628,0.05405405,0.00000000,6.35000000 +8835,chr22,37933278,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.33000000,0.00000000,,0.12903226,64.00000000,2.83185841,0.03125000,0.00000000,5.25000000 +8836,chr22,37933517,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.23000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.84000000 +8837,chr22,37934916,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.87000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,-0.61000000,0.00000000,,0.20588235,72.00000000,3.18584071,0.04166667,0.00000000,5.85000000 +8838,chr22,37935227,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.68000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,5.86000000 +8839,chr22,37936008,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.18000000,0.00000000,,0.27419355,63.00000000,2.78761062,0.01587302,0.00000000,6.77000000 +8840,chr22,37948046,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.03333333,0.00000000,5.25000000 +8841,chr22,37948047,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.03278689,0.00000000,5.13000000 +8842,chr22,37955678,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,88.00000000,0.00000000,0.77000000,0.00000000,,0.32558140,86.00000000,3.80530973,0.00000000,0.00000000,8.17000000 +8843,chr22,37968198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,2.36000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,5.73000000 +8844,chr22,37968332,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.43000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,6.09000000 +8845,chr22,37971233,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,1.75000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.28000000 +8846,chr22,38004802,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,1.17000000,0.00000000,,0.12068966,59.00000000,2.61061947,0.01694915,0.00000000,4.89000000 +8847,chr22,38025356,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.27000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.84000000 +8848,chr22,38039466,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,0.00000000,-0.68000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.32000000 +8849,chr22,38064481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.82000000,0.00000000,,0.14062500,64.00000000,2.83185841,0.00000000,0.00000000,6.24000000 +8850,chr22,38068017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.57000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.56000000 +8851,chr22,38111811,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,-0.61000000,0.00000000,,0.16822430,108.00000000,4.77876106,0.00925926,0.00000000,5.72000000 +8852,chr22,38118547,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,-0.85000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.26000000 +8853,chr22,38123682,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.06451613,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,1.01000000,0.00000000,,0.26250000,83.00000000,3.67256637,0.03614458,0.00000000,6.15000000 +8854,chr22,38123834,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.10000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.80000000 +8855,chr22,38124825,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,2.00000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +8856,chr22,38125081,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.14000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.22000000 +8857,chr22,38130083,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.88000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +8858,chr22,38134600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.90000000,0.00000000,,0.25000000,65.00000000,2.87610619,0.01538462,0.00000000,6.67000000 +8859,chr22,38134949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,54.00000000,0.00000000,1.53000000,0.00000000,,0.31666667,61.00000000,2.69911504,0.01639344,0.00000000,3.48000000 +8860,chr22,38137314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,76.00000000,0.00000000,-0.49000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.17000000 +8861,chr22,38140461,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.18055556,75.00000000,3.31858407,0.04000000,0.00000000,6.04000000 +8862,chr22,38149724,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.95000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.38000000 +8863,chr22,38149884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.86000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.29000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.73000000 +8864,chr22,38152509,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,1.10000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +8865,chr22,38152545,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.60000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.26000000 +8866,chr22,38152582,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.80000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +8867,chr22,38152838,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.17582418,94.00000000,4.15929204,0.02127660,0.00000000,5.74000000 +8868,chr22,38152957,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,0.00000000,-0.91000000,0.00000000,,0.16901408,76.00000000,3.36283186,0.05263158,0.00000000,5.77000000 +8869,chr22,38153366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,0.00000000,-0.29000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +8870,chr22,38153592,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,71.00000000,0.00000000,-1.33000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.12987013,0.00000000,5.79000000 +8871,chr22,38153941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,78.00000000,0.00000000,-0.19000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,5.56000000 +8872,chr22,38153962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.02631579,0.00000000,5.20000000 +8873,chr22,38154166,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.03000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,6.43000000 +8874,chr22,38156523,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-0.53000000,0.00000000,,0.14102564,82.00000000,3.62831858,0.04878049,0.00000000,5.49000000 +8875,chr22,38156848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.62000000,0.00000000,,0.16853933,90.00000000,3.98230088,0.01111111,0.00000000,6.25000000 +8876,chr22,38157147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,0.18000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.05000000,0.00000000,5.69000000 +8877,chr22,38163072,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.29000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.15000000 +8878,chr22,38164738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.16000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +8879,chr22,38164904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.53000000,4.13000000,,0.12162162,75.00000000,3.31858407,0.01333333,0.00000000,3.90000000 +8880,chr22,38165516,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.81000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.00000000,0.00000000,6.41000000 +8881,chr22,38165752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,97.00000000,0.00000000,0.16000000,0.00000000,,0.26881720,95.00000000,4.20353982,0.02105263,0.00000000,5.35000000 +8882,chr22,38165797,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,1.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,100.00000000,0.00000000,-0.31000000,0.00000000,,0.28846154,107.00000000,4.73451327,0.02803738,0.00000000,5.27000000 +8883,chr22,38166091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.59000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +8884,chr22,38166120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.13000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +8885,chr22,38166251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.17000000 +8886,chr22,38166272,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.20000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +8887,chr22,38166314,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-1.91000000,0.00000000,,0.24210526,96.00000000,4.24778761,0.01041667,0.00000000,6.21000000 +8888,chr22,38166478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-1.39000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.22000000 +8889,chr22,38166917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.50000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +8890,chr22,38167176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,63.00000000,0.00000000,0.62000000,0.00000000,,0.12903226,82.00000000,3.62831858,0.24390244,0.00000000,4.54000000 +8891,chr22,38167183,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,63.00000000,0.00000000,1.35000000,0.00000000,,0.11864407,80.00000000,3.53982301,0.26250000,0.00000000,4.36000000 +8892,chr22,38167215,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,65.00000000,0.00000000,-0.45000000,0.00000000,,0.15254237,83.00000000,3.67256637,0.28915663,0.00000000,5.32000000 +8893,chr22,38167290,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,-0.49000000,0.00000000,,0.25263158,98.00000000,4.33628319,0.03061224,0.00000000,5.99000000 +8894,chr22,38167534,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,5.41000000 +8895,chr22,38167541,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.16000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,5.47000000 +8896,chr22,38167565,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,5.64000000 +8897,chr22,38167965,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-0.40000000,0.00000000,,0.20212766,99.00000000,4.38053097,0.04040404,0.00000000,6.30000000 +8898,chr22,38169697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,1.05000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +8899,chr22,38170324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.03658537,0.00000000,6.05000000 +8900,chr22,38170661,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.27160494,81.00000000,3.58407080,0.00000000,0.00000000,5.91000000 +8901,chr22,38170942,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.27777778,75.00000000,3.31858407,0.04000000,0.00000000,6.96000000 +8902,chr22,38170945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.35000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.02597403,0.00000000,6.98000000 +8903,chr22,38171033,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.26000000,0.00000000,,0.21538462,69.00000000,3.05309735,0.04347826,0.00000000,6.48000000 +8904,chr22,38171071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,67.00000000,0.00000000,-1.40000000,0.00000000,,0.22580645,71.00000000,3.14159292,0.11267606,0.00000000,5.82000000 +8905,chr22,38171325,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.59000000 +8906,chr22,38171333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.02000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.30000000 +8907,chr22,38171618,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.43000000,0.00000000,,0.24528302,53.00000000,2.34513274,0.00000000,0.00000000,7.09000000 +8908,chr22,38171664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,6.99000000 +8909,chr22,38171783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,68.00000000,0.00000000,2.00000000,0.00000000,,0.17808219,87.00000000,3.84955752,0.16091954,0.00000000,5.55000000 +8910,chr22,38171789,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,66.00000000,0.00000000,-0.38000000,0.00000000,,0.16216216,86.00000000,3.80530973,0.13953488,0.00000000,5.30000000 +8911,chr22,38171792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,64.00000000,0.00000000,-0.22000000,0.00000000,,0.15068493,87.00000000,3.84955752,0.16091954,0.00000000,5.26000000 +8912,chr22,38172087,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.97000000 +8913,chr22,38172458,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,-1.62000000,0.00000000,,0.16494845,98.00000000,4.33628319,0.01020408,0.00000000,5.94000000 +8914,chr22,38172688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.13333333,79.00000000,3.49557522,0.03797468,0.00000000,4.96000000 +8915,chr22,38172696,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.60000000,0.00000000,,0.15277778,77.00000000,3.40707965,0.06493506,0.00000000,5.36000000 +8916,chr22,38173550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.18918919,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +8917,chr22,38176477,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.43000000 +8918,chr22,38176665,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.84000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.00000000,0.00000000,5.96000000 +8919,chr22,38177632,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.12000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,6.09000000 +8920,chr22,38177652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.72000000,0.00000000,,0.27118644,60.00000000,2.65486726,0.01666667,0.00000000,6.34000000 +8921,chr22,38177698,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,1.66000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.79000000 +8922,chr22,38178896,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-3.06000000,0.00000000,,0.19607843,106.00000000,4.69026549,0.02830189,0.00000000,6.82000000 +8923,chr22,38179405,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.15492958,75.00000000,3.31858407,0.04000000,0.00000000,5.63000000 +8924,chr22,38187459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.22000000,101.00000000,4.46902655,0.00990099,0.00000000,6.87000000 +8925,chr22,38187469,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.32000000,0.00000000,,0.22330097,103.00000000,4.55752212,0.00000000,0.00000000,6.36000000 +8926,chr22,38188697,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.58000000,0.00000000,,0.25000000,49.00000000,2.16814159,0.02040816,0.00000000,6.70000000 +8927,chr22,38191377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,-0.28000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.23000000 +8928,chr22,38191755,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.17431193,112.00000000,4.95575221,0.02678571,0.00000000,5.82000000 +8929,chr22,38191826,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,80.00000000,0.00000000,-1.43000000,0.00000000,,0.18269231,105.00000000,4.64601770,0.00952381,0.00000000,5.94000000 +8930,chr22,38192023,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,-0.06000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.58000000 +8931,chr22,38192095,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.32000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +8932,chr22,38192577,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.62000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,5.74000000 +8933,chr22,38192703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.37000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +8934,chr22,38193357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,96.00000000,0.00000000,-0.55000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,5.62000000 +8935,chr22,38195479,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,0.50000000,0.00000000,,0.25925926,57.00000000,2.52212389,0.05263158,0.00000000,5.66000000 +8936,chr22,38195673,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,45.00000000,0.00000000,-0.64000000,0.00000000,,0.32608696,49.00000000,2.16814159,0.04081633,0.00000000,4.37000000 +8937,chr22,38200052,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.18000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.34000000 +8938,chr22,38204948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,2.22000000,0.00000000,,0.25581395,93.00000000,4.11504425,0.07526882,0.00000000,6.15000000 +8939,chr22,38215291,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.19000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,6.34000000 +8940,chr22,38253343,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.78000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,6.90000000 +8941,chr22,38280831,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,28.00000000,0.00000000,0.72000000,0.00000000,,0.47058824,52.00000000,2.30088496,0.01923077,0.00000000,3.38000000 +8942,chr22,38281815,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.19000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,7.66000000 +8943,chr22,38281961,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,57.00000000,0.00000000,0.34000000,0.00000000,,0.36842105,57.00000000,2.52212389,0.00000000,0.00000000,4.39000000 +8944,chr22,38282381,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,0.00000000,-0.36000000,0.00000000,,0.35714286,57.00000000,2.52212389,0.01754386,0.00000000,4.53000000 +8945,chr22,38282445,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,51.00000000,0.00000000,-0.21000000,0.00000000,,0.39285714,56.00000000,2.47787611,0.00000000,0.00000000,4.68000000 +8946,chr22,38282657,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,52.00000000,0.00000000,0.59000000,0.00000000,,0.35593220,59.00000000,2.61061947,0.00000000,0.00000000,4.33000000 +8947,chr22,38282740,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-0.24000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,8.09000000 +8948,chr22,38282969,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,65.00000000,0.00000000,-2.14000000,0.00000000,,0.39215686,58.00000000,2.56637168,0.10344828,0.00000000,8.25000000 +8949,chr22,38283063,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,0.22000000,0.00000000,,0.37878788,68.00000000,3.00884956,0.01470588,0.00000000,8.37000000 +8950,chr22,38283067,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.37500000,67.00000000,2.96460177,0.02985075,0.00000000,7.85000000 +8951,chr22,38283399,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.23000000,0.00000000,,0.48750000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +8952,chr22,38283775,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.44000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.40000000 +8953,chr22,38286885,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.49000000,0.00000000,,0.43037975,84.00000000,3.71681416,0.04761905,0.00000000,7.76000000 +8954,chr22,38290229,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.68000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.25000000 +8955,chr22,38303667,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,-0.31000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,5.59000000 +8956,chr22,38304943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.31000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,5.79000000 +8957,chr22,38305633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,85.00000000,0.00000000,-0.10000000,0.00000000,,0.29545455,89.00000000,3.93805310,0.01123596,0.00000000,6.03000000 +8958,chr22,38305972,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,1.37000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.58000000 +8959,chr22,38307101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.94000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.00000000 +8960,chr22,38319217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,2.05000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.36000000 +8961,chr22,38320633,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.57000000,0.00000000,,0.26666667,76.00000000,3.36283186,0.01315789,0.00000000,6.55000000 +8962,chr22,38323184,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.16000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.61000000 +8963,chr22,38323957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-1.23000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.23000000 +8964,chr22,38324429,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-0.37000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,5.29000000 +8965,chr22,38328127,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-0.40000000,0.00000000,,0.28395062,84.00000000,3.71681416,0.02380952,0.00000000,6.13000000 +8966,chr22,38339359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.50000000,0.00000000,,0.23232323,99.00000000,4.38053097,0.00000000,0.00000000,6.72000000 +8967,chr22,38339563,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,58.60000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.01086957,0.00000000,6.27000000 +8968,chr22,38339858,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.84000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-1.35000000,0.00000000,,0.18571429,73.00000000,3.23008850,0.02739726,0.00000000,6.29000000 +8969,chr22,38345691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-0.23000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.23000000 +8970,chr22,38359223,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.04000000,4.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,-0.62000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.33000000 +8971,chr22,38368564,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.15000000,4.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,79.00000000,0.00000000,0.86000000,0.00000000,,0.17647059,105.00000000,4.64601770,0.02857143,0.00000000,5.15000000 +8972,chr22,38389058,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.53000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-2.02000000,0.00000000,,0.10606061,66.00000000,2.92035398,0.00000000,0.00000000,5.58000000 +8973,chr22,38389502,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,33.00000000,1.46017699,0.09090909,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.19277108,92.00000000,4.07079646,0.09782609,0.00000000,5.82000000 +8974,chr22,38391684,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,70.00000000,0.00000000,-0.18000000,0.00000000,,0.10869565,95.00000000,4.20353982,0.03157895,0.00000000,4.33000000 +8975,chr22,38391698,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.03000000,4.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,0.00000000,-0.09000000,0.00000000,,0.11494253,88.00000000,3.89380531,0.01136364,0.00000000,4.48000000 +8976,chr22,38393671,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.30000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,0.00000000,0.03000000,0.00000000,,0.22330097,104.00000000,4.60176991,0.00961538,0.00000000,6.38000000 +8977,chr22,38393931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.73000000,6.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,79.00000000,0.00000000,0.08000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.17000000 +8978,chr22,38394126,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,57.92000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,98.00000000,0.00000000,-0.67000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,5.98000000 +8979,chr22,38394523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.86000000,5.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,80.00000000,0.00000000,1.59000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.28000000 +8980,chr22,38394755,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.48000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.88000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,5.99000000 +8981,chr22,38397262,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.03571429,0.00000000,4.86000000 +8982,chr22,38398655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.82000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.01492537,0.00000000,6.52000000 +8983,chr22,38399265,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.31034483,61.00000000,2.69911504,0.04918033,0.00000000,5.66000000 +8984,chr22,38399618,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.35000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,5.85000000 +8985,chr22,38400154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,80.00000000,0.00000000,-0.31000000,0.00000000,,0.18627451,102.00000000,4.51327434,0.00000000,0.00000000,6.37000000 +8986,chr22,38400415,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.14000000 +8987,chr22,38400624,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,56.18000000,15.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,1.04000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.08000000 +8988,chr22,38400781,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,-1.38000000,0.00000000,,0.19587629,100.00000000,4.42477876,0.02000000,0.00000000,6.08000000 +8989,chr22,38402182,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.96000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.37000000 +8990,chr22,38417128,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,-0.17000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.70000000 +8991,chr22,38436554,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.75000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.01111111,0.00000000,5.92000000 +8992,chr22,38465341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +8993,chr22,38466623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-1.37000000,0.00000000,,0.13333333,63.00000000,2.78761062,0.04761905,0.00000000,5.43000000 +8994,chr22,38467001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.68000000 +8995,chr22,38469963,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,80.00000000,0.00000000,1.17000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +8996,chr22,38524891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-0.24000000,0.00000000,,0.19696970,69.00000000,3.05309735,0.02898551,0.00000000,6.28000000 +8997,chr22,38573411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,77.00000000,0.00000000,1.32000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.53000000 +8998,chr22,38596093,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,90.00000000,0.00000000,0.78000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.35000000 +8999,chr22,38720701,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,94.00000000,0.00000000,-0.37000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,8.36000000 +9000,chr22,38737314,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.91000000 +9001,chr22,38761379,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.16666667,82.00000000,3.62831858,0.04878049,0.00000000,5.73000000 +9002,chr22,38761399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.03000000,0.00000000,,0.13580247,85.00000000,3.76106195,0.04705882,0.00000000,5.08000000 +9003,chr22,38761882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.09000000,10.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.25531915,0.00000000,65.00000000,0.00000000,-0.22000000,0.89000000,,0.08750000,105.00000000,4.64601770,0.23809524,0.00943396,3.03000000 +9004,chr22,38762931,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.13000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.63000000 +9005,chr22,38763719,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-2.20000000,0.00000000,,0.26470588,71.00000000,3.14159292,0.02816901,0.00000000,6.43000000 +9006,chr22,38775890,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.11000000,0.00000000,,0.21875000,96.00000000,4.24778761,0.00000000,0.00000000,6.72000000 +9007,chr22,38785591,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,0.19000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.73000000 +9008,chr22,38808556,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.37000000,3.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,94.00000000,0.00000000,-0.86000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.01086957,0.00000000,6.39000000 +9009,chr22,38814101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,1.07000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.21000000 +9010,chr22,38817322,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.35000000,0.00000000,,0.23287671,75.00000000,3.31858407,0.01333333,0.00000000,6.03000000 +9011,chr22,38820662,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.13000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,5.89000000 +9012,chr22,38823927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,95.00000000,0.00000000,-0.37000000,0.00000000,,0.28125000,98.00000000,4.33628319,0.02040816,0.00000000,5.31000000 +9013,chr22,38875210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9014,chr22,38875612,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.09756098,0.00000000,80.00000000,0.00000000,0.61000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.17441860,0.00000000,5.73000000 +9015,chr22,38885631,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.29000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.75000000 +9016,chr22,38885769,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.00000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.65000000 +9017,chr22,38886013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.53000000,0.00000000,,0.22772277,103.00000000,4.55752212,0.00970874,0.00000000,6.07000000 +9018,chr22,38890772,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-2.07000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,7.00000000 +9019,chr22,38893646,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.27777778,90.00000000,3.98230088,0.00000000,0.00000000,6.76000000 +9020,chr22,38898639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.31000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.44000000 +9021,chr22,38898954,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.82000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.06000000 +9022,chr22,38902771,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,83.00000000,0.00000000,-0.49000000,0.00000000,,0.18446602,105.00000000,4.64601770,0.01904762,0.00000000,5.64000000 +9023,chr22,38904260,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.72000000 +9024,chr22,38906189,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.27000000,0.00000000,,0.24731183,94.00000000,4.15929204,0.01063830,0.00000000,6.56000000 +9025,chr22,38908504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,0.00000000,-0.54000000,0.00000000,,0.33333333,59.00000000,2.61061947,0.06779661,0.00000000,4.72000000 +9026,chr22,38968338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.75000000 +9027,chr22,38972379,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.31000000,0.00000000,,0.13114754,62.00000000,2.74336283,0.01612903,0.00000000,4.39000000 +9028,chr22,38976126,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.10204082,69.00000000,3.05309735,0.28985507,0.00000000,4.15000000 +9029,chr22,38976790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.80000000,0.00000000,,0.15277778,78.00000000,3.45132743,0.06410256,0.00000000,5.33000000 +9030,chr22,38977160,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,0.00000000,0.38000000,0.00000000,,0.20952381,113.00000000,5.00000000,0.05309735,0.00000000,5.91000000 +9031,chr22,38978131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.89000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.96000000 +9032,chr22,38988727,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.97000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,-3.04000000,0.00000000,,0.18181818,59.00000000,2.61061947,0.06779661,0.00000000,5.08000000 +9033,chr22,38990814,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.70000000,17.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.82000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.89000000 +9034,chr22,38993439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.21875000,66.00000000,2.92035398,0.03030303,0.00000000,6.39000000 +9035,chr22,38993440,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.02985075,0.00000000,6.38000000 +9036,chr22,38996245,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.52000000,0.00000000,,0.14285714,86.00000000,3.80530973,0.02325581,0.00000000,5.51000000 +9037,chr22,38996803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.49000000,0.00000000,,0.19767442,88.00000000,3.89380531,0.02272727,0.00000000,6.06000000 +9038,chr22,38997429,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.59000000,0.00000000,,0.24705882,87.00000000,3.84955752,0.02298851,0.00000000,6.27000000 +9039,chr22,38998416,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.99000000,7.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.86000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.00000000 +9040,chr22,38999381,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.06000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.04878049,0.00000000,6.45000000 +9041,chr22,39008817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.84000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.16000000 +9042,chr22,39009801,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,91.00000000,0.00000000,1.35000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00990099,0.00000000,6.25000000 +9043,chr22,39010932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,-2.13000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,5.71000000 +9044,chr22,39011824,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,0.02000000,0.00000000,,0.23595506,92.00000000,4.07079646,0.03260870,0.00000000,5.70000000 +9045,chr22,39012316,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,-0.33000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,5.80000000 +9046,chr22,39012935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,1.24000000,0.00000000,,0.25316456,82.00000000,3.62831858,0.03658537,0.00000000,5.73000000 +9047,chr22,39013373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.27000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.02000000 +9048,chr22,39018235,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.54000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.61000000 +9049,chr22,39018929,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,0.00000000,-1.63000000,0.00000000,,0.22549020,113.00000000,5.00000000,0.08849558,0.00000000,5.88000000 +9050,chr22,39036151,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.41000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,-0.99000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.24000000 +9051,chr22,39050368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,45.99000000,36.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.11764706,53.00000000,2.34513274,0.03773585,0.00000000,5.07000000 +9052,chr22,39082393,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-0.01000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.02000000 +9053,chr22,39085972,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,5.27000000 +9054,chr22,39088005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.17000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.47000000 +9055,chr22,39092388,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.37000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +9056,chr22,39094305,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,1.43000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,5.85000000 +9057,chr22,39094749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.55000000,0.00000000,,0.19298246,61.00000000,2.69911504,0.06557377,0.00000000,5.55000000 +9058,chr22,39094916,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,0.43000000,0.00000000,,0.10843373,86.00000000,3.80530973,0.02325581,0.00000000,4.62000000 +9059,chr22,39095056,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,1.55000000,0.00000000,,0.09523810,86.00000000,3.80530973,0.02325581,0.00000000,4.61000000 +9060,chr22,39095128,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-2.27000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +9061,chr22,39096128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.65000000,0.00000000,,0.18627451,103.00000000,4.55752212,0.00000000,0.00000000,7.09000000 +9062,chr22,39096565,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,2.51000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.01030928,0.00000000,5.56000000 +9063,chr22,39096882,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,1.09000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.20000000 +9064,chr22,39096894,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.70000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.40000000 +9065,chr22,39096929,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.65000000 +9066,chr22,39096959,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,1.02000000,0.00000000,,0.15714286,75.00000000,3.31858407,0.06666667,0.00000000,5.37000000 +9067,chr22,39097031,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-0.18000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,5.12000000 +9068,chr22,39097246,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,1.26000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.00000000,0.00000000,6.20000000 +9069,chr22,39097289,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.84000000,0.00000000,,0.11428571,71.00000000,3.14159292,0.00000000,0.01388889,5.24000000 +9070,chr22,39097351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.88000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.92000000 +9071,chr22,39097536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.03000000 +9072,chr22,39097550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,0.77000000,0.00000000,,0.15000000,83.00000000,3.67256637,0.02409639,0.00000000,4.75000000 +9073,chr22,39097592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-1.32000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,6.14000000 +9074,chr22,39097893,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,0.89000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.84000000 +9075,chr22,39098876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.09000000,0.00000000,,0.19417476,105.00000000,4.64601770,0.01904762,0.00000000,6.31000000 +9076,chr22,39099496,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.48000000,0.00000000,,0.14117647,89.00000000,3.93805310,0.03370787,0.00000000,5.30000000 +9077,chr22,39099558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.03370787,0.00000000,5.57000000 +9078,chr22,39100658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,-1.18000000,0.00000000,,0.24444444,92.00000000,4.07079646,0.02173913,0.00000000,5.81000000 +9079,chr22,39100739,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.19000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +9080,chr22,39100897,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,-0.16000000,0.00000000,,0.19178082,77.00000000,3.40707965,0.05194805,0.00000000,5.98000000 +9081,chr22,39110197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-0.87000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.28000000 +9082,chr22,39111474,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,1.38000000,0.00000000,,0.24731183,93.00000000,4.11504425,0.00000000,0.00000000,6.45000000 +9083,chr22,39111915,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.47000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.30000000 +9084,chr22,39123406,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.86000000 +9085,chr22,39131785,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,90.00000000,0.00000000,0.82000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,5.96000000 +9086,chr22,39131792,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,88.00000000,0.00000000,-0.16000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.52000000 +9087,chr22,39131809,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,-1.06000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.61000000 +9088,chr22,39131904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.54000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,6.72000000 +9089,chr22,39132435,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.94000000 +9090,chr22,39133424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.93000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.01204819,0.00000000,6.22000000 +9091,chr22,39134127,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.87000000 +9092,chr22,39134854,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.17073171,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.19117647,88.00000000,3.89380531,0.21590909,0.00000000,5.48000000 +9093,chr22,39135727,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,0.49000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.11000000 +9094,chr22,39136415,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.95000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,5.74000000 +9095,chr22,39136513,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.39000000 +9096,chr22,39139590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.17857143,64.00000000,2.83185841,0.12500000,0.00000000,5.50000000 +9097,chr22,39141867,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-0.20000000,0.00000000,,0.16129032,99.00000000,4.38053097,0.05050505,0.00000000,5.58000000 +9098,chr22,39142480,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.44000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,6.66000000 +9099,chr22,39143368,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,92.00000000,0.00000000,-1.23000000,0.00000000,,0.20000000,116.00000000,5.13274336,0.00862069,0.00000000,5.31000000 +9100,chr22,39144522,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,59.00000000,0.00000000,-0.21000000,0.00000000,,0.12244898,100.00000000,4.42477876,0.00000000,0.00000000,3.51000000 +9101,chr22,39145009,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,0.73000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.03370787,0.00000000,6.04000000 +9102,chr22,39146287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,0.08000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9103,chr22,39146387,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.92000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +9104,chr22,39148965,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,91.00000000,0.00000000,1.16000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.02020202,0.00000000,5.03000000 +9105,chr22,39149391,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,-0.02000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.25000000 +9106,chr22,39150069,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,1.82000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +9107,chr22,39150140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.71000000,0.00000000,,0.16000000,100.00000000,4.42477876,0.00000000,0.00000000,5.14000000 +9108,chr22,39151016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,4.90000000 +9109,chr22,39151196,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.15306122,103.00000000,4.55752212,0.04854369,0.00000000,4.78000000 +9110,chr22,39151682,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-0.41000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.35000000 +9111,chr22,39151957,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.49000000,0.00000000,,0.26315789,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +9112,chr22,39152022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.22222222,68.00000000,3.00884956,0.04411765,0.00000000,6.29000000 +9113,chr22,39153421,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +9114,chr22,39153521,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-0.61000000,0.00000000,,0.30927835,102.00000000,4.51327434,0.04901961,0.00000000,6.60000000 +9115,chr22,39155793,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.50000000 +9116,chr22,39156070,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,-1.24000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.25000000 +9117,chr22,39156592,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.92000000,0.00000000,,0.19718310,75.00000000,3.31858407,0.05333333,0.00000000,2.84000000 +9118,chr22,39156883,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +9119,chr22,39157767,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.30000000 +9120,chr22,39157814,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.45000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +9121,chr22,39161157,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.39000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.26000000 +9122,chr22,39161335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,0.80000000,0.00000000,,0.15625000,99.00000000,4.38053097,0.02020202,0.00000000,5.46000000 +9123,chr22,39161591,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.61000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.00000000,0.00000000,6.39000000 +9124,chr22,39161607,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.79000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +9125,chr22,39161725,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,2.12000000,0.00000000,,0.15238095,105.00000000,4.64601770,0.00000000,0.00000000,5.04000000 +9126,chr22,39163737,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-1.03000000,0.00000000,,0.14925373,67.00000000,2.96460177,0.00000000,0.00000000,6.48000000 +9127,chr22,39174623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.02061856,0.00000000,5.70000000 +9128,chr22,39181280,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,-1.93000000,0.00000000,,0.12621359,105.00000000,4.64601770,0.00952381,0.00000000,6.13000000 +9129,chr22,39186306,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.22727273,68.00000000,3.00884956,0.02941176,0.00000000,5.75000000 +9130,chr22,39186504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.90000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.72000000 +9131,chr22,39190978,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.12500000,89.00000000,3.93805310,0.00000000,0.00000000,5.40000000 +9132,chr22,39193925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.65000000 +9133,chr22,39194095,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.32352941,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.28888889,74.00000000,3.27433628,0.39189189,0.00000000,5.53000000 +9134,chr22,39194312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.06000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,6.41000000 +9135,chr22,39194325,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.87000000,0.00000000,,0.22352941,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +9136,chr22,39194380,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.79000000,0.00000000,,0.23404255,94.00000000,4.15929204,0.00000000,0.00000000,6.70000000 +9137,chr22,39194526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.29000000,0.00000000,,0.12676056,74.00000000,3.27433628,0.04054054,0.00000000,5.34000000 +9138,chr22,39194616,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +9139,chr22,39194648,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.15000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.59000000 +9140,chr22,39194749,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,91.00000000,0.00000000,-1.13000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.55000000 +9141,chr22,39194881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.79000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.89000000 +9142,chr22,39195236,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9143,chr22,39195397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.61000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.77000000 +9144,chr22,39195993,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.08108108,82.00000000,3.62831858,0.09756098,0.00000000,3.80000000 +9145,chr22,39196064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.86000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.75000000 +9146,chr22,39196104,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.83000000,0.00000000,,0.16279070,89.00000000,3.93805310,0.02247191,0.00000000,5.65000000 +9147,chr22,39196126,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.88000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +9148,chr22,39196176,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.17525773,99.00000000,4.38053097,0.02020202,0.00000000,6.01000000 +9149,chr22,39196249,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.27000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9150,chr22,39196276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.62000000 +9151,chr22,39196299,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.80000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +9152,chr22,39196827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.71000000,0.00000000,,0.22388060,67.00000000,2.96460177,0.00000000,0.00000000,6.22000000 +9153,chr22,39196875,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.93000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.33000000 +9154,chr22,39196876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.85000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +9155,chr22,39197090,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-0.05000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,6.32000000 +9156,chr22,39197470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,93.00000000,0.00000000,-1.76000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.45000000 +9157,chr22,39198735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.49000000,0.00000000,,0.19540230,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +9158,chr22,39199013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,1.21000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,6.10000000 +9159,chr22,39199057,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9160,chr22,39199147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.00000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.01298701,0.00000000,6.40000000 +9161,chr22,39199155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.16666667,81.00000000,3.58407080,0.03703704,0.00000000,5.32000000 +9162,chr22,39199208,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.58000000,0.00000000,,0.14814815,85.00000000,3.76106195,0.04705882,0.00000000,5.32000000 +9163,chr22,39199863,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,81.00000000,0.00000000,0.31000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.19000000 +9164,chr22,39200021,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.73000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,7.18000000 +9165,chr22,39200344,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.06000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,6.27000000 +9166,chr22,39200629,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.29000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.97000000 +9167,chr22,39200699,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,1.08000000,0.00000000,,0.27777778,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +9168,chr22,39200716,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,1.32000000,0.00000000,,0.30000000,71.00000000,3.14159292,0.00000000,0.00000000,6.50000000 +9169,chr22,39201333,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.29000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.61000000 +9170,chr22,39201376,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,0.00000000,1.69000000,0.00000000,,0.10638298,47.00000000,2.07964602,0.00000000,0.00000000,4.75000000 +9171,chr22,39201460,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.91000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.51000000 +9172,chr22,39201483,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-1.08000000,0.00000000,,0.14285714,71.00000000,3.14159292,0.01408451,0.00000000,5.74000000 +9173,chr22,39203740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,82.00000000,0.00000000,-1.51000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.02469136,0.00000000,5.48000000 +9174,chr22,39203939,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,0.56000000,0.00000000,,0.20430108,101.00000000,4.46902655,0.06930693,0.00000000,6.29000000 +9175,chr22,39204104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.54000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.00000000,5.72000000 +9176,chr22,39225591,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,0.65000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.12000000 +9177,chr22,39247092,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.68000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.00000000,0.00000000,6.58000000 +9178,chr22,39248517,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.69000000 +9179,chr22,39249542,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,77.00000000,0.00000000,1.73000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,5.64000000 +9180,chr22,39258137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.25842697,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +9181,chr22,39260999,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-1.04000000,0.00000000,,0.29213483,90.00000000,3.98230088,0.01111111,0.00000000,7.04000000 +9182,chr22,39262953,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.93000000,0.00000000,,0.16326531,99.00000000,4.38053097,0.01010101,0.00000000,5.16000000 +9183,chr22,39263455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-0.19000000,0.00000000,,0.20952381,105.00000000,4.64601770,0.00000000,0.00000000,6.17000000 +9184,chr22,39265592,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,1.60000000,0.00000000,,0.13333333,106.00000000,4.69026549,0.00943396,0.00000000,5.49000000 +9185,chr22,39267571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.31000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.30000000 +9186,chr22,39268387,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.15000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.49000000 +9187,chr22,39269518,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-1.19000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.33000000 +9188,chr22,39269989,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.48000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.18000000,0.00000000,,0.35294118,68.00000000,3.00884956,0.00000000,0.00000000,8.55000000 +9189,chr22,39270635,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.94000000,0.00000000,,0.45070423,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +9190,chr22,39271485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.76000000,0.00000000,,0.18750000,100.00000000,4.42477876,0.04000000,0.00000000,6.48000000 +9191,chr22,39272253,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.21000000 +9192,chr22,39276024,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,1.34000000,0.00000000,,0.36764706,68.00000000,3.00884956,0.00000000,0.00000000,8.31000000 +9193,chr22,39281833,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,0.26000000,0.00000000,,0.45744681,95.00000000,4.20353982,0.01052632,0.00000000,8.23000000 +9194,chr22,39285431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.84000000,0.00000000,,0.19540230,88.00000000,3.89380531,0.00000000,0.00000000,6.98000000 +9195,chr22,39287439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,0.27000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.41000000 +9196,chr22,39288022,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.61000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,4.71000000 +9197,chr22,39288872,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.30434783,74.00000000,3.27433628,0.06756757,0.00000000,6.04000000 +9198,chr22,39289072,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.68000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.89000000 +9199,chr22,39289445,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,86.00000000,0.00000000,-0.57000000,0.00000000,,0.24137931,91.00000000,4.02654867,0.02197802,0.00000000,5.87000000 +9200,chr22,39289924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.02222222,0.00000000,5.71000000 +9201,chr22,39290801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.91000000,0.00000000,,0.24444444,95.00000000,4.20353982,0.04210526,0.00000000,6.19000000 +9202,chr22,39293098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.80000000 +9203,chr22,39294016,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.53000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.40000000 +9204,chr22,39294146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,84.00000000,0.00000000,-0.65000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.02197802,0.00000000,6.25000000 +9205,chr22,39294690,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-1.18000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,7.01000000 +9206,chr22,39295216,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.12000000,0.00000000,,0.38805970,68.00000000,3.00884956,0.01470588,0.00000000,4.73000000 +9207,chr22,39295831,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,1.12000000,0.00000000,,0.13698630,73.00000000,3.23008850,0.00000000,0.00000000,5.41000000 +9208,chr22,39296402,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,0.48000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.01204819,0.00000000,5.93000000 +9209,chr22,39296870,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.24096386,86.00000000,3.80530973,0.02325581,0.00000000,6.34000000 +9210,chr22,39297403,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.76000000,0.00000000,,0.33750000,81.00000000,3.58407080,0.01234568,0.00000000,8.16000000 +9211,chr22,39298220,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.24000000,0.00000000,,0.25490196,104.00000000,4.60176991,0.01923077,0.00000000,6.35000000 +9212,chr22,39298589,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.42000000,0.00000000,,0.17582418,95.00000000,4.20353982,0.04210526,0.00000000,6.16000000 +9213,chr22,39298934,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,76.00000000,0.00000000,-1.15000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.11363636,0.00000000,5.14000000 +9214,chr22,39299176,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,-0.38000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9215,chr22,39299500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.92000000,0.00000000,,0.26027397,76.00000000,3.36283186,0.02631579,0.00000000,6.40000000 +9216,chr22,39300919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,2.40000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.34000000 +9217,chr22,39300987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.44000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.58000000 +9218,chr22,39301336,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.01000000,0.00000000,,0.28260870,92.00000000,4.07079646,0.00000000,0.00000000,6.72000000 +9219,chr22,39302005,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,1.49000000,0.00000000,,0.15730337,94.00000000,4.15929204,0.05319149,0.00000000,5.34000000 +9220,chr22,39302319,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.20879121,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +9221,chr22,39302453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.70000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +9222,chr22,39303783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.55000000,0.00000000,,0.11494253,87.00000000,3.84955752,0.00000000,0.00000000,4.02000000 +9223,chr22,39305004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-1.71000000,0.00000000,,0.15151515,73.00000000,3.23008850,0.09589041,0.00000000,5.51000000 +9224,chr22,39307878,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.72000000,0.00000000,,0.27777778,77.00000000,3.40707965,0.03896104,0.00000000,5.87000000 +9225,chr22,39308159,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,59.00000000,0.00000000,-0.65000000,0.00000000,,0.28301887,55.00000000,2.43362832,0.03636364,0.00000000,4.92000000 +9226,chr22,39309099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-1.17000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.21000000 +9227,chr22,39310355,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,0.80000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.03488372,0.00000000,4.96000000 +9228,chr22,39312274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,1.26000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.61000000 +9229,chr22,39312328,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,84.00000000,0.00000000,-0.49000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.00000000,0.00000000,6.61000000 +9230,chr22,39312520,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.01075269,0.00000000,6.89000000 +9231,chr22,39313600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.02000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.01250000,0.00000000,5.34000000 +9232,chr22,39313743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,67.00000000,0.00000000,-0.91000000,0.00000000,,0.21250000,84.00000000,3.71681416,0.04761905,0.00000000,5.76000000 +9233,chr22,39313771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,5.85000000 +9234,chr22,39314239,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,89.00000000,0.00000000,1.22000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.03296703,0.00000000,5.73000000 +9235,chr22,39314385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.12000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.76000000 +9236,chr22,39316006,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.40000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9237,chr22,39316329,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.19000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,5.65000000 +9238,chr22,39316363,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.89000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.08000000,0.00000000,,0.47674419,86.00000000,3.80530973,0.00000000,0.00000000,8.48000000 +9239,chr22,39318485,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-2.04000000,0.00000000,,0.25609756,84.00000000,3.71681416,0.02380952,0.00000000,6.94000000 +9240,chr22,39319135,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,-1.16000000,0.00000000,,0.17241379,90.00000000,3.98230088,0.03333333,0.00000000,5.60000000 +9241,chr22,39319214,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.06000000,0.00000000,,0.26136364,90.00000000,3.98230088,0.02222222,0.00000000,6.02000000 +9242,chr22,39320336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.35000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.59000000 +9243,chr22,39322115,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-1.50000000,0.00000000,,0.14285714,70.00000000,3.09734513,0.07142857,0.00000000,5.57000000 +9244,chr22,39322411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.48000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +9245,chr22,39326472,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.85000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.00000000,0.00000000,7.15000000 +9246,chr22,39332134,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,0.33000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,5.73000000 +9247,chr22,39333405,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.25000000,0.00000000,,0.19512195,88.00000000,3.89380531,0.05681818,0.00000000,6.34000000 +9248,chr22,39333614,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.11000000,0.00000000,,0.26000000,51.00000000,2.25663717,0.00000000,0.00000000,6.75000000 +9249,chr22,39334027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,64.00000000,0.00000000,-0.34000000,0.00000000,,0.31147541,75.00000000,3.31858407,0.18666667,0.00000000,6.03000000 +9250,chr22,39334125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,1.84000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.10000000 +9251,chr22,39335380,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.59000000,0.00000000,,0.23333333,60.00000000,2.65486726,0.00000000,0.00000000,6.95000000 +9252,chr22,39335682,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,86.00000000,0.00000000,-0.80000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.04705882,0.00000000,6.21000000 +9253,chr22,39336244,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,1.17000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.00000000,0.00000000,6.43000000 +9254,chr22,39336408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.98000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +9255,chr22,39336660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,0.05000000,0.00000000,,0.12643678,91.00000000,4.02654867,0.03296703,0.00000000,5.36000000 +9256,chr22,39336771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,81.00000000,0.00000000,-1.66000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.11000000 +9257,chr22,39337237,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-2.10000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.89000000 +9258,chr22,39337482,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.47000000,0.00000000,,0.27472527,99.00000000,4.38053097,0.08080808,0.00000000,5.87000000 +9259,chr22,39337650,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-0.52000000,0.00000000,,0.22222222,85.00000000,3.76106195,0.14117647,0.00000000,6.31000000 +9260,chr22,39341085,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.76000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.45000000 +9261,chr22,39341089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.68000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +9262,chr22,39341664,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.77000000,0.00000000,,0.52173913,69.00000000,3.05309735,0.00000000,0.00000000,4.49000000 +9263,chr22,39342720,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,8.72000000 +9264,chr22,39343623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.14000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,6.43000000 +9265,chr22,39344073,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.38000000 +9266,chr22,39345086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.38000000 +9267,chr22,39345930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.98000000 +9268,chr22,39346383,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.19767442,86.00000000,3.80530973,0.00000000,0.00000000,6.07000000 +9269,chr22,39346401,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,89.00000000,0.00000000,-1.01000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.66000000 +9270,chr22,39349634,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,101.00000000,0.00000000,-0.08000000,0.00000000,,0.36904762,85.00000000,3.76106195,0.01176471,0.00000000,8.99000000 +9271,chr22,39349693,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.65000000,0.00000000,,0.34666667,77.00000000,3.40707965,0.01298701,0.00000000,8.35000000 +9272,chr22,39350419,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,57.00000000,0.00000000,-0.37000000,0.00000000,,0.39534884,92.00000000,4.07079646,0.05434783,0.00000000,4.76000000 +9273,chr22,39350798,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-2.32000000,0.00000000,,0.38333333,62.00000000,2.74336283,0.01612903,0.00000000,8.67000000 +9274,chr22,39350816,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,71.00000000,0.00000000,-1.13000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.02702703,0.00000000,5.82000000 +9275,chr22,39351082,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.80000000 +9276,chr22,39351413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,86.00000000,0.00000000,1.41000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.00000000,0.00000000,5.64000000 +9277,chr22,39351414,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,88.00000000,0.00000000,1.49000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,5.64000000 +9278,chr22,39353979,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.12000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.31000000 +9279,chr22,39354452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-1.32000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,6.89000000 +9280,chr22,39355706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.24000000,0.00000000,,0.27868852,61.00000000,2.69911504,0.00000000,0.00000000,6.79000000 +9281,chr22,39356098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-2.21000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,7.00000000 +9282,chr22,39356522,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,0.58000000,0.00000000,,0.19230769,81.00000000,3.58407080,0.03703704,0.00000000,5.75000000 +9283,chr22,39356986,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.13000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.41000000 +9284,chr22,39356998,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.75000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.67000000 +9285,chr22,39357261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.12903226,0.00000000,71.00000000,0.00000000,0.15000000,0.00000000,,0.20512821,82.00000000,3.62831858,0.04878049,0.00000000,5.66000000 +9286,chr22,39359523,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.93000000,0.00000000,,0.19718310,79.00000000,3.49557522,0.10126582,0.00000000,5.89000000 +9287,chr22,39361651,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.11000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,5.77000000 +9288,chr22,39373090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.38000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.13000000 +9289,chr22,39375915,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.54000000,0.00000000,,0.26388889,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +9290,chr22,39384956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,-1.04000000,0.00000000,,0.30263158,78.00000000,3.45132743,0.02564103,0.00000000,6.41000000 +9291,chr22,39396315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,1.93000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.93000000 +9292,chr22,39397149,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,100.00000000,0.00000000,-0.44000000,0.00000000,,0.27906977,90.00000000,3.98230088,0.03333333,0.00000000,4.98000000 +9293,chr22,39402122,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.21000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.41000000 +9294,chr22,39405441,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,-0.53000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,5.96000000 +9295,chr22,39405743,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,-1.16000000,1.34000000,,0.21333333,76.00000000,3.36283186,0.01315789,0.00000000,4.54000000 +9296,chr22,39406490,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,60.00000000,0.00000000,0.70000000,0.00000000,,0.13541667,101.00000000,4.46902655,0.03960396,0.00000000,4.66000000 +9297,chr22,39410126,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.03000000,0.00000000,,0.25510204,100.00000000,4.42477876,0.02000000,0.00000000,5.74000000 +9298,chr22,39410148,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.12000000,0.00000000,,0.19801980,102.00000000,4.51327434,0.00980392,0.00000000,6.61000000 +9299,chr22,39432720,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.19000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.01162791,0.00000000,5.95000000 +9300,chr22,39449326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,80.00000000,0.00000000,0.81000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.77000000 +9301,chr22,39458566,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,1.35000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.45000000 +9302,chr22,39471656,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.16417910,72.00000000,3.18584071,0.05555556,0.00000000,5.61000000 +9303,chr22,39476068,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,65.00000000,0.00000000,0.85000000,0.00000000,,0.14634146,85.00000000,3.76106195,0.03529412,0.00000000,4.97000000 +9304,chr22,39512414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,-1.95000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.51000000 +9305,chr22,39557325,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.08000000 +9306,chr22,39577981,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.86000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,5.94000000 +9307,chr22,39580123,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.29000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,8.56000000 +9308,chr22,39580128,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,0.00000000,0.70000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,6.04000000 +9309,chr22,39586716,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.14925373,69.00000000,3.05309735,0.02898551,0.00000000,5.42000000 +9310,chr22,39592170,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.14000000,0.00000000,,0.28947368,77.00000000,3.40707965,0.00000000,0.00000000,6.63000000 +9311,chr22,39594770,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,1.06000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.03529412,0.00000000,5.68000000 +9312,chr22,39595065,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,1.11000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.44000000 +9313,chr22,39595491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.04000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.01724138,0.00000000,5.95000000 +9314,chr22,39596655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,39.00000000,0.00000000,-0.39000000,0.00000000,,0.06557377,63.00000000,2.78761062,0.03174603,0.00000000,2.89000000 +9315,chr22,39597664,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,70.00000000,0.00000000,1.64000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.02631579,0.00000000,4.99000000 +9316,chr22,39600259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.18681319,94.00000000,4.15929204,0.02127660,0.00000000,5.80000000 +9317,chr22,39600877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.54000000,0.00000000,,0.26829268,84.00000000,3.71681416,0.01190476,0.00000000,6.59000000 +9318,chr22,39601165,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.43000000,0.00000000,,0.18390805,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +9319,chr22,39601625,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.77000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.03076923,0.00000000,4.84000000 +9320,chr22,39603008,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,-0.27000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.36000000 +9321,chr22,39604308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,3.13000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,5.64000000 +9322,chr22,39604437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,1.38000000,0.00000000,,0.24242424,67.00000000,2.96460177,0.01492537,0.00000000,6.35000000 +9323,chr22,39606565,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-1.35000000,4.37000000,,0.11267606,71.00000000,3.14159292,0.00000000,0.00000000,4.46000000 +9324,chr22,39607262,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,0.52000000,0.00000000,,0.28750000,81.00000000,3.58407080,0.01234568,0.00000000,6.73000000 +9325,chr22,39607304,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.29000000,0.00000000,,0.26966292,89.00000000,3.93805310,0.00000000,0.00000000,7.01000000 +9326,chr22,39609420,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.36000000,0.00000000,,0.24675325,79.00000000,3.49557522,0.02531646,0.00000000,5.85000000 +9327,chr22,39610621,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-0.53000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +9328,chr22,39613575,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.26000000,0.00000000,,0.21904762,108.00000000,4.77876106,0.02777778,0.00000000,6.27000000 +9329,chr22,39614378,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,1.29000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.30000000 +9330,chr22,39614516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.87000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,5.81000000 +9331,chr22,39614677,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.41000000 +9332,chr22,39614801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.03260870,0.00000000,4.83000000 +9333,chr22,39616279,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-1.19000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.12000000 +9334,chr22,39618061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-1.49000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.27000000 +9335,chr22,39619054,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,71.00000000,0.00000000,-0.78000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.92000000 +9336,chr22,39630029,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,1.72000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.73000000 +9337,chr22,39634093,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,-0.49000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +9338,chr22,39667356,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,1.18000000,0.00000000,,0.34939759,84.00000000,3.71681416,0.01190476,0.00000000,8.41000000 +9339,chr22,39670112,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,1.02000000,0.00000000,,0.20967742,65.00000000,2.87610619,0.04615385,0.00000000,6.29000000 +9340,chr22,39679943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.83000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +9341,chr22,39696558,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.89000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.09000000 +9342,chr22,39725928,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.60000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.02409639,0.00000000,5.75000000 +9343,chr22,39737248,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,78.00000000,0.00000000,0.51000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.24000000 +9344,chr22,39740243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.42000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.01190476,0.00000000,6.87000000 +9345,chr22,39762200,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.58000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +9346,chr22,39771383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.03125000,68.00000000,0.00000000,-0.04000000,0.00000000,,0.16129032,64.00000000,2.83185841,0.01562500,0.00000000,5.78000000 +9347,chr22,39783534,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,72.00000000,0.00000000,0.06000000,0.00000000,,0.30434783,93.00000000,4.11504425,0.01075269,0.00000000,6.66000000 +9348,chr22,39796227,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.19000000 +9349,chr22,39833589,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.30120482,84.00000000,3.71681416,0.00000000,0.00000000,7.52000000 +9350,chr22,39860481,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,1.40000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.76000000 +9351,chr22,39861430,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.51000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9352,chr22,39882389,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.29000000,0.00000000,,0.29113924,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +9353,chr22,39883526,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,83.00000000,0.00000000,-1.33000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.00000000,0.00000000,6.83000000 +9354,chr22,39885691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.01000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.68000000 +9355,chr22,39887423,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,85.00000000,0.00000000,-0.62000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.25000000 +9356,chr22,39891930,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.00000000,0.00000000,6.72000000 +9357,chr22,39892381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.93000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.52000000 +9358,chr22,39900374,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,3.22000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.01250000,0.00000000,6.14000000 +9359,chr22,39903154,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.20175439,115.00000000,5.08849558,0.00000000,0.00000000,5.90000000 +9360,chr22,39911890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.18000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +9361,chr22,39912914,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.34000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.18000000 +9362,chr22,39913326,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,97.00000000,0.00000000,0.28000000,0.00000000,,0.26136364,90.00000000,3.98230088,0.02222222,0.00000000,5.69000000 +9363,chr22,39913386,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.92000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.01098901,0.00000000,5.98000000 +9364,chr22,39915875,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,77.00000000,0.00000000,0.11000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.10000000 +9365,chr22,39917212,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.51000000,0.00000000,,0.23762376,101.00000000,4.46902655,0.00000000,0.00000000,6.68000000 +9366,chr22,39918231,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,74.00000000,0.00000000,-2.14000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,6.14000000 +9367,chr22,39919099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-1.31000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.90000000 +9368,chr22,39921122,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,88.00000000,0.00000000,1.13000000,0.00000000,,0.27142857,71.00000000,3.14159292,0.01408451,0.00000000,6.03000000 +9369,chr22,39927061,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,87.00000000,0.00000000,-1.46000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.01086957,0.00000000,5.89000000 +9370,chr22,39929157,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,1.25000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,6.17000000 +9371,chr22,39931202,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,2.16000000,0.00000000,,0.21100917,110.00000000,4.86725664,0.00909091,0.00000000,5.78000000 +9372,chr22,39931448,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.40000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9373,chr22,39932987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,6.03000000 +9374,chr22,39940817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-1.93000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,6.73000000 +9375,chr22,39940841,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-1.40000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.14000000 +9376,chr22,39944771,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00961538,0.00000000,6.16000000 +9377,chr22,39952026,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,94.00000000,0.00000000,-0.55000000,0.00000000,,0.31506849,76.00000000,3.36283186,0.03947368,0.00000000,6.79000000 +9378,chr22,39955588,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.02000000,0.00000000,,0.15957447,97.00000000,4.29203540,0.03092784,0.00000000,5.77000000 +9379,chr22,39977293,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.60000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,6.13000000 +9380,chr22,39984652,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.19000000 +9381,chr22,39986245,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.68000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.97000000 +9382,chr22,39989126,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.16279070,91.00000000,4.02654867,0.04395604,0.00000000,5.85000000 +9383,chr22,39993003,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,0.15000000,0.00000000,,0.24285714,70.00000000,3.09734513,0.00000000,0.00000000,6.32000000 +9384,chr22,39994234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,-0.02000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.08163265,0.00000000,5.88000000 +9385,chr22,40000990,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.52000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.43000000 +9386,chr22,40025773,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.23000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,4.48000000 +9387,chr22,40036940,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.83000000 +9388,chr22,40060010,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.09000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.99000000 +9389,chr22,40079685,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.21212121,70.00000000,3.09734513,0.05714286,0.00000000,5.66000000 +9390,chr22,40152453,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.21000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,7.87000000 +9391,chr22,40166812,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,-0.52000000,0.00000000,,0.27848101,84.00000000,3.71681416,0.04761905,0.00000000,5.96000000 +9392,chr22,40250719,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.89000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +9393,chr22,40285183,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,5.72000000 +9394,chr22,40363518,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.42000000 +9395,chr22,40385488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.82000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.54000000 +9396,chr22,40395010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,93.00000000,0.00000000,-0.30000000,0.00000000,,0.26262626,102.00000000,4.51327434,0.01960784,0.00000000,5.65000000 +9397,chr22,40418632,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,0.29000000,0.00000000,,0.26984127,65.00000000,2.87610619,0.03076923,0.00000000,6.24000000 +9398,chr22,40422162,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,2.01000000,0.00000000,,0.16176471,70.00000000,3.09734513,0.02857143,0.00000000,4.91000000 +9399,chr22,40447981,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,-0.43000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.01219512,0.00000000,6.22000000 +9400,chr22,40449344,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.19230769,82.00000000,3.62831858,0.04878049,0.00000000,6.24000000 +9401,chr22,40488865,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-0.36000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,5.96000000 +9402,chr22,40523443,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.84000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +9403,chr22,40525463,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-1.00000000,0.00000000,,0.26190476,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +9404,chr22,40531131,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.53000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.96000000 +9405,chr22,40534208,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,5.94000000 +9406,chr22,40539289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-1.83000000,0.00000000,,0.12643678,89.00000000,3.93805310,0.02247191,0.00000000,5.11000000 +9407,chr22,40541721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,72.00000000,0.00000000,0.80000000,0.00000000,,0.15555556,90.00000000,3.98230088,0.00000000,0.00000000,5.42000000 +9408,chr22,40541988,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,1.74000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.03896104,0.00000000,5.75000000 +9409,chr22,40543702,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.61000000,0.00000000,,0.13402062,98.00000000,4.33628319,0.01020408,0.00000000,5.71000000 +9410,chr22,40549066,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.75000000,0.00000000,,0.31746032,63.00000000,2.78761062,0.00000000,0.00000000,7.75000000 +9411,chr22,40551454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,6.60000000 +9412,chr22,40552657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.11000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.82000000 +9413,chr22,40555246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.80000000,0.00000000,,0.18367347,100.00000000,4.42477876,0.02000000,0.00000000,5.74000000 +9414,chr22,40568008,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.56000000 +9415,chr22,40569767,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.36000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,80.00000000,0.00000000,0.45000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.67000000 +9416,chr22,40625606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.57000000,0.00000000,,0.22222222,55.00000000,2.43362832,0.01818182,0.00000000,6.39000000 +9417,chr22,40752484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.44000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.02739726,0.00000000,5.82000000 +9418,chr22,40786979,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.41000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +9419,chr22,40819668,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,0.33000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.37000000 +9420,chr22,40837385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,90.00000000,0.00000000,-0.75000000,0.00000000,,0.23300971,104.00000000,4.60176991,0.00961538,0.00000000,6.56000000 +9421,chr22,40837827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +9422,chr22,40847168,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,95.00000000,0.00000000,-1.83000000,0.00000000,,0.25510204,99.00000000,4.38053097,0.01010101,0.00000000,5.34000000 +9423,chr22,40868537,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.26000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.45000000 +9424,chr22,40870526,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,2.14000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.53000000 +9425,chr22,40877828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.48000000 +9426,chr22,40967230,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,1.05000000,0.00000000,,0.19047619,86.00000000,3.80530973,0.02325581,0.00000000,5.80000000 +9427,chr22,41032973,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.64000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.01694915,0.00000000,5.90000000 +9428,chr22,41073312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,86.00000000,0.00000000,0.52000000,0.00000000,,0.20000000,100.00000000,4.42477876,0.00000000,0.00000000,6.40000000 +9429,chr22,41081186,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.75000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.00000000,0.00000000,7.14000000 +9430,chr22,41130158,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.13000000,0.00000000,,0.30000000,75.00000000,3.31858407,0.06666667,0.00000000,6.56000000 +9431,chr22,41171160,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,-0.20000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,5.98000000 +9432,chr22,41173882,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,95.00000000,0.00000000,-0.01000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,7.03000000 +9433,chr22,41176537,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,-0.32000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +9434,chr22,41224821,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.30000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,6.85000000 +9435,chr22,41230371,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,0.75000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.01612903,0.00000000,5.66000000 +9436,chr22,41235476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.13000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.03846154,0.00000000,6.24000000 +9437,chr22,41247728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.21000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.69000000 +9438,chr22,41254844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.11000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,6.40000000 +9439,chr22,41314177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.57000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,85.00000000,0.00000000,0.20000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,5.55000000 +9440,chr22,41337258,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.09000000 +9441,chr22,41382613,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.35000000,0.00000000,,0.22950820,62.00000000,2.74336283,0.01612903,0.00000000,6.38000000 +9442,chr22,41421582,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.78000000,0.00000000,,0.20312500,64.00000000,2.83185841,0.00000000,0.00000000,6.67000000 +9443,chr22,41475744,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-0.12000000,0.00000000,,0.19607843,53.00000000,2.34513274,0.03773585,0.00000000,3.02000000 +9444,chr22,41489835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,6.22000000 +9445,chr22,41500300,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.16129032,93.00000000,4.11504425,0.00000000,0.00000000,5.79000000 +9446,chr22,41539059,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.72000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.84000000 +9447,chr22,41540280,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.43000000 +9448,chr22,41561606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.26595745,98.00000000,4.33628319,0.04081633,0.00000000,5.85000000 +9449,chr22,41562491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.19277108,94.00000000,4.15929204,0.11702128,0.00000000,5.52000000 +9450,chr22,41562858,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,1.68000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.03571429,0.00000000,5.65000000 +9451,chr22,41565130,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.62000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,6.32000000 +9452,chr22,41565185,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.01449275,0.00000000,5.71000000 +9453,chr22,41565827,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.47000000 +9454,chr22,41565912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.40000000 +9455,chr22,41566288,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,0.51000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.67000000 +9456,chr22,41567549,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.16000000,0.00000000,,0.24742268,99.00000000,4.38053097,0.02020202,0.00000000,6.31000000 +9457,chr22,41568164,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.21000000,8.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.21000000,0.00000000,,0.19047619,58.00000000,2.56637168,0.27586207,0.00000000,3.10000000 +9458,chr22,41568353,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.53000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.00000000,0.00000000,5.48000000 +9459,chr22,41568357,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,1.21000000,0.00000000,,0.14666667,75.00000000,3.31858407,0.00000000,0.00000000,5.48000000 +9460,chr22,41569233,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,5.92000000 +9461,chr22,41569288,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.18292683,86.00000000,3.80530973,0.03488372,0.00000000,5.59000000 +9462,chr22,41569296,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.76000000 +9463,chr22,41570669,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.33000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,5.65000000 +9464,chr22,41571866,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,84.00000000,0.00000000,0.50000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.65000000 +9465,chr22,41576028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,86.00000000,0.00000000,-0.57000000,0.00000000,,0.21568627,104.00000000,4.60176991,0.01923077,0.00000000,5.82000000 +9466,chr22,41580935,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.07000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +9467,chr22,41583664,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.57000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.54000000 +9468,chr22,41584888,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.68000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.63000000 +9469,chr22,41585953,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-1.61000000,0.00000000,,0.31182796,94.00000000,4.15929204,0.01063830,0.00000000,7.23000000 +9470,chr22,41586471,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.83000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.01388889,0.00000000,6.31000000 +9471,chr22,41589952,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,1.40000000,0.00000000,,0.20312500,66.00000000,2.92035398,0.03030303,0.00000000,5.81000000 +9472,chr22,41589954,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,1.78000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.02985075,0.00000000,5.83000000 +9473,chr22,41590710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,77.00000000,0.00000000,-1.66000000,0.00000000,,0.21052632,81.00000000,3.58407080,0.04938272,0.00000000,5.95000000 +9474,chr22,41591539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,62.00000000,0.00000000,-2.16000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.00000000,0.00000000,6.06000000 +9475,chr22,41591623,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.20000000,60.00000000,2.65486726,0.00000000,0.00000000,6.64000000 +9476,chr22,41591933,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,85.00000000,0.00000000,-0.29000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.44000000 +9477,chr22,41597175,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,-2.33000000,0.00000000,,0.08450704,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +9478,chr22,41597492,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.13978495,93.00000000,4.11504425,0.00000000,0.00000000,5.29000000 +9479,chr22,41599331,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,0.30000000,0.00000000,,0.26881720,93.00000000,4.11504425,0.00000000,0.00000000,5.92000000 +9480,chr22,41600127,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.16000000,0.00000000,,0.20000000,44.00000000,1.94690265,0.06818182,0.00000000,6.56000000 +9481,chr22,41620522,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.12000000,0.00000000,,0.28000000,75.00000000,3.31858407,0.00000000,0.00000000,6.94000000 +9482,chr22,41623577,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.16000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,4.80000000 +9483,chr22,41641799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,2.39000000,0.00000000,,0.27058824,87.00000000,3.84955752,0.02298851,0.00000000,6.28000000 +9484,chr22,41642220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,1.34000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.07000000 +9485,chr22,41645306,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,1.18000000,0.00000000,,0.23529412,71.00000000,3.14159292,0.04225352,0.00000000,5.74000000 +9486,chr22,41672342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-0.30000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.02173913,0.00000000,4.62000000 +9487,chr22,41717161,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.83000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.66000000 +9488,chr22,41718855,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,-0.53000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,6.80000000 +9489,chr22,41724392,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.38000000,0.00000000,,0.21951220,85.00000000,3.76106195,0.03529412,0.00000000,6.44000000 +9490,chr22,41760830,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.69000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.33000000 +9491,chr22,41780913,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.07000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +9492,chr22,41781449,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +9493,chr22,41781895,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,88.00000000,0.00000000,0.86000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +9494,chr22,41782036,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.34920635,68.00000000,3.00884956,0.07352941,0.00000000,7.99000000 +9495,chr22,41782437,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.03000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +9496,chr22,41786003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,59.00000000,0.00000000,-1.23000000,0.00000000,,0.11764706,66.00000000,2.92035398,0.21212121,0.00000000,3.91000000 +9497,chr22,41790834,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.56000000 +9498,chr22,41791195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.36000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,5.71000000 +9499,chr22,41795632,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,1.47000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,6.28000000 +9500,chr22,41796718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.41000000 +9501,chr22,41797737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.56000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,5.98000000 +9502,chr22,41797909,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-1.67000000,0.00000000,,0.24096386,87.00000000,3.84955752,0.04597701,0.00000000,5.99000000 +9503,chr22,41798958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,70.00000000,0.00000000,0.03000000,0.00000000,,0.15730337,93.00000000,4.11504425,0.04301075,0.00000000,4.83000000 +9504,chr22,41799406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.71000000,0.00000000,,0.21153846,105.00000000,4.64601770,0.00952381,0.00000000,5.99000000 +9505,chr22,41800680,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-1.59000000,0.00000000,,0.24752475,101.00000000,4.46902655,0.00000000,0.00000000,6.96000000 +9506,chr22,41802892,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.26000000,0.00000000,,0.28089888,90.00000000,3.98230088,0.01111111,0.00000000,6.39000000 +9507,chr22,41803273,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.02298851,0.00000000,5.80000000 +9508,chr22,41804912,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.83000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.41000000 +9509,chr22,41806602,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-2.16000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.98000000 +9510,chr22,41806940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.39000000,0.00000000,,0.22807018,58.00000000,2.56637168,0.01724138,0.00000000,6.29000000 +9511,chr22,41808109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.05000000,0.00000000,71.00000000,0.00000000,1.02000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.66000000 +9512,chr22,41810080,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,-1.59000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.45000000 +9513,chr22,41812668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.20000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,6.00000000 +9514,chr22,41813918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,-0.12000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.79000000 +9515,chr22,41814981,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.68000000,0.00000000,,0.22580645,64.00000000,2.83185841,0.03125000,0.00000000,6.67000000 +9516,chr22,41815785,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.22727273,66.00000000,2.92035398,0.00000000,0.00000000,6.61000000 +9517,chr22,41816932,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,0.53000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +9518,chr22,41818234,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,2.56000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.99000000 +9519,chr22,41818528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.13000000,0.00000000,,0.23456790,83.00000000,3.67256637,0.01204819,0.00000000,6.52000000 +9520,chr22,41818781,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.43000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.64000000 +9521,chr22,41819680,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.00000000,0.00000000,6.74000000 +9522,chr22,41820145,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,-0.45000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.01515152,0.00000000,5.97000000 +9523,chr22,41820322,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,74.00000000,0.00000000,0.03000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,5.80000000 +9524,chr22,41822598,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.90000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.39000000 +9525,chr22,41822852,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.02666667,0.00000000,4.95000000 +9526,chr22,41823156,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.57000000,0.00000000,,0.20430108,96.00000000,4.24778761,0.03125000,0.00000000,6.30000000 +9527,chr22,41823850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,0.12000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +9528,chr22,41824487,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,84.00000000,0.00000000,-0.50000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.00000000,0.00000000,6.40000000 +9529,chr22,41824715,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,6.00000000 +9530,chr22,41825646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.70000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,6.13000000 +9531,chr22,41825842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.19000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.10000000 +9532,chr22,41825947,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.34000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.62000000 +9533,chr22,41828709,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,6.78000000 +9534,chr22,41830406,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.17045455,90.00000000,3.98230088,0.01111111,0.00000000,6.83000000 +9535,chr22,41830819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,0.96000000,0.00000000,,0.23000000,102.00000000,4.51327434,0.01960784,0.00000000,5.52000000 +9536,chr22,41831035,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.16666667,98.00000000,4.33628319,0.02040816,0.00000000,5.36000000 +9537,chr22,41836573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.57000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.29000000 +9538,chr22,41837046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,94.00000000,0.00000000,-0.57000000,0.00000000,,0.28235294,85.00000000,3.76106195,0.00000000,0.00000000,6.98000000 +9539,chr22,41837951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,-0.64000000,0.00000000,,0.20192308,109.00000000,4.82300885,0.04587156,0.00000000,5.90000000 +9540,chr22,41839811,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.35000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.72000000 +9541,chr22,41843823,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,91.00000000,0.00000000,-0.60000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.21000000 +9542,chr22,41848208,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.11000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.01265823,0.00000000,5.79000000 +9543,chr22,41850033,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,86.00000000,0.00000000,0.98000000,0.00000000,,0.21348315,89.00000000,3.93805310,0.00000000,0.00000000,6.36000000 +9544,chr22,41851980,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.29629630,57.00000000,2.52212389,0.05263158,0.00000000,5.95000000 +9545,chr22,41856890,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.44000000 +9546,chr22,41856956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.17857143,94.00000000,4.15929204,0.10638298,0.00000000,5.55000000 +9547,chr22,41862573,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.46000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,6.27000000 +9548,chr22,41864967,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.20634921,65.00000000,2.87610619,0.03076923,0.00000000,6.33000000 +9549,chr22,41868265,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.96000000,0.00000000,,0.25000000,104.00000000,4.60176991,0.00000000,0.00000000,6.39000000 +9550,chr22,41872717,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.18309859,71.00000000,3.14159292,0.00000000,0.00000000,6.56000000 +9551,chr22,41874703,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,0.30000000,0.00000000,,0.26582278,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +9552,chr22,41878283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.20000000,0.00000000,,0.20869565,116.00000000,5.13274336,0.00862069,0.00000000,6.41000000 +9553,chr22,41880738,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.67000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +9554,chr22,41881788,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,78.00000000,0.00000000,1.05000000,0.00000000,,0.21359223,105.00000000,4.64601770,0.00952381,0.00000000,5.98000000 +9555,chr22,41883502,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.45000000,0.00000000,,0.26829268,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +9556,chr22,41888256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,94.00000000,0.00000000,0.18000000,0.00000000,,0.20212766,95.00000000,4.20353982,0.01052632,0.00000000,5.69000000 +9557,chr22,41909516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.01000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.05000000 +9558,chr22,41930813,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.09000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,4.78000000 +9559,chr22,41933271,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.56000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,6.56000000 +9560,chr22,41949177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-2.32000000,0.00000000,,0.18292683,87.00000000,3.84955752,0.05747126,0.00000000,6.24000000 +9561,chr22,41950038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,5.87000000 +9562,chr22,41953130,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,87.00000000,0.00000000,-1.52000000,0.00000000,,0.23287671,76.00000000,3.36283186,0.02631579,0.00000000,5.64000000 +9563,chr22,41953706,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.23333333,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.26760563,81.00000000,3.58407080,0.11111111,0.00000000,5.64000000 +9564,chr22,41964829,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,0.25000000,0.00000000,,0.15217391,94.00000000,4.15929204,0.02127660,0.00000000,5.43000000 +9565,chr22,41967404,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.51000000,0.00000000,,0.14473684,78.00000000,3.45132743,0.02564103,0.00000000,4.97000000 +9566,chr22,41968993,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.15000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.90000000 +9567,chr22,41972853,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.53000000 +9568,chr22,41974987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.21875000,104.00000000,4.60176991,0.07692308,0.00000000,5.78000000 +9569,chr22,41979757,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,93.00000000,0.00000000,-0.40000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,5.77000000 +9570,chr22,41983997,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-0.66000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.73000000 +9571,chr22,41986744,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.41000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,6.65000000 +9572,chr22,41986793,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.18461538,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +9573,chr22,41986801,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.17910448,70.00000000,3.09734513,0.04285714,0.00000000,6.04000000 +9574,chr22,41989963,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.82000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.78000000 +9575,chr22,41993835,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.26388889,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +9576,chr22,41994089,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.33000000 +9577,chr22,41999238,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,41.00000000,1.81415929,0.00000000,0.00000000,66.00000000,0.00000000,-1.19000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,5.85000000 +9578,chr22,41999956,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,6.50000000 +9579,chr22,42000146,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,-0.68000000,0.00000000,,0.25882353,90.00000000,3.98230088,0.05555556,0.00000000,5.96000000 +9580,chr22,42000564,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.72000000 +9581,chr22,42001038,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.15000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,73.00000000,0.00000000,1.19000000,0.00000000,,0.17171717,103.00000000,4.55752212,0.02912621,0.00000000,5.53000000 +9582,chr22,42003321,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.61000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.15000000 +9583,chr22,42003392,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,90.00000000,0.00000000,-1.62000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,6.26000000 +9584,chr22,42003682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,97.00000000,0.00000000,0.40000000,0.00000000,,0.28571429,100.00000000,4.42477876,0.02000000,0.00000000,5.58000000 +9585,chr22,42005745,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.22222222,100.00000000,4.42477876,0.01000000,0.00000000,6.63000000 +9586,chr22,42005837,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-1.21000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.70000000 +9587,chr22,42006382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,0.01000000,0.00000000,,0.22352941,90.00000000,3.98230088,0.04444444,0.00000000,5.86000000 +9588,chr22,42006476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,1.01000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,5.89000000 +9589,chr22,42009318,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-1.71000000,0.00000000,,0.15533981,104.00000000,4.60176991,0.00000000,0.00000000,6.10000000 +9590,chr22,42009655,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.93000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.02222222,0.00000000,6.30000000 +9591,chr22,42009918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.44000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.63000000 +9592,chr22,42010367,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.01000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +9593,chr22,42010816,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,1.41000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.43000000 +9594,chr22,42010881,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,0.25000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.54000000 +9595,chr22,42011685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.17475728,103.00000000,4.55752212,0.00000000,0.00000000,6.25000000 +9596,chr22,42012075,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.48000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.21000000 +9597,chr22,42013452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,81.00000000,0.00000000,1.14000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.58000000 +9598,chr22,42017974,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.28000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.79000000 +9599,chr22,42020052,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-2.21000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,6.55000000 +9600,chr22,42020299,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-0.57000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.83000000 +9601,chr22,42020983,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.01000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.03846154,57.00000000,0.00000000,1.68000000,0.00000000,,0.28888889,50.00000000,2.21238938,0.10000000,0.00000000,3.37000000 +9602,chr22,42021683,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.64000000,0.00000000,,0.26506024,87.00000000,3.84955752,0.04597701,0.00000000,5.71000000 +9603,chr22,42027641,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,1.46000000,0.00000000,,0.22916667,97.00000000,4.29203540,0.00000000,0.00000000,6.43000000 +9604,chr22,42031945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,0.00000000,1.70000000,0.00000000,,0.16666667,102.00000000,4.51327434,0.00000000,0.00000000,5.53000000 +9605,chr22,42032723,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.56000000 +9606,chr22,42035242,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.94000000,5.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.27000000,0.00000000,,0.22000000,100.00000000,4.42477876,0.00000000,0.00000000,6.15000000 +9607,chr22,42035425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +9608,chr22,42039864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.14000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.89000000 +9609,chr22,42046231,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,0.04000000,0.00000000,,0.14457831,85.00000000,3.76106195,0.01176471,0.00000000,5.11000000 +9610,chr22,42046535,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-2.29000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.67000000 +9611,chr22,42047904,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,0.44000000,0.00000000,,0.43750000,32.00000000,1.41592920,0.00000000,0.00000000,3.94000000 +9612,chr22,42051337,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.95000000 +9613,chr22,42058946,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,5.86000000 +9614,chr22,42069784,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.00000000,0.00000000,,0.21839080,90.00000000,3.98230088,0.03333333,0.00000000,5.82000000 +9615,chr22,42070901,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,-0.91000000,0.00000000,,0.14423077,105.00000000,4.64601770,0.00952381,0.00000000,5.49000000 +9616,chr22,42077599,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,-1.39000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.01000000 +9617,chr22,42120416,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,1.87000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.30000000 +9618,chr22,42141217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,44.85000000,37.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,0.00000000,-2.72000000,0.00000000,,0.26190476,44.00000000,1.94690265,0.04545455,0.00000000,2.86000000 +9619,chr22,42141231,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,44.99000000,28.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,20.00000000,0.00000000,-1.55000000,0.00000000,,0.34285714,36.00000000,1.59292035,0.02777778,0.00000000,3.70000000 +9620,chr22,42141270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,53.36000000,15.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,24.00000000,0.00000000,1.91000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.07142857,0.00000000,3.83000000 +9621,chr22,42150313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.39000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.85000000 +9622,chr22,42170308,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.25806452,66.00000000,2.92035398,0.06060606,0.00000000,6.31000000 +9623,chr22,42174452,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.14117647,85.00000000,3.76106195,0.00000000,0.00000000,5.66000000 +9624,chr22,42174589,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,1.02000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.03896104,0.00000000,5.05000000 +9625,chr22,42174891,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.75000000,5.01000000,,0.09523810,64.00000000,2.83185841,0.01562500,0.00000000,3.73000000 +9626,chr22,42175022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,0.00000000,-1.91000000,0.00000000,,0.13157895,45.00000000,1.99115044,0.13333333,0.00000000,2.85000000 +9627,chr22,42178824,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.45000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.01298701,0.00000000,6.60000000 +9628,chr22,42183514,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,1.00000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.30000000 +9629,chr22,42187865,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.43000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +9630,chr22,42196233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +9631,chr22,42200247,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.26000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +9632,chr22,42202945,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,-0.46000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,6.35000000 +9633,chr22,42204583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.34000000,0.00000000,,0.16666667,103.00000000,4.55752212,0.00970874,0.00000000,5.70000000 +9634,chr22,42207808,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.47000000,0.00000000,,0.21111111,93.00000000,4.11504425,0.02150538,0.00000000,6.02000000 +9635,chr22,42217479,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.26000000,0.00000000,,0.16666667,75.00000000,3.31858407,0.04000000,0.00000000,5.40000000 +9636,chr22,42222334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.87000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.31000000 +9637,chr22,42225997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,1.22000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,5.99000000 +9638,chr22,42227712,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02000000,51.00000000,2.25663717,0.01960784,0.00000000,78.00000000,0.00000000,-0.51000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,5.12000000 +9639,chr22,42228439,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.65000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.38000000 +9640,chr22,42240681,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,-1.47000000,0.00000000,,0.16071429,56.00000000,2.47787611,0.00000000,0.00000000,6.19000000 +9641,chr22,42243639,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,-1.17000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,6.57000000 +9642,chr22,42244600,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,66.00000000,0.00000000,0.18000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,5.19000000 +9643,chr22,42247033,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.17021277,0.00000000,73.00000000,0.00000000,-0.78000000,0.00000000,,0.16091954,90.00000000,3.98230088,0.03333333,0.00000000,4.39000000 +9644,chr22,42252402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-1.45000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.18000000 +9645,chr22,42254657,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,82.00000000,0.00000000,-0.67000000,0.00000000,,0.20481928,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +9646,chr22,42256068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.26829268,86.00000000,3.80530973,0.04651163,0.00000000,6.30000000 +9647,chr22,42256311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.07000000,0.00000000,,0.23750000,80.00000000,3.53982301,0.00000000,0.00000000,6.74000000 +9648,chr22,42256710,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.34000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.01351351,0.00000000,7.13000000 +9649,chr22,42261560,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,6.39000000 +9650,chr22,42266365,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.20000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +9651,chr22,42268195,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +9652,chr22,42274959,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,79.00000000,0.00000000,1.20000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.03658537,0.00000000,5.66000000 +9653,chr22,42276118,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,86.00000000,0.00000000,1.48000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.28000000 +9654,chr22,42284794,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,0.12000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.01123596,0.00000000,6.47000000 +9655,chr22,42287337,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,83.00000000,0.00000000,-1.71000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,5.29000000 +9656,chr22,42287991,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.06250000,80.00000000,3.53982301,0.00000000,0.00000000,5.10000000 +9657,chr22,42293134,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.20000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.67000000 +9658,chr22,42293364,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,86.00000000,0.00000000,0.43000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,5.69000000 +9659,chr22,42295290,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,0.55000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.02409639,0.00000000,5.75000000 +9660,chr22,42299142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.30000000,0.00000000,,0.21686747,87.00000000,3.84955752,0.04597701,0.00000000,6.31000000 +9661,chr22,42302596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.07000000,0.00000000,,0.22222222,74.00000000,3.27433628,0.02702703,0.00000000,6.67000000 +9662,chr22,42325368,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-2.01000000,0.00000000,,0.30851064,95.00000000,4.20353982,0.00000000,0.00000000,7.43000000 +9663,chr22,42333590,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,88.00000000,0.00000000,0.46000000,0.00000000,,0.24509804,105.00000000,4.64601770,0.02857143,0.00000000,5.68000000 +9664,chr22,42340130,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,0.22000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +9665,chr22,42347019,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,78.00000000,0.00000000,1.16000000,0.00000000,,0.17391304,96.00000000,4.24778761,0.03125000,0.00000000,5.28000000 +9666,chr22,42349801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,42.00000000,0.00000000,-0.78000000,0.00000000,,0.33333333,34.00000000,1.50442478,0.02941176,0.00000000,4.23000000 +9667,chr22,42350170,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.65000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.28000000 +9668,chr22,42352455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-2.28000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.04225352,0.00000000,5.79000000 +9669,chr22,42357914,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,92.00000000,0.00000000,0.69000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.01351351,0.00000000,5.91000000 +9670,chr22,42370103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.60000000 +9671,chr22,42383873,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9672,chr22,42383874,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.12941176,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9673,chr22,42387064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +9674,chr22,42387824,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.28000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.37000000 +9675,chr22,42388938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.39000000,0.00000000,,0.12903226,63.00000000,2.78761062,0.01587302,0.00000000,5.21000000 +9676,chr22,42389054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.08000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.40000000 +9677,chr22,42389115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-1.29000000,0.00000000,,0.12328767,74.00000000,3.27433628,0.01351351,0.00000000,5.21000000 +9678,chr22,42390538,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.20000000,0.00000000,,0.18571429,74.00000000,3.27433628,0.02702703,0.00000000,6.22000000 +9679,chr22,42391037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.59000000 +9680,chr22,42391095,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,75.00000000,0.00000000,1.67000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.44000000 +9681,chr22,42391272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.21666667,63.00000000,2.78761062,0.04761905,0.00000000,6.91000000 +9682,chr22,42392474,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.27450980,52.00000000,2.30088496,0.00000000,0.00000000,6.67000000 +9683,chr22,42394612,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.59000000,0.00000000,,0.17391304,94.00000000,4.15929204,0.02127660,0.00000000,5.94000000 +9684,chr22,42394697,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.81000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +9685,chr22,42395123,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.54000000,0.00000000,,0.18072289,87.00000000,3.84955752,0.04597701,0.00000000,6.14000000 +9686,chr22,42395436,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.63000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.02439024,0.00000000,5.69000000 +9687,chr22,42396154,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.32000000 +9688,chr22,42396204,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,2.26000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,5.89000000 +9689,chr22,42396368,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,86.00000000,0.00000000,0.55000000,0.00000000,,0.22000000,103.00000000,4.55752212,0.02912621,0.00000000,5.61000000 +9690,chr22,42396894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.63000000,0.00000000,,0.20202020,100.00000000,4.42477876,0.01000000,0.00000000,6.28000000 +9691,chr22,42397557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.27000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.39000000 +9692,chr22,42397839,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.71000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +9693,chr22,42397867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.20930233,87.00000000,3.84955752,0.01149425,0.00000000,5.91000000 +9694,chr22,42398231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,1.22000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +9695,chr22,42398320,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,-0.40000000,0.00000000,,0.32530120,83.00000000,3.67256637,0.00000000,0.00000000,9.04000000 +9696,chr22,42398608,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.95000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.03409091,0.00000000,6.76000000 +9697,chr22,42398634,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.55000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.84000000 +9698,chr22,42408022,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.05633803,0.00000000,5.62000000 +9699,chr22,42433180,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,94.00000000,0.00000000,-0.97000000,0.00000000,,0.28915663,85.00000000,3.76106195,0.02352941,0.00000000,5.83000000 +9700,chr22,42434423,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,-0.25000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,6.12000000 +9701,chr22,42438227,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.93000000,0.00000000,,0.19354839,94.00000000,4.15929204,0.01063830,0.00000000,6.38000000 +9702,chr22,42439721,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-0.20000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.00000000,0.00000000,6.70000000 +9703,chr22,42440331,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.83000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +9704,chr22,42441074,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.59000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,6.01000000 +9705,chr22,42441288,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,80.00000000,0.00000000,1.23000000,0.00000000,,0.24271845,105.00000000,4.64601770,0.00952381,0.00000000,5.89000000 +9706,chr22,42446626,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.67000000 +9707,chr22,42450052,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.13000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.01639344,0.00000000,6.40000000 +9708,chr22,42453192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.62000000,0.00000000,,0.18750000,82.00000000,3.62831858,0.01219512,0.00000000,6.05000000 +9709,chr22,42453256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.72000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.28000000 +9710,chr22,42457116,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.66000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.38000000 +9711,chr22,42459780,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,1.42000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.84000000 +9712,chr22,42460485,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,0.40000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.28000000 +9713,chr22,42461605,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.54000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.01111111,0.00000000,5.98000000 +9714,chr22,42465037,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,6.16000000 +9715,chr22,42467824,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.27000000,3.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.23000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.02000000 +9716,chr22,42469004,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.29761905,85.00000000,3.76106195,0.01176471,0.00000000,6.72000000 +9717,chr22,42469005,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.04000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.00000000,0.00000000,6.03000000 +9718,chr22,42469706,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.08000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +9719,chr22,42469748,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.11000000,0.00000000,,0.23529412,106.00000000,4.69026549,0.03773585,0.00000000,6.20000000 +9720,chr22,42470054,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,0.45000000,0.00000000,,0.22058824,73.00000000,3.23008850,0.05479452,0.00000000,5.88000000 +9721,chr22,42470071,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,67.00000000,0.00000000,-0.19000000,0.00000000,,0.21428571,75.00000000,3.31858407,0.06666667,0.00000000,6.06000000 +9722,chr22,42471849,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,70.00000000,0.00000000,0.56000000,0.00000000,,0.12345679,85.00000000,3.76106195,0.03529412,0.00000000,4.66000000 +9723,chr22,42471892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.42000000 +9724,chr22,42471951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,79.00000000,0.00000000,0.54000000,0.00000000,,0.21621622,78.00000000,3.45132743,0.05128205,0.00000000,5.79000000 +9725,chr22,42472077,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,74.00000000,0.00000000,-0.14000000,0.00000000,,0.17441860,94.00000000,4.15929204,0.08510638,0.00000000,5.66000000 +9726,chr22,42472363,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.80000000 +9727,chr22,42473447,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,2.54000000,0.00000000,,0.34848485,67.00000000,2.96460177,0.01492537,0.00000000,3.79000000 +9728,chr22,42475109,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,0.74000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.01098901,0.00000000,5.95000000 +9729,chr22,42475676,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,1.10000000,0.00000000,,0.19387755,98.00000000,4.33628319,0.00000000,0.00000000,6.34000000 +9730,chr22,42476128,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,0.00000000,0.73000000,0.00000000,,0.13953488,90.00000000,3.98230088,0.03333333,0.00000000,4.85000000 +9731,chr22,42513268,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,47.63000000,30.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,53.00000000,0.00000000,1.00000000,0.00000000,,0.28000000,52.00000000,2.30088496,0.03846154,0.00000000,2.92000000 +9732,chr22,42524035,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.13000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.43000000 +9733,chr22,42531661,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,-0.10000000,0.00000000,,0.27710843,85.00000000,3.76106195,0.02352941,0.00000000,6.05000000 +9734,chr22,42588147,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.22000000 +9735,chr22,42733821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.28000000,0.00000000,,0.23529412,73.00000000,3.23008850,0.06849315,0.00000000,5.61000000 +9736,chr22,42801853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,0.00000000,-0.62000000,0.00000000,,0.12068966,63.00000000,2.78761062,0.06349206,0.00000000,4.86000000 +9737,chr22,42810649,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,0.93000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.00000000 +9738,chr22,42815896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-0.58000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.89000000 +9739,chr22,42848565,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.84000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.54000000 +9740,chr22,42871158,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.21686747,86.00000000,3.80530973,0.03488372,0.00000000,6.50000000 +9741,chr22,42871399,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.88000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.03157895,0.00000000,5.73000000 +9742,chr22,42883605,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,94.00000000,0.00000000,-0.75000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,5.74000000 +9743,chr22,42915890,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.38000000,0.00000000,,0.27586207,87.00000000,3.84955752,0.00000000,0.00000000,6.50000000 +9744,chr22,42935288,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,0.50000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,5.86000000 +9745,chr22,42937587,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.34000000,0.00000000,,0.25000000,61.00000000,2.69911504,0.01639344,0.00000000,6.77000000 +9746,chr22,42940225,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.60000000 +9747,chr22,42946717,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.39000000 +9748,chr22,42947602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.32000000,0.00000000,,0.20833333,77.00000000,3.40707965,0.06493506,0.00000000,5.82000000 +9749,chr22,42953626,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.86000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.64000000 +9750,chr22,43021001,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,0.13000000,0.00000000,,0.30681818,92.00000000,4.07079646,0.04347826,0.00000000,5.80000000 +9751,chr22,43022051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.05000000,0.00000000,,0.12000000,78.00000000,3.45132743,0.02564103,0.00000000,5.00000000 +9752,chr22,43022053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.82000000,0.00000000,,0.11842105,78.00000000,3.45132743,0.02564103,0.00000000,4.95000000 +9753,chr22,43022826,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,69.00000000,0.00000000,-1.04000000,0.00000000,,0.15277778,76.00000000,3.36283186,0.05263158,0.00000000,5.49000000 +9754,chr22,43023360,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.07000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.00000000,0.00000000,6.68000000 +9755,chr22,43024320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.00000000,5.78000000 +9756,chr22,43024435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.91000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,5.92000000 +9757,chr22,43024487,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.59000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.30000000 +9758,chr22,43025274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-0.02000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.22000000 +9759,chr22,43025466,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.18478261,92.00000000,4.07079646,0.00000000,0.00000000,6.89000000 +9760,chr22,43026313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,87.00000000,0.00000000,-2.12000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.90000000 +9761,chr22,43026602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.44000000,0.00000000,,0.18181818,88.00000000,3.89380531,0.00000000,0.00000000,6.85000000 +9762,chr22,43026670,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.61000000,0.00000000,,0.19387755,100.00000000,4.42477876,0.02000000,0.00000000,5.80000000 +9763,chr22,43026938,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.27000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.56000000 +9764,chr22,43026966,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,73.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +9765,chr22,43026970,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.66000000 +9766,chr22,43027117,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,0.00000000,2.02000000,0.00000000,,0.13333333,63.00000000,2.78761062,0.04761905,0.00000000,2.86000000 +9767,chr22,43027331,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.78000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +9768,chr22,43027622,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.32000000 +9769,chr22,43027897,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,65.00000000,0.00000000,-0.25000000,0.00000000,,0.12820513,81.00000000,3.58407080,0.03703704,0.00000000,5.19000000 +9770,chr22,43028031,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.15000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.61000000 +9771,chr22,43028471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.30000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,7.00000000 +9772,chr22,43029152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.14000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.81000000 +9773,chr22,43029170,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.20588235,73.00000000,3.23008850,0.02739726,0.00000000,4.17000000 +9774,chr22,43029818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.23333333,61.00000000,2.69911504,0.01639344,0.00000000,6.38000000 +9775,chr22,43030116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.05000000 +9776,chr22,43030182,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,0.00000000,1.55000000,0.00000000,,0.09859155,72.00000000,3.18584071,0.00000000,0.00000000,5.10000000 +9777,chr22,43031000,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-2.53000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,7.21000000 +9778,chr22,43032048,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +9779,chr22,43033144,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,1.64000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.58000000 +9780,chr22,43033719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.73000000 +9781,chr22,43035091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.91000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.09000000,0.00000000,,0.23636364,57.00000000,2.52212389,0.01754386,0.00000000,6.33000000 +9782,chr22,43036025,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.98000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,-0.03000000,0.00000000,,0.11842105,79.00000000,3.49557522,0.03797468,0.00000000,5.18000000 +9783,chr22,43037094,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-0.37000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,5.90000000 +9784,chr22,43040049,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,0.12000000,0.00000000,,0.14705882,70.00000000,3.09734513,0.02857143,0.00000000,5.05000000 +9785,chr22,43046603,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +9786,chr22,43051885,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.12000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +9787,chr22,43058701,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,1.94000000,0.00000000,,0.24418605,89.00000000,3.93805310,0.03370787,0.00000000,5.98000000 +9788,chr22,43060444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.00000000,0.00000000,6.04000000 +9789,chr22,43065688,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.66000000 +9790,chr22,43070925,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.97000000 +9791,chr22,43072370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.23000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,6.10000000 +9792,chr22,43072405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.84000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.77000000 +9793,chr22,43072659,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.19000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.00000000,0.00000000,6.34000000 +9794,chr22,43073077,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.03448276,32.00000000,1.41592920,0.09375000,0.00000000,73.00000000,0.00000000,-1.44000000,0.00000000,,0.25806452,102.00000000,4.51327434,0.08823529,0.00000000,5.94000000 +9795,chr22,43073951,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-2.08000000,0.00000000,,0.24000000,52.00000000,2.30088496,0.03846154,0.00000000,4.63000000 +9796,chr22,43075942,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,-1.52000000,0.00000000,,0.18750000,98.00000000,4.33628319,0.02040816,0.00000000,5.98000000 +9797,chr22,43076313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.14000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +9798,chr22,43076490,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.12000000,0.00000000,,0.17910448,67.00000000,2.96460177,0.00000000,0.00000000,6.55000000 +9799,chr22,43076508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.16000000,0.00000000,,0.14084507,72.00000000,3.18584071,0.01388889,0.00000000,5.19000000 +9800,chr22,43077399,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.13000000,0.00000000,,0.22352941,87.00000000,3.84955752,0.01149425,0.00000000,6.97000000 +9801,chr22,43077428,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.09000000,0.00000000,,0.24096386,83.00000000,3.67256637,0.00000000,0.00000000,6.95000000 +9802,chr22,43077656,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,0.00000000,-0.60000000,0.00000000,,0.41538462,66.00000000,2.92035398,0.00000000,0.00000000,4.41000000 +9803,chr22,43078516,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.76000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +9804,chr22,43079186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,52.98000000,5.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,50.00000000,0.00000000,-0.10000000,0.00000000,,0.21052632,46.00000000,2.03539823,0.15217391,0.00000000,2.77000000 +9805,chr22,43079465,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,0.03000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +9806,chr22,43079557,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.42000000 +9807,chr22,43081198,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.37179487,78.00000000,3.45132743,0.00000000,0.00000000,8.84000000 +9808,chr22,43081588,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,1.31000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.01162791,0.00000000,5.93000000 +9809,chr22,43082442,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.68000000,0.00000000,,0.39344262,61.00000000,2.69911504,0.00000000,0.00000000,8.40000000 +9810,chr22,43084260,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,0.98000000,0.00000000,,0.39130435,74.00000000,3.27433628,0.06756757,0.00000000,7.90000000 +9811,chr22,43084507,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.94000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,104.00000000,0.00000000,0.40000000,0.00000000,,0.34090909,90.00000000,3.98230088,0.02222222,0.00000000,14.81000000 +9812,chr22,43086614,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,8.15000000 +9813,chr22,43087236,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,38.00000000,0.00000000,-0.78000000,0.00000000,,0.39705882,71.00000000,3.14159292,0.04225352,0.00000000,3.67000000 +9814,chr22,43089379,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,0.66000000,0.00000000,,0.43589744,80.00000000,3.53982301,0.00000000,0.00000000,8.32000000 +9815,chr22,43089847,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.06000000,0.00000000,,0.48913043,95.00000000,4.20353982,0.03157895,0.00000000,4.43000000 +9816,chr22,43091254,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.45000000,0.00000000,,0.43956044,93.00000000,4.11504425,0.02150538,0.00000000,8.06000000 +9817,chr22,43091959,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,1.10000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,8.30000000 +9818,chr22,43092742,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,36.00000000,0.00000000,1.37000000,0.00000000,,0.59523810,42.00000000,1.85840708,0.00000000,0.00000000,3.90000000 +9819,chr22,43093623,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,90.00000000,0.00000000,-0.39000000,0.00000000,,0.38596491,58.00000000,2.56637168,0.01724138,0.00000000,8.46000000 +9820,chr22,43094834,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.51250000,80.00000000,3.53982301,0.00000000,0.00000000,8.63000000 +9821,chr22,43095263,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.68000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.73000000 +9822,chr22,43096633,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.84000000,0.00000000,,0.41333333,77.00000000,3.40707965,0.02597403,0.00000000,4.29000000 +9823,chr22,43096956,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.32000000,0.00000000,,0.32584270,91.00000000,4.02654867,0.02197802,0.00000000,8.17000000 +9824,chr22,43097344,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,-0.61000000,0.00000000,,0.31250000,96.00000000,4.24778761,0.00000000,0.00000000,7.18000000 +9825,chr22,43097424,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-1.57000000,0.00000000,,0.42352941,88.00000000,3.89380531,0.03409091,0.00000000,7.92000000 +9826,chr22,43097643,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,96.00000000,0.00000000,-0.10000000,0.00000000,,0.32786885,64.00000000,2.83185841,0.04687500,0.00000000,8.12000000 +9827,chr22,43097824,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,44.00000000,0.00000000,0.42000000,0.00000000,,0.44615385,66.00000000,2.92035398,0.01515152,0.00000000,4.02000000 +9828,chr22,43097950,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.04000000,0.00000000,,0.34146341,83.00000000,3.67256637,0.01204819,0.00000000,8.44000000 +9829,chr22,43097998,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.31000000,0.00000000,,0.39506173,84.00000000,3.71681416,0.01190476,0.00000000,8.63000000 +9830,chr22,43098725,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.44444444,64.00000000,2.83185841,0.01562500,0.00000000,6.15000000 +9831,chr22,43099733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,72.00000000,0.00000000,-0.48000000,0.00000000,,0.18461538,71.00000000,3.14159292,0.08450704,0.00000000,5.92000000 +9832,chr22,43099928,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,42.00000000,0.00000000,0.27000000,0.00000000,,0.47058824,58.00000000,2.56637168,0.10344828,0.00000000,3.99000000 +9833,chr22,43099983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,71.00000000,0.00000000,-1.25000000,0.00000000,,0.28787879,74.00000000,3.27433628,0.10810811,0.00000000,6.23000000 +9834,chr22,43100917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.72000000,0.00000000,,0.25263158,95.00000000,4.20353982,0.00000000,0.00000000,6.72000000 +9835,chr22,43101892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,74.00000000,0.00000000,-1.23000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,5.62000000 +9836,chr22,43102155,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,75.00000000,0.00000000,-0.93000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.06756757,0.00000000,5.92000000 +9837,chr22,43102276,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,0.81000000,0.00000000,,0.22000000,56.00000000,2.47787611,0.10714286,0.00000000,5.37000000 +9838,chr22,43103006,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,-1.62000000,2.38000000,,0.10000000,52.00000000,2.30088496,0.03846154,0.00000000,3.42000000 +9839,chr22,43103012,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.29000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-1.24000000,2.04000000,,0.10204082,51.00000000,2.25663717,0.03921569,0.00000000,3.46000000 +9840,chr22,43103026,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.27000000,2.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,0.00000000,-1.28000000,1.74000000,,0.10869565,49.00000000,2.16814159,0.04081633,0.00000000,3.29000000 +9841,chr22,43103138,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.71000000,0.00000000,,0.25531915,49.00000000,2.16814159,0.04081633,0.00000000,6.74000000 +9842,chr22,43104206,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,-1.06000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.20000000 +9843,chr22,43106820,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,89.00000000,0.00000000,-0.33000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.00000000,0.00000000,5.52000000 +9844,chr22,43107206,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,76.00000000,0.00000000,0.17000000,0.00000000,,0.20731707,88.00000000,3.89380531,0.06818182,0.00000000,5.63000000 +9845,chr22,43107351,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.68000000,0.00000000,,0.30769231,69.00000000,3.05309735,0.05797101,0.00000000,5.93000000 +9846,chr22,43107541,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.01492537,0.00000000,6.20000000 +9847,chr22,43108320,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.02000000,0.00000000,,0.18421053,87.00000000,3.84955752,0.12643678,0.00000000,5.84000000 +9848,chr22,43108321,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.88000000,0.00000000,,0.20000000,87.00000000,3.84955752,0.12643678,0.00000000,5.95000000 +9849,chr22,43108322,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.87000000,0.00000000,,0.18421053,87.00000000,3.84955752,0.12643678,0.00000000,5.84000000 +9850,chr22,43108582,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,0.00000000,0.51000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.02352941,0.00000000,6.47000000 +9851,chr22,43109151,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,78.00000000,0.00000000,-0.57000000,0.00000000,,0.22549020,103.00000000,4.55752212,0.00970874,0.00000000,6.09000000 +9852,chr22,43112216,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.72000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.63000000 +9853,chr22,43112308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,5.91000000 +9854,chr22,43113611,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-2.12000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.34000000 +9855,chr22,43122318,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.04000000,0.00000000,,0.15384615,78.00000000,3.45132743,0.00000000,0.00000000,5.48000000 +9856,chr22,43124421,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.83000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.84000000 +9857,chr22,43124845,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-0.37000000,0.00000000,,0.25531915,97.00000000,4.29203540,0.02061856,0.00000000,6.00000000 +9858,chr22,43127949,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,80.00000000,0.00000000,1.38000000,0.00000000,,0.17821782,103.00000000,4.55752212,0.00970874,0.00000000,5.50000000 +9859,chr22,43129316,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,0.25000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,5.91000000 +9860,chr22,43130740,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-1.20000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +9861,chr22,43131675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.32000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.52000000 +9862,chr22,43143114,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.87000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.47000000 +9863,chr22,43144168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,89.00000000,0.00000000,-0.35000000,0.00000000,,0.22222222,91.00000000,4.02654867,0.00000000,0.00000000,5.62000000 +9864,chr22,43157454,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02500000,42.00000000,1.85840708,0.04761905,0.00000000,81.00000000,0.00000000,-0.87000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.02380952,0.00000000,5.60000000 +9865,chr22,43159188,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.68000000,0.00000000,,0.25773196,101.00000000,4.46902655,0.02970297,0.00000000,6.31000000 +9866,chr22,43164345,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.42000000 +9867,chr22,43172660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.23000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.02061856,0.00000000,6.28000000 +9868,chr22,43175707,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,60.00000000,0.00000000,1.00000000,0.00000000,,0.13235294,70.00000000,3.09734513,0.02857143,0.00000000,4.66000000 +9869,chr22,43176348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.23214286,58.00000000,2.56637168,0.03448276,0.00000000,5.59000000 +9870,chr22,43178374,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.16216216,0.00000000,61.00000000,0.00000000,1.19000000,0.00000000,,0.20833333,79.00000000,3.49557522,0.08860759,0.00000000,5.52000000 +9871,chr22,43178511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-1.21000000,0.00000000,,0.30882353,70.00000000,3.09734513,0.02857143,0.00000000,6.68000000 +9872,chr22,43178926,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,68.00000000,0.00000000,1.27000000,0.00000000,,0.17857143,87.00000000,3.84955752,0.03448276,0.00000000,5.55000000 +9873,chr22,43179069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.10000000 +9874,chr22,43179319,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.59000000,0.00000000,,0.24324324,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +9875,chr22,43180392,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.17000000,0.00000000,,0.24137931,91.00000000,4.02654867,0.04395604,0.00000000,5.99000000 +9876,chr22,43180461,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,75.00000000,0.00000000,0.70000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.02222222,0.00000000,6.04000000 +9877,chr22,43180664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.41000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,7.32000000 +9878,chr22,43180874,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-1.39000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.76000000 +9879,chr22,43181251,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,81.00000000,0.00000000,-0.33000000,0.00000000,,0.23232323,103.00000000,4.55752212,0.03883495,0.00000000,5.99000000 +9880,chr22,43181442,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,0.85000000,0.00000000,,0.15625000,98.00000000,4.33628319,0.02040816,0.00000000,4.99000000 +9881,chr22,43181646,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.21276596,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +9882,chr22,43181651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.02105263,0.00000000,6.06000000 +9883,chr22,43181702,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.98000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,6.39000000 +9884,chr22,43181703,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.28000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.41000000 +9885,chr22,43181828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.13592233,107.00000000,4.73451327,0.03738318,0.00000000,5.08000000 +9886,chr22,43181829,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.13592233,107.00000000,4.73451327,0.03738318,0.00000000,5.06000000 +9887,chr22,43181943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,67.00000000,0.00000000,0.00000000,0.00000000,,0.13684211,97.00000000,4.29203540,0.02061856,0.00000000,4.73000000 +9888,chr22,43182039,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,0.00000000,-1.73000000,0.00000000,,0.11764706,86.00000000,3.80530973,0.01162791,0.00000000,5.18000000 +9889,chr22,43182159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.17000000,0.00000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,5.58000000 +9890,chr22,43182300,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,69.00000000,0.00000000,-1.12000000,0.00000000,,0.14285714,80.00000000,3.53982301,0.03750000,0.00000000,5.44000000 +9891,chr22,43182528,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,-0.97000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.39000000 +9892,chr22,43183043,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,2.56000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.08000000 +9893,chr22,43183600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,0.30000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.90000000 +9894,chr22,43183826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,86.00000000,0.00000000,-0.14000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.02150538,0.00000000,5.82000000 +9895,chr22,43184171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.66000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +9896,chr22,43184954,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.58000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,5.50000000 +9897,chr22,43186533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,0.00000000,2.01000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.02564103,0.00000000,5.62000000 +9898,chr22,43187819,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,7.42000000 +9899,chr22,43188223,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.19000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.57000000 +9900,chr22,43188275,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.65000000,0.00000000,,0.14864865,79.00000000,3.49557522,0.06329114,0.00000000,5.47000000 +9901,chr22,43188625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.39000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,6.00000000 +9902,chr22,43189299,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +9903,chr22,43189489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.44000000,0.00000000,,0.24050633,84.00000000,3.71681416,0.05952381,0.00000000,5.99000000 +9904,chr22,43189524,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.34000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +9905,chr22,43190902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,1.62000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.03750000,0.00000000,5.79000000 +9906,chr22,43191950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.44000000,0.00000000,,0.21794872,81.00000000,3.58407080,0.03703704,0.00000000,6.30000000 +9907,chr22,43192196,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.00000000,0.00000000,6.92000000 +9908,chr22,43192277,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,1.40000000,0.00000000,,0.16417910,68.00000000,3.00884956,0.01470588,0.00000000,4.99000000 +9909,chr22,43192287,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,73.00000000,0.00000000,1.01000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,5.60000000 +9910,chr22,43196368,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.65000000,0.00000000,,0.21153846,105.00000000,4.64601770,0.00952381,0.00000000,6.12000000 +9911,chr22,43196804,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,6.20000000 +9912,chr22,43200119,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,82.00000000,0.00000000,0.00000000,0.00000000,,0.20987654,86.00000000,3.80530973,0.04651163,0.00000000,5.91000000 +9913,chr22,43200388,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.58000000,0.00000000,,0.24444444,90.00000000,3.98230088,0.00000000,0.00000000,6.43000000 +9914,chr22,43201548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.19000000,0.00000000,,0.21666667,63.00000000,2.78761062,0.03174603,0.00000000,6.35000000 +9915,chr22,43203911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.06666667,0.00000000,72.00000000,0.00000000,0.68000000,0.00000000,,0.15909091,94.00000000,4.15929204,0.04255319,0.00000000,4.97000000 +9916,chr22,43203985,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-1.59000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.96000000 +9917,chr22,43204275,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,-0.97000000,0.00000000,,0.30434783,73.00000000,3.23008850,0.04109589,0.00000000,7.05000000 +9918,chr22,43206679,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,2.61000000,0.00000000,,0.24719101,93.00000000,4.11504425,0.04301075,0.00000000,6.19000000 +9919,chr22,43206754,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.08000000,0.00000000,,0.18666667,79.00000000,3.49557522,0.05063291,0.00000000,5.21000000 +9920,chr22,43208917,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.80000000,0.00000000,,0.10344828,63.00000000,2.78761062,0.07936508,0.00000000,3.54000000 +9921,chr22,43209648,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.41000000,0.00000000,,0.20408163,102.00000000,4.51327434,0.03921569,0.00000000,6.29000000 +9922,chr22,43209764,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,0.29000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.68000000 +9923,chr22,43210611,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.16901408,74.00000000,3.27433628,0.04054054,0.00000000,5.74000000 +9924,chr22,43210662,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.74000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.01538462,0.00000000,6.66000000 +9925,chr22,43212286,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.13000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.00000000,0.00000000,6.43000000 +9926,chr22,43213125,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.64000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +9927,chr22,43213754,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.29000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.38000000 +9928,chr22,43219555,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.24324324,84.00000000,3.71681416,0.10714286,0.00000000,5.99000000 +9929,chr22,43219862,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,-0.89000000,0.00000000,,0.23595506,91.00000000,4.02654867,0.02197802,0.00000000,6.23000000 +9930,chr22,43220044,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.18000000,0.00000000,,0.25641026,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +9931,chr22,43221033,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,0.33000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,5.67000000 +9932,chr22,43223056,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.16000000,104.00000000,4.60176991,0.03846154,0.00000000,5.40000000 +9933,chr22,43226228,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,59.00000000,0.00000000,0.89000000,0.00000000,,0.19047619,69.00000000,3.05309735,0.08695652,0.00000000,4.71000000 +9934,chr22,43226478,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.15000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.03296703,0.00000000,6.36000000 +9935,chr22,43230810,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.71000000 +9936,chr22,43231149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.15957447,94.00000000,4.15929204,0.00000000,0.00000000,5.44000000 +9937,chr22,43236094,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.00000000,0.00000000,,0.31506849,78.00000000,3.45132743,0.05128205,0.00000000,7.96000000 +9938,chr22,43236932,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,65.00000000,0.00000000,0.52000000,0.00000000,,0.12345679,86.00000000,3.80530973,0.05813953,0.00000000,4.80000000 +9939,chr22,43237506,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.62000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.90000000 +9940,chr22,43239312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.84000000,0.00000000,,0.28205128,80.00000000,3.53982301,0.02500000,0.00000000,6.34000000 +9941,chr22,43239543,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,2.09000000,0.00000000,,0.14583333,96.00000000,4.24778761,0.00000000,0.00000000,5.18000000 +9942,chr22,43241171,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.23000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.17000000 +9943,chr22,43242648,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.00000000,0.00000000,6.90000000 +9944,chr22,43242729,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-0.82000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +9945,chr22,43243913,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,1.40000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.29000000 +9946,chr22,43245156,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-0.40000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.94000000 +9947,chr22,43245327,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,84.00000000,0.00000000,-0.17000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.01041667,0.00000000,5.24000000 +9948,chr22,43245575,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.77000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.69000000 +9949,chr22,43246084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.84000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.79000000 +9950,chr22,43247281,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,84.00000000,0.00000000,0.23000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,5.85000000 +9951,chr22,43248551,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.09000000,0.00000000,,0.23809524,84.00000000,3.71681416,0.00000000,0.00000000,6.73000000 +9952,chr22,43249274,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,72.00000000,0.00000000,-0.51000000,0.00000000,,0.18840580,81.00000000,3.58407080,0.13580247,0.00000000,5.88000000 +9953,chr22,43249329,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.19047619,80.00000000,3.53982301,0.21250000,0.00000000,5.84000000 +9954,chr22,43250698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.22619048,87.00000000,3.84955752,0.03448276,0.00000000,6.27000000 +9955,chr22,43250703,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.72000000,0.00000000,,0.23809524,87.00000000,3.84955752,0.03448276,0.00000000,6.32000000 +9956,chr22,43268338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,0.74000000,0.00000000,,0.14736842,95.00000000,4.20353982,0.00000000,0.00000000,5.13000000 +9957,chr22,43271547,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,0.31000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.72000000 +9958,chr22,43272594,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.38000000,0.00000000,,0.27058824,87.00000000,3.84955752,0.02298851,0.00000000,6.33000000 +9959,chr22,43275377,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,-0.63000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.02247191,0.00000000,5.86000000 +9960,chr22,43276623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.64000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.00000000,0.00000000,5.44000000 +9961,chr22,43276683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.14893617,94.00000000,4.15929204,0.00000000,0.00000000,5.06000000 +9962,chr22,43307723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.19178082,76.00000000,3.36283186,0.03947368,0.00000000,6.13000000 +9963,chr22,43307985,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,84.00000000,0.00000000,0.69000000,0.00000000,,0.26562500,69.00000000,3.05309735,0.05797101,0.00000000,5.77000000 +9964,chr22,43309672,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.26000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.15000000 +9965,chr22,43309923,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.69000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.02531646,0.00000000,5.87000000 +9966,chr22,43310482,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.03000000,0.00000000,,0.18750000,48.00000000,2.12389381,0.00000000,0.00000000,6.60000000 +9967,chr22,43310767,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,1.12000000,0.00000000,,0.23958333,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +9968,chr22,43310987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,0.00000000,-0.07000000,0.00000000,,0.12121212,69.00000000,3.05309735,0.02898551,0.00000000,5.16000000 +9969,chr22,43311990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.67000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.40000000 +9970,chr22,43312916,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.87000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,6.02000000 +9971,chr22,43314344,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +9972,chr22,43315074,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,84.00000000,0.00000000,1.23000000,0.00000000,,0.20930233,90.00000000,3.98230088,0.04444444,0.00000000,5.72000000 +9973,chr22,43316779,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,1.04000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.28000000 +9974,chr22,43342441,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.59000000,0.00000000,,0.17241379,61.00000000,2.69911504,0.03278689,0.00000000,6.05000000 +9975,chr22,43349123,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.21000000 +9976,chr22,43353021,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-1.53000000,0.00000000,,0.17647059,70.00000000,3.09734513,0.01428571,0.00000000,6.10000000 +9977,chr22,43364197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.01000000,0.00000000,,0.16417910,72.00000000,3.18584071,0.06944444,0.00000000,2.82000000 +9978,chr22,43366765,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.32000000,0.00000000,,0.18840580,72.00000000,3.18584071,0.01388889,0.00000000,5.95000000 +9979,chr22,43373865,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.28000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.02816901,0.00000000,6.36000000 +9980,chr22,43379906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.54000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.62000000 +9981,chr22,43383514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,1.51000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.02325581,0.00000000,5.85000000 +9982,chr22,43385424,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.95000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.52000000 +9983,chr22,43388088,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.41000000,0.00000000,,0.16417910,69.00000000,3.05309735,0.02898551,0.00000000,5.80000000 +9984,chr22,43388500,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.55000000 +9985,chr22,43390225,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.27000000,0.00000000,,0.27419355,64.00000000,2.83185841,0.03125000,0.00000000,5.86000000 +9986,chr22,43391224,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.48000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,6.92000000 +9987,chr22,43392930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.24000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +9988,chr22,43401158,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,-0.40000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,5.96000000 +9989,chr22,43403001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.27000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.72000000 +9990,chr22,43403122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,5.98000000 +9991,chr22,43405211,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.59000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.70000000 +9992,chr22,43407408,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.52000000 +9993,chr22,43407987,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.39000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.55000000 +9994,chr22,43411456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,78.00000000,0.00000000,0.53000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,5.93000000 +9995,chr22,43412739,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.37000000,3.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.07500000,0.00000000,75.00000000,0.00000000,-1.66000000,0.00000000,,0.19354839,100.00000000,4.42477876,0.05000000,0.00000000,5.84000000 +9996,chr22,43414741,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,1.83000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.30000000 +9997,chr22,43416890,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,-1.49000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.61000000 +9998,chr22,43419787,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.11000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.47000000 +9999,chr22,43420021,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,1.67000000,0.00000000,,0.33783784,76.00000000,3.36283186,0.00000000,0.00000000,8.29000000 +10000,chr22,43421475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.50000000,0.00000000,,0.21111111,91.00000000,4.02654867,0.01098901,0.00000000,6.64000000 +10001,chr22,43422273,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,2.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.56000000 +10002,chr22,43426557,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.96000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.04225352,0.00000000,6.07000000 +10003,chr22,43430317,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.55000000 +10004,chr22,43431271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.15000000,0.00000000,,0.31818182,89.00000000,3.93805310,0.01123596,0.00000000,7.24000000 +10005,chr22,43433976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.47000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,5.41000000 +10006,chr22,43434925,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,-0.82000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,5.84000000 +10007,chr22,43434980,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.77000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,5.99000000 +10008,chr22,43434990,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-1.47000000,0.00000000,,0.22222222,92.00000000,4.07079646,0.02173913,0.00000000,5.86000000 +10009,chr22,43436674,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.23000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,6.42000000 +10010,chr22,43440073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.42000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,6.34000000 +10011,chr22,43442527,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.84000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.00000000,6.60000000 +10012,chr22,43449809,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,0.00000000,-2.34000000,0.00000000,,0.50617284,81.00000000,3.58407080,0.00000000,0.00000000,4.10000000 +10013,chr22,43450616,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.75000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-3.12000000,0.00000000,,0.54794521,74.00000000,3.27433628,0.01351351,0.00000000,8.66000000 +10014,chr22,43451689,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.12000000,0.00000000,,0.50746269,67.00000000,2.96460177,0.00000000,0.00000000,4.05000000 +10015,chr22,43456740,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.79000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.64000000 +10016,chr22,43457628,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,0.00000000,-1.14000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.89000000 +10017,chr22,43471297,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.13000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,4.86000000 +10018,chr22,43473483,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.97000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,7.00000000 +10019,chr22,43474183,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.13000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.31000000 +10020,chr22,43474602,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,64.00000000,0.00000000,-0.47000000,0.00000000,,0.13793103,92.00000000,4.07079646,0.05434783,0.00000000,4.94000000 +10021,chr22,43477772,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.22000000,0.00000000,,0.14084507,74.00000000,3.27433628,0.01351351,0.00000000,5.74000000 +10022,chr22,43477791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.51000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.31000000 +10023,chr22,43478399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.50000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.30000000 +10024,chr22,43478722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-1.02000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +10025,chr22,43478855,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.20000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.37000000 +10026,chr22,43479660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.45000000 +10027,chr22,43480170,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,90.00000000,0.00000000,1.63000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.03000000 +10028,chr22,43483368,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.07000000,0.00000000,,0.26229508,63.00000000,2.78761062,0.03174603,0.00000000,6.66000000 +10029,chr22,43498581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.84000000,0.00000000,,0.23958333,96.00000000,4.24778761,0.00000000,0.00000000,6.54000000 +10030,chr22,43498719,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.47000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.41000000 +10031,chr22,43503199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.38000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,5.98000000 +10032,chr22,43516119,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.93000000 +10033,chr22,43547951,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.31000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.01098901,0.00000000,5.66000000 +10034,chr22,43550596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,0.00000000,0.89000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,4.98000000 +10035,chr22,43551223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,61.00000000,0.00000000,1.05000000,0.00000000,,0.11688312,80.00000000,3.53982301,0.02500000,0.00000000,4.60000000 +10036,chr22,43561628,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.61000000,0.00000000,,0.22000000,50.00000000,2.21238938,0.00000000,0.00000000,6.59000000 +10037,chr22,43563302,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.79000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +10038,chr22,43564048,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.65000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,6.19000000 +10039,chr22,43566669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.37000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10040,chr22,43566788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.02000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.59000000 +10041,chr22,43573950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.02380952,0.00000000,5.92000000 +10042,chr22,43574750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +10043,chr22,43574853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.90000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +10044,chr22,43589005,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.82000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.72000000 +10045,chr22,43589320,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.19642857,69.00000000,3.05309735,0.18840580,0.00000000,5.14000000 +10046,chr22,43590254,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.05405405,0.00000000,73.00000000,0.00000000,-0.77000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.01265823,0.00000000,6.09000000 +10047,chr22,43593564,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,1.21000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,5.86000000 +10048,chr22,43594995,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.71000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.73000000 +10049,chr22,43595283,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.20000000 +10050,chr22,43602498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.60000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.58000000 +10051,chr22,43605971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.06000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.37000000 +10052,chr22,43608098,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.37000000,0.00000000,,0.18181818,91.00000000,4.02654867,0.01098901,0.00000000,6.56000000 +10053,chr22,43611478,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,1.60000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.42000000 +10054,chr22,43618354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.11111111,0.00000000,43.00000000,0.00000000,2.84000000,0.00000000,,0.32051282,79.00000000,3.49557522,0.01265823,0.00000000,3.54000000 +10055,chr22,43618601,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.23000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.91000000 +10056,chr22,43623003,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.08000000,0.00000000,,0.34666667,75.00000000,3.31858407,0.00000000,0.00000000,8.98000000 +10057,chr22,43623821,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.15789474,0.00000000,63.00000000,0.00000000,-1.38000000,0.00000000,,0.07575758,81.00000000,3.58407080,0.18518519,0.00000000,4.82000000 +10058,chr22,43623954,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,0.00000000,1.36000000,0.00000000,,0.30508475,60.00000000,2.65486726,0.01666667,0.00000000,2.92000000 +10059,chr22,43629037,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.23000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +10060,chr22,43630245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.47000000,0.00000000,,0.29896907,97.00000000,4.29203540,0.00000000,0.00000000,6.61000000 +10061,chr22,43630684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.98000000 +10062,chr22,43630780,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.26000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +10063,chr22,43638054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.17000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.00000000,0.00000000,6.26000000 +10064,chr22,43638361,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,1.41000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.45000000 +10065,chr22,43639423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,-1.84000000,0.00000000,,0.10389610,79.00000000,3.49557522,0.01265823,0.00000000,4.97000000 +10066,chr22,43640259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,1.00000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,6.15000000 +10067,chr22,43640528,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.95000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10068,chr22,43642799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.06000000,0.00000000,,0.22093023,86.00000000,3.80530973,0.00000000,0.00000000,6.72000000 +10069,chr22,43643405,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,0.82000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,5.58000000 +10070,chr22,43645124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,54.78000000,11.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.31000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.00000000,0.00000000,7.01000000 +10071,chr22,43650384,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,1.64000000,0.00000000,,0.14102564,79.00000000,3.49557522,0.01265823,0.00000000,5.71000000 +10072,chr22,43650485,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.43000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.03896104,0.00000000,5.51000000 +10073,chr22,43656161,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.86000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,5.95000000 +10074,chr22,43656309,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.94000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.01234568,0.00000000,6.00000000 +10075,chr22,43656672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.48000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.67000000 +10076,chr22,43656883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.16000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.58000000 +10077,chr22,43658086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.22580645,65.00000000,2.87610619,0.04615385,0.00000000,5.76000000 +10078,chr22,43658183,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,-0.02000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.01234568,0.00000000,6.87000000 +10079,chr22,43659425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.04000000 +10080,chr22,43660064,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,66.00000000,0.00000000,-0.96000000,0.00000000,,0.16129032,65.00000000,2.87610619,0.04615385,0.00000000,5.53000000 +10081,chr22,43660092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-0.50000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.49000000 +10082,chr22,43660361,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-2.72000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.82000000 +10083,chr22,43660823,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.68000000 +10084,chr22,43662797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,-1.40000000,0.00000000,,0.25000000,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +10085,chr22,43663179,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.01030928,0.00000000,6.65000000 +10086,chr22,43665129,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,0.00000000,0.07000000,0.00000000,,0.27586207,90.00000000,3.98230088,0.03333333,0.00000000,6.27000000 +10087,chr22,43672313,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-1.87000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.41000000 +10088,chr22,43672439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,82.00000000,0.00000000,0.83000000,0.00000000,,0.18000000,101.00000000,4.46902655,0.00990099,0.00000000,5.22000000 +10089,chr22,43672711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,67.00000000,0.00000000,-0.64000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.53000000 +10090,chr22,43673175,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.02000000 +10091,chr22,43674650,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-1.15000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.26000000 +10092,chr22,43676273,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.42000000,0.00000000,,0.19402985,70.00000000,3.09734513,0.02857143,0.00000000,5.79000000 +10093,chr22,43679003,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.65000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.54000000 +10094,chr22,43680254,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.94000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.19000000 +10095,chr22,43681227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,0.00000000,-1.24000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.58000000 +10096,chr22,43684766,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.40000000,0.00000000,,0.16279070,86.00000000,3.80530973,0.00000000,0.00000000,5.97000000 +10097,chr22,43687122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.37000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.01162791,0.00000000,7.24000000 +10098,chr22,43689699,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-1.18000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.97000000 +10099,chr22,43692692,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.34210526,77.00000000,3.40707965,0.01298701,0.00000000,8.31000000 +10100,chr22,43693460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,6.27000000 +10101,chr22,43699089,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.23809524,69.00000000,3.05309735,0.07246377,0.00000000,6.35000000 +10102,chr22,43700802,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.54000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.55000000 +10103,chr22,43705261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.30666667,76.00000000,3.36283186,0.00000000,0.00000000,7.97000000 +10104,chr22,43706756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.29000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.68000000 +10105,chr22,43707413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-1.64000000,0.00000000,,0.31460674,90.00000000,3.98230088,0.01111111,0.00000000,6.70000000 +10106,chr22,43713888,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.93000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +10107,chr22,43718504,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.04000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.39000000 +10108,chr22,43718736,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.77000000,0.00000000,,0.25333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10109,chr22,43718981,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.73000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.30000000 +10110,chr22,43720640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,58.00000000,0.00000000,0.47000000,0.00000000,,0.11940299,70.00000000,3.09734513,0.02857143,0.00000000,3.79000000 +10111,chr22,43721804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.89000000,0.00000000,,0.15625000,66.00000000,2.92035398,0.01515152,0.00000000,5.94000000 +10112,chr22,43722088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,75.00000000,0.00000000,0.84000000,0.00000000,,0.19101124,91.00000000,4.02654867,0.01098901,0.00000000,5.89000000 +10113,chr22,43722401,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,-0.68000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.00000000,0.00000000,6.08000000 +10114,chr22,43729050,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.08000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,6.95000000 +10115,chr22,43729553,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,73.00000000,0.00000000,0.12000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,5.70000000 +10116,chr22,43730426,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.12000000,0.00000000,,0.26415094,53.00000000,2.34513274,0.00000000,0.00000000,6.96000000 +10117,chr22,43730637,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,1.60000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.01515152,0.00000000,5.81000000 +10118,chr22,43731070,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.62000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,6.65000000 +10119,chr22,43732955,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,55.00000000,0.00000000,0.23000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,2.81000000 +10120,chr22,43733095,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.61000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.01190476,0.00000000,6.64000000 +10121,chr22,43733567,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.22000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +10122,chr22,43733978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.38000000,0.00000000,,0.18750000,66.00000000,2.92035398,0.01515152,0.00000000,6.15000000 +10123,chr22,43736216,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,0.00000000,0.62000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.09000000 +10124,chr22,43737984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.96000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.04109589,0.00000000,6.17000000 +10125,chr22,43741873,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.18181818,77.00000000,3.40707965,0.00000000,0.00000000,6.31000000 +10126,chr22,43743414,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-1.58000000,0.00000000,,0.27586207,59.00000000,2.61061947,0.01694915,0.00000000,6.31000000 +10127,chr22,43746315,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-0.31000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +10128,chr22,43751193,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.02000000,0.00000000,,0.27272727,77.00000000,3.40707965,0.00000000,0.00000000,6.66000000 +10129,chr22,43760048,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,60.00000000,0.00000000,-1.32000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.01639344,0.00000000,5.15000000 +10130,chr22,43761108,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.18000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +10131,chr22,43766676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.21000000,2.28000000,,0.17307692,52.00000000,2.30088496,0.00000000,0.00000000,5.36000000 +10132,chr22,43766794,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.81000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,6.48000000 +10133,chr22,43767513,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.90000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.41000000 +10134,chr22,43769718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,-0.36000000,0.00000000,,0.15789474,78.00000000,3.45132743,0.02564103,0.00000000,5.60000000 +10135,chr22,43771804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.02000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.84000000 +10136,chr22,43777650,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.59000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.52000000 +10137,chr22,43783247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,94.00000000,0.00000000,0.62000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,5.75000000 +10138,chr22,43783254,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,88.00000000,0.00000000,1.06000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.01000000 +10139,chr22,43785432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.40000000,0.00000000,,0.24489796,98.00000000,4.33628319,0.00000000,0.00000000,6.07000000 +10140,chr22,43797937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.00000000,0.00000000,6.39000000 +10141,chr22,43800083,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.87000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,7.07000000 +10142,chr22,43804166,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-1.85000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.02564103,0.00000000,6.58000000 +10143,chr22,43804726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.23529412,0.00000000,62.00000000,0.00000000,-0.52000000,0.00000000,,0.12162162,103.00000000,4.55752212,0.27184466,0.00000000,4.81000000 +10144,chr22,43806676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-1.24000000,0.00000000,,0.21505376,93.00000000,4.11504425,0.00000000,0.00000000,6.14000000 +10145,chr22,43813188,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-2.53000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.73000000 +10146,chr22,43815018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.48000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.22000000 +10147,chr22,43815138,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.22000000 +10148,chr22,43815181,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.06000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.48000000 +10149,chr22,43815779,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.18367347,105.00000000,4.64601770,0.06666667,0.00000000,6.19000000 +10150,chr22,43818622,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,0.00000000,0.40000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.01369863,0.00000000,5.97000000 +10151,chr22,43819173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,0.00000000,-1.26000000,0.00000000,,0.14285714,65.00000000,2.87610619,0.03076923,0.00000000,4.97000000 +10152,chr22,43819309,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.33000000,0.00000000,,0.18750000,84.00000000,3.71681416,0.04761905,0.00000000,5.98000000 +10153,chr22,43819541,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,59.00000000,0.00000000,-0.72000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,3.45000000 +10154,chr22,43819782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.11000000 +10155,chr22,43820921,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.52000000,0.00000000,,0.25301205,89.00000000,3.93805310,0.03370787,0.00000000,6.52000000 +10156,chr22,43821336,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.20000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.01754386,0.00000000,6.50000000 +10157,chr22,43822302,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.94000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.83000000 +10158,chr22,43824064,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.15000000,0.00000000,,0.24175824,91.00000000,4.02654867,0.00000000,0.00000000,6.66000000 +10159,chr22,43824984,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-0.28000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.12000000 +10160,chr22,43826465,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.65000000,0.00000000,,0.31428571,71.00000000,3.14159292,0.01408451,0.00000000,6.64000000 +10161,chr22,43827186,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.92000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.38000000 +10162,chr22,43828976,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,79.00000000,0.00000000,0.69000000,0.00000000,,0.20224719,90.00000000,3.98230088,0.01111111,0.00000000,5.90000000 +10163,chr22,43829978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.30000000,0.00000000,,0.17045455,92.00000000,4.07079646,0.04347826,0.00000000,6.21000000 +10164,chr22,43830386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,2.19000000,0.00000000,,0.21348315,93.00000000,4.11504425,0.04301075,0.00000000,5.66000000 +10165,chr22,43836397,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,46.34000000,9.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,19.00000000,0.00000000,-0.20000000,0.00000000,,0.34090909,49.00000000,2.16814159,0.10204082,0.00000000,3.73000000 +10166,chr22,43837007,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.37209302,90.00000000,3.98230088,0.04444444,0.00000000,8.00000000 +10167,chr22,43837546,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.44000000,0.00000000,,0.30303030,66.00000000,2.92035398,0.00000000,0.00000000,7.01000000 +10168,chr22,43838159,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,-1.06000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.39000000 +10169,chr22,43843870,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,-1.53000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,5.99000000 +10170,chr22,43846222,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.45000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.30000000 +10171,chr22,43851908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.47000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.64000000 +10172,chr22,43852351,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.55000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,5.93000000 +10173,chr22,43853583,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.64000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.92000000 +10174,chr22,43853597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.13000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.92000000 +10175,chr22,43853898,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.03000000,0.00000000,,0.29411765,86.00000000,3.80530973,0.01162791,0.00000000,6.10000000 +10176,chr22,43854025,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.48000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.76000000 +10177,chr22,43854381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.15000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +10178,chr22,43854750,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.14492754,70.00000000,3.09734513,0.01428571,0.00000000,5.53000000 +10179,chr22,43855309,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-1.32000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.77000000 +10180,chr22,43859342,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.15000000,0.00000000,,0.21176471,87.00000000,3.84955752,0.02298851,0.00000000,6.67000000 +10181,chr22,43859452,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.65000000,0.00000000,,0.31081081,75.00000000,3.31858407,0.01333333,0.00000000,7.09000000 +10182,chr22,43861176,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,0.48000000,0.00000000,,0.12500000,83.00000000,3.67256637,0.02409639,0.00000000,5.42000000 +10183,chr22,43861547,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,5.91000000 +10184,chr22,43863761,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.64000000,0.00000000,,0.25000000,78.00000000,3.45132743,0.02564103,0.00000000,6.67000000 +10185,chr22,43864726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-3.03000000,0.00000000,,0.27906977,89.00000000,3.93805310,0.02247191,0.00000000,6.80000000 +10186,chr22,43865969,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.12000000,0.00000000,,0.19444444,74.00000000,3.27433628,0.02702703,0.00000000,6.51000000 +10187,chr22,43868337,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.85000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,6.40000000 +10188,chr22,43869443,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.99000000,0.00000000,,0.18032787,62.00000000,2.74336283,0.01612903,0.00000000,6.06000000 +10189,chr22,43870184,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.30000000,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +10190,chr22,43870562,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.17000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.07000000 +10191,chr22,43871119,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.36000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,2.88000000 +10192,chr22,43871456,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-0.36000000,0.00000000,,0.21739130,93.00000000,4.11504425,0.01075269,0.00000000,6.77000000 +10193,chr22,43871785,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.02000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.96000000 +10194,chr22,43872696,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,86.00000000,0.00000000,-0.20000000,0.00000000,,0.23404255,96.00000000,4.24778761,0.01041667,0.00000000,6.07000000 +10195,chr22,43873043,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,82.00000000,0.00000000,0.93000000,0.00000000,,0.20000000,98.00000000,4.33628319,0.03061224,0.00000000,5.68000000 +10196,chr22,43874712,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,85.00000000,0.00000000,1.03000000,0.00000000,,0.21839080,91.00000000,4.02654867,0.04395604,0.00000000,5.64000000 +10197,chr22,43876405,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.18000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.54000000 +10198,chr22,43876570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-0.65000000,0.00000000,,0.09708738,104.00000000,4.60176991,0.00961538,0.00000000,4.94000000 +10199,chr22,43878815,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.09000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +10200,chr22,43878848,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,6.18000000 +10201,chr22,43879579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.10000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,6.54000000 +10202,chr22,43880023,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,1.28000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.01190476,0.00000000,6.29000000 +10203,chr22,43880664,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-1.87000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.02857143,0.00000000,6.73000000 +10204,chr22,43881526,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.34000000,0.00000000,,0.20689655,62.00000000,2.74336283,0.06451613,0.00000000,6.49000000 +10205,chr22,43882518,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.63000000,0.00000000,,0.21978022,92.00000000,4.07079646,0.00000000,0.00000000,6.41000000 +10206,chr22,43882600,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,0.34000000,0.00000000,,0.25000000,117.00000000,5.17699115,0.00854701,0.00000000,6.16000000 +10207,chr22,43882872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.24000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.69000000 +10208,chr22,43883435,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,1.53000000,0.00000000,,0.39080460,87.00000000,3.84955752,0.00000000,0.00000000,8.24000000 +10209,chr22,43883547,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.03030303,0.00000000,61.00000000,0.00000000,-1.85000000,0.00000000,,0.46052632,78.00000000,3.45132743,0.02564103,0.00000000,7.54000000 +10210,chr22,43883575,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.05000000,0.00000000,,0.48571429,71.00000000,3.14159292,0.01408451,0.00000000,8.21000000 +10211,chr22,43884532,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.51612903,64.00000000,2.83185841,0.03125000,0.00000000,8.00000000 +10212,chr22,43884621,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.20000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +10213,chr22,43884853,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.35000000,0.00000000,,0.38750000,82.00000000,3.62831858,0.02439024,0.00000000,8.34000000 +10214,chr22,43884952,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.42857143,70.00000000,3.09734513,0.00000000,0.00000000,8.91000000 +10215,chr22,43885002,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.45000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.56000000 +10216,chr22,43885193,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.94000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.35000000 +10217,chr22,43885264,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.72000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,5.51000000 +10218,chr22,43885281,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,0.04000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +10219,chr22,43885354,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,62.00000000,0.00000000,1.47000000,0.00000000,,0.13846154,75.00000000,3.31858407,0.13333333,0.00000000,4.55000000 +10220,chr22,43885727,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-0.90000000,0.00000000,,0.45945946,74.00000000,3.27433628,0.00000000,0.00000000,4.65000000 +10221,chr22,43885828,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,6.44000000 +10222,chr22,43886396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,75.00000000,0.00000000,-3.04000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,6.07000000 +10223,chr22,43886427,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-2.49000000,0.00000000,,0.21904762,105.00000000,4.64601770,0.00000000,0.00000000,6.82000000 +10224,chr22,43886813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,0.61000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.02247191,0.00000000,6.68000000 +10225,chr22,43887076,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.78000000,0.00000000,,0.24657534,75.00000000,3.31858407,0.02666667,0.00000000,6.35000000 +10226,chr22,43887140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,1.06000000,0.00000000,,0.20000000,88.00000000,3.89380531,0.03409091,0.00000000,6.14000000 +10227,chr22,43887676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.20000000,0.00000000,,0.17857143,84.00000000,3.71681416,0.00000000,0.00000000,5.77000000 +10228,chr22,43888801,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-0.29000000,0.00000000,,0.49295775,73.00000000,3.23008850,0.02739726,0.00000000,8.35000000 +10229,chr22,43888935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,0.00000000,0.82000000,0.00000000,,0.14473684,80.00000000,3.53982301,0.02500000,0.00000000,3.83000000 +10230,chr22,43888974,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.19000000,0.00000000,,0.38709677,66.00000000,2.92035398,0.01515152,0.00000000,4.24000000 +10231,chr22,43889074,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.16000000,0.00000000,,0.46250000,80.00000000,3.53982301,0.00000000,0.00000000,7.91000000 +10232,chr22,43889548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.75000000,0.00000000,,0.30555556,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +10233,chr22,43889787,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.39240506,84.00000000,3.71681416,0.05952381,0.00000000,7.49000000 +10234,chr22,43889885,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,92.00000000,0.00000000,0.05000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,7.99000000 +10235,chr22,43890215,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,76.00000000,0.00000000,0.00000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.41000000 +10236,chr22,43890651,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,58.00000000,0.00000000,-1.28000000,0.00000000,,0.49397590,83.00000000,3.67256637,0.00000000,0.00000000,5.92000000 +10237,chr22,43891182,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.17000000,0.00000000,,0.37500000,83.00000000,3.67256637,0.03614458,0.00000000,7.85000000 +10238,chr22,43893104,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,96.00000000,0.00000000,-1.53000000,0.00000000,,0.47572816,108.00000000,4.77876106,0.03703704,0.00000000,8.45000000 +10239,chr22,43893110,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,93.00000000,0.00000000,0.72000000,0.00000000,,0.46153846,108.00000000,4.77876106,0.03703704,0.00000000,8.28000000 +10240,chr22,43893382,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,79.00000000,0.00000000,-0.49000000,0.00000000,,0.18367347,103.00000000,4.55752212,0.03883495,0.00000000,5.05000000 +10241,chr22,43893463,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,101.00000000,0.00000000,0.35000000,0.00000000,,0.34177215,81.00000000,3.58407080,0.02469136,0.00000000,8.12000000 +10242,chr22,43893779,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,79.00000000,0.00000000,-1.08000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,5.83000000 +10243,chr22,43893800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,0.00000000,-1.89000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.01298701,0.00000000,5.70000000 +10244,chr22,43893943,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,2.08000000,0.00000000,,0.15476190,86.00000000,3.80530973,0.02325581,0.00000000,5.36000000 +10245,chr22,43894318,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.28000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.73000000 +10246,chr22,43894395,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,2.09000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.81000000 +10247,chr22,43894532,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.25000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,6.36000000 +10248,chr22,43894600,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.34000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10249,chr22,43894603,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.42000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.00000000,0.00000000,6.41000000 +10250,chr22,43894696,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.23000000,0.00000000,,0.20689655,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +10251,chr22,43894817,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.73000000,0.00000000,,0.23595506,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10252,chr22,43894976,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-1.01000000,0.00000000,,0.19117647,70.00000000,3.09734513,0.01428571,0.00000000,6.56000000 +10253,chr22,43895078,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.08000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.70000000 +10254,chr22,43895140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.47000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,67.00000000,0.00000000,1.23000000,0.00000000,,0.16000000,78.00000000,3.45132743,0.03846154,0.00000000,4.99000000 +10255,chr22,43895419,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,0.26000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.02631579,0.00000000,6.33000000 +10256,chr22,43897440,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,-0.15000000,0.00000000,,0.27500000,84.00000000,3.71681416,0.04761905,0.00000000,5.99000000 +10257,chr22,43898968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.08000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.06000000 +10258,chr22,43899925,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.38000000,0.00000000,,0.25287356,89.00000000,3.93805310,0.02247191,0.00000000,6.34000000 +10259,chr22,43900170,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,-0.94000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.99000000 +10260,chr22,43900374,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.51000000,0.00000000,,0.26923077,80.00000000,3.53982301,0.02500000,0.00000000,5.78000000 +10261,chr22,43900487,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,89.00000000,0.00000000,0.73000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.22000000 +10262,chr22,43900492,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,1.12000000,0.00000000,,0.22471910,91.00000000,4.02654867,0.02197802,0.00000000,6.11000000 +10263,chr22,43900894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.70000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,5.26000000 +10264,chr22,43901397,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.07000000,0.00000000,,0.28985507,72.00000000,3.18584071,0.04166667,0.00000000,5.92000000 +10265,chr22,43901673,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.13000000,0.00000000,,0.48387097,63.00000000,2.78761062,0.01587302,0.00000000,3.96000000 +10266,chr22,43901818,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +10267,chr22,43902377,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.45714286,75.00000000,3.31858407,0.05333333,0.00000000,7.98000000 +10268,chr22,43902459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,93.00000000,0.00000000,1.10000000,0.00000000,,0.24468085,95.00000000,4.20353982,0.01052632,0.00000000,5.91000000 +10269,chr22,43902710,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.26000000,3.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,106.00000000,0.00000000,-1.42000000,0.00000000,,0.34210526,78.00000000,3.45132743,0.02564103,0.00000000,13.38000000 +10270,chr22,43902958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,118.00000000,0.00000000,1.42000000,0.00000000,,0.41758242,92.00000000,4.07079646,0.01086957,0.00000000,11.75000000 +10271,chr22,43903014,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-2.86000000,0.00000000,,0.41463415,83.00000000,3.67256637,0.01204819,0.00000000,8.56000000 +10272,chr22,43903262,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,1.11000000,0.00000000,,0.25423729,66.00000000,2.92035398,0.10606061,0.00000000,3.30000000 +10273,chr22,43903788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,73.00000000,0.00000000,-0.72000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.13000000 +10274,chr22,43903805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.14814815,83.00000000,3.67256637,0.02409639,0.00000000,5.13000000 +10275,chr22,43903810,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,67.00000000,0.00000000,0.59000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,5.07000000 +10276,chr22,43903858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,0.00000000,0.27000000,0.00000000,,0.24285714,73.00000000,3.23008850,0.04109589,0.00000000,5.58000000 +10277,chr22,43904178,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,57.35000000,9.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,52.00000000,0.00000000,-0.77000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,3.93000000 +10278,chr22,43904419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.81000000,5.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,5.50000000 +10279,chr22,43904487,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.57000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.85000000,0.00000000,,0.52857143,74.00000000,3.27433628,0.05405405,0.00000000,4.77000000 +10280,chr22,43904593,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.00000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,54.00000000,0.00000000,1.17000000,0.00000000,,0.42372881,62.00000000,2.74336283,0.04838710,0.00000000,4.46000000 +10281,chr22,43904837,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,94.00000000,0.00000000,-1.74000000,0.00000000,,0.36000000,77.00000000,3.40707965,0.02597403,0.00000000,8.32000000 +10282,chr22,43905296,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.45000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.32000000 +10283,chr22,43905383,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.14000000,0.00000000,,0.31343284,71.00000000,3.14159292,0.05633803,0.00000000,6.65000000 +10284,chr22,43905392,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,1.80000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.02702703,0.00000000,5.87000000 +10285,chr22,43905879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,2.01000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.02380952,0.00000000,5.78000000 +10286,chr22,43906044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,0.71000000,0.00000000,,0.23076923,93.00000000,4.11504425,0.02150538,0.00000000,5.90000000 +10287,chr22,43906269,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,55.00000000,0.00000000,-1.33000000,0.00000000,,0.30769231,65.00000000,2.87610619,0.00000000,0.00000000,2.79000000 +10288,chr22,43906457,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-0.40000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +10289,chr22,43906706,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,1.20000000,0.00000000,,0.23529412,74.00000000,3.27433628,0.08108108,0.00000000,4.12000000 +10290,chr22,43910981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,6.02000000 +10291,chr22,43911122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +10292,chr22,43918708,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.92000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.01219512,0.00000000,6.69000000 +10293,chr22,43919812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,1.08000000,0.00000000,,0.29333333,77.00000000,3.40707965,0.02597403,0.00000000,5.79000000 +10294,chr22,43922818,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.17000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,5.99000000 +10295,chr22,43927090,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,0.00000000,0.14000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.06000000 +10296,chr22,43927717,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,58.00000000,0.00000000,-0.35000000,0.00000000,,0.42028986,73.00000000,3.23008850,0.04109589,0.00000000,6.38000000 +10297,chr22,43928085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.81000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.45000000 +10298,chr22,43928291,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,0.00000000,0.04000000,0.00000000,,0.11111111,75.00000000,3.31858407,0.04000000,0.00000000,4.80000000 +10299,chr22,43929975,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.22972973,74.00000000,3.27433628,0.00000000,0.00000000,5.91000000 +10300,chr22,43932101,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.84000000,0.00000000,,0.19480519,80.00000000,3.53982301,0.03750000,0.00000000,5.75000000 +10301,chr22,43932714,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-0.25000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +10302,chr22,43933317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.14130435,94.00000000,4.15929204,0.02127660,0.00000000,5.46000000 +10303,chr22,43934394,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.16000000,0.00000000,,0.18309859,83.00000000,3.67256637,0.14457831,0.00000000,6.08000000 +10304,chr22,43935431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.24193548,65.00000000,2.87610619,0.04615385,0.00000000,6.35000000 +10305,chr22,43935831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.22000000 +10306,chr22,43941700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-1.89000000,0.00000000,,0.21698113,110.00000000,4.86725664,0.03636364,0.00000000,5.93000000 +10307,chr22,43947827,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.89000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.24561404,58.00000000,2.56637168,0.01724138,0.00000000,6.32000000 +10308,chr22,43950399,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,1.69000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,5.90000000 +10309,chr22,43961149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-2.54000000,0.00000000,,0.17647059,70.00000000,3.09734513,0.01428571,0.00000000,6.52000000 +10310,chr22,43986192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,25.00000000,1.10619469,0.08000000,0.00000000,45.00000000,0.00000000,-0.81000000,0.00000000,,0.35897436,40.00000000,1.76991150,0.02500000,0.00000000,4.13000000 +10311,chr22,43993274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,94.00000000,0.00000000,1.62000000,0.00000000,,0.26923077,81.00000000,3.58407080,0.03703704,0.00000000,5.10000000 +10312,chr22,44003881,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,50.00000000,0.00000000,-2.05000000,0.00000000,,0.42028986,72.00000000,3.18584071,0.01388889,0.00000000,4.55000000 +10313,chr22,44004818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,1.20000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.52000000 +10314,chr22,44005940,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.03571429,0.00000000,5.77000000 +10315,chr22,44007304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.72000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.76000000 +10316,chr22,44008032,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,1.08000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.01136364,0.00000000,6.17000000 +10317,chr22,44014251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +10318,chr22,44015606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,88.00000000,0.00000000,1.88000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,5.71000000 +10319,chr22,44015758,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.02000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.61000000 +10320,chr22,44016286,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.55000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.15000000 +10321,chr22,44016310,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,59.00000000,0.00000000,-0.10000000,0.00000000,,0.44615385,73.00000000,3.23008850,0.10958904,0.00000000,6.40000000 +10322,chr22,44030865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,72.00000000,0.00000000,0.01000000,0.00000000,,0.52112676,75.00000000,3.31858407,0.01333333,0.00000000,8.32000000 +10323,chr22,44052458,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.10000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.60000000 +10324,chr22,44054569,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.97000000,0.00000000,,0.30303030,67.00000000,2.96460177,0.01492537,0.00000000,6.74000000 +10325,chr22,44055565,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,97.00000000,0.00000000,1.66000000,0.00000000,,0.37349398,86.00000000,3.80530973,0.03488372,0.00000000,7.49000000 +10326,chr22,44055733,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-1.08000000,0.00000000,,0.15714286,73.00000000,3.23008850,0.04109589,0.00000000,5.67000000 +10327,chr22,44055943,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.12000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,4.61000000 +10328,chr22,44056076,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.35820896,69.00000000,3.05309735,0.01449275,0.00000000,8.37000000 +10329,chr22,44056142,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,2.55000000,0.00000000,,0.28571429,64.00000000,2.83185841,0.01562500,0.00000000,3.02000000 +10330,chr22,44056209,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.20000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.57000000 +10331,chr22,44056438,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,0.19000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.01282051,0.00000000,6.19000000 +10332,chr22,44056532,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.38000000 +10333,chr22,44058286,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.34000000,0.00000000,,0.41379310,87.00000000,3.84955752,0.00000000,0.00000000,8.55000000 +10334,chr22,44058636,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,57.00000000,0.00000000,0.24000000,0.00000000,,0.43055556,87.00000000,3.84955752,0.16091954,0.00000000,5.06000000 +10335,chr22,44058858,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.06000000,0.00000000,,0.31147541,63.00000000,2.78761062,0.03174603,0.00000000,6.53000000 +10336,chr22,44058986,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.27118644,62.00000000,2.74336283,0.04838710,0.00000000,6.33000000 +10337,chr22,44060812,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,-2.56000000,0.00000000,,0.46428571,57.00000000,2.52212389,0.01754386,0.00000000,4.66000000 +10338,chr22,44062192,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,106.00000000,0.00000000,0.12000000,0.00000000,,0.35443038,80.00000000,3.53982301,0.01250000,0.00000000,14.73000000 +10339,chr22,44062640,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,37.00000000,1.63716814,0.02702703,0.00000000,51.00000000,0.00000000,-0.01000000,0.00000000,,0.34328358,71.00000000,3.14159292,0.04225352,0.00000000,3.93000000 +10340,chr22,44062880,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,48.00000000,0.00000000,-0.91000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.00000000,0.00000000,4.12000000 +10341,chr22,44064115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,1.47000000,0.00000000,,0.44047619,85.00000000,3.76106195,0.01176471,0.00000000,8.44000000 +10342,chr22,44064267,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,-0.95000000,0.00000000,,0.36708861,82.00000000,3.62831858,0.03658537,0.00000000,7.45000000 +10343,chr22,44066072,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,-1.30000000,0.00000000,,0.41975309,83.00000000,3.67256637,0.01204819,0.00000000,8.51000000 +10344,chr22,44067987,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,1.40000000,0.00000000,,0.42666667,77.00000000,3.40707965,0.02597403,0.00000000,4.43000000 +10345,chr22,44070670,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.43000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,6.16000000 +10346,chr22,44070807,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-2.17000000,0.00000000,,0.41573034,90.00000000,3.98230088,0.00000000,0.00000000,8.82000000 +10347,chr22,44071055,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-1.43000000,0.00000000,,0.48148148,81.00000000,3.58407080,0.00000000,0.00000000,8.18000000 +10348,chr22,44074156,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.04000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,8.26000000 +10349,chr22,44080355,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.50000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.01265823,0.00000000,6.72000000 +10350,chr22,44083723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.41000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,6.43000000 +10351,chr22,44088319,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,81.00000000,0.00000000,0.13000000,0.00000000,,0.27027027,80.00000000,3.53982301,0.05000000,0.00000000,5.77000000 +10352,chr22,44098167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.48000000,0.00000000,,0.23076923,66.00000000,2.92035398,0.00000000,0.00000000,6.55000000 +10353,chr22,44098437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.21052632,59.00000000,2.61061947,0.03389831,0.00000000,6.62000000 +10354,chr22,44098539,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-0.09000000,0.00000000,,0.17543860,57.00000000,2.52212389,0.00000000,0.00000000,6.23000000 +10355,chr22,44098647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,55.00000000,0.00000000,-1.13000000,0.00000000,,0.29824561,57.00000000,2.52212389,0.00000000,0.00000000,2.76000000 +10356,chr22,44102254,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.27272727,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +10357,chr22,44102321,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-0.01000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.01000000 +10358,chr22,44103678,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,0.00000000,-0.77000000,0.00000000,,0.11111111,91.00000000,4.02654867,0.00000000,0.00000000,5.71000000 +10359,chr22,44104263,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.29000000,0.00000000,,0.20408163,100.00000000,4.42477876,0.02000000,0.00000000,6.50000000 +10360,chr22,44108125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +10361,chr22,44121385,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,0.04000000,0.00000000,,0.45283019,55.00000000,2.43362832,0.03636364,0.00000000,6.46000000 +10362,chr22,44121400,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.59000000,0.00000000,,0.45901639,61.00000000,2.69911504,0.00000000,0.00000000,9.21000000 +10363,chr22,44121558,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.04000000,0.00000000,,0.37313433,71.00000000,3.14159292,0.05633803,0.00000000,8.37000000 +10364,chr22,44122009,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.54000000,0.00000000,,0.47252747,92.00000000,4.07079646,0.01086957,0.00000000,8.54000000 +10365,chr22,44122588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-2.53000000,0.00000000,,0.24137931,63.00000000,2.78761062,0.07936508,0.00000000,6.23000000 +10366,chr22,44122996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.01000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.02898551,0.00000000,6.02000000 +10367,chr22,44124012,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,103.00000000,0.00000000,1.29000000,0.00000000,,0.45454545,89.00000000,3.93805310,0.01123596,0.00000000,14.00000000 +10368,chr22,44125395,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,5.77000000 +10369,chr22,44128020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.92000000,0.00000000,,0.11111111,84.00000000,3.71681416,0.03571429,0.00000000,5.02000000 +10370,chr22,44134283,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.60000000 +10371,chr22,44134574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.55000000,0.00000000,,0.14102564,80.00000000,3.53982301,0.02500000,0.00000000,5.39000000 +10372,chr22,44138193,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.37000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.32000000 +10373,chr22,44143013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.00000000,58.00000000,0.00000000,-0.31000000,0.00000000,,0.17741935,66.00000000,2.92035398,0.06060606,0.00000000,3.91000000 +10374,chr22,44145479,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.64000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.51000000 +10375,chr22,44155090,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.13000000,0.00000000,,0.25806452,64.00000000,2.83185841,0.03125000,0.00000000,6.29000000 +10376,chr22,44156872,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,81.00000000,0.00000000,-0.16000000,0.00000000,,0.24637681,73.00000000,3.23008850,0.05479452,0.00000000,5.90000000 +10377,chr22,44162802,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-1.28000000,0.00000000,,0.27173913,95.00000000,4.20353982,0.03157895,0.00000000,6.61000000 +10378,chr22,44162826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-1.71000000,0.00000000,,0.22340426,97.00000000,4.29203540,0.03092784,0.00000000,6.30000000 +10379,chr22,44162931,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.48000000,0.00000000,,0.23404255,97.00000000,4.29203540,0.03092784,0.00000000,6.04000000 +10380,chr22,44164115,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,96.00000000,0.00000000,0.04000000,0.00000000,,0.22857143,107.00000000,4.73451327,0.01869159,0.00000000,5.35000000 +10381,chr22,44167659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.05000000,0.00000000,,0.24242424,71.00000000,3.14159292,0.02816901,0.00000000,6.27000000 +10382,chr22,44168522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.17391304,72.00000000,3.18584071,0.04166667,0.00000000,5.86000000 +10383,chr22,44169454,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.59000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.02439024,0.00000000,6.35000000 +10384,chr22,44169631,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.20000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.52000000 +10385,chr22,44169712,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,-1.74000000,0.00000000,,0.19672131,70.00000000,3.09734513,0.12857143,0.00000000,6.06000000 +10386,chr22,44170683,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,57.00000000,0.00000000,-1.61000000,0.00000000,,0.15000000,62.00000000,2.74336283,0.03225806,0.00000000,2.80000000 +10387,chr22,44171555,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,83.00000000,0.00000000,-1.07000000,0.00000000,,0.30000000,91.00000000,4.02654867,0.01098901,0.00000000,6.76000000 +10388,chr22,44172198,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.24000000,0.00000000,,0.27419355,65.00000000,2.87610619,0.04615385,0.01515152,5.87000000 +10389,chr22,44173323,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.28000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.20000000 +10390,chr22,44173652,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.52000000,0.00000000,,0.22784810,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +10391,chr22,44173843,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.69000000,0.00000000,,0.23684211,77.00000000,3.40707965,0.01298701,0.00000000,6.27000000 +10392,chr22,44175674,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,66.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,70.00000000,3.09734513,0.21428571,0.00000000,5.66000000 +10393,chr22,44175675,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.20000000,0.00000000,62.00000000,0.00000000,-0.65000000,0.00000000,,0.15094340,69.00000000,3.05309735,0.21739130,0.00000000,4.83000000 +10394,chr22,44175792,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,2.13000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.94000000 +10395,chr22,44176698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.04000000,0.00000000,,0.17241379,91.00000000,4.02654867,0.04395604,0.00000000,6.01000000 +10396,chr22,44178438,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.86000000 +10397,chr22,44178524,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.54000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,7.14000000 +10398,chr22,44179698,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.32000000,0.00000000,,0.27536232,71.00000000,3.14159292,0.02816901,0.00000000,6.33000000 +10399,chr22,44183815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.21538462,65.00000000,2.87610619,0.00000000,0.00000000,6.51000000 +10400,chr22,44183856,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.03125000,0.00000000,66.00000000,0.00000000,1.97000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,5.57000000 +10401,chr22,44183951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,85.00000000,0.00000000,-1.15000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,6.03000000 +10402,chr22,44184381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.32000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,6.62000000 +10403,chr22,44184590,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.46000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.34000000 +10404,chr22,44185166,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,0.00000000,2.42000000,0.00000000,,0.35937500,65.00000000,2.87610619,0.01538462,0.00000000,13.44000000 +10405,chr22,44186256,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.45000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.96000000 +10406,chr22,44201542,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.63000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.02000000 +10407,chr22,44203243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.22000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.02150538,0.00000000,6.35000000 +10408,chr22,44203378,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.15730337,90.00000000,3.98230088,0.01111111,0.00000000,5.68000000 +10409,chr22,44203572,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,95.00000000,0.00000000,0.77000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,5.17000000 +10410,chr22,44203651,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,-0.20000000,0.00000000,,0.20000000,106.00000000,4.69026549,0.00943396,0.00000000,6.60000000 +10411,chr22,44203856,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-0.92000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +10412,chr22,44203901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,1.96000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.73000000 +10413,chr22,44204042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.34000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.05000000,0.00000000,5.86000000 +10414,chr22,44204255,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.22784810,82.00000000,3.62831858,0.02439024,0.00000000,5.79000000 +10415,chr22,44204292,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,2.04000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.02739726,0.00000000,5.72000000 +10416,chr22,44204295,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,2.38000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,5.72000000 +10417,chr22,44204946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,1.31000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.02816901,0.00000000,6.18000000 +10418,chr22,44205619,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,0.78000000,0.00000000,,0.29629630,81.00000000,3.58407080,0.00000000,0.00000000,5.92000000 +10419,chr22,44206292,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.02380952,0.00000000,5.82000000 +10420,chr22,44211634,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.22000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +10421,chr22,44212577,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,2.74000000,0.00000000,,0.19753086,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +10422,chr22,44212732,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,2.00000000,0.00000000,,0.30555556,75.00000000,3.31858407,0.02666667,0.00000000,7.08000000 +10423,chr22,44213423,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.83000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,6.19000000 +10424,chr22,44213489,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.51000000,0.00000000,,0.21538462,71.00000000,3.14159292,0.08450704,0.00000000,5.54000000 +10425,chr22,44213560,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.93000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,64.00000000,0.00000000,0.07000000,0.00000000,,0.15151515,76.00000000,3.36283186,0.13157895,0.00000000,4.88000000 +10426,chr22,44213730,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,77.00000000,0.00000000,-0.78000000,0.00000000,,0.22500000,86.00000000,3.80530973,0.06976744,0.00000000,6.33000000 +10427,chr22,44216775,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,-2.53000000,0.00000000,,0.46376812,69.00000000,3.05309735,0.00000000,0.00000000,3.89000000 +10428,chr22,44216937,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,39.00000000,0.00000000,0.07000000,0.00000000,,0.28571429,72.00000000,3.18584071,0.02777778,0.00000000,2.80000000 +10429,chr22,44217400,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-0.87000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +10430,chr22,44217630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.73000000,0.00000000,,0.29629630,81.00000000,3.58407080,0.00000000,0.00000000,6.73000000 +10431,chr22,44217642,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.02000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.52000000 +10432,chr22,44217682,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.50000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.61000000 +10433,chr22,44217732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.05000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.68000000 +10434,chr22,44218093,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.23000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.40000000 +10435,chr22,44218182,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,0.00000000,-0.05000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,5.89000000 +10436,chr22,44218434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,-0.17000000,0.00000000,,0.14814815,84.00000000,3.71681416,0.03571429,0.00000000,5.55000000 +10437,chr22,44218473,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.81000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,5.85000000 +10438,chr22,44218483,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.44000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +10439,chr22,44218735,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.28000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,2.83000000 +10440,chr22,44218773,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.29000000,0.00000000,,0.45833333,73.00000000,3.23008850,0.01369863,0.00000000,5.88000000 +10441,chr22,44219553,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-0.01000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.77000000 +10442,chr22,44220315,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,52.00000000,0.00000000,0.18000000,0.00000000,,0.42187500,66.00000000,2.92035398,0.00000000,0.00000000,4.16000000 +10443,chr22,44220338,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.35000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,7.91000000 +10444,chr22,44221508,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,38.00000000,0.00000000,-2.25000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,3.62000000 +10445,chr22,44221522,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.34000000,0.00000000,,0.46250000,81.00000000,3.58407080,0.01234568,0.00000000,7.80000000 +10446,chr22,44221575,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.43421053,76.00000000,3.36283186,0.00000000,0.00000000,8.33000000 +10447,chr22,44221645,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.05000000,0.00000000,,0.41975309,83.00000000,3.67256637,0.02409639,0.00000000,8.33000000 +10448,chr22,44221763,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,1.25000000,0.00000000,,0.45833333,99.00000000,4.38053097,0.03030303,0.00000000,7.88000000 +10449,chr22,44221809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.41666667,87.00000000,3.84955752,0.03448276,0.00000000,8.22000000 +10450,chr22,44221820,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.41573034,90.00000000,3.98230088,0.01111111,0.00000000,8.63000000 +10451,chr22,44221916,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,0.20000000,0.00000000,,0.39080460,89.00000000,3.93805310,0.02247191,0.00000000,8.19000000 +10452,chr22,44221984,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.47000000,0.00000000,,0.42682927,88.00000000,3.89380531,0.05681818,0.00000000,8.22000000 +10453,chr22,44222482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.37000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.59000000 +10454,chr22,44222726,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,-1.58000000,0.00000000,,0.45454545,93.00000000,4.11504425,0.05376344,0.00000000,8.13000000 +10455,chr22,44222824,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.38095238,88.00000000,3.89380531,0.04545455,0.00000000,8.24000000 +10456,chr22,44223455,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,-0.78000000,0.00000000,,0.41891892,75.00000000,3.31858407,0.01333333,0.00000000,8.04000000 +10457,chr22,44223697,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-0.38000000,0.00000000,,0.44791667,98.00000000,4.33628319,0.02040816,0.00000000,8.01000000 +10458,chr22,44223711,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,-1.20000000,0.00000000,,0.43298969,101.00000000,4.46902655,0.02970297,0.00000000,4.78000000 +10459,chr22,44223820,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,0.00000000,1.35000000,0.00000000,,0.39240506,80.00000000,3.53982301,0.01250000,0.00000000,6.48000000 +10460,chr22,44223906,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-2.93000000,0.00000000,,0.49382716,82.00000000,3.62831858,0.00000000,0.00000000,8.15000000 +10461,chr22,44224704,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,-0.51000000,0.00000000,,0.34177215,80.00000000,3.53982301,0.01250000,0.00000000,8.33000000 +10462,chr22,44225302,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.40000000,77.00000000,3.40707965,0.02597403,0.00000000,8.21000000 +10463,chr22,44229828,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.99000000,0.00000000,,0.43037975,81.00000000,3.58407080,0.02469136,0.00000000,4.30000000 +10464,chr22,44230842,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.59000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,46.00000000,0.00000000,-2.32000000,0.00000000,,0.47619048,72.00000000,3.18584071,0.12500000,0.00000000,4.66000000 +10465,chr22,44231719,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.66000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.26086957,0.00000000,18.00000000,0.00000000,-1.92000000,0.00000000,,0.50000000,60.00000000,2.65486726,0.26666667,0.00000000,3.73000000 +10466,chr22,44231913,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,-0.15000000,0.00000000,,0.39436620,72.00000000,3.18584071,0.01388889,0.00000000,4.57000000 +10467,chr22,44238828,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-2.08000000,0.00000000,,0.50000000,106.00000000,4.69026549,0.00000000,0.00000000,8.95000000 +10468,chr22,44241593,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.10000000,0.02439024,87.00000000,0.00000000,0.28000000,0.00000000,,0.28378378,86.00000000,3.80530973,0.11627907,0.00000000,5.91000000 +10469,chr22,44247281,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-0.16000000,0.00000000,,0.16091954,88.00000000,3.89380531,0.01136364,0.00000000,6.32000000 +10470,chr22,44248854,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.15000000,0.00000000,,0.15492958,74.00000000,3.27433628,0.04054054,0.00000000,5.35000000 +10471,chr22,44276560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.68000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.39000000 +10472,chr22,44278263,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.62000000 +10473,chr22,44282846,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.19000000,0.00000000,,0.13333333,78.00000000,3.45132743,0.03846154,0.00000000,5.00000000 +10474,chr22,44282847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,0.51000000,0.00000000,,0.13698630,76.00000000,3.36283186,0.03947368,0.00000000,5.35000000 +10475,chr22,44284798,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,2.92000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.01369863,0.00000000,6.06000000 +10476,chr22,44286857,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-1.21000000,0.00000000,,0.21978022,94.00000000,4.15929204,0.03191489,0.00000000,6.28000000 +10477,chr22,44288159,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.11000000,0.00000000,,0.23893805,117.00000000,5.17699115,0.00854701,0.00000000,6.30000000 +10478,chr22,44288408,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.90000000,0.00000000,,0.21348315,95.00000000,4.20353982,0.06315789,0.00000000,6.22000000 +10479,chr22,44288496,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,79.00000000,0.00000000,2.09000000,0.00000000,,0.18691589,109.00000000,4.82300885,0.01834862,0.00000000,5.63000000 +10480,chr22,44289099,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,86.00000000,0.00000000,0.78000000,0.00000000,,0.25274725,94.00000000,4.15929204,0.03191489,0.00000000,5.70000000 +10481,chr22,44289233,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-0.29000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.78000000 +10482,chr22,44289239,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-1.07000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +10483,chr22,44289738,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,-0.82000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +10484,chr22,44291981,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-1.04000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.03030303,0.00000000,6.50000000 +10485,chr22,44292658,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,-0.89000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.03157895,0.00000000,6.31000000 +10486,chr22,44292684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.73000000,0.00000000,,0.26086957,95.00000000,4.20353982,0.02105263,0.00000000,6.34000000 +10487,chr22,44293292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.36000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,4.84000000 +10488,chr22,44293357,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,1.40000000,0.00000000,,0.16091954,89.00000000,3.93805310,0.00000000,0.00000000,6.24000000 +10489,chr22,44294858,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,80.00000000,0.00000000,-0.61000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +10490,chr22,44295276,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.21978022,95.00000000,4.20353982,0.04210526,0.00000000,6.33000000 +10491,chr22,44295281,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,1.38000000,0.00000000,,0.21739130,97.00000000,4.29203540,0.04123711,0.00000000,6.31000000 +10492,chr22,44295289,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.50000000,0.00000000,,0.20879121,96.00000000,4.24778761,0.04166667,0.00000000,6.29000000 +10493,chr22,44295760,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.23000000 +10494,chr22,44303653,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,53.00000000,0.00000000,0.75000000,0.00000000,,0.36734694,52.00000000,2.30088496,0.05769231,0.00000000,4.94000000 +10495,chr22,44303677,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,44.00000000,0.00000000,-0.70000000,0.00000000,,0.40350877,58.00000000,2.56637168,0.01724138,0.00000000,4.30000000 +10496,chr22,44303700,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,57.00000000,0.00000000,-0.73000000,0.00000000,,0.33898305,60.00000000,2.65486726,0.00000000,0.00000000,4.88000000 +10497,chr22,44303741,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,44.00000000,0.00000000,0.17000000,0.00000000,,0.43859649,58.00000000,2.56637168,0.01724138,0.00000000,4.21000000 +10498,chr22,44303943,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.59000000,0.00000000,,0.25333333,84.00000000,3.71681416,0.10714286,0.00000000,5.78000000 +10499,chr22,44304067,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-0.44000000,0.00000000,,0.46478873,72.00000000,3.18584071,0.01388889,0.00000000,4.21000000 +10500,chr22,44304658,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,87.00000000,0.00000000,0.31000000,0.00000000,,0.40659341,95.00000000,4.20353982,0.04210526,0.00000000,7.98000000 +10501,chr22,44304707,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,70.00000000,0.00000000,-2.04000000,0.00000000,,0.39189189,77.00000000,3.40707965,0.02597403,0.00000000,8.30000000 +10502,chr22,44304779,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,64.00000000,0.00000000,0.45000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.01388889,0.00000000,7.98000000 +10503,chr22,44306812,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,56.36000000,5.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.17391304,0.00000000,44.00000000,0.00000000,0.10000000,0.00000000,,0.37500000,62.00000000,2.74336283,0.22580645,0.00000000,4.16000000 +10504,chr22,44306867,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,58.47000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,56.00000000,0.00000000,-1.68000000,0.00000000,,0.37500000,61.00000000,2.69911504,0.08196721,0.00000000,4.76000000 +10505,chr22,44311836,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,0.00000000,-0.02000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,14.34000000 +10506,chr22,44313265,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.44318182,92.00000000,4.07079646,0.03260870,0.00000000,8.35000000 +10507,chr22,44327239,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,0.00000000,1.71000000,0.00000000,,0.13114754,64.00000000,2.83185841,0.04687500,0.00000000,2.85000000 +10508,chr22,44346881,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,-1.28000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.09000000 +10509,chr22,44347064,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,0.01000000,0.00000000,,0.37681159,71.00000000,3.14159292,0.02816901,0.00000000,7.95000000 +10510,chr22,44347756,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.88000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.21000000 +10511,chr22,44352841,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,58.00000000,0.00000000,0.18000000,0.00000000,,0.37662338,79.00000000,3.49557522,0.02531646,0.00000000,5.79000000 +10512,chr22,44354330,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,33.00000000,0.00000000,0.33000000,0.00000000,,0.42500000,80.00000000,3.53982301,0.00000000,0.00000000,3.76000000 +10513,chr22,44360038,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.01562500,0.00000000,5.22000000 +10514,chr22,44361191,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.25000000,0.00000000,,0.37500000,74.00000000,3.27433628,0.02702703,0.00000000,8.35000000 +10515,chr22,44361559,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.66000000,0.00000000,,0.38961039,78.00000000,3.45132743,0.01282051,0.00000000,8.84000000 +10516,chr22,44364450,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.22000000,0.00000000,,0.46296296,56.00000000,2.47787611,0.01785714,0.00000000,4.01000000 +10517,chr22,44364852,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.02000000,0.00000000,,0.50000000,74.00000000,3.27433628,0.00000000,0.00000000,8.96000000 +10518,chr22,44367097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,0.08000000,0.00000000,,0.34210526,76.00000000,3.36283186,0.00000000,0.00000000,8.31000000 +10519,chr22,44367397,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.51000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +10520,chr22,44367511,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.06000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +10521,chr22,44367595,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.22000000,0.00000000,,0.27142857,72.00000000,3.18584071,0.02777778,0.00000000,6.30000000 +10522,chr22,44367872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,0.48000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +10523,chr22,44368769,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,0.00000000,-0.34000000,0.00000000,,0.50000000,85.00000000,3.76106195,0.05882353,0.00000000,6.37000000 +10524,chr22,44368772,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,60.00000000,0.00000000,-0.23000000,0.00000000,,0.49382716,86.00000000,3.80530973,0.05813953,0.00000000,7.48000000 +10525,chr22,44369814,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,1.45000000,0.00000000,,0.43750000,99.00000000,4.38053097,0.02020202,0.00000000,4.37000000 +10526,chr22,44370432,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,0.00000000,-0.02000000,0.00000000,,0.51250000,83.00000000,3.67256637,0.03614458,0.00000000,4.40000000 +10527,chr22,44390306,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.20967742,67.00000000,2.96460177,0.02985075,0.00000000,6.31000000 +10528,chr22,44390360,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.52000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.69000000 +10529,chr22,44390484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.45000000 +10530,chr22,44390952,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.97000000,0.00000000,,0.23711340,99.00000000,4.38053097,0.02020202,0.00000000,6.28000000 +10531,chr22,44393062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.59000000 +10532,chr22,44393637,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.79000000 +10533,chr22,44395658,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.63000000,0.00000000,,0.22222222,67.00000000,2.96460177,0.04477612,0.00000000,6.31000000 +10534,chr22,44395927,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,81.00000000,0.00000000,-0.80000000,0.00000000,,0.24615385,75.00000000,3.31858407,0.13333333,0.00000000,5.79000000 +10535,chr22,44396248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.24000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.96000000 +10536,chr22,44400256,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.21052632,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +10537,chr22,44404134,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-0.14000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +10538,chr22,44413313,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.26000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +10539,chr22,44436776,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,1.41000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.13000000 +10540,chr22,44436777,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,1.92000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.39000000 +10541,chr22,44437202,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,89.00000000,0.00000000,-0.55000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +10542,chr22,44437369,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-0.61000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.28000000 +10543,chr22,44437575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,88.00000000,0.00000000,-0.33000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.55000000 +10544,chr22,44437700,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.00000000,0.00000000,,0.21951220,88.00000000,3.89380531,0.04545455,0.00000000,6.40000000 +10545,chr22,44437716,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.22891566,87.00000000,3.84955752,0.04597701,0.00000000,6.30000000 +10546,chr22,44437719,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.38000000,0.00000000,,0.22891566,87.00000000,3.84955752,0.04597701,0.00000000,6.08000000 +10547,chr22,44438093,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.29000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.56000000 +10548,chr22,44438308,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.34000000,0.00000000,,0.17391304,74.00000000,3.27433628,0.06756757,0.00000000,5.62000000 +10549,chr22,44438412,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.62000000,0.00000000,,0.12941176,88.00000000,3.89380531,0.03409091,0.00000000,5.02000000 +10550,chr22,44438571,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.63000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +10551,chr22,44439593,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.29000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,6.34000000 +10552,chr22,44440421,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.86000000,0.00000000,,0.09523810,84.00000000,3.71681416,0.00000000,0.00000000,5.64000000 +10553,chr22,44440484,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,70.00000000,0.00000000,-0.96000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.02500000,0.00000000,5.38000000 +10554,chr22,44473788,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.03703704,0.00000000,5.88000000 +10555,chr22,44491834,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.57000000,0.00000000,,0.22784810,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +10556,chr22,44494381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.02409639,0.00000000,5.05000000 +10557,chr22,44536701,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.02941176,0.00000000,5.44000000 +10558,chr22,44536894,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.11000000,0.00000000,,0.23655914,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +10559,chr22,44536997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.11000000,0.00000000,,0.29687500,69.00000000,3.05309735,0.07246377,0.00000000,6.24000000 +10560,chr22,44537028,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.57000000,0.00000000,,0.30769231,66.00000000,2.92035398,0.01515152,0.00000000,6.00000000 +10561,chr22,44537065,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,2.07000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10562,chr22,44537197,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-1.04000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.61000000 +10563,chr22,44537502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.49000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +10564,chr22,44537532,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,0.00000000,-0.87000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.37000000 +10565,chr22,44538003,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.14444444,90.00000000,3.98230088,0.00000000,0.00000000,5.92000000 +10566,chr22,44538659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.12000000,0.00000000,,0.18421053,80.00000000,3.53982301,0.05000000,0.00000000,6.63000000 +10567,chr22,44539075,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.20000000,0.00000000,,0.17741935,62.00000000,2.74336283,0.00000000,0.00000000,6.38000000 +10568,chr22,44539491,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.96000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,45.00000000,0.00000000,-0.95000000,0.00000000,,0.33333333,62.00000000,2.74336283,0.17741935,0.00000000,4.37000000 +10569,chr22,44539726,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.34000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,67.00000000,0.00000000,1.52000000,0.00000000,,0.18181818,62.00000000,2.74336283,0.11290323,0.00000000,5.28000000 +10570,chr22,44539749,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.14000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,58.00000000,0.00000000,-0.69000000,0.00000000,,0.14583333,59.00000000,2.61061947,0.16949153,0.00000000,3.95000000 +10571,chr22,44576984,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.24050633,79.00000000,3.49557522,0.00000000,0.00000000,6.68000000 +10572,chr22,44577000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.25000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +10573,chr22,44577283,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.03000000,0.00000000,,0.27142857,70.00000000,3.09734513,0.00000000,0.00000000,6.41000000 +10574,chr22,44579864,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.22000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.79000000 +10575,chr22,44599217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.77000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,6.28000000 +10576,chr22,44604655,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-2.28000000,0.00000000,,0.20634921,67.00000000,2.96460177,0.05970149,0.00000000,6.07000000 +10577,chr22,44604826,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.73000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.36000000 +10578,chr22,44604897,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.26153846,73.00000000,3.23008850,0.08219178,0.00000000,5.80000000 +10579,chr22,44605067,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,52.00000000,0.00000000,1.59000000,0.00000000,,0.41269841,67.00000000,2.96460177,0.05970149,0.00000000,4.84000000 +10580,chr22,44605073,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,1.26000000,0.00000000,,0.40322581,68.00000000,3.00884956,0.07352941,0.00000000,4.64000000 +10581,chr22,44605402,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,87.00000000,0.00000000,-1.22000000,0.00000000,,0.25974026,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +10582,chr22,44605510,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.40322581,63.00000000,2.78761062,0.01587302,0.00000000,8.33000000 +10583,chr22,44605555,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,2.41000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.19000000 +10584,chr22,44606612,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.44000000 +10585,chr22,44606668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.22000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +10586,chr22,44607229,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.28000000,0.00000000,,0.17543860,59.00000000,2.61061947,0.03389831,0.00000000,5.67000000 +10587,chr22,44607868,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,0.67000000,0.00000000,,0.16176471,69.00000000,3.05309735,0.01449275,0.00000000,4.89000000 +10588,chr22,44607998,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,26.00000000,0.00000000,0.15000000,0.00000000,,0.42028986,72.00000000,3.18584071,0.02777778,0.00000000,3.48000000 +10589,chr22,44608475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.71000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.21000000 +10590,chr22,44608484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,5.84000000 +10591,chr22,44609091,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.26000000,0.00000000,,0.12280702,60.00000000,2.65486726,0.05000000,0.00000000,4.17000000 +10592,chr22,44609092,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,47.00000000,0.00000000,-0.68000000,0.00000000,,0.44642857,59.00000000,2.61061947,0.05084746,0.00000000,4.77000000 +10593,chr22,44609481,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-1.71000000,0.00000000,,0.33333333,82.00000000,3.62831858,0.00000000,0.00000000,8.67000000 +10594,chr22,44609917,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.96000000,0.00000000,,0.23529412,86.00000000,3.80530973,0.01162791,0.00000000,6.22000000 +10595,chr22,44609981,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.25000000,0.00000000,,0.22058824,72.00000000,3.18584071,0.01388889,0.00000000,6.37000000 +10596,chr22,44610109,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-1.32000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.52000000 +10597,chr22,44610396,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.86000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.93000000 +10598,chr22,44610690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,-1.87000000,0.00000000,,0.14814815,56.00000000,2.47787611,0.03571429,0.00000000,5.78000000 +10599,chr22,44610725,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.50000000,0.00000000,,0.20289855,73.00000000,3.23008850,0.05479452,0.00000000,6.73000000 +10600,chr22,44610879,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,-0.10000000,0.00000000,,0.31578947,79.00000000,3.49557522,0.02531646,0.00000000,7.07000000 +10601,chr22,44610950,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,64.00000000,0.00000000,-2.24000000,0.00000000,,0.45454545,81.00000000,3.58407080,0.04938272,0.00000000,7.93000000 +10602,chr22,44611097,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.20000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.51000000,0.00000000,,0.21250000,82.00000000,3.62831858,0.02439024,0.00000000,6.04000000 +10603,chr22,44611283,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-0.63000000,0.00000000,,0.49333333,77.00000000,3.40707965,0.02597403,0.00000000,4.42000000 +10604,chr22,44611396,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,61.00000000,0.00000000,-0.02000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,7.96000000 +10605,chr22,44611468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,89.00000000,0.00000000,-0.66000000,0.00000000,,0.30526316,98.00000000,4.33628319,0.03061224,0.00000000,6.28000000 +10606,chr22,44611588,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,37.00000000,0.00000000,0.69000000,0.00000000,,0.41176471,71.00000000,3.14159292,0.04225352,0.00000000,3.80000000 +10607,chr22,44611683,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.80000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +10608,chr22,44611928,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.20000000,0.00000000,74.00000000,0.00000000,-0.31000000,0.00000000,,0.21518987,89.00000000,3.93805310,0.11235955,0.00000000,6.01000000 +10609,chr22,44612034,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.27000000,0.00000000,,0.23170732,84.00000000,3.71681416,0.02380952,0.00000000,6.00000000 +10610,chr22,44612119,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,51.00000000,0.00000000,-1.21000000,0.00000000,,0.48611111,72.00000000,3.18584071,0.00000000,0.00000000,4.19000000 +10611,chr22,44612167,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,8.15000000 +10612,chr22,44612737,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.96000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.22000000 +10613,chr22,44613195,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,82.00000000,0.00000000,0.11000000,0.00000000,,0.20512821,83.00000000,3.67256637,0.06024096,0.01190476,5.67000000 +10614,chr22,44613312,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.17000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.60000000 +10615,chr22,44613415,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.68000000,0.00000000,,0.48192771,84.00000000,3.71681416,0.01190476,0.00000000,8.62000000 +10616,chr22,44613482,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.56000000 +10617,chr22,44613595,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.59000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +10618,chr22,44613685,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.76000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.98000000 +10619,chr22,44613902,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.90000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.44000000 +10620,chr22,44614111,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,63.00000000,0.00000000,0.43000000,0.00000000,,0.47311828,96.00000000,4.24778761,0.03125000,0.00000000,7.71000000 +10621,chr22,44614112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,71.00000000,0.00000000,-0.14000000,0.00000000,,0.29347826,95.00000000,4.20353982,0.03157895,0.00000000,5.89000000 +10622,chr22,44614435,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.07000000,0.00000000,,0.40000000,93.00000000,4.11504425,0.02150538,0.00000000,8.21000000 +10623,chr22,44614489,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,0.00000000,0.10000000,0.00000000,,0.44444444,82.00000000,3.62831858,0.01219512,0.00000000,4.69000000 +10624,chr22,44615880,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.26000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.00000000,6.67000000 +10625,chr22,44615978,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.85000000,0.00000000,,0.23880597,71.00000000,3.14159292,0.05633803,0.00000000,6.62000000 +10626,chr22,44616072,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.91000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.02000000 +10627,chr22,44617139,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.27000000,0.00000000,,0.43055556,74.00000000,3.27433628,0.01351351,0.00000000,8.33000000 +10628,chr22,44617353,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,28.00000000,0.00000000,-0.63000000,0.00000000,,0.40816327,55.00000000,2.43362832,0.10909091,0.00000000,3.79000000 +10629,chr22,44621646,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-2.22000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.00000000,0.00000000,6.68000000 +10630,chr22,44621648,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,-1.85000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.68000000 +10631,chr22,44621855,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.44000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.63000000 +10632,chr22,44649100,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-0.99000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +10633,chr22,44649153,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.36000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,5.88000000 +10634,chr22,44650439,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.35000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.40000000 +10635,chr22,44662741,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,0.55000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.24000000 +10636,chr22,44665887,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.22388060,0.00000000,6.29000000 +10637,chr22,44665918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,61.00000000,0.00000000,-1.24000000,0.00000000,,0.20338983,79.00000000,3.49557522,0.25316456,0.00000000,5.32000000 +10638,chr22,44667863,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,86.00000000,0.00000000,0.19000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.01408451,0.00000000,8.19000000 +10639,chr22,44669044,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,-0.04000000,0.00000000,,0.16666667,93.00000000,4.11504425,0.09677419,0.00000000,2.81000000 +10640,chr22,44669664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,0.20000000,0.00000000,,0.27848101,81.00000000,3.58407080,0.01234568,0.00000000,6.68000000 +10641,chr22,44669881,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,1.01000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,5.80000000 +10642,chr22,44669986,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,0.69000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.52000000 +10643,chr22,44670114,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.62000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +10644,chr22,44670122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,0.41000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.02469136,0.00000000,6.44000000 +10645,chr22,44670155,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.26000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.03614458,0.00000000,6.46000000 +10646,chr22,44670191,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-0.61000000,0.00000000,,0.22352941,86.00000000,3.80530973,0.01162791,0.00000000,6.26000000 +10647,chr22,44670538,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.15000000,0.00000000,,0.28125000,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +10648,chr22,44673355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,95.00000000,0.00000000,-0.43000000,0.00000000,,0.33333333,71.00000000,3.14159292,0.02816901,0.00000000,8.09000000 +10649,chr22,44675799,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,2.12000000,0.00000000,,0.18750000,64.00000000,2.83185841,0.00000000,0.00000000,6.52000000 +10650,chr22,44679136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.22000000,0.00000000,,0.27692308,68.00000000,3.00884956,0.02941176,0.00000000,5.74000000 +10651,chr22,44686543,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,1.50000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.01000000 +10652,chr22,44687975,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.29000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.75000000 +10653,chr22,44688613,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.12941176,85.00000000,3.76106195,0.00000000,0.00000000,4.88000000 +10654,chr22,44693331,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,0.00000000,-1.66000000,0.00000000,,0.14814815,56.00000000,2.47787611,0.01785714,0.00000000,5.57000000 +10655,chr22,44695495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.20000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.32000000 +10656,chr22,44697075,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,90.00000000,0.00000000,0.60000000,0.00000000,,0.29487179,78.00000000,3.45132743,0.00000000,0.00000000,5.86000000 +10657,chr22,44697295,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,0.23000000,0.00000000,,0.22666667,76.00000000,3.36283186,0.01315789,0.00000000,5.88000000 +10658,chr22,44697779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-1.77000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.69000000 +10659,chr22,44698667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-1.21000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +10660,chr22,44706262,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.02000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.69000000 +10661,chr22,44710293,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,77.00000000,0.00000000,1.42000000,0.00000000,,0.23437500,71.00000000,3.14159292,0.09859155,0.00000000,5.76000000 +10662,chr22,44710906,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,0.09000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,5.01000000 +10663,chr22,44712045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.44000000,0.00000000,,0.15000000,81.00000000,3.58407080,0.01234568,0.00000000,5.68000000 +10664,chr22,44712312,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,49.00000000,0.00000000,0.90000000,0.00000000,,0.34042553,96.00000000,4.24778761,0.01041667,0.00000000,3.84000000 +10665,chr22,44712377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,84.00000000,0.00000000,0.86000000,0.00000000,,0.28888889,91.00000000,4.02654867,0.01098901,0.00000000,6.55000000 +10666,chr22,44712465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.63000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,4.17000000 +10667,chr22,44712484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.60000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.30000000 +10668,chr22,44712523,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-1.91000000,0.00000000,,0.23170732,86.00000000,3.80530973,0.03488372,0.00000000,6.23000000 +10669,chr22,44713223,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,5.95000000 +10670,chr22,44713331,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.55000000,0.00000000,,0.27906977,90.00000000,3.98230088,0.02222222,0.00000000,6.49000000 +10671,chr22,44713413,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,83.00000000,0.00000000,0.79000000,0.00000000,,0.32631579,98.00000000,4.33628319,0.03061224,0.00000000,7.63000000 +10672,chr22,44713786,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.25000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.02380952,0.00000000,6.28000000 +10673,chr22,44714885,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-2.42000000,0.00000000,,0.22580645,93.00000000,4.11504425,0.00000000,0.00000000,6.75000000 +10674,chr22,44714971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,0.27000000,0.00000000,,0.28409091,92.00000000,4.07079646,0.04347826,0.00000000,6.07000000 +10675,chr22,44714996,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-2.71000000,0.00000000,,0.20000000,92.00000000,4.07079646,0.02173913,0.00000000,6.23000000 +10676,chr22,44715225,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.14000000,0.00000000,,0.22105263,97.00000000,4.29203540,0.02061856,0.00000000,6.34000000 +10677,chr22,44715354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.13000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,6.61000000 +10678,chr22,44715397,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.38000000,0.00000000,,0.23333333,90.00000000,3.98230088,0.00000000,0.00000000,6.30000000 +10679,chr22,44717874,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.92000000,0.00000000,,0.19298246,58.00000000,2.56637168,0.01724138,0.00000000,6.22000000 +10680,chr22,44717876,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-1.26000000,0.00000000,,0.17241379,59.00000000,2.61061947,0.01694915,0.00000000,6.20000000 +10681,chr22,44717953,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.53000000,0.00000000,,0.26415094,54.00000000,2.38938053,0.01851852,0.00000000,6.43000000 +10682,chr22,44718042,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.80000000,0.00000000,,0.14814815,55.00000000,2.43362832,0.01818182,0.00000000,5.34000000 +10683,chr22,44718297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,-0.49000000,0.00000000,,0.18867925,57.00000000,2.52212389,0.07017544,0.00000000,5.81000000 +10684,chr22,44718968,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.98000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.54000000 +10685,chr22,44719142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,0.54000000,0.00000000,,0.16438356,84.00000000,3.71681416,0.13095238,0.00000000,5.01000000 +10686,chr22,44719604,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,-0.97000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.53000000 +10687,chr22,44719617,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,-1.40000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.81000000 +10688,chr22,44719652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.35000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.04000000,0.00000000,6.30000000 +10689,chr22,44719877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.10000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.55000000 +10690,chr22,44720168,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.52000000,0.00000000,,0.18604651,92.00000000,4.07079646,0.05434783,0.00000000,5.75000000 +10691,chr22,44720247,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,83.00000000,0.00000000,-0.39000000,0.00000000,,0.20930233,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +10692,chr22,44720291,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.00000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,5.70000000 +10693,chr22,44720364,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,1.12000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +10694,chr22,44720570,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.13000000 +10695,chr22,44720784,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +10696,chr22,44721298,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.14000000,0.00000000,,0.22033898,60.00000000,2.65486726,0.01666667,0.00000000,6.49000000 +10697,chr22,44721515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.36000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,5.96000000 +10698,chr22,44721554,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,47.00000000,0.00000000,-0.91000000,0.00000000,,0.50000000,82.00000000,3.62831858,0.02439024,0.00000000,4.70000000 +10699,chr22,44721676,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.76000000,0.00000000,,0.26881720,94.00000000,4.15929204,0.00000000,0.00000000,6.68000000 +10700,chr22,44721714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.61000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.02298851,0.00000000,6.34000000 +10701,chr22,44721749,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.26744186,87.00000000,3.84955752,0.00000000,0.00000000,6.36000000 +10702,chr22,44722653,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,59.00000000,0.00000000,-1.10000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.00000000,0.00000000,3.85000000 +10703,chr22,44722670,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-1.62000000,0.00000000,,0.39682540,65.00000000,2.87610619,0.03076923,0.00000000,8.35000000 +10704,chr22,44722744,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.49000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.77000000 +10705,chr22,44722767,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-1.07000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,4.87000000 +10706,chr22,44723054,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.03000000,0.00000000,,0.24561404,62.00000000,2.74336283,0.08064516,0.00000000,6.46000000 +10707,chr22,44723779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,70.00000000,0.00000000,-0.07000000,0.00000000,,0.16049383,84.00000000,3.71681416,0.02380952,0.00000000,5.99000000 +10708,chr22,44726034,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.19000000,0.00000000,,0.24731183,95.00000000,4.20353982,0.02105263,0.00000000,6.35000000 +10709,chr22,44727204,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,0.72000000,0.00000000,,0.22222222,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +10710,chr22,44728715,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-1.51000000,0.00000000,,0.20430108,96.00000000,4.24778761,0.02083333,0.00000000,6.53000000 +10711,chr22,44729800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.17241379,89.00000000,3.93805310,0.00000000,0.00000000,6.28000000 +10712,chr22,44730597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-0.30000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.15000000 +10713,chr22,44732352,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.50000000,0.00000000,,0.16161616,100.00000000,4.42477876,0.00000000,0.00000000,4.29000000 +10714,chr22,44733382,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,-1.55000000,0.00000000,,0.28409091,89.00000000,3.93805310,0.01123596,0.00000000,6.20000000 +10715,chr22,44735963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.63000000,0.00000000,,0.27272727,88.00000000,3.89380531,0.00000000,0.00000000,6.29000000 +10716,chr22,44752320,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,101.00000000,0.00000000,1.31000000,0.00000000,,0.35526316,78.00000000,3.45132743,0.01282051,0.00000000,8.49000000 +10717,chr22,44752468,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,38.00000000,0.00000000,-1.94000000,0.00000000,,0.39622642,56.00000000,2.47787611,0.05357143,0.00000000,4.04000000 +10718,chr22,44753467,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.16438356,78.00000000,3.45132743,0.06410256,0.00000000,5.41000000 +10719,chr22,44753468,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.64000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.06410256,0.00000000,6.00000000 +10720,chr22,44753471,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,0.80000000,0.00000000,,0.16216216,80.00000000,3.53982301,0.06250000,0.00000000,5.80000000 +10721,chr22,44754197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.90000000,0.00000000,,0.19117647,72.00000000,3.18584071,0.05555556,0.00000000,4.79000000 +10722,chr22,44754213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.98000000 +10723,chr22,44754250,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.51000000,0.00000000,,0.17073171,84.00000000,3.71681416,0.02380952,0.00000000,5.33000000 +10724,chr22,44754600,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,1.09000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.57000000 +10725,chr22,44754930,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,1.21000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.68000000 +10726,chr22,44754953,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.82000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.04938272,0.00000000,5.32000000 +10727,chr22,44755027,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.67000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.72000000 +10728,chr22,44755119,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.10000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.75000000 +10729,chr22,44755166,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.22000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.00000000,0.00000000,6.36000000 +10730,chr22,44755174,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.72000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.36000000 +10731,chr22,44755840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.05633803,0.00000000,6.31000000 +10732,chr22,44756663,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,38.00000000,0.00000000,-0.33000000,0.00000000,,0.26086957,47.00000000,2.07964602,0.02127660,0.00000000,2.77000000 +10733,chr22,44756886,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.68000000,0.00000000,,0.22784810,84.00000000,3.71681416,0.04761905,0.00000000,6.27000000 +10734,chr22,44756907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.23287671,77.00000000,3.40707965,0.05194805,0.00000000,5.89000000 +10735,chr22,44758171,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.08000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.00000000,0.00000000,6.08000000 +10736,chr22,44759238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,0.49000000,0.00000000,,0.24615385,67.00000000,2.96460177,0.02985075,0.00000000,5.80000000 +10737,chr22,44759408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,1.71000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.31000000 +10738,chr22,44760015,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.60000000,0.00000000,,0.50769231,68.00000000,3.00884956,0.04411765,0.00000000,7.83000000 +10739,chr22,44760375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.51000000,0.00000000,,0.17204301,94.00000000,4.15929204,0.01063830,0.00000000,6.25000000 +10740,chr22,44760894,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.01369863,0.00000000,6.41000000 +10741,chr22,44761336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.13000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.36000000 +10742,chr22,44761972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,80.00000000,0.00000000,0.07000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.02150538,0.00000000,5.77000000 +10743,chr22,44767348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.01265823,0.00000000,6.63000000 +10744,chr22,44773591,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.63000000 +10745,chr22,44773668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,1.59000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.39000000 +10746,chr22,44775383,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.18644068,61.00000000,2.69911504,0.03278689,0.00000000,6.37000000 +10747,chr22,44778466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-0.31000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.00000000 +10748,chr22,44782567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.93000000,0.00000000,,0.24489796,52.00000000,2.30088496,0.05769231,0.00000000,6.31000000 +10749,chr22,44797792,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,1.02000000,0.00000000,,0.30303030,72.00000000,3.18584071,0.06944444,0.00000000,6.76000000 +10750,chr22,44798752,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,0.00000000,-0.50000000,0.00000000,,0.09210526,78.00000000,3.45132743,0.02564103,0.00000000,5.05000000 +10751,chr22,44821141,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,2.06000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.54000000 +10752,chr22,44825163,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.99000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.02898551,0.00000000,6.20000000 +10753,chr22,44826926,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.20430108,93.00000000,4.11504425,0.00000000,0.00000000,6.30000000 +10754,chr22,44828736,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.58000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.21000000 +10755,chr22,44829367,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,0.98000000,0.00000000,,0.34567901,82.00000000,3.62831858,0.01219512,0.00000000,8.33000000 +10756,chr22,44829470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.76000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.99000000 +10757,chr22,44830639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.84000000,0.00000000,,0.23456790,85.00000000,3.76106195,0.04705882,0.00000000,6.61000000 +10758,chr22,44831105,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,86.00000000,0.00000000,0.56000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,5.82000000 +10759,chr22,44831110,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,0.78000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.02816901,0.00000000,5.84000000 +10760,chr22,44831243,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-0.21000000,0.00000000,,0.25974026,79.00000000,3.49557522,0.01265823,0.00000000,6.19000000 +10761,chr22,44831287,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-1.58000000,0.00000000,,0.30769231,79.00000000,3.49557522,0.01265823,0.00000000,6.58000000 +10762,chr22,44831292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,-0.94000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,6.34000000 +10763,chr22,44831393,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.24000000,0.00000000,,0.27380952,84.00000000,3.71681416,0.00000000,0.00000000,6.25000000 +10764,chr22,44831438,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.39000000 +10765,chr22,44831592,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.19480519,79.00000000,3.49557522,0.02531646,0.00000000,5.80000000 +10766,chr22,44831947,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16455696,81.00000000,3.58407080,0.01234568,0.00000000,5.65000000 +10767,chr22,44832749,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,0.37000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,5.90000000 +10768,chr22,44833918,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.23913043,93.00000000,4.11504425,0.00000000,0.00000000,5.91000000 +10769,chr22,44834556,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,82.00000000,0.00000000,-1.47000000,0.00000000,,0.19753086,81.00000000,3.58407080,0.00000000,0.00000000,6.60000000 +10770,chr22,44835219,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,-1.16000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +10771,chr22,44835690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,2.03000000,0.00000000,,0.20652174,93.00000000,4.11504425,0.01075269,0.00000000,6.04000000 +10772,chr22,44835801,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,-1.31000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.94000000 +10773,chr22,44836003,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.69000000,0.00000000,,0.28378378,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +10774,chr22,44837085,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-2.03000000,0.00000000,,0.24000000,77.00000000,3.40707965,0.02597403,0.00000000,3.12000000 +10775,chr22,44837838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.40000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.53000000 +10776,chr22,44838281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.75000000,0.00000000,,0.20833333,75.00000000,3.31858407,0.04000000,0.00000000,5.77000000 +10777,chr22,44838286,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.03125000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,0.68000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,5.82000000 +10778,chr22,44838428,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.95000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.02352941,0.00000000,5.48000000 +10779,chr22,44838525,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-1.09000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,5.94000000 +10780,chr22,44838859,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.85000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +10781,chr22,44838875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-1.25000000,0.00000000,,0.19444444,75.00000000,3.31858407,0.04000000,0.00000000,6.22000000 +10782,chr22,44840733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.56000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.02439024,0.00000000,6.32000000 +10783,chr22,44841357,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,0.87000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,5.75000000 +10784,chr22,44841690,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-1.11000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.86000000 +10785,chr22,44845822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,2.37000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,5.78000000 +10786,chr22,44845915,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,0.19000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,6.20000000 +10787,chr22,44847359,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,73.00000000,0.00000000,0.32000000,0.00000000,,0.15294118,88.00000000,3.89380531,0.02272727,0.00000000,4.65000000 +10788,chr22,44849386,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.17000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.00000000,0.00000000,5.94000000 +10789,chr22,44849479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.64000000,0.00000000,,0.19718310,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +10790,chr22,44851916,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-2.11000000,0.00000000,,0.20689655,58.00000000,2.56637168,0.00000000,0.00000000,6.80000000 +10791,chr22,44855289,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.51000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.01492537,0.00000000,6.62000000 +10792,chr22,44856067,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,0.62000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,5.79000000 +10793,chr22,44856405,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,64.00000000,0.00000000,-0.22000000,4.11000000,,0.14285714,56.00000000,2.47787611,0.00000000,0.00000000,4.33000000 +10794,chr22,44856486,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.33000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.27000000,5.10000000,,0.11666667,60.00000000,2.65486726,0.00000000,0.00000000,3.50000000 +10795,chr22,44857441,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,-1.41000000,4.47000000,,0.15254237,60.00000000,2.65486726,0.01666667,0.00000000,4.40000000 +10796,chr22,44857453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,-0.26000000,4.51000000,,0.13432836,69.00000000,3.05309735,0.01449275,0.00000000,4.50000000 +10797,chr22,44857631,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.25000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.99000000 +10798,chr22,44857756,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,-1.13000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.02197802,0.00000000,5.81000000 +10799,chr22,44857830,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,72.00000000,0.00000000,-0.44000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.06666667,0.00000000,5.55000000 +10800,chr22,44857838,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,-0.39000000,0.00000000,,0.16455696,84.00000000,3.71681416,0.05952381,0.00000000,5.95000000 +10801,chr22,44857884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.01000000,4.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,0.00000000,1.40000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,4.98000000 +10802,chr22,44857894,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.94000000,4.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.96000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,5.97000000 +10803,chr22,44857951,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.00000000,4.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,69.00000000,0.00000000,-2.03000000,0.00000000,,0.14285714,78.00000000,3.45132743,0.07692308,0.00000000,5.66000000 +10804,chr22,44857955,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.96000000,4.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.77000000,0.00000000,,0.14492754,75.00000000,3.31858407,0.08000000,0.00000000,5.49000000 +10805,chr22,44857992,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.25000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.92000000,0.00000000,,0.19512195,84.00000000,3.71681416,0.02380952,0.00000000,6.28000000 +10806,chr22,44858015,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.49000000 +10807,chr22,44858323,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.75000000,4.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,0.00000000,-0.13000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.00000000,0.00000000,7.07000000 +10808,chr22,44858349,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.67000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.12000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,2.93000000 +10809,chr22,44858665,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.12000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,5.31000000 +10810,chr22,44858727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-1.34000000,0.00000000,,0.25531915,48.00000000,2.12389381,0.02083333,0.00000000,6.43000000 +10811,chr22,44858919,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,56.03000000,9.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-1.66000000,0.00000000,,0.13559322,60.00000000,2.65486726,0.01666667,0.00000000,4.19000000 +10812,chr22,44859275,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,1.93000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.29000000 +10813,chr22,44859324,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,0.00000000,-0.43000000,0.00000000,,0.10937500,65.00000000,2.87610619,0.01538462,0.00000000,4.87000000 +10814,chr22,44859407,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,69.00000000,0.00000000,-0.58000000,0.00000000,,0.12000000,75.00000000,3.31858407,0.00000000,0.00000000,5.21000000 +10815,chr22,44859580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,0.94000000,0.00000000,,0.16483516,93.00000000,4.11504425,0.02150538,0.00000000,5.44000000 +10816,chr22,44859750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.70000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.69000000 +10817,chr22,44859764,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.83000000,0.00000000,,0.16883117,80.00000000,3.53982301,0.02500000,0.00000000,5.80000000 +10818,chr22,44859922,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,68.00000000,0.00000000,-1.62000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +10819,chr22,44859952,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +10820,chr22,44860299,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,0.61000000,0.00000000,,0.11666667,68.00000000,3.00884956,0.11764706,0.00000000,2.85000000 +10821,chr22,44860343,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,-0.01000000,0.00000000,,0.13333333,60.00000000,2.65486726,0.00000000,0.00000000,4.26000000 +10822,chr22,44861908,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.00000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.30000000 +10823,chr22,44861990,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.27027027,77.00000000,3.40707965,0.03896104,0.00000000,6.01000000 +10824,chr22,44862132,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.19000000 +10825,chr22,44862173,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-0.19000000,0.00000000,,0.18309859,72.00000000,3.18584071,0.01388889,0.00000000,6.27000000 +10826,chr22,44862453,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.24000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.75000000 +10827,chr22,44862909,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,96.00000000,4.24778761,0.04166667,0.00000000,5.81000000 +10828,chr22,44863694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.66000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.16000000 +10829,chr22,44863704,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-1.25000000,0.00000000,,0.24675325,81.00000000,3.58407080,0.04938272,0.00000000,5.97000000 +10830,chr22,44864165,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,2.02000000,0.00000000,,0.13888889,76.00000000,3.36283186,0.03947368,0.00000000,5.45000000 +10831,chr22,44864238,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,71.00000000,0.00000000,-0.59000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.36000000 +10832,chr22,44864697,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,78.00000000,0.00000000,1.17000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.28000000 +10833,chr22,44865438,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.21505376,97.00000000,4.29203540,0.04123711,0.00000000,6.28000000 +10834,chr22,44865666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.22000000 +10835,chr22,44865957,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.05000000,0.00000000,,0.25609756,83.00000000,3.67256637,0.01204819,0.00000000,6.67000000 +10836,chr22,44866332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.65000000,0.00000000,,0.20689655,59.00000000,2.61061947,0.01694915,0.00000000,6.58000000 +10837,chr22,44866363,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.11000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.00000000,0.00000000,6.37000000 +10838,chr22,44867178,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.23000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.91000000,0.00000000,,0.22807018,66.00000000,2.92035398,0.13636364,0.00000000,6.36000000 +10839,chr22,44867694,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,73.00000000,0.00000000,-0.11000000,0.00000000,,0.30769231,81.00000000,3.58407080,0.03703704,0.00000000,6.08000000 +10840,chr22,44870441,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,2.03000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.77000000 +10841,chr22,44876390,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.72000000,0.00000000,,0.28395062,83.00000000,3.67256637,0.02409639,0.00000000,6.33000000 +10842,chr22,44877298,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,74.00000000,0.00000000,0.22000000,0.00000000,,0.16129032,94.00000000,4.15929204,0.01063830,0.00000000,5.35000000 +10843,chr22,44878081,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,0.29000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +10844,chr22,44878815,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.37000000,0.00000000,,0.22535211,76.00000000,3.36283186,0.03947368,0.00000000,6.35000000 +10845,chr22,44879162,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-1.11000000,0.00000000,,0.20224719,92.00000000,4.07079646,0.03260870,0.00000000,6.04000000 +10846,chr22,44880466,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-0.20000000,0.00000000,,0.55555556,86.00000000,3.80530973,0.04651163,0.00000000,8.52000000 +10847,chr22,44880986,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,62.00000000,0.00000000,0.12000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,7.77000000 +10848,chr22,44881784,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,52.00000000,0.00000000,-0.61000000,0.00000000,,0.46153846,68.00000000,3.00884956,0.04411765,0.00000000,4.65000000 +10849,chr22,44883123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.98000000 +10850,chr22,44883440,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,-1.07000000,0.00000000,,0.39506173,81.00000000,3.58407080,0.00000000,0.00000000,4.69000000 +10851,chr22,44883618,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.48684211,76.00000000,3.36283186,0.00000000,0.00000000,7.92000000 +10852,chr22,44883769,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-0.26000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.02325581,0.00000000,6.50000000 +10853,chr22,44883921,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.50000000,80.00000000,3.53982301,0.05000000,0.00000000,8.40000000 +10854,chr22,44885190,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-2.40000000,0.00000000,,0.46913580,81.00000000,3.58407080,0.00000000,0.00000000,8.58000000 +10855,chr22,44891872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,-1.55000000,0.00000000,,0.29213483,91.00000000,4.02654867,0.02197802,0.00000000,5.89000000 +10856,chr22,44894320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.41000000,0.00000000,,0.18309859,71.00000000,3.14159292,0.00000000,0.00000000,6.51000000 +10857,chr22,44900122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-0.28000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,7.01000000 +10858,chr22,44905310,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.47826087,94.00000000,4.15929204,0.02127660,0.00000000,8.03000000 +10859,chr22,44912998,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.16000000,0.00000000,,0.46753247,84.00000000,3.71681416,0.07142857,0.00000000,8.17000000 +10860,chr22,44917047,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.47000000,0.00000000,,0.40963855,84.00000000,3.71681416,0.01190476,0.00000000,8.54000000 +10861,chr22,44918366,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.23000000,0.00000000,,0.46753247,78.00000000,3.45132743,0.01282051,0.00000000,8.40000000 +10862,chr22,44920910,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.94000000,0.00000000,,0.49411765,87.00000000,3.84955752,0.01149425,0.00000000,8.31000000 +10863,chr22,44921511,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,42.00000000,0.00000000,0.46000000,0.00000000,,0.38297872,49.00000000,2.16814159,0.04081633,0.00000000,4.11000000 +10864,chr22,44924329,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,46.00000000,0.00000000,-1.41000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,4.68000000 +10865,chr22,44924751,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,102.00000000,0.00000000,-0.13000000,0.00000000,,0.38461538,95.00000000,4.20353982,0.03157895,0.00000000,12.27000000 +10866,chr22,44925683,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.17000000,0.00000000,,0.47619048,66.00000000,2.92035398,0.03030303,0.00000000,8.29000000 +10867,chr22,44927959,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,22.00000000,0.00000000,-0.49000000,0.00000000,,0.51315789,76.00000000,3.36283186,0.00000000,0.00000000,3.16000000 +10868,chr22,44928053,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.00000000,0.00000000,17.00000000,0.00000000,0.42000000,0.00000000,,0.51515152,67.00000000,2.96460177,0.01492537,0.00000000,2.97000000 +10869,chr22,44928109,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,0.54000000,0.00000000,,0.41176471,68.00000000,3.00884956,0.00000000,0.00000000,8.44000000 +10870,chr22,44928471,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,49.00000000,0.00000000,-0.37000000,0.00000000,,0.44444444,72.00000000,3.18584071,0.00000000,0.00000000,4.54000000 +10871,chr22,44928537,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,-1.77000000,0.00000000,,0.50746269,69.00000000,3.05309735,0.02898551,0.00000000,4.45000000 +10872,chr22,44931408,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.15277778,74.00000000,3.27433628,0.02702703,0.00000000,5.20000000 +10873,chr22,44979379,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.74000000,0.00000000,,0.53947368,76.00000000,3.36283186,0.00000000,0.00000000,7.89000000 +10874,chr22,44986430,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,58.00000000,0.00000000,1.08000000,0.00000000,,0.19298246,64.00000000,2.83185841,0.10937500,0.00000000,3.94000000 +10875,chr22,44996887,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,1.65000000,0.00000000,,0.27848101,81.00000000,3.58407080,0.02469136,0.00000000,6.22000000 +10876,chr22,45007428,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,46.00000000,0.00000000,-0.31000000,0.00000000,,0.41935484,64.00000000,2.83185841,0.01562500,0.00000000,4.62000000 +10877,chr22,45010510,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.05000000,0.00000000,,0.39726027,73.00000000,3.23008850,0.00000000,0.00000000,8.50000000 +10878,chr22,45014004,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,46.00000000,0.00000000,0.49000000,0.00000000,,0.34545455,60.00000000,2.65486726,0.08333333,0.00000000,4.21000000 +10879,chr22,45014011,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,41.00000000,0.00000000,0.48000000,0.00000000,,0.36538462,60.00000000,2.65486726,0.13333333,0.00000000,4.24000000 +10880,chr22,45016708,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,49.00000000,0.00000000,0.88000000,0.00000000,,0.44827586,92.00000000,4.07079646,0.05434783,0.00000000,4.48000000 +10881,chr22,45016749,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,57.00000000,0.00000000,0.80000000,0.00000000,,0.37500000,82.00000000,3.62831858,0.02439024,0.00000000,4.89000000 +10882,chr22,45018258,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,7.75000000 +10883,chr22,45044553,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.06000000,0.00000000,,0.27868852,67.00000000,2.96460177,0.08955224,0.00000000,6.82000000 +10884,chr22,45045039,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.38000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,6.16000000 +10885,chr22,45052056,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.86000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.02777778,0.00000000,5.73000000 +10886,chr22,45055174,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.99000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,62.00000000,0.00000000,1.11000000,0.00000000,,0.20967742,68.00000000,3.00884956,0.08823529,0.00000000,5.20000000 +10887,chr22,45055846,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.64000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.03448276,0.00000000,8.17000000 +10888,chr22,45055979,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,0.00000000,-0.06000000,0.00000000,,0.43750000,65.00000000,2.87610619,0.01538462,0.00000000,6.04000000 +10889,chr22,45056243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,36.00000000,0.00000000,-0.99000000,0.00000000,,0.51612903,66.00000000,2.92035398,0.03030303,0.00000000,3.97000000 +10890,chr22,45056295,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,0.21000000,0.00000000,,0.42307692,80.00000000,3.53982301,0.02500000,0.00000000,7.61000000 +10891,chr22,45056428,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,93.00000000,0.00000000,0.23000000,0.00000000,,0.39743590,81.00000000,3.58407080,0.02469136,0.00000000,7.98000000 +10892,chr22,45057750,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.36000000,0.00000000,,0.49397590,85.00000000,3.76106195,0.00000000,0.00000000,8.56000000 +10893,chr22,45057777,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-1.87000000,0.00000000,,0.45205479,73.00000000,3.23008850,0.00000000,0.00000000,8.41000000 +10894,chr22,45057850,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.69000000,0.00000000,,0.31250000,68.00000000,3.00884956,0.04411765,0.00000000,7.48000000 +10895,chr22,45057893,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.29000000,0.00000000,,0.33823529,70.00000000,3.09734513,0.02857143,0.00000000,8.16000000 +10896,chr22,45058958,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,87.00000000,0.00000000,-0.98000000,0.00000000,,0.37974684,80.00000000,3.53982301,0.01250000,0.00000000,8.15000000 +10897,chr22,45059175,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.05555556,0.00000000,60.00000000,0.00000000,-0.60000000,0.00000000,,0.41558442,81.00000000,3.58407080,0.03703704,0.00000000,7.46000000 +10898,chr22,45059608,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.22000000,0.00000000,,0.42647059,71.00000000,3.14159292,0.02816901,0.00000000,8.35000000 +10899,chr22,45060258,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,45.00000000,0.00000000,-0.42000000,0.00000000,,0.43209877,81.00000000,3.58407080,0.00000000,0.00000000,4.18000000 +10900,chr22,45060748,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,43.00000000,0.00000000,0.86000000,0.00000000,,0.41071429,57.00000000,2.52212389,0.01754386,0.00000000,4.10000000 +10901,chr22,45062910,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,76.00000000,0.00000000,1.46000000,0.00000000,,0.42857143,88.00000000,3.89380531,0.01136364,0.00000000,8.15000000 +10902,chr22,45064493,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.40277778,74.00000000,3.27433628,0.02702703,0.00000000,8.02000000 +10903,chr22,45065347,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,1.08000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.83000000 +10904,chr22,45068754,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.15000000,0.00000000,,0.37362637,92.00000000,4.07079646,0.00000000,0.00000000,8.38000000 +10905,chr22,45069109,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,96.00000000,0.00000000,0.60000000,0.00000000,,0.37974684,80.00000000,3.53982301,0.01250000,0.00000000,8.14000000 +10906,chr22,45069148,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,-0.27000000,0.00000000,,0.38235294,69.00000000,3.05309735,0.01449275,0.00000000,8.34000000 +10907,chr22,45069187,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-2.09000000,0.00000000,,0.41428571,73.00000000,3.23008850,0.04109589,0.00000000,8.24000000 +10908,chr22,45070137,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.16000000,0.00000000,,0.36470588,88.00000000,3.89380531,0.03409091,0.00000000,8.21000000 +10909,chr22,45070534,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.41558442,77.00000000,3.40707965,0.00000000,0.00000000,8.52000000 +10910,chr22,45070906,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.42000000,0.00000000,,0.33928571,58.00000000,2.56637168,0.03448276,0.00000000,8.30000000 +10911,chr22,45071028,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.46000000,0.00000000,,0.36986301,77.00000000,3.40707965,0.03896104,0.00000000,7.93000000 +10912,chr22,45071990,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.16000000,0.00000000,,0.42028986,69.00000000,3.05309735,0.00000000,0.00000000,8.06000000 +10913,chr22,45072233,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,59.00000000,0.00000000,0.21000000,0.00000000,,0.55263158,77.00000000,3.40707965,0.01298701,0.00000000,6.46000000 +10914,chr22,45072999,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,44.00000000,0.00000000,-0.20000000,0.00000000,,0.45283019,54.00000000,2.38938053,0.01851852,0.00000000,3.99000000 +10915,chr22,45073622,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,0.53000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.01234568,0.00000000,8.48000000 +10916,chr22,45073905,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.80000000,0.00000000,,0.36986301,73.00000000,3.23008850,0.00000000,0.00000000,8.96000000 +10917,chr22,45074667,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.86000000,0.00000000,,0.48192771,84.00000000,3.71681416,0.01190476,0.00000000,8.43000000 +10918,chr22,45075086,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.15000000,0.00000000,,0.53488372,87.00000000,3.84955752,0.01149425,0.00000000,8.63000000 +10919,chr22,45075726,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,48.00000000,0.00000000,-1.30000000,0.00000000,,0.52054795,75.00000000,3.31858407,0.01333333,0.00000000,4.26000000 +10920,chr22,45076165,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,-0.63000000,0.00000000,,0.55555556,59.00000000,2.61061947,0.06779661,0.00000000,4.66000000 +10921,chr22,45076203,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-1.26000000,0.00000000,,0.51020408,53.00000000,2.34513274,0.05660377,0.00000000,4.75000000 +10922,chr22,45076222,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-0.89000000,0.00000000,,0.47169811,55.00000000,2.43362832,0.03636364,0.00000000,4.86000000 +10923,chr22,45076693,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.22000000,0.00000000,,0.35211268,71.00000000,3.14159292,0.00000000,0.00000000,8.71000000 +10924,chr22,45076940,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,0.95000000,0.00000000,,0.38356164,74.00000000,3.27433628,0.01351351,0.00000000,7.97000000 +10925,chr22,45077186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,98.00000000,0.00000000,-0.98000000,0.00000000,,0.40845070,72.00000000,3.18584071,0.01388889,0.00000000,8.15000000 +10926,chr22,45078093,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.75000000,0.00000000,,0.46666667,76.00000000,3.36283186,0.01315789,0.00000000,4.53000000 +10927,chr22,45079691,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-1.62000000,0.00000000,,0.50724638,71.00000000,3.14159292,0.00000000,0.00000000,8.95000000 +10928,chr22,45079996,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.63000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,8.49000000 +10929,chr22,45081332,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.86000000,0.00000000,,0.41176471,91.00000000,4.02654867,0.05494505,0.00000000,8.11000000 +10930,chr22,45082239,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,55.00000000,0.00000000,0.76000000,0.00000000,,0.38297872,94.00000000,4.15929204,0.00000000,0.00000000,4.35000000 +10931,chr22,45082758,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-0.05000000,0.00000000,,0.41176471,70.00000000,3.09734513,0.01428571,0.00000000,8.06000000 +10932,chr22,45086054,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.26000000,0.00000000,,0.37704918,63.00000000,2.78761062,0.03174603,0.00000000,8.19000000 +10933,chr22,45086094,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.30000000,0.00000000,,0.36923077,66.00000000,2.92035398,0.00000000,0.00000000,8.96000000 +10934,chr22,45086299,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.25000000,0.00000000,,0.44262295,61.00000000,2.69911504,0.00000000,0.00000000,8.34000000 +10935,chr22,45086377,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.75000000,0.00000000,,0.39436620,73.00000000,3.23008850,0.02739726,0.00000000,8.42000000 +10936,chr22,45087490,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.50000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.30000000,0.00000000,,0.43373494,88.00000000,3.89380531,0.04545455,0.00000000,7.87000000 +10937,chr22,45087702,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.92000000,0.00000000,,0.47311828,93.00000000,4.11504425,0.00000000,0.00000000,8.91000000 +10938,chr22,45088271,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.64000000,0.00000000,,0.38095238,89.00000000,3.93805310,0.04494382,0.00000000,8.75000000 +10939,chr22,45089484,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.48484848,67.00000000,2.96460177,0.01492537,0.00000000,8.39000000 +10940,chr22,45089705,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,52.00000000,0.00000000,0.69000000,0.00000000,,0.38961039,80.00000000,3.53982301,0.03750000,0.00000000,4.52000000 +10941,chr22,45093307,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.70000000,0.00000000,,0.54022989,89.00000000,3.93805310,0.02247191,0.00000000,8.24000000 +10942,chr22,45093430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,71.00000000,0.00000000,-0.10000000,0.00000000,,0.48275862,88.00000000,3.89380531,0.01136364,0.00000000,8.57000000 +10943,chr22,45093550,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,-0.50000000,0.00000000,,0.51111111,91.00000000,4.02654867,0.01098901,0.00000000,8.18000000 +10944,chr22,45094552,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,99.00000000,0.00000000,1.53000000,0.00000000,,0.40000000,82.00000000,3.62831858,0.01219512,0.00000000,8.41000000 +10945,chr22,45094855,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.35000000,0.00000000,,0.41558442,77.00000000,3.40707965,0.00000000,0.00000000,8.52000000 +10946,chr22,45094895,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-0.87000000,0.00000000,,0.50000000,76.00000000,3.36283186,0.00000000,0.00000000,8.00000000 +10947,chr22,45095126,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,-1.31000000,0.00000000,,0.39189189,79.00000000,3.49557522,0.06329114,0.00000000,8.29000000 +10948,chr22,45095307,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,7.98000000 +10949,chr22,45095749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,0.19000000,0.00000000,,0.42307692,78.00000000,3.45132743,0.00000000,0.00000000,8.61000000 +10950,chr22,45096727,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,0.12000000,0.00000000,,0.39393939,69.00000000,3.05309735,0.02898551,0.00000000,4.71000000 +10951,chr22,45097002,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,50.00000000,0.00000000,0.57000000,0.00000000,,0.44444444,73.00000000,3.23008850,0.01369863,0.00000000,4.59000000 +10952,chr22,45097708,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-1.62000000,0.00000000,,0.41975309,82.00000000,3.62831858,0.01219512,0.00000000,8.64000000 +10953,chr22,45098263,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.18478261,93.00000000,4.11504425,0.01075269,0.00000000,6.52000000 +10954,chr22,45098951,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,0.01000000,0.00000000,,0.29166667,72.00000000,3.18584071,0.00000000,0.00000000,6.37000000 +10955,chr22,45098959,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,0.00000000,0.26000000,0.00000000,,0.28571429,70.00000000,3.09734513,0.00000000,0.00000000,6.39000000 +10956,chr22,45099381,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.36666667,0.00000000,50.00000000,0.00000000,-0.20000000,0.00000000,,0.31481481,78.00000000,3.45132743,0.30769231,0.00000000,3.08000000 +10957,chr22,45099668,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-0.92000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.06000000 +10958,chr22,45099815,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.37000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.01298701,0.00000000,5.94000000 +10959,chr22,45100575,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.25000000,76.00000000,3.36283186,0.05263158,0.00000000,6.29000000 +10960,chr22,45102122,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.82000000,0.00000000,,0.10606061,67.00000000,2.96460177,0.01492537,0.00000000,5.38000000 +10961,chr22,45102306,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,1.98000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.66000000 +10962,chr22,45158647,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-1.25000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.55000000 +10963,chr22,45209479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,2.68000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.02857143,0.00000000,6.19000000 +10964,chr22,45222455,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.36000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.01298701,0.00000000,6.19000000 +10965,chr22,45244255,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.32000000,0.00000000,,0.24528302,55.00000000,2.43362832,0.03636364,0.00000000,5.73000000 +10966,chr22,45245510,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.59000000 +10967,chr22,45245530,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,0.00000000,-1.12000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.03846154,0.00000000,5.84000000 +10968,chr22,45245539,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.23000000,0.00000000,,0.26250000,84.00000000,3.71681416,0.02380952,0.00000000,6.04000000 +10969,chr22,45245698,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.86000000,0.00000000,,0.12345679,82.00000000,3.62831858,0.00000000,0.00000000,5.57000000 +10970,chr22,45246980,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,-0.77000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.61000000 +10971,chr22,45247026,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-1.32000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.40000000 +10972,chr22,45247338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.53000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.54000000 +10973,chr22,45247799,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.75000000,0.00000000,,0.23456790,86.00000000,3.80530973,0.05813953,0.00000000,6.31000000 +10974,chr22,45247808,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.60000000,0.00000000,,0.21951220,86.00000000,3.80530973,0.04651163,0.00000000,6.59000000 +10975,chr22,45247889,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.00000000,0.00000000,6.39000000 +10976,chr22,45247969,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.29000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,6.00000000 +10977,chr22,45247970,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.37000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.97000000 +10978,chr22,45248490,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-0.50000000,0.00000000,,0.16250000,81.00000000,3.58407080,0.01234568,0.00000000,6.48000000 +10979,chr22,45248620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.25000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +10980,chr22,45249120,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,91.00000000,0.00000000,0.80000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.18000000 +10981,chr22,45249573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,-0.85000000,0.00000000,,0.24691358,88.00000000,3.89380531,0.05681818,0.00000000,6.27000000 +10982,chr22,45249586,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-0.58000000,0.00000000,,0.24358974,86.00000000,3.80530973,0.06976744,0.00000000,6.28000000 +10983,chr22,45249588,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.32000000,0.00000000,,0.24675325,83.00000000,3.67256637,0.07228916,0.00000000,6.28000000 +10984,chr22,45249907,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.72000000,0.00000000,,0.26415094,56.00000000,2.47787611,0.05357143,0.00000000,6.31000000 +10985,chr22,45249921,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.34000000,0.00000000,,0.25000000,59.00000000,2.61061947,0.05084746,0.00000000,6.32000000 +10986,chr22,45249977,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.42000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +10987,chr22,45250087,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.23188406,71.00000000,3.14159292,0.02816901,0.00000000,6.31000000 +10988,chr22,45251185,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.13000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.56000000 +10989,chr22,45251219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,0.27000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.26000000 +10990,chr22,45251482,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,0.76000000,0.00000000,,0.28205128,81.00000000,3.58407080,0.02469136,0.00000000,6.09000000 +10991,chr22,45273305,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,68.00000000,0.00000000,0.17000000,0.00000000,,0.23376623,83.00000000,3.67256637,0.07228916,0.00000000,5.60000000 +10992,chr22,45275710,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,0.16000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,4.49000000 +10993,chr22,45278624,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.32000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.02777778,0.00000000,6.55000000 +10994,chr22,45281548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.02777778,0.00000000,6.77000000 +10995,chr22,45297947,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.31000000,0.00000000,,0.47142857,72.00000000,3.18584071,0.02777778,0.00000000,4.74000000 +10996,chr22,45298042,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.74000000,0.00000000,,0.36250000,81.00000000,3.58407080,0.00000000,0.00000000,8.78000000 +10997,chr22,45299973,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,63.00000000,0.00000000,-0.54000000,0.00000000,,0.50000000,83.00000000,3.67256637,0.22891566,0.00000000,7.81000000 +10998,chr22,45301150,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,0.00000000,0.48000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,6.34000000 +10999,chr22,45302042,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.54000000,0.00000000,,0.17105263,76.00000000,3.36283186,0.00000000,0.00000000,6.00000000 +11000,chr22,45302392,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,-0.58000000,0.00000000,,0.44444444,93.00000000,4.11504425,0.03225806,0.00000000,8.33000000 +11001,chr22,45312035,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.25000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.24000000 +11002,chr22,45312629,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,0.17000000,0.00000000,,0.47222222,74.00000000,3.27433628,0.02702703,0.00000000,8.21000000 +11003,chr22,45332715,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.95000000,0.00000000,,0.20652174,94.00000000,4.15929204,0.02127660,0.00000000,6.16000000 +11004,chr22,45361410,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.99000000,0.00000000,,0.13157895,78.00000000,3.45132743,0.02564103,0.00000000,4.93000000 +11005,chr22,45434199,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,0.00000000,0.58000000,0.00000000,,0.16049383,88.00000000,3.89380531,0.07954545,0.00000000,5.43000000 +11006,chr22,45440740,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,0.00000000,-2.81000000,0.00000000,,0.41772152,81.00000000,3.58407080,0.01234568,0.00000000,4.33000000 +11007,chr22,45441012,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,0.06000000,0.00000000,,0.43181818,92.00000000,4.07079646,0.04347826,0.00000000,5.80000000 +11008,chr22,45442765,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.78000000,0.00000000,,0.42307692,81.00000000,3.58407080,0.02469136,0.00000000,8.08000000 +11009,chr22,45442936,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.19000000,0.00000000,,0.46067416,91.00000000,4.02654867,0.02197802,0.00000000,5.74000000 +11010,chr22,45443175,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,61.00000000,0.00000000,-0.67000000,0.00000000,,0.38666667,81.00000000,3.58407080,0.07407407,0.00000000,8.13000000 +11011,chr22,45445396,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-1.30000000,0.00000000,,0.45454545,79.00000000,3.49557522,0.02531646,0.00000000,8.36000000 +11012,chr22,45447028,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,24.00000000,1.06194690,0.04166667,0.00000000,38.00000000,0.00000000,-1.72000000,0.00000000,,0.55555556,66.00000000,2.92035398,0.04545455,0.00000000,4.04000000 +11013,chr22,45447892,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,-0.26000000,0.00000000,,0.50724638,69.00000000,3.05309735,0.00000000,0.00000000,4.58000000 +11014,chr22,45448044,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.25000000,0.00000000,,0.40579710,69.00000000,3.05309735,0.00000000,0.00000000,8.46000000 +11015,chr22,45450490,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.40000000,0.00000000,,0.39062500,66.00000000,2.92035398,0.01515152,0.00000000,8.23000000 +11016,chr22,45450591,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.42105263,76.00000000,3.36283186,0.00000000,0.00000000,8.59000000 +11017,chr22,45451084,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,85.00000000,0.00000000,-0.35000000,0.00000000,,0.36619718,75.00000000,3.31858407,0.05333333,0.00000000,8.46000000 +11018,chr22,45451315,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,0.22000000,0.00000000,,0.42222222,92.00000000,4.07079646,0.02173913,0.00000000,8.10000000 +11019,chr22,45453675,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.38571429,73.00000000,3.23008850,0.04109589,0.00000000,8.19000000 +11020,chr22,45453927,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,90.00000000,0.00000000,-0.74000000,0.00000000,,0.36764706,69.00000000,3.05309735,0.01449275,0.01428571,8.47000000 +11021,chr22,45454600,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,46.00000000,0.00000000,-0.36000000,0.00000000,,0.40229885,88.00000000,3.89380531,0.01136364,0.00000000,4.50000000 +11022,chr22,45456143,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,21.00000000,0.92920354,0.09523810,0.00000000,26.00000000,0.00000000,0.45000000,0.00000000,,0.44615385,69.00000000,3.05309735,0.05797101,0.00000000,3.79000000 +11023,chr22,45456568,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,1.94000000,0.00000000,,0.36666667,64.00000000,2.83185841,0.06250000,0.00000000,7.92000000 +11024,chr22,45456632,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,-0.57000000,0.00000000,,0.39622642,54.00000000,2.38938053,0.01851852,0.00000000,7.53000000 +11025,chr22,45460721,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,0.60000000,0.00000000,,0.43421053,79.00000000,3.49557522,0.03797468,0.00000000,7.91000000 +11026,chr22,45467989,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.33333333,73.00000000,3.23008850,0.01369863,0.00000000,8.05000000 +11027,chr22,45469174,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,0.26000000,0.00000000,,0.43037975,79.00000000,3.49557522,0.00000000,0.00000000,8.36000000 +11028,chr22,45470146,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,116.00000000,0.00000000,0.48000000,0.00000000,,0.36538462,106.00000000,4.69026549,0.01886792,0.00000000,12.60000000 +11029,chr22,45470643,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,90.00000000,0.00000000,-1.19000000,0.00000000,,0.43181818,93.00000000,4.11504425,0.04301075,0.00000000,8.14000000 +11030,chr22,45470648,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,0.00000000,-0.52000000,0.00000000,,0.44943820,91.00000000,4.02654867,0.02197802,0.00000000,8.14000000 +11031,chr22,45470865,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,19.00000000,0.00000000,0.10000000,0.00000000,,0.47368421,39.00000000,1.72566372,0.02564103,0.00000000,3.87000000 +11032,chr22,45470902,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,32.00000000,0.00000000,-1.16000000,0.00000000,,0.53846154,39.00000000,1.72566372,0.00000000,0.00000000,3.73000000 +11033,chr22,45473433,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.43137255,52.00000000,2.30088496,0.01923077,0.00000000,8.00000000 +11034,chr22,45473612,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-1.21000000,0.00000000,,0.42187500,65.00000000,2.87610619,0.01538462,0.00000000,8.11000000 +11035,chr22,45475587,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,98.00000000,0.00000000,-0.20000000,0.00000000,,0.29292929,100.00000000,4.42477876,0.00000000,0.00000000,7.09000000 +11036,chr22,45477815,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.36000000,0.00000000,,0.55072464,69.00000000,3.05309735,0.00000000,0.00000000,8.96000000 +11037,chr22,45478446,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.44578313,83.00000000,3.67256637,0.00000000,0.00000000,8.27000000 +11038,chr22,45478493,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.71000000,0.00000000,,0.48837209,86.00000000,3.80530973,0.00000000,0.00000000,8.95000000 +11039,chr22,45478737,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,50.00000000,0.00000000,-0.15000000,0.00000000,,0.57534247,73.00000000,3.23008850,0.00000000,0.00000000,4.48000000 +11040,chr22,45479942,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,0.85000000,0.00000000,,0.45205479,76.00000000,3.36283186,0.03947368,0.00000000,4.00000000 +11041,chr22,45480586,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,0.66000000,0.00000000,,0.57692308,78.00000000,3.45132743,0.00000000,0.00000000,8.38000000 +11042,chr22,45482865,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.30769231,0.00000000,60.00000000,0.00000000,-0.45000000,0.00000000,,0.50909091,68.00000000,3.00884956,0.19117647,0.00000000,7.31000000 +11043,chr22,45483052,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.15000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.33000000 +11044,chr22,45483054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,-1.15000000,0.00000000,,0.40277778,76.00000000,3.36283186,0.05263158,0.00000000,8.28000000 +11045,chr22,45483103,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.39000000,0.00000000,,0.47058824,69.00000000,3.05309735,0.01449275,0.00000000,8.43000000 +11046,chr22,45483190,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,-2.10000000,0.00000000,,0.46575342,74.00000000,3.27433628,0.01351351,0.00000000,8.74000000 +11047,chr22,45483518,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.35000000,0.00000000,,0.48387097,64.00000000,2.83185841,0.03125000,0.00000000,8.16000000 +11048,chr22,45483551,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,75.00000000,0.00000000,-0.57000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,8.82000000 +11049,chr22,45483763,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.67000000,0.00000000,,0.44318182,91.00000000,4.02654867,0.03296703,0.00000000,8.28000000 +11050,chr22,45483950,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.53000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.49000000 +11051,chr22,45484122,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,2.18000000,0.00000000,,0.41666667,73.00000000,3.23008850,0.01369863,0.00000000,8.19000000 +11052,chr22,45484395,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.53750000,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +11053,chr22,45485167,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.99000000,0.00000000,,0.49333333,76.00000000,3.36283186,0.01315789,0.00000000,8.40000000 +11054,chr22,45485346,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,1.00000000,0.00000000,,0.40506329,81.00000000,3.58407080,0.02469136,0.00000000,8.14000000 +11055,chr22,45485434,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-1.23000000,0.00000000,,0.42168675,86.00000000,3.80530973,0.03488372,0.00000000,7.61000000 +11056,chr22,45485715,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-2.04000000,0.00000000,,0.48000000,77.00000000,3.40707965,0.01298701,0.00000000,8.24000000 +11057,chr22,45485733,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.40000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,4.65000000 +11058,chr22,45487364,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,92.00000000,0.00000000,-0.73000000,0.00000000,,0.35616438,73.00000000,3.23008850,0.00000000,0.00000000,8.93000000 +11059,chr22,45487945,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.38157895,77.00000000,3.40707965,0.01298701,0.00000000,8.27000000 +11060,chr22,45488033,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,53.00000000,0.00000000,-1.48000000,0.00000000,,0.42647059,69.00000000,3.05309735,0.01449275,0.00000000,4.61000000 +11061,chr22,45489333,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,0.00000000,0.25000000,0.00000000,,0.41176471,72.00000000,3.18584071,0.05555556,0.00000000,8.12000000 +11062,chr22,45489399,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.14000000,0.00000000,,0.28813559,63.00000000,2.78761062,0.06349206,0.00000000,5.68000000 +11063,chr22,45489520,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.20000000,0.00000000,17.00000000,0.00000000,-0.66000000,0.00000000,,0.54761905,46.00000000,2.03539823,0.08695652,0.00000000,4.14000000 +11064,chr22,45489765,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-1.93000000,0.00000000,,0.34666667,76.00000000,3.36283186,0.01315789,0.00000000,8.92000000 +11065,chr22,45490010,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,51.00000000,0.00000000,-0.45000000,0.00000000,,0.47222222,73.00000000,3.23008850,0.01369863,0.00000000,4.21000000 +11066,chr22,45490093,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,0.16000000,0.00000000,,0.48214286,59.00000000,2.61061947,0.05084746,0.00000000,3.88000000 +11067,chr22,45490524,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.38181818,56.00000000,2.47787611,0.01785714,0.00000000,7.86000000 +11068,chr22,45491118,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,36.00000000,0.00000000,-1.62000000,0.00000000,,0.46315789,98.00000000,4.33628319,0.03061224,0.00000000,3.62000000 +11069,chr22,45491221,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,31.00000000,0.00000000,-1.76000000,0.00000000,,0.44871795,79.00000000,3.49557522,0.00000000,0.00000000,2.93000000 +11070,chr22,45491255,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,51.00000000,0.00000000,0.05000000,0.00000000,,0.46052632,78.00000000,3.45132743,0.02564103,0.00000000,4.43000000 +11071,chr22,45491276,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,48.00000000,0.00000000,-0.71000000,0.00000000,,0.47058824,74.00000000,3.27433628,0.06756757,0.00000000,4.33000000 +11072,chr22,45491453,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.38000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.00000000,0.00000000,8.52000000 +11073,chr22,45491545,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,88.00000000,0.00000000,-0.29000000,0.00000000,,0.38775510,98.00000000,4.33628319,0.00000000,0.00000000,8.80000000 +11074,chr22,45491675,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,48.00000000,0.00000000,-2.95000000,0.00000000,,0.42222222,91.00000000,4.02654867,0.01098901,0.00000000,3.96000000 +11075,chr22,45492066,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,21.00000000,0.00000000,-1.18000000,0.00000000,,0.44210526,96.00000000,4.24778761,0.01041667,0.00000000,3.16000000 +11076,chr22,45492193,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,0.38000000,0.00000000,,0.41666667,84.00000000,3.71681416,0.00000000,0.00000000,7.96000000 +11077,chr22,45492714,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,54.00000000,0.00000000,-1.28000000,0.00000000,,0.44303797,81.00000000,3.58407080,0.02469136,0.00000000,4.27000000 +11078,chr22,45492752,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.01000000,0.00000000,,0.47474747,100.00000000,4.42477876,0.01000000,0.00000000,8.91000000 +11079,chr22,45493132,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.44578313,85.00000000,3.76106195,0.02352941,0.00000000,8.39000000 +11080,chr22,45493763,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,0.00000000,0.89000000,0.00000000,,0.38666667,78.00000000,3.45132743,0.03846154,0.00000000,6.26000000 +11081,chr22,45493799,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.77000000,0.00000000,,0.36764706,70.00000000,3.09734513,0.02857143,0.00000000,8.07000000 +11082,chr22,45494149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.00000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-1.30000000,0.00000000,,0.47435897,83.00000000,3.67256637,0.04819277,0.00000000,8.29000000 +11083,chr22,45494347,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,0.00000000,2.78000000,0.00000000,,0.30303030,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +11084,chr22,45495653,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.36000000,0.00000000,,0.42465753,76.00000000,3.36283186,0.03947368,0.00000000,7.69000000 +11085,chr22,45496553,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.37500000,81.00000000,3.58407080,0.01234568,0.00000000,8.41000000 +11086,chr22,45497007,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,0.31000000,0.00000000,,0.35714286,84.00000000,3.71681416,0.00000000,0.00000000,8.28000000 +11087,chr22,45497415,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.44000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,8.68000000 +11088,chr22,45497854,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.54000000,0.00000000,,0.43529412,85.00000000,3.76106195,0.00000000,0.00000000,8.41000000 +11089,chr22,45506341,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,85.00000000,0.00000000,-2.55000000,0.00000000,,0.31764706,86.00000000,3.80530973,0.01162791,0.00000000,7.34000000 +11090,chr22,45537574,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-1.24000000,0.00000000,,0.20588235,79.00000000,3.49557522,0.12658228,0.00000000,6.21000000 +11091,chr22,45537831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-2.35000000,0.00000000,,0.18421053,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +11092,chr22,45575411,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,0.21000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.30000000 +11093,chr22,45576000,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +11094,chr22,45576137,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.85000000,0.00000000,,0.20879121,95.00000000,4.20353982,0.02105263,0.00000000,6.16000000 +11095,chr22,45583045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-0.64000000,0.00000000,,0.17391304,75.00000000,3.31858407,0.08000000,0.00000000,5.77000000 +11096,chr22,45594713,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.79000000,0.00000000,,0.22950820,61.00000000,2.69911504,0.00000000,0.00000000,6.63000000 +11097,chr22,45627739,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,-0.57000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,6.78000000 +11098,chr22,45633643,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,56.88000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,93.00000000,0.00000000,1.20000000,0.00000000,,0.32352941,69.00000000,3.05309735,0.01449275,0.00000000,7.33000000 +11099,chr22,45633963,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,-1.93000000,0.00000000,,0.46226415,108.00000000,4.77876106,0.01851852,0.00000000,8.05000000 +11100,chr22,45634314,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.12000000,0.00000000,,0.59036145,83.00000000,3.67256637,0.00000000,0.00000000,8.18000000 +11101,chr22,45635786,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-1.38000000,0.00000000,,0.44285714,70.00000000,3.09734513,0.00000000,0.00000000,9.18000000 +11102,chr22,45636011,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.58000000 +11103,chr22,45638047,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.11000000,0.00000000,,0.33333333,60.00000000,2.65486726,0.00000000,0.00000000,8.88000000 +11104,chr22,45638212,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.28000000,0.00000000,,0.40000000,77.00000000,3.40707965,0.02597403,0.00000000,7.78000000 +11105,chr22,45638215,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,0.24000000,0.00000000,,0.39473684,78.00000000,3.45132743,0.02564103,0.00000000,7.74000000 +11106,chr22,45638922,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,94.00000000,0.00000000,-0.64000000,0.00000000,,0.42028986,71.00000000,3.14159292,0.01408451,0.00000000,8.40000000 +11107,chr22,45639236,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.04000000,0.00000000,,0.35526316,77.00000000,3.40707965,0.01298701,0.00000000,8.83000000 +11108,chr22,45639641,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,41.00000000,0.00000000,-0.91000000,0.00000000,,0.49397590,83.00000000,3.67256637,0.00000000,0.00000000,4.31000000 +11109,chr22,45640199,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.54000000,0.00000000,,0.46052632,80.00000000,3.53982301,0.05000000,0.00000000,7.77000000 +11110,chr22,45640814,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.45000000,0.00000000,,0.36585366,85.00000000,3.76106195,0.03529412,0.00000000,8.32000000 +11111,chr22,45641168,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.66000000,0.00000000,,0.39682540,65.00000000,2.87610619,0.03076923,0.00000000,8.20000000 +11112,chr22,45642912,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,102.00000000,0.00000000,0.40000000,0.00000000,,0.37113402,97.00000000,4.29203540,0.00000000,0.00000000,14.00000000 +11113,chr22,45643028,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.32000000,0.00000000,,0.41860465,92.00000000,4.07079646,0.06521739,0.00000000,8.35000000 +11114,chr22,45644182,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,74.00000000,0.00000000,-1.68000000,0.00000000,,0.34920635,68.00000000,3.00884956,0.07352941,0.00000000,8.53000000 +11115,chr22,45644784,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,2.08000000,0.00000000,,0.34920635,63.00000000,2.78761062,0.00000000,0.00000000,6.90000000 +11116,chr22,45644899,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-1.57000000,0.00000000,,0.43750000,81.00000000,3.58407080,0.01234568,0.00000000,8.37000000 +11117,chr22,45647099,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-2.17000000,0.00000000,,0.46835443,80.00000000,3.53982301,0.01250000,0.00000000,8.73000000 +11118,chr22,45647586,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-1.14000000,0.00000000,,0.50704225,72.00000000,3.18584071,0.01388889,0.00000000,4.40000000 +11119,chr22,45649013,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,18.00000000,0.00000000,-1.25000000,0.00000000,,0.44827586,88.00000000,3.89380531,0.01136364,0.00000000,3.07000000 +11120,chr22,45649260,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,1.93000000,0.00000000,,0.36170213,52.00000000,2.30088496,0.09615385,0.00000000,4.78000000 +11121,chr22,45650147,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,93.00000000,0.00000000,-1.81000000,0.00000000,,0.42268041,101.00000000,4.46902655,0.03960396,0.00000000,8.36000000 +11122,chr22,45650597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,-1.62000000,0.00000000,,0.46846847,112.00000000,4.95575221,0.00892857,0.00000000,8.16000000 +11123,chr22,45650832,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,-1.76000000,0.00000000,,0.47619048,85.00000000,3.76106195,0.01176471,0.00000000,7.67000000 +11124,chr22,45653827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.41772152,79.00000000,3.49557522,0.00000000,0.00000000,8.71000000 +11125,chr22,45661570,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.22000000,0.00000000,,0.46478873,75.00000000,3.31858407,0.04000000,0.00000000,7.56000000 +11126,chr22,45667695,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.23000000,0.00000000,,0.50000000,88.00000000,3.89380531,0.00000000,0.00000000,4.52000000 +11127,chr22,45669583,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,95.00000000,0.00000000,-1.02000000,0.00000000,,0.44444444,76.00000000,3.36283186,0.02631579,0.00000000,8.18000000 +11128,chr22,45674369,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-0.56000000,0.00000000,,0.21333333,79.00000000,3.49557522,0.03797468,0.00000000,5.83000000 +11129,chr22,45675586,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.06000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11130,chr22,45675808,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,1.21000000,0.00000000,,0.41666667,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +11131,chr22,45677724,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-0.99000000,0.00000000,,0.47826087,69.00000000,3.05309735,0.00000000,0.00000000,4.21000000 +11132,chr22,45678378,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.40789474,76.00000000,3.36283186,0.00000000,0.00000000,8.39000000 +11133,chr22,45684972,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-2.71000000,0.00000000,,0.22857143,105.00000000,4.64601770,0.00000000,0.00000000,7.15000000 +11134,chr22,45710437,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-1.38000000,0.00000000,,0.35227273,89.00000000,3.93805310,0.00000000,0.00000000,9.13000000 +11135,chr22,45711628,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,18.00000000,0.00000000,0.48000000,0.00000000,,0.51685393,93.00000000,4.11504425,0.03225806,0.00000000,3.24000000 +11136,chr22,45717831,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,78.00000000,0.00000000,-0.33000000,0.00000000,,0.43010753,95.00000000,4.20353982,0.01052632,0.00000000,8.58000000 +11137,chr22,45736304,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.52631579,96.00000000,4.24778761,0.01041667,0.00000000,8.60000000 +11138,chr22,45759668,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.65000000,0.00000000,,0.40963855,85.00000000,3.76106195,0.01176471,0.00000000,4.30000000 +11139,chr22,45768218,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.29230769,66.00000000,2.92035398,0.00000000,0.00000000,6.37000000 +11140,chr22,45776408,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.14864865,77.00000000,3.40707965,0.01298701,0.00000000,6.16000000 +11141,chr22,45782499,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.99000000,0.00000000,,0.45000000,80.00000000,3.53982301,0.00000000,0.00000000,7.99000000 +11142,chr22,45783657,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.80000000,0.00000000,,0.43589744,81.00000000,3.58407080,0.02469136,0.00000000,8.31000000 +11143,chr22,45784591,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,6.08000000 +11144,chr22,45786876,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,-0.14000000,0.00000000,,0.54320988,84.00000000,3.71681416,0.03571429,0.00000000,7.54000000 +11145,chr22,45802434,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.54054054,75.00000000,3.31858407,0.01333333,0.00000000,8.59000000 +11146,chr22,45804957,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-1.30000000,0.00000000,,0.45312500,66.00000000,2.92035398,0.01515152,0.00000000,8.18000000 +11147,chr22,45818824,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.34000000,0.00000000,,0.45121951,83.00000000,3.67256637,0.01204819,0.00000000,8.63000000 +11148,chr22,45822000,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.11000000,0.00000000,,0.29870130,79.00000000,3.49557522,0.02531646,0.00000000,6.42000000 +11149,chr22,45822561,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,48.00000000,0.00000000,-1.57000000,0.00000000,,0.37142857,56.00000000,2.47787611,0.37500000,0.00000000,4.39000000 +11150,chr22,45822788,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,19.00000000,0.00000000,-1.73000000,0.00000000,,0.48437500,64.00000000,2.83185841,0.00000000,0.00000000,3.41000000 +11151,chr22,45828032,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-1.28000000,0.00000000,,0.39175258,98.00000000,4.33628319,0.00000000,0.00000000,8.53000000 +11152,chr22,45836177,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,85.00000000,0.00000000,-1.02000000,0.00000000,,0.22222222,93.00000000,4.11504425,0.03225806,0.00000000,5.86000000 +11153,chr22,45837484,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.37000000,0.00000000,,0.39080460,88.00000000,3.89380531,0.01136364,0.00000000,8.59000000 +11154,chr22,45839225,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,21.00000000,0.00000000,1.61000000,0.00000000,,0.45045045,111.00000000,4.91150442,0.00000000,0.00000000,3.14000000 +11155,chr22,45839581,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,92.00000000,0.00000000,-0.84000000,0.00000000,,0.49484536,100.00000000,4.42477876,0.03000000,0.00000000,8.03000000 +11156,chr22,45839717,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.10000000,0.00000000,,0.43678161,88.00000000,3.89380531,0.01136364,0.00000000,8.43000000 +11157,chr22,45839797,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,1.16000000,0.00000000,,0.38888889,73.00000000,3.23008850,0.01369863,0.00000000,8.21000000 +11158,chr22,45842243,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.76000000,0.00000000,,0.36507937,65.00000000,2.87610619,0.00000000,0.00000000,8.48000000 +11159,chr22,45850649,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,61.00000000,0.00000000,0.48000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,7.81000000 +11160,chr22,45851798,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,-1.23000000,0.00000000,,0.41791045,68.00000000,3.00884956,0.01470588,0.00000000,7.53000000 +11161,chr22,45852909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,0.56000000,0.00000000,,0.51851852,83.00000000,3.67256637,0.02409639,0.00000000,7.98000000 +11162,chr22,45856216,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.14000000,0.00000000,,0.51898734,80.00000000,3.53982301,0.01250000,0.00000000,7.79000000 +11163,chr22,45861769,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.29000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,4.70000000 +11164,chr22,45872042,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.24137931,58.00000000,2.56637168,0.00000000,0.00000000,7.04000000 +11165,chr22,45877161,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.11000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.00000000,0.00000000,6.39000000 +11166,chr22,45892220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.32000000,0.00000000,,0.22500000,84.00000000,3.71681416,0.04761905,0.00000000,6.68000000 +11167,chr22,45897976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,62.00000000,0.00000000,-0.64000000,0.00000000,,0.11594203,70.00000000,3.09734513,0.01428571,0.00000000,4.84000000 +11168,chr22,45899145,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.20000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +11169,chr22,45899511,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.84000000,0.00000000,,0.23000000,100.00000000,4.42477876,0.00000000,0.00000000,6.93000000 +11170,chr22,45899670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.50000000,0.00000000,,0.15555556,91.00000000,4.02654867,0.01098901,0.00000000,6.23000000 +11171,chr22,45905087,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-0.07000000,0.00000000,,0.24285714,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +11172,chr22,45905834,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,0.52000000,0.00000000,,0.18367347,99.00000000,4.38053097,0.01010101,0.00000000,6.52000000 +11173,chr22,45908657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,5.62000000 +11174,chr22,45910299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.58000000,0.00000000,,0.21126761,71.00000000,3.14159292,0.00000000,0.00000000,6.75000000 +11175,chr22,45910995,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.61000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,6.07000000 +11176,chr22,45911259,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,0.70000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,5.89000000 +11177,chr22,45911628,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,84.00000000,0.00000000,1.03000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,6.37000000 +11178,chr22,45912013,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.19277108,86.00000000,3.80530973,0.03488372,0.00000000,6.20000000 +11179,chr22,45913479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.39000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.25000000 +11180,chr22,45914761,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,41.00000000,1.81415929,0.04878049,0.00000000,62.00000000,0.00000000,-0.07000000,0.00000000,,0.35000000,84.00000000,3.71681416,0.04761905,0.00000000,7.01000000 +11181,chr22,45916231,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,51.84000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,-0.71000000,0.00000000,,0.19230769,55.00000000,2.43362832,0.05454545,0.00000000,3.16000000 +11182,chr22,45916611,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.55000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.25000000 +11183,chr22,45916613,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,77.00000000,0.00000000,-0.63000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.34000000 +11184,chr22,45917093,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,-0.71000000,0.00000000,,0.20253165,81.00000000,3.58407080,0.02469136,0.00000000,6.23000000 +11185,chr22,45917316,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.27397260,73.00000000,3.23008850,0.00000000,0.00000000,6.50000000 +11186,chr22,45917330,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,2.13000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +11187,chr22,45917335,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,2.13000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.35000000 +11188,chr22,45917565,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,0.00000000,-1.36000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,2.99000000 +11189,chr22,45917705,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,0.53000000,0.00000000,,0.20987654,83.00000000,3.67256637,0.02409639,0.00000000,5.97000000 +11190,chr22,45917738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,67.00000000,0.00000000,1.86000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.80000000 +11191,chr22,45917935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.21917808,77.00000000,3.40707965,0.02597403,0.00000000,6.39000000 +11192,chr22,45918016,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.30000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.44000000 +11193,chr22,45919072,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,58.00000000,0.00000000,-1.03000000,0.00000000,,0.27906977,91.00000000,4.02654867,0.03296703,0.00000000,3.96000000 +11194,chr22,45919358,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,86.00000000,0.00000000,-1.11000000,0.00000000,,0.22500000,86.00000000,3.80530973,0.05813953,0.00000000,5.55000000 +11195,chr22,45920270,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,1.70000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.05000000,0.00000000,6.14000000 +11196,chr22,45920983,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.30508475,62.00000000,2.74336283,0.04838710,0.00000000,5.81000000 +11197,chr22,45921379,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.91000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.01123596,0.00000000,6.80000000 +11198,chr22,45921610,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,0.00000000,0.39000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,5.82000000 +11199,chr22,45922040,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,-0.01000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.00000000,0.00000000,6.72000000 +11200,chr22,45922298,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.25000000 +11201,chr22,45922405,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,98.00000000,0.00000000,0.69000000,0.00000000,,0.25263158,95.00000000,4.20353982,0.00000000,0.00000000,5.78000000 +11202,chr22,45924992,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.12195122,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.20689655,67.00000000,2.96460177,0.13432836,0.00000000,5.62000000 +11203,chr22,45925525,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.01000000,0.00000000,,0.25000000,69.00000000,3.05309735,0.01449275,0.00000000,6.33000000 +11204,chr22,45926382,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,74.00000000,0.00000000,0.28000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,5.86000000 +11205,chr22,45926580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.43000000,0.00000000,,0.21649485,99.00000000,4.38053097,0.01010101,0.00000000,6.65000000 +11206,chr22,45926697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,-0.18000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,6.73000000 +11207,chr22,45926961,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,81.00000000,0.00000000,-1.13000000,0.00000000,,0.19801980,103.00000000,4.55752212,0.01941748,0.00000000,6.05000000 +11208,chr22,45927364,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.19000000,0.00000000,,0.23595506,90.00000000,3.98230088,0.01111111,0.00000000,6.23000000 +11209,chr22,45927972,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,83.00000000,0.00000000,0.14000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.00000000,0.00000000,5.81000000 +11210,chr22,45928404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.20000000,0.00000000,,0.23529412,88.00000000,3.89380531,0.02272727,0.00000000,6.50000000 +11211,chr22,45928593,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,56.24000000,13.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.20289855,70.00000000,3.09734513,0.01428571,0.00000000,6.53000000 +11212,chr22,45930191,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,-0.84000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,6.19000000 +11213,chr22,45931660,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,88.00000000,0.00000000,1.49000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,5.83000000 +11214,chr22,45933938,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.00000000,0.00000000,6.51000000 +11215,chr22,45934925,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,91.00000000,0.00000000,0.51000000,0.00000000,,0.30000000,80.00000000,3.53982301,0.00000000,0.00000000,6.24000000 +11216,chr22,45935779,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.23000000,0.00000000,,0.20238095,84.00000000,3.71681416,0.00000000,0.00000000,6.43000000 +11217,chr22,45936933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.02000000,0.00000000,,0.21518987,83.00000000,3.67256637,0.03614458,0.00000000,6.26000000 +11218,chr22,45937034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,70.00000000,3.09734513,0.05714286,0.00000000,5.10000000 +11219,chr22,45938253,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,0.00000000,0.60000000,0.00000000,,0.26315789,79.00000000,3.49557522,0.03797468,0.00000000,2.87000000 +11220,chr22,45938354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,1.06000000,0.00000000,,0.25301205,87.00000000,3.84955752,0.03448276,0.00000000,5.73000000 +11221,chr22,45938587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,86.00000000,0.00000000,-0.10000000,0.00000000,,0.27058824,91.00000000,4.02654867,0.06593407,0.00000000,6.21000000 +11222,chr22,45938603,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.30000000,0.00000000,,0.21686747,89.00000000,3.93805310,0.03370787,0.00000000,6.27000000 +11223,chr22,45938850,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.98000000,0.00000000,,0.11304348,115.00000000,5.08849558,0.00000000,0.00000000,5.14000000 +11224,chr22,45939542,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.79000000,1.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,103.00000000,0.00000000,-1.78000000,0.00000000,,0.26436782,89.00000000,3.93805310,0.02247191,0.00000000,8.39000000 +11225,chr22,45940422,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,0.00000000,0.05000000,0.00000000,,0.26373626,93.00000000,4.11504425,0.02150538,0.00000000,5.75000000 +11226,chr22,45940463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-1.36000000,0.00000000,,0.29670330,92.00000000,4.07079646,0.01086957,0.00000000,6.57000000 +11227,chr22,45942676,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,72.00000000,0.00000000,-0.95000000,0.00000000,,0.22352941,89.00000000,3.93805310,0.04494382,0.00000000,6.25000000 +11228,chr22,45943034,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.03488372,0.00000000,5.99000000 +11229,chr22,45943167,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,0.02000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.65000000 +11230,chr22,45943238,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.05555556,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,1.40000000,0.00000000,,0.27586207,89.00000000,3.93805310,0.02247191,0.00000000,5.76000000 +11231,chr22,45943405,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-2.30000000,0.00000000,,0.20000000,105.00000000,4.64601770,0.00000000,0.00000000,7.13000000 +11232,chr22,45944108,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,1.82000000,0.00000000,,0.27586207,88.00000000,3.89380531,0.01136364,0.00000000,6.03000000 +11233,chr22,45944885,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.27000000,0.00000000,,0.29411765,73.00000000,3.23008850,0.05479452,0.00000000,6.22000000 +11234,chr22,45946007,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.95000000,0.00000000,,0.26732673,105.00000000,4.64601770,0.03809524,0.00000000,6.22000000 +11235,chr22,45946406,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.50000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,5.95000000 +11236,chr22,45950904,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +11237,chr22,45950930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.28571429,84.00000000,3.71681416,0.00000000,0.00000000,5.89000000 +11238,chr22,45951119,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.34000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.68000000 +11239,chr22,45951578,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,5.99000000 +11240,chr22,45951639,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,69.00000000,0.00000000,1.06000000,0.00000000,,0.17500000,83.00000000,3.67256637,0.03614458,0.00000000,5.55000000 +11241,chr22,45951640,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.87000000 +11242,chr22,45951641,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.91000000 +11243,chr22,45951664,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.52000000 +11244,chr22,45951724,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.22388060,70.00000000,3.09734513,0.04285714,0.00000000,6.19000000 +11245,chr22,45951771,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.31000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +11246,chr22,45951803,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.26000000,0.00000000,,0.24358974,79.00000000,3.49557522,0.00000000,0.00000000,6.32000000 +11247,chr22,45952042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.72000000,0.00000000,,0.25641026,81.00000000,3.58407080,0.03703704,0.00000000,6.52000000 +11248,chr22,45952762,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.37000000,0.00000000,,0.17721519,83.00000000,3.67256637,0.03614458,0.00000000,6.17000000 +11249,chr22,45954396,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,82.00000000,0.00000000,0.59000000,0.00000000,,0.19148936,95.00000000,4.20353982,0.01052632,0.00000000,6.60000000 +11250,chr22,45955601,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.14000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.54000000 +11251,chr22,45955944,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,80.00000000,0.00000000,-0.77000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.61000000 +11252,chr22,45955976,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,76.00000000,0.00000000,-0.58000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.72000000 +11253,chr22,45956836,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,2.64000000,0.00000000,,0.22093023,89.00000000,3.93805310,0.03370787,0.00000000,6.27000000 +11254,chr22,45956911,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.48000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.02469136,0.00000000,6.29000000 +11255,chr22,45959018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,-1.52000000,0.00000000,,0.25882353,87.00000000,3.84955752,0.01149425,0.00000000,6.29000000 +11256,chr22,45964203,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.52000000,0.00000000,,0.33783784,76.00000000,3.36283186,0.02631579,0.00000000,8.55000000 +11257,chr22,45967859,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.27272727,79.00000000,3.49557522,0.01265823,0.00000000,5.99000000 +11258,chr22,45968281,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.55000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.00000000,0.00000000,6.20000000 +11259,chr22,45968311,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.01562500,0.00000000,6.61000000 +11260,chr22,45969677,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.03000000 +11261,chr22,45972355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.16326531,100.00000000,4.42477876,0.02000000,0.00000000,4.64000000 +11262,chr22,45975199,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,85.00000000,0.00000000,0.32000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.00000000,0.00000000,6.52000000 +11263,chr22,45977088,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.63000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.69000000 +11264,chr22,45987732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,68.00000000,0.00000000,-0.20000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.77000000 +11265,chr22,46002646,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.20588235,0.00000000,75.00000000,0.00000000,1.06000000,0.00000000,,0.24590164,74.00000000,3.27433628,0.16216216,0.00000000,5.72000000 +11266,chr22,46007440,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-1.87000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.56000000 +11267,chr22,46007835,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,0.38000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.01250000,0.00000000,6.50000000 +11268,chr22,46011343,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,0.50000000,0.00000000,,0.24742268,98.00000000,4.33628319,0.00000000,0.00000000,6.37000000 +11269,chr22,46011835,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.22784810,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11270,chr22,46013032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,92.00000000,0.00000000,-0.29000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.54000000 +11271,chr22,46016933,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,-0.27000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.01234568,0.00000000,6.86000000 +11272,chr22,46026335,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.27000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.03703704,0.00000000,6.17000000 +11273,chr22,46029488,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,1.04000000,0.00000000,,0.26315789,61.00000000,2.69911504,0.03278689,0.00000000,4.91000000 +11274,chr22,46051834,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.80000000,0.00000000,,0.25333333,79.00000000,3.49557522,0.05063291,0.00000000,6.06000000 +11275,chr22,46055408,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.54000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.60000000 +11276,chr22,46055657,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.21000000,0.00000000,,0.25641026,79.00000000,3.49557522,0.01265823,0.00000000,7.01000000 +11277,chr22,46055932,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,2.06000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.26000000 +11278,chr22,46055933,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,2.20000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.00000000,6.26000000 +11279,chr22,46058832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,0.68000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.16000000 +11280,chr22,46061083,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,2.51000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,5.80000000 +11281,chr22,46063666,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,71.00000000,0.00000000,-2.21000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.34000000 +11282,chr22,46066637,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,69.00000000,0.00000000,-0.38000000,0.00000000,,0.15217391,92.00000000,4.07079646,0.00000000,0.00000000,5.89000000 +11283,chr22,46080313,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,72.00000000,0.00000000,1.32000000,0.00000000,,0.16901408,72.00000000,3.18584071,0.01388889,0.00000000,5.65000000 +11284,chr22,46087704,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.19718310,73.00000000,3.23008850,0.01369863,0.00000000,6.51000000 +11285,chr22,46092965,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,0.47000000,0.00000000,,0.16049383,82.00000000,3.62831858,0.01219512,0.00000000,2.84000000 +11286,chr22,46102988,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.18000000 +11287,chr22,46109293,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,6.61000000 +11288,chr22,46122309,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.04000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.01136364,0.00000000,6.63000000 +11289,chr22,46123886,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.50000000,0.00000000,,0.19736842,80.00000000,3.53982301,0.02500000,0.00000000,5.81000000 +11290,chr22,46125069,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,1.82000000,0.00000000,,0.13750000,83.00000000,3.67256637,0.03614458,0.00000000,4.84000000 +11291,chr22,46125345,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.36000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +11292,chr22,46126119,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.26000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,6.22000000 +11293,chr22,46127830,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,-0.32000000,0.00000000,,0.29870130,81.00000000,3.58407080,0.03703704,0.00000000,6.30000000 +11294,chr22,46130020,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.52000000,0.00000000,,0.27058824,90.00000000,3.98230088,0.05555556,0.00000000,5.81000000 +11295,chr22,46130584,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,-1.00000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.38000000 +11296,chr22,46130737,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.18000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +11297,chr22,46130759,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.02000000 +11298,chr22,46131359,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.41000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.62000000 +11299,chr22,46131362,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,-0.61000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.12000000 +11300,chr22,46146495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.95000000,11.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,1.45000000,0.00000000,,0.13114754,64.00000000,2.83185841,0.04687500,0.16883117,4.71000000 +11301,chr22,46146500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.06000000,11.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,0.00000000,1.93000000,0.00000000,,0.13636364,69.00000000,3.05309735,0.04347826,0.15853659,4.67000000 +11302,chr22,46147582,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.14000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.02666667,0.00000000,5.89000000 +11303,chr22,46159614,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.69000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.70000000 +11304,chr22,46178533,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.95000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +11305,chr22,46226703,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.78000000,0.00000000,,0.32467532,77.00000000,3.40707965,0.00000000,0.00000000,8.14000000 +11306,chr22,46230535,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.05000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +11307,chr22,46230609,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,-1.08000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,7.06000000 +11308,chr22,46241930,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,63.00000000,0.00000000,-0.77000000,0.00000000,,0.12195122,91.00000000,4.02654867,0.09890110,0.00000000,4.73000000 +11309,chr22,46245622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,79.00000000,0.00000000,0.73000000,0.00000000,,0.17821782,101.00000000,4.46902655,0.00000000,0.00000000,5.88000000 +11310,chr22,46246007,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,0.26000000,0.00000000,,0.23333333,91.00000000,4.02654867,0.01098901,0.00000000,5.90000000 +11311,chr22,46246828,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,92.00000000,0.00000000,0.23000000,0.00000000,,0.28735632,89.00000000,3.93805310,0.02247191,0.00000000,5.72000000 +11312,chr22,46246931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,6.18000000 +11313,chr22,46247126,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,1.23000000,0.00000000,,0.30379747,80.00000000,3.53982301,0.01250000,0.00000000,5.63000000 +11314,chr22,46247632,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,-0.84000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.00000000,0.00000000,6.14000000 +11315,chr22,46247844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.18823529,88.00000000,3.89380531,0.03409091,0.00000000,5.86000000 +11316,chr22,46247877,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.18421053,79.00000000,3.49557522,0.03797468,0.00000000,6.50000000 +11317,chr22,46248087,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,0.28000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,5.93000000 +11318,chr22,46248280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,1.27000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.39000000 +11319,chr22,46248539,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,-0.47000000,0.00000000,,0.27500000,80.00000000,3.53982301,0.00000000,0.00000000,6.93000000 +11320,chr22,46250265,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,0.00000000,-0.21000000,0.00000000,,0.24705882,86.00000000,3.80530973,0.01162791,0.00000000,6.53000000 +11321,chr22,46251091,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,0.39000000,0.00000000,,0.21176471,89.00000000,3.93805310,0.03370787,0.00000000,5.87000000 +11322,chr22,46251491,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.18987342,81.00000000,3.58407080,0.01234568,0.00000000,6.52000000 +11323,chr22,46252012,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,0.00000000,-0.40000000,0.00000000,,0.21686747,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +11324,chr22,46254203,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,1.92000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.73000000 +11325,chr22,46254949,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.10294118,72.00000000,3.18584071,0.05555556,0.00000000,5.16000000 +11326,chr22,46254954,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.03000000,0.00000000,,0.10000000,73.00000000,3.23008850,0.04109589,0.00000000,5.06000000 +11327,chr22,46254961,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,-0.74000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.01388889,0.00000000,5.64000000 +11328,chr22,46255062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.54000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,6.21000000 +11329,chr22,46255469,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.51000000,0.00000000,,0.16666667,97.00000000,4.29203540,0.01030928,0.00000000,5.63000000 +11330,chr22,46255470,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,66.00000000,0.00000000,-0.35000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.01030928,0.00000000,6.12000000 +11331,chr22,46255816,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.18000000,0.00000000,,0.19780220,91.00000000,4.02654867,0.00000000,0.00000000,6.43000000 +11332,chr22,46256166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.92000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.97000000 +11333,chr22,46256207,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.19000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,5.92000000 +11334,chr22,46256220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,5.92000000 +11335,chr22,46256256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.81000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.78000000 +11336,chr22,46256406,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.28000000,0.00000000,,0.13846154,67.00000000,2.96460177,0.02985075,0.00000000,5.11000000 +11337,chr22,46256475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.01000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,5.87000000 +11338,chr22,46256840,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.11000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.01369863,0.00000000,6.39000000 +11339,chr22,46257032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.63000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.01162791,0.00000000,5.90000000 +11340,chr22,46258426,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,83.00000000,0.00000000,-1.19000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,6.33000000 +11341,chr22,46260028,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,0.00000000,-0.71000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.01176471,0.00000000,6.23000000 +11342,chr22,46260051,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.73000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.41000000 +11343,chr22,46260349,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,0.00000000,-0.14000000,0.00000000,,0.33000000,100.00000000,4.42477876,0.00000000,0.00000000,8.72000000 +11344,chr22,46260582,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.28301887,107.00000000,4.73451327,0.00934579,0.00000000,6.65000000 +11345,chr22,46260614,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,0.75000000,0.00000000,,0.26923077,105.00000000,4.64601770,0.00952381,0.00000000,6.61000000 +11346,chr22,46260710,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,81.00000000,0.00000000,-0.18000000,0.00000000,,0.19387755,99.00000000,4.38053097,0.01010101,0.00000000,6.05000000 +11347,chr22,46260908,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.01149425,0.00000000,5.57000000 +11348,chr22,46261364,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,1.06000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,5.95000000 +11349,chr22,46261901,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.17000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.43000000 +11350,chr22,46262822,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.08000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.02439024,0.00000000,5.51000000 +11351,chr22,46262828,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.71000000,0.00000000,,0.18518519,83.00000000,3.67256637,0.02409639,0.00000000,5.49000000 +11352,chr22,46263081,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,41.00000000,1.81415929,0.00000000,0.00000000,74.00000000,0.00000000,-0.22000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +11353,chr22,46263246,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.01000000,0.00000000,,0.20454545,91.00000000,4.02654867,0.02197802,0.00000000,6.32000000 +11354,chr22,46263423,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.30000000,0.00000000,,0.22772277,102.00000000,4.51327434,0.00980392,0.00000000,5.95000000 +11355,chr22,46263683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.96000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,5.87000000 +11356,chr22,46264028,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.17808219,74.00000000,3.27433628,0.01351351,0.00000000,7.08000000 +11357,chr22,46264045,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.69000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.44000000 +11358,chr22,46264414,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,1.79000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.69000000 +11359,chr22,46264424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.99000000,0.00000000,,0.28260870,96.00000000,4.24778761,0.03125000,0.00000000,5.82000000 +11360,chr22,46264519,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.41000000 +11361,chr22,46264771,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-1.00000000,0.00000000,,0.21111111,92.00000000,4.07079646,0.02173913,0.00000000,6.29000000 +11362,chr22,46265656,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,87.00000000,0.00000000,0.12000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.00000000,0.00000000,5.84000000 +11363,chr22,46265962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,85.00000000,0.00000000,0.44000000,0.00000000,,0.19819820,111.00000000,4.91150442,0.00000000,0.00000000,5.86000000 +11364,chr22,46266195,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,0.22000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +11365,chr22,46266254,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,-1.22000000,0.00000000,,0.21649485,98.00000000,4.33628319,0.01020408,0.00000000,6.33000000 +11366,chr22,46266342,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-1.03000000,0.00000000,,0.26415094,106.00000000,4.69026549,0.00000000,0.00000000,6.78000000 +11367,chr22,46266630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,79.00000000,0.00000000,0.87000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.30000000 +11368,chr22,46267120,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.92000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,6.28000000 +11369,chr22,46267197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,0.12000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +11370,chr22,46267390,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.19000000,0.00000000,,0.20792079,101.00000000,4.46902655,0.00000000,0.00000000,6.39000000 +11371,chr22,46267425,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.20560748,109.00000000,4.82300885,0.01834862,0.00000000,5.49000000 +11372,chr22,46268534,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,88.00000000,0.00000000,-0.74000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.37000000 +11373,chr22,46268741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-0.04000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,5.81000000 +11374,chr22,46268958,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18181818,79.00000000,3.49557522,0.01265823,0.00000000,6.55000000 +11375,chr22,46269109,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,67.00000000,0.00000000,-0.11000000,0.00000000,,0.28048780,86.00000000,3.80530973,0.04651163,0.00000000,6.16000000 +11376,chr22,46269773,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.28000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +11377,chr22,46270264,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.67000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.39000000 +11378,chr22,46270678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,75.00000000,0.00000000,0.86000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,5.93000000 +11379,chr22,46271140,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.23655914,96.00000000,4.24778761,0.03125000,0.00000000,5.81000000 +11380,chr22,46271756,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.17333333,78.00000000,3.45132743,0.03846154,0.00000000,5.39000000 +11381,chr22,46272182,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.76000000,0.00000000,,0.14473684,79.00000000,3.49557522,0.03797468,0.00000000,5.42000000 +11382,chr22,46272455,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.43000000,0.00000000,,0.22058824,69.00000000,3.05309735,0.01449275,0.00000000,6.72000000 +11383,chr22,46272618,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.07142857,0.00000000,84.00000000,0.00000000,-0.37000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.01052632,0.00000000,5.81000000 +11384,chr22,46272795,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-1.45000000,0.00000000,,0.22413793,58.00000000,2.56637168,0.00000000,0.00000000,6.46000000 +11385,chr22,46272829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.88000000,0.00000000,,0.24193548,64.00000000,2.83185841,0.03125000,0.00000000,5.98000000 +11386,chr22,46277659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.83000000,0.00000000,,0.21794872,85.00000000,3.76106195,0.08235294,0.00000000,6.50000000 +11387,chr22,46277874,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-2.73000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,6.42000000 +11388,chr22,46278315,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,94.00000000,0.00000000,-0.67000000,0.00000000,,0.30487805,87.00000000,3.84955752,0.05747126,0.00000000,6.31000000 +11389,chr22,46278742,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-0.44000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.73000000 +11390,chr22,46299792,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.27000000 +11391,chr22,46303456,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.72000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,6.09000000 +11392,chr22,46306657,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,-1.84000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.06000000 +11393,chr22,46309510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.00000000,6.51000000 +11394,chr22,46323157,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,97.00000000,0.00000000,-0.61000000,0.00000000,,0.31818182,90.00000000,3.98230088,0.02222222,0.00000000,7.12000000 +11395,chr22,46324381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.01000000,0.00000000,,0.22368421,80.00000000,3.53982301,0.05000000,0.00000000,6.62000000 +11396,chr22,46331715,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,0.00000000,-0.36000000,0.00000000,,0.29333333,76.00000000,3.36283186,0.01315789,0.00000000,6.63000000 +11397,chr22,46349443,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,0.71000000,0.00000000,,0.20481928,87.00000000,3.84955752,0.04597701,0.00000000,6.31000000 +11398,chr22,46366463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,34.00000000,0.00000000,-0.49000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.03030303,0.00000000,2.78000000 +11399,chr22,46377227,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,80.00000000,0.00000000,-1.94000000,0.00000000,,0.22680412,101.00000000,4.46902655,0.02970297,0.00000000,6.09000000 +11400,chr22,46395229,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,49.00000000,0.00000000,-0.89000000,0.00000000,,0.32894737,79.00000000,3.49557522,0.03797468,0.00000000,4.23000000 +11401,chr22,46438690,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.23000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,5.44000000 +11402,chr22,46438828,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-0.69000000,0.00000000,,0.42105263,77.00000000,3.40707965,0.01298701,0.00000000,8.84000000 +11403,chr22,46442044,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.63000000,0.00000000,,0.33333333,60.00000000,2.65486726,0.03333333,0.00000000,8.06000000 +11404,chr22,46443437,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,0.00000000,1.06000000,0.00000000,,0.25555556,90.00000000,3.98230088,0.00000000,0.00000000,6.29000000 +11405,chr22,46443484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.60000000,0.00000000,,0.23333333,92.00000000,4.07079646,0.02173913,0.00000000,6.33000000 +11406,chr22,46443686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.82000000,0.00000000,,0.19801980,105.00000000,4.64601770,0.03809524,0.00000000,6.15000000 +11407,chr22,46443730,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.20000000,0.00000000,,0.17475728,105.00000000,4.64601770,0.01904762,0.00000000,6.05000000 +11408,chr22,46443997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-1.44000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.36000000 +11409,chr22,46444393,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.20779221,80.00000000,3.53982301,0.02500000,0.00000000,6.03000000 +11410,chr22,46445004,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.85000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.46000000 +11411,chr22,46445166,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,89.00000000,0.00000000,0.86000000,0.00000000,,0.28395062,85.00000000,3.76106195,0.04705882,0.00000000,5.62000000 +11412,chr22,46446125,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,-0.18000000,0.00000000,,0.26865672,70.00000000,3.09734513,0.02857143,0.00000000,6.30000000 +11413,chr22,46447887,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.94000000,0.00000000,,0.19178082,75.00000000,3.31858407,0.01333333,0.00000000,6.86000000 +11414,chr22,46448021,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,75.00000000,0.00000000,2.72000000,0.00000000,,0.17021277,97.00000000,4.29203540,0.03092784,0.00000000,5.58000000 +11415,chr22,46449579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,-0.63000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.01219512,0.00000000,6.16000000 +11416,chr22,46450984,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.21000000,0.00000000,,0.26086957,94.00000000,4.15929204,0.01063830,0.00000000,6.65000000 +11417,chr22,46451014,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.22826087,94.00000000,4.15929204,0.02127660,0.00000000,5.99000000 +11418,chr22,46451366,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.03947368,0.00000000,4.17000000 +11419,chr22,46451570,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.20000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.80000000 +11420,chr22,46451682,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,75.00000000,0.00000000,1.03000000,0.00000000,,0.19696970,70.00000000,3.09734513,0.04285714,0.00000000,5.75000000 +11421,chr22,46451876,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,68.00000000,0.00000000,-0.47000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,5.91000000 +11422,chr22,46452754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +11423,chr22,46452922,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.07142857,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.90000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.01176471,0.00000000,5.60000000 +11424,chr22,46453272,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.00000000,0.00000000,6.39000000 +11425,chr22,46454633,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,1.00000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,5.56000000 +11426,chr22,46455349,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,0.95000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.01282051,0.00000000,5.87000000 +11427,chr22,46455422,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,-2.02000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +11428,chr22,46455956,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,84.00000000,0.00000000,2.68000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,5.76000000 +11429,chr22,46460447,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-0.59000000,0.00000000,,0.25925926,84.00000000,3.71681416,0.02380952,0.00000000,6.06000000 +11430,chr22,46460745,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,-0.20000000,0.00000000,,0.29487179,81.00000000,3.58407080,0.03703704,0.00000000,5.95000000 +11431,chr22,46461030,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.37000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.03000000 +11432,chr22,46461956,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.19000000,0.00000000,,0.30693069,102.00000000,4.51327434,0.00980392,0.00000000,5.98000000 +11433,chr22,46462445,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,3.37000000,0.00000000,,0.18604651,87.00000000,3.84955752,0.01149425,0.00000000,6.41000000 +11434,chr22,46462569,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-0.70000000,0.00000000,,0.22222222,78.00000000,3.45132743,0.06410256,0.00000000,5.99000000 +11435,chr22,46474128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,70.00000000,0.00000000,-1.70000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.03000000 +11436,chr22,46484186,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.01408451,0.00000000,6.45000000 +11437,chr22,46492685,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-0.43000000,0.00000000,,0.11842105,76.00000000,3.36283186,0.00000000,0.00000000,5.85000000 +11438,chr22,46493266,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,79.00000000,0.00000000,-0.21000000,0.00000000,,0.27848101,80.00000000,3.53982301,0.01250000,0.00000000,7.09000000 +11439,chr22,46493826,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.05000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,6.07000000 +11440,chr22,46496102,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-1.54000000,0.00000000,,0.13114754,63.00000000,2.78761062,0.03174603,0.00000000,5.31000000 +11441,chr22,46499108,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.16129032,69.00000000,3.05309735,0.08695652,0.00000000,5.57000000 +11442,chr22,46499680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.39000000,0.00000000,,0.26865672,69.00000000,3.05309735,0.02898551,0.00000000,6.38000000 +11443,chr22,46500937,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-0.85000000,0.00000000,,0.26213592,104.00000000,4.60176991,0.00961538,0.00000000,6.64000000 +11444,chr22,46501527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,0.33000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.43000000 +11445,chr22,46505178,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,56.00000000,0.00000000,-0.33000000,0.00000000,,0.21311475,68.00000000,3.00884956,0.08823529,0.00000000,2.97000000 +11446,chr22,46506403,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,0.00000000,1.67000000,0.00000000,,0.10256410,81.00000000,3.58407080,0.02469136,0.00000000,4.63000000 +11447,chr22,46507079,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,0.00000000,0.87000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.37000000 +11448,chr22,46507730,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,-1.90000000,0.00000000,,0.25882353,88.00000000,3.89380531,0.03409091,0.00000000,6.03000000 +11449,chr22,46508254,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.29000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,5.86000000 +11450,chr22,46508673,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,0.00000000,-1.15000000,0.00000000,,0.16250000,82.00000000,3.62831858,0.02439024,0.00000000,5.38000000 +11451,chr22,46518647,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.11000000,0.00000000,,0.48421053,95.00000000,4.20353982,0.00000000,0.00000000,9.29000000 +11452,chr22,46519715,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.34000000,0.00000000,,0.14457831,86.00000000,3.80530973,0.02325581,0.00000000,5.60000000 +11453,chr22,46519724,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,-1.55000000,0.00000000,,0.14117647,87.00000000,3.84955752,0.02298851,0.00000000,5.52000000 +11454,chr22,46520383,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.09000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,6.95000000 +11455,chr22,46521063,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,71.00000000,0.00000000,-0.53000000,0.00000000,,0.14285714,91.00000000,4.02654867,0.00000000,0.00000000,5.86000000 +11456,chr22,46522220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-1.15000000,0.00000000,,0.21917808,73.00000000,3.23008850,0.00000000,0.00000000,6.75000000 +11457,chr22,46522804,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.20895522,69.00000000,3.05309735,0.02898551,0.00000000,5.79000000 +11458,chr22,46523435,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,0.74000000,0.00000000,,0.27027027,75.00000000,3.31858407,0.01333333,0.00000000,6.32000000 +11459,chr22,46523644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,0.77000000,0.00000000,,0.19117647,73.00000000,3.23008850,0.06849315,0.00000000,6.28000000 +11460,chr22,46523864,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,1.29000000,0.00000000,,0.21518987,79.00000000,3.49557522,0.00000000,0.00000000,5.71000000 +11461,chr22,46524208,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,88.00000000,0.00000000,0.07000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,6.39000000 +11462,chr22,46524290,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-0.08000000,0.00000000,,0.27272727,72.00000000,3.18584071,0.06944444,0.00000000,5.92000000 +11463,chr22,46524379,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.02000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.05263158,0.00000000,6.27000000 +11464,chr22,46524869,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,2.79000000 +11465,chr22,46525143,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,0.67000000,0.00000000,,0.34246575,74.00000000,3.27433628,0.01351351,0.00000000,8.25000000 +11466,chr22,46525163,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,91.00000000,0.00000000,0.25000000,0.00000000,,0.27500000,81.00000000,3.58407080,0.00000000,0.00000000,6.21000000 +11467,chr22,46525224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-0.94000000,0.00000000,,0.30107527,96.00000000,4.24778761,0.03125000,0.00000000,6.33000000 +11468,chr22,46525238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,87.00000000,0.00000000,-0.59000000,0.00000000,,0.32967033,94.00000000,4.15929204,0.02127660,0.00000000,8.19000000 +11469,chr22,46525287,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.42000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +11470,chr22,46525961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,77.00000000,0.00000000,0.41000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,5.94000000 +11471,chr22,46526320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.44000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.59000000 +11472,chr22,46526333,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,-0.30000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.01315789,0.00000000,6.61000000 +11473,chr22,46526714,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,-0.15000000,0.00000000,,0.21649485,97.00000000,4.29203540,0.00000000,0.00000000,6.72000000 +11474,chr22,46527141,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,-0.13000000,0.00000000,,0.25000000,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +11475,chr22,46528842,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.38000000,2.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.83000000,0.00000000,,0.22222222,65.00000000,2.87610619,0.03076923,0.00000000,5.67000000 +11476,chr22,46529728,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,0.00000000,0.02000000,0.00000000,,0.13698630,78.00000000,3.45132743,0.05128205,0.00000000,4.93000000 +11477,chr22,46530437,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,2.33000000,0.00000000,,0.18269231,104.00000000,4.60176991,0.00000000,0.00000000,6.19000000 +11478,chr22,46530667,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.79000000,0.00000000,,0.24468085,96.00000000,4.24778761,0.02083333,0.00000000,5.60000000 +11479,chr22,46531060,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,-0.50000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +11480,chr22,46549045,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.87000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.85000000 +11481,chr22,46549639,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,71.00000000,0.00000000,-0.32000000,0.00000000,,0.17500000,84.00000000,3.71681416,0.04761905,0.00000000,5.63000000 +11482,chr22,46551121,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,0.18000000,0.00000000,,0.21978022,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +11483,chr22,46551129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.29000000,0.00000000,,0.20430108,94.00000000,4.15929204,0.01063830,0.00000000,5.94000000 +11484,chr22,46552017,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.48000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-0.17000000,0.00000000,,0.20512821,78.00000000,3.45132743,0.00000000,0.00000000,6.54000000 +11485,chr22,46552036,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,58.95000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,0.25000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +11486,chr22,46552220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-1.40000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.68000000 +11487,chr22,46552345,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.64000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +11488,chr22,46553125,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.06000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,7.04000000 +11489,chr22,46553641,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,1.07000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +11490,chr22,46554766,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.63000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.70000000 +11491,chr22,46555542,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.98000000,0.00000000,,0.49411765,85.00000000,3.76106195,0.00000000,0.00000000,8.85000000 +11492,chr22,46555892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.11000000,0.00000000,,0.29230769,65.00000000,2.87610619,0.00000000,0.00000000,6.26000000 +11493,chr22,46556531,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,0.11000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.72000000 +11494,chr22,46556951,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,88.00000000,0.00000000,0.39000000,0.00000000,,0.21782178,105.00000000,4.64601770,0.03809524,0.00000000,5.63000000 +11495,chr22,46557815,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.70000000,0.00000000,,0.21052632,98.00000000,4.33628319,0.02040816,0.00000000,6.24000000 +11496,chr22,46559201,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,5.86000000 +11497,chr22,46562668,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.40000000,0.00000000,,0.15517241,60.00000000,2.65486726,0.01666667,0.00000000,6.17000000 +11498,chr22,46570745,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,0.16000000,0.00000000,,0.27083333,96.00000000,4.24778761,0.00000000,0.00000000,6.30000000 +11499,chr22,46579747,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,71.00000000,0.00000000,-0.02000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,5.72000000 +11500,chr22,46579844,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,0.47000000,0.00000000,,0.13513514,76.00000000,3.36283186,0.02631579,0.00000000,4.82000000 +11501,chr22,46579979,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.07000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.83000000 +11502,chr22,46580660,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.61000000 +11503,chr22,46580963,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,33.00000000,1.46017699,0.21212121,0.00000000,58.00000000,0.00000000,0.35000000,0.00000000,,0.12500000,94.00000000,4.15929204,0.31914894,0.00000000,3.62000000 +11504,chr22,46581053,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,90.00000000,0.00000000,-0.64000000,0.00000000,,0.24731183,95.00000000,4.20353982,0.02105263,0.00000000,6.15000000 +11505,chr22,46581342,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,-0.21000000,0.00000000,,0.17346939,99.00000000,4.38053097,0.01010101,0.00000000,6.63000000 +11506,chr22,46584202,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.40000000,0.00000000,,0.16949153,59.00000000,2.61061947,0.00000000,0.00000000,6.49000000 +11507,chr22,46584877,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,0.72000000,0.00000000,,0.21505376,95.00000000,4.20353982,0.02105263,0.00000000,5.75000000 +11508,chr22,46585432,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-0.21000000,0.00000000,,0.18571429,75.00000000,3.31858407,0.06666667,0.00000000,6.21000000 +11509,chr22,46586417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,62.00000000,0.00000000,0.25000000,0.00000000,,0.13432836,69.00000000,3.05309735,0.01449275,0.00000000,5.07000000 +11510,chr22,46586426,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,64.00000000,0.00000000,-0.23000000,0.00000000,,0.10606061,68.00000000,3.00884956,0.02941176,0.00000000,4.98000000 +11511,chr22,46586825,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,69.00000000,0.00000000,-1.73000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.85000000 +11512,chr22,46587848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +11513,chr22,46588371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,0.19000000,0.00000000,,0.28205128,78.00000000,3.45132743,0.00000000,0.00000000,6.34000000 +11514,chr22,46588561,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.83000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.01162791,0.00000000,6.64000000 +11515,chr22,46588912,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.59000000,0.00000000,,0.23437500,66.00000000,2.92035398,0.01515152,0.00000000,6.22000000 +11516,chr22,46588956,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,5.41000000 +11517,chr22,46589140,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,1.16000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.39000000 +11518,chr22,46590020,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,2.23000000,0.00000000,,0.14285714,64.00000000,2.83185841,0.00000000,0.00000000,5.04000000 +11519,chr22,46590080,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,66.00000000,0.00000000,-0.11000000,0.00000000,,0.13235294,72.00000000,3.18584071,0.04166667,0.00000000,5.21000000 +11520,chr22,46590222,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,82.00000000,0.00000000,2.04000000,0.00000000,,0.22727273,89.00000000,3.93805310,0.00000000,0.00000000,5.87000000 +11521,chr22,46590320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.03000000,0.00000000,,0.23333333,95.00000000,4.20353982,0.05263158,0.00000000,6.42000000 +11522,chr22,46590326,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.21348315,94.00000000,4.15929204,0.05319149,0.00000000,6.00000000 +11523,chr22,46590366,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.83000000,0.00000000,,0.23255814,90.00000000,3.98230088,0.04444444,0.00000000,6.42000000 +11524,chr22,46590403,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.75000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.34000000 +11525,chr22,46590436,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-1.27000000,0.00000000,,0.20987654,84.00000000,3.71681416,0.02380952,0.00000000,6.79000000 +11526,chr22,46590460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-1.36000000,0.00000000,,0.25000000,90.00000000,3.98230088,0.02222222,0.00000000,6.38000000 +11527,chr22,46590548,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.45000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.61000000 +11528,chr22,46590687,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-1.51000000,0.00000000,,0.15277778,74.00000000,3.27433628,0.02702703,0.00000000,5.85000000 +11529,chr22,46590851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.32000000,0.00000000,,0.20879121,96.00000000,4.24778761,0.05208333,0.00000000,6.68000000 +11530,chr22,46591150,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,2.39000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,6.24000000 +11531,chr22,46591190,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.33000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.57000000 +11532,chr22,46592092,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.67000000,0.00000000,,0.15873016,65.00000000,2.87610619,0.03076923,0.00000000,5.11000000 +11533,chr22,46592098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,-1.63000000,0.00000000,,0.13114754,63.00000000,2.78761062,0.03174603,0.00000000,4.96000000 +11534,chr22,46595100,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,77.00000000,0.00000000,1.37000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.39000000 +11535,chr22,46595573,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,97.00000000,0.00000000,1.03000000,0.00000000,,0.25263158,99.00000000,4.38053097,0.02020202,0.00000000,5.99000000 +11536,chr22,46599163,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,65.00000000,0.00000000,0.05000000,0.00000000,,0.50617284,84.00000000,3.71681416,0.03571429,0.00000000,7.94000000 +11537,chr22,46600051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-1.03000000,0.00000000,,0.22222222,101.00000000,4.46902655,0.01980198,0.00000000,6.64000000 +11538,chr22,46601513,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-1.74000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,6.40000000 +11539,chr22,46603932,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.65000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.43000000 +11540,chr22,46604085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.35000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,5.82000000 +11541,chr22,46604864,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,41.83000000,1.00000000,ref,1.00000000,0.04166667,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.41000000,0.00000000,,0.18604651,47.00000000,2.07964602,0.08510638,0.00000000,4.70000000 +11542,chr22,46605004,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,42.65000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.09000000,0.00000000,,0.17391304,47.00000000,2.07964602,0.00000000,0.00000000,5.05000000 +11543,chr22,46606783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-1.10000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,7.04000000 +11544,chr22,46609210,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,79.00000000,0.00000000,1.75000000,0.00000000,,0.20792079,106.00000000,4.69026549,0.03773585,0.00000000,5.75000000 +11545,chr22,46617258,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.27000000,0.00000000,,0.20689655,63.00000000,2.78761062,0.07936508,0.00000000,6.37000000 +11546,chr22,46618557,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,1.54000000,0.00000000,,0.19780220,94.00000000,4.15929204,0.02127660,0.00000000,6.32000000 +11547,chr22,46619547,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.19000000,0.00000000,,0.14864865,75.00000000,3.31858407,0.01333333,0.00000000,5.90000000 +11548,chr22,46624687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.14000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,4.72000000 +11549,chr22,46625005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,0.79000000,0.00000000,,0.24324324,76.00000000,3.36283186,0.02631579,0.00000000,6.12000000 +11550,chr22,46629883,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.92000000,0.00000000,,0.22448980,100.00000000,4.42477876,0.02000000,0.00000000,5.82000000 +11551,chr22,46630376,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,90.00000000,0.00000000,-0.42000000,0.00000000,,0.26315789,81.00000000,3.58407080,0.06172840,0.00000000,6.60000000 +11552,chr22,46638932,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.09000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.40000000 +11553,chr22,46639717,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,-1.16000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.99000000 +11554,chr22,46640199,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,68.00000000,0.00000000,0.40000000,0.00000000,,0.14285714,99.00000000,4.38053097,0.00000000,0.00000000,5.47000000 +11555,chr22,46640554,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-2.02000000,0.00000000,,0.20454545,95.00000000,4.20353982,0.06315789,0.00000000,6.35000000 +11556,chr22,46642184,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,85.00000000,0.00000000,-0.40000000,0.00000000,,0.20000000,108.00000000,4.77876106,0.01851852,0.00000000,6.31000000 +11557,chr22,46650497,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.71000000 +11558,chr22,46670687,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.15000000,0.00000000,,0.23456790,87.00000000,3.84955752,0.06896552,0.00000000,6.48000000 +11559,chr22,46674850,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,0.28000000,0.00000000,,0.18823529,90.00000000,3.98230088,0.03333333,0.00000000,6.31000000 +11560,chr22,46677904,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,-0.70000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.95000000 +11561,chr22,46677964,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,1.83000000,0.00000000,,0.17333333,77.00000000,3.40707965,0.02597403,0.00000000,5.69000000 +11562,chr22,46683966,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,83.00000000,0.00000000,0.35000000,0.00000000,,0.28571429,73.00000000,3.23008850,0.04109589,0.00000000,6.05000000 +11563,chr22,46687916,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.39000000,0.00000000,,0.50000000,94.00000000,4.15929204,0.00000000,0.00000000,9.00000000 +11564,chr22,46691154,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.42105263,81.00000000,3.58407080,0.04938272,0.00000000,7.33000000 +11565,chr22,46698913,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,37.00000000,0.00000000,-2.19000000,0.00000000,,0.45945946,76.00000000,3.36283186,0.02631579,0.00000000,4.07000000 +11566,chr22,46699512,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,53.00000000,0.00000000,0.56000000,0.00000000,,0.44303797,80.00000000,3.53982301,0.01250000,0.00000000,4.49000000 +11567,chr22,46699721,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,101.00000000,0.00000000,2.11000000,0.00000000,,0.41509434,109.00000000,4.82300885,0.02752294,0.00000000,8.30000000 +11568,chr22,46703072,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,0.88000000,0.00000000,,0.40677966,60.00000000,2.65486726,0.01666667,0.00000000,5.96000000 +11569,chr22,46704247,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.66000000,0.00000000,,0.26760563,74.00000000,3.27433628,0.04054054,0.00000000,6.67000000 +11570,chr22,46704262,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.55000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.02702703,0.00000000,6.40000000 +11571,chr22,46704581,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.23000000,0.00000000,,0.36781609,88.00000000,3.89380531,0.01136364,0.00000000,8.58000000 +11572,chr22,46705175,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,46.00000000,0.00000000,1.16000000,0.00000000,,0.44736842,77.00000000,3.40707965,0.01298701,0.00000000,4.27000000 +11573,chr22,46706495,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,-0.44000000,0.00000000,,0.43902439,83.00000000,3.67256637,0.01204819,0.00000000,6.01000000 +11574,chr22,46708555,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.72000000,0.00000000,,0.19587629,99.00000000,4.38053097,0.02020202,0.00000000,5.97000000 +11575,chr22,46709961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,65.00000000,0.00000000,0.32000000,0.00000000,,0.14545455,112.00000000,4.95575221,0.01785714,0.00000000,5.41000000 +11576,chr22,46715641,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.52000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.64000000 +11577,chr22,46715823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,-0.80000000,0.00000000,,0.15841584,102.00000000,4.51327434,0.00980392,0.00000000,5.58000000 +11578,chr22,46716481,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,61.00000000,0.00000000,2.73000000,1.06000000,,0.13725490,61.00000000,2.69911504,0.14754098,0.00000000,3.54000000 +11579,chr22,46716499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,1.12000000,0.00000000,,0.16949153,65.00000000,2.87610619,0.09230769,0.00000000,5.45000000 +11580,chr22,46716537,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.13432836,71.00000000,3.14159292,0.04225352,0.00000000,5.47000000 +11581,chr22,46717303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,83.00000000,0.00000000,1.91000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.02500000,0.00000000,5.58000000 +11582,chr22,46717791,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-1.83000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,6.06000000 +11583,chr22,46717809,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.37000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.00000000,0.00000000,5.33000000 +11584,chr22,46717856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.74000000,0.00000000,,0.23943662,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +11585,chr22,46717884,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.13000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.30000000 +11586,chr22,46717899,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.43000000,0.00000000,,0.15384615,68.00000000,3.00884956,0.04411765,0.00000000,5.70000000 +11587,chr22,46717948,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,0.30000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.01538462,0.00000000,5.98000000 +11588,chr22,46718055,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.14754098,63.00000000,2.78761062,0.03174603,0.00000000,4.96000000 +11589,chr22,46718081,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,72.00000000,0.00000000,0.16000000,0.00000000,,0.14285714,66.00000000,2.92035398,0.04545455,0.00000000,5.10000000 +11590,chr22,46718189,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,0.00000000,0.87000000,0.00000000,,0.13698630,75.00000000,3.31858407,0.02666667,0.00000000,5.00000000 +11591,chr22,46718624,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.24000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.59000000 +11592,chr22,46718766,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.10869565,93.00000000,4.11504425,0.01075269,0.00000000,4.87000000 +11593,chr22,46718809,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,99.00000000,0.00000000,-1.74000000,0.00000000,,0.30588235,87.00000000,3.84955752,0.02298851,0.00000000,5.91000000 +11594,chr22,46718845,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,0.00000000,-2.24000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.67000000 +11595,chr22,46718978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,1.21000000,0.00000000,,0.14942529,89.00000000,3.93805310,0.02247191,0.00000000,5.40000000 +11596,chr22,46719493,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.97000000,0.00000000,,0.29629630,55.00000000,2.43362832,0.01818182,0.00000000,6.51000000 +11597,chr22,46719783,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,0.00000000,0.00000000,,0.14563107,106.00000000,4.69026549,0.02830189,0.00000000,4.54000000 +11598,chr22,46719859,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-1.46000000,0.00000000,,0.46236559,94.00000000,4.15929204,0.00000000,0.00000000,7.98000000 +11599,chr22,46719928,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.23000000,0.00000000,,0.20652174,92.00000000,4.07079646,0.00000000,0.00000000,6.30000000 +11600,chr22,46720377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,78.00000000,0.00000000,1.95000000,0.00000000,,0.18888889,92.00000000,4.07079646,0.02173913,0.00000000,6.16000000 +11601,chr22,46720420,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.13541667,98.00000000,4.33628319,0.02040816,0.00000000,4.96000000 +11602,chr22,46720428,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.01000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.00000000,0.00000000,5.09000000 +11603,chr22,46721008,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,0.54000000,0.00000000,,0.28048780,83.00000000,3.67256637,0.01204819,0.00000000,6.31000000 +11604,chr22,46721676,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.51000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +11605,chr22,46740210,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,74.00000000,0.00000000,-1.58000000,0.00000000,,0.19444444,79.00000000,3.49557522,0.08860759,0.00000000,5.94000000 +11606,chr22,46740244,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-0.22000000,0.00000000,,0.21333333,80.00000000,3.53982301,0.06250000,0.00000000,5.92000000 +11607,chr22,46743936,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.16000000,0.00000000,,0.19148936,47.00000000,2.07964602,0.00000000,0.00000000,7.15000000 +11608,chr22,46751271,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,0.00000000,2.50000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.67000000 +11609,chr22,46752459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-1.95000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.23000000 +11610,chr22,46789938,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,75.00000000,0.00000000,1.27000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.00000000,0.00000000,5.98000000 +11611,chr22,46796197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-1.03000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.68000000 +11612,chr22,46815938,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.69000000,0.00000000,,0.16867470,84.00000000,3.71681416,0.01190476,0.00000000,5.56000000 +11613,chr22,46822103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.11000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.71000000 +11614,chr22,46826785,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,83.00000000,0.00000000,1.34000000,0.00000000,,0.28125000,66.00000000,2.92035398,0.03030303,0.00000000,6.15000000 +11615,chr22,46826884,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,72.00000000,0.00000000,0.12000000,0.00000000,,0.16867470,86.00000000,3.80530973,0.03488372,0.00000000,5.91000000 +11616,chr22,46828584,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,52.00000000,0.00000000,-0.85000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.01250000,0.00000000,3.09000000 +11617,chr22,46829709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,0.00000000,0.44000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,5.14000000 +11618,chr22,46830220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,60.00000000,0.00000000,-1.12000000,0.00000000,,0.17567568,77.00000000,3.40707965,0.03896104,0.00000000,5.73000000 +11619,chr22,46830486,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,0.75000000,0.00000000,,0.27777778,91.00000000,4.02654867,0.01098901,0.00000000,5.93000000 +11620,chr22,46830903,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.11000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11621,chr22,46831222,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,85.00000000,0.00000000,0.16000000,0.00000000,,0.22666667,78.00000000,3.45132743,0.02564103,0.00000000,6.34000000 +11622,chr22,46831976,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.81000000,0.00000000,,0.24050633,83.00000000,3.67256637,0.04819277,0.00000000,5.71000000 +11623,chr22,46834451,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.75000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +11624,chr22,46834452,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.55000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +11625,chr22,46834656,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.34000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.02631579,0.00000000,6.00000000 +11626,chr22,46835536,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,0.24000000,0.00000000,,0.28395062,81.00000000,3.58407080,0.00000000,0.00000000,6.27000000 +11627,chr22,46836177,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.09000000,0.00000000,,0.14814815,81.00000000,3.58407080,0.00000000,0.00000000,5.06000000 +11628,chr22,46837332,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.17977528,91.00000000,4.02654867,0.01098901,0.00000000,6.60000000 +11629,chr22,46838643,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.35000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +11630,chr22,46838969,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,-1.37000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.01250000,0.00000000,6.36000000 +11631,chr22,46839219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.01123596,0.00000000,5.90000000 +11632,chr22,46839543,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,-0.23000000,0.00000000,,0.19780220,92.00000000,4.07079646,0.01086957,0.00000000,6.34000000 +11633,chr22,46839940,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.12000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.01136364,0.00000000,6.83000000 +11634,chr22,46840732,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,-0.09000000,0.00000000,,0.21686747,90.00000000,3.98230088,0.07777778,0.00000000,6.04000000 +11635,chr22,46841413,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,92.00000000,0.00000000,-0.53000000,0.00000000,,0.29069767,86.00000000,3.80530973,0.00000000,0.00000000,6.73000000 +11636,chr22,46841850,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,1.08000000,0.00000000,,0.18367347,98.00000000,4.33628319,0.00000000,0.01010101,6.30000000 +11637,chr22,46842502,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-2.59000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,7.21000000 +11638,chr22,46842529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.25000000,0.00000000,,0.21839080,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +11639,chr22,46843245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,5.88000000 +11640,chr22,46843348,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-0.14000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.00000000,0.00000000,6.68000000 +11641,chr22,46843802,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,0.09000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,5.98000000 +11642,chr22,46844313,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,0.76000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +11643,chr22,46844847,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,0.79000000,0.00000000,,0.26829268,86.00000000,3.80530973,0.03488372,0.00000000,6.03000000 +11644,chr22,46844967,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.46000000 +11645,chr22,46845011,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,71.00000000,0.00000000,0.32000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.24000000 +11646,chr22,46845897,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,0.43000000,0.00000000,,0.24675325,77.00000000,3.40707965,0.00000000,0.00000000,5.91000000 +11647,chr22,46845992,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,0.31000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.01204819,0.00000000,5.95000000 +11648,chr22,46846151,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.45000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.01369863,0.00000000,6.45000000 +11649,chr22,46846436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.68000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,6.48000000 +11650,chr22,46846756,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.23000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,1.00000000,0.00000000,,0.15853659,83.00000000,3.67256637,0.01204819,0.00000000,5.58000000 +11651,chr22,46847176,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.44000000,0.00000000,,0.20000000,72.00000000,3.18584071,0.02777778,0.00000000,6.56000000 +11652,chr22,46847566,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.48000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.00000000,0.00000000,5.97000000 +11653,chr22,46849062,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,95.00000000,0.00000000,0.83000000,0.00000000,,0.31428571,71.00000000,3.14159292,0.01408451,0.00000000,6.55000000 +11654,chr22,46849818,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,-0.69000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.00000000,0.00000000,6.33000000 +11655,chr22,46849939,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.19000000,0.00000000,,0.23170732,83.00000000,3.67256637,0.01204819,0.00000000,6.72000000 +11656,chr22,46851274,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,73.00000000,0.00000000,0.89000000,0.00000000,,0.15686275,103.00000000,4.55752212,0.00970874,0.00000000,5.68000000 +11657,chr22,46852492,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.00000000,0.00000000,5.92000000 +11658,chr22,46852708,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,0.21000000,0.00000000,,0.20833333,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +11659,chr22,46853655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.18279570,93.00000000,4.11504425,0.00000000,0.00000000,6.63000000 +11660,chr22,46853704,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.46000000,0.00000000,,0.17500000,80.00000000,3.53982301,0.00000000,0.00000000,6.31000000 +11661,chr22,46854224,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.59000000 +11662,chr22,46856463,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,89.00000000,0.00000000,-0.32000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.01282051,0.00000000,5.93000000 +11663,chr22,46874911,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.43000000 +11664,chr22,46944484,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,94.00000000,0.00000000,2.31000000,0.00000000,,0.31325301,85.00000000,3.76106195,0.02352941,0.00000000,6.26000000 +11665,chr22,46945349,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.68000000,0.00000000,,0.21978022,91.00000000,4.02654867,0.00000000,0.00000000,6.94000000 +11666,chr22,46946389,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.19444444,76.00000000,3.36283186,0.02631579,0.00000000,6.22000000 +11667,chr22,46946512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.75000000,0.00000000,,0.23809524,86.00000000,3.80530973,0.01162791,0.00000000,6.63000000 +11668,chr22,46947401,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,50.00000000,0.00000000,0.07000000,0.00000000,,0.33783784,74.00000000,3.27433628,0.00000000,0.00000000,4.24000000 +11669,chr22,46947922,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,-0.27000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.01298701,0.00000000,6.62000000 +11670,chr22,46948101,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,0.68000000,0.00000000,,0.16438356,75.00000000,3.31858407,0.02666667,0.00000000,5.07000000 +11671,chr22,46948313,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,73.00000000,0.00000000,0.80000000,0.00000000,,0.17567568,75.00000000,3.31858407,0.01333333,0.00000000,6.33000000 +11672,chr22,46949514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-0.79000000,0.00000000,,0.14583333,97.00000000,4.29203540,0.01030928,0.00000000,6.06000000 +11673,chr22,46949819,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,-1.67000000,0.00000000,,0.21590909,89.00000000,3.93805310,0.01123596,0.00000000,6.22000000 +11674,chr22,46949916,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,77.00000000,0.00000000,1.07000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,5.93000000 +11675,chr22,46950213,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.48000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.01098901,0.00000000,6.25000000 +11676,chr22,46950231,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,-0.35000000,0.00000000,,0.16494845,97.00000000,4.29203540,0.00000000,0.00000000,6.19000000 +11677,chr22,46950325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.21495327,109.00000000,4.82300885,0.01834862,0.00000000,6.04000000 +11678,chr22,46952143,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,2.55000000,0.00000000,,0.26506024,84.00000000,3.71681416,0.01190476,0.00000000,6.74000000 +11679,chr22,46952789,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.65000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.72000000 +11680,chr22,46952938,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.86000000,0.00000000,,0.14285714,94.00000000,4.15929204,0.02127660,0.00000000,5.18000000 +11681,chr22,46955417,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.01333333,0.00000000,6.55000000 +11682,chr22,46960713,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,0.85000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,5.65000000 +11683,chr22,47040806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.60000000 +11684,chr22,47041044,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.01333333,0.00000000,5.58000000 +11685,chr22,47041162,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.78000000,0.00000000,,0.18292683,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +11686,chr22,47047835,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.34000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.84000000 +11687,chr22,47048284,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.27777778,73.00000000,3.23008850,0.00000000,0.00000000,6.47000000 +11688,chr22,47050727,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,-1.10000000,0.00000000,,0.21875000,72.00000000,3.18584071,0.11111111,0.00000000,5.92000000 +11689,chr22,47052847,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,89.00000000,0.00000000,0.36000000,0.00000000,,0.27272727,90.00000000,3.98230088,0.02222222,0.00000000,6.43000000 +11690,chr22,47054869,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,64.00000000,0.00000000,-0.61000000,0.00000000,,0.13235294,69.00000000,3.05309735,0.01449275,0.00000000,5.00000000 +11691,chr22,47061093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.09000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,66.00000000,0.00000000,-0.15000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,6.30000000 +11692,chr22,47082103,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-0.39000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.49000000 +11693,chr22,47100119,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-1.42000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,3.92000000 +11694,chr22,47101395,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-2.91000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.58000000 +11695,chr22,47106961,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.59000000,0.00000000,,0.21250000,83.00000000,3.67256637,0.02409639,0.00000000,6.38000000 +11696,chr22,47107171,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.16250000,83.00000000,3.67256637,0.03614458,0.00000000,5.49000000 +11697,chr22,47107468,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-1.03000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +11698,chr22,47107688,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,0.28000000,0.00000000,,0.18556701,99.00000000,4.38053097,0.02020202,0.00000000,6.13000000 +11699,chr22,47107955,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,84.00000000,0.00000000,0.13000000,0.00000000,,0.20731707,86.00000000,3.80530973,0.04651163,0.00000000,5.72000000 +11700,chr22,47108068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,0.57000000,0.00000000,,0.13186813,93.00000000,4.11504425,0.02150538,0.00000000,5.22000000 +11701,chr22,47108219,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,1.56000000,0.00000000,,0.24390244,84.00000000,3.71681416,0.01190476,0.00000000,6.76000000 +11702,chr22,47108309,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-1.49000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,6.20000000 +11703,chr22,47108386,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,1.68000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.69000000 +11704,chr22,47108660,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.16666667,104.00000000,4.60176991,0.00961538,0.00000000,6.42000000 +11705,chr22,47109003,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.23000000,0.00000000,,0.15476190,84.00000000,3.71681416,0.00000000,0.00000000,5.44000000 +11706,chr22,47109403,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,76.00000000,0.00000000,-0.27000000,0.00000000,,0.18518519,82.00000000,3.62831858,0.00000000,0.00000000,6.35000000 +11707,chr22,47109618,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,-0.81000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.63000000 +11708,chr22,47109767,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.44000000,0.00000000,,0.18888889,94.00000000,4.15929204,0.04255319,0.00000000,5.77000000 +11709,chr22,47109846,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,0.10000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.32000000 +11710,chr22,47110149,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.40000000,0.00000000,,0.15277778,72.00000000,3.18584071,0.00000000,0.00000000,6.07000000 +11711,chr22,47111958,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.22000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.16000000 +11712,chr22,47112677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.99000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.32000000 +11713,chr22,47112680,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.85000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.32000000 +11714,chr22,47114882,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-1.86000000,0.00000000,,0.14666667,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +11715,chr22,47116062,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,80.00000000,0.00000000,1.46000000,0.00000000,,0.18000000,102.00000000,4.51327434,0.01960784,0.00000000,5.15000000 +11716,chr22,47119017,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-2.24000000,0.00000000,,0.52727273,57.00000000,2.52212389,0.01754386,0.00000000,4.18000000 +11717,chr22,47119589,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.51000000,0.00000000,,0.45205479,79.00000000,3.49557522,0.07594937,0.00000000,7.51000000 +11718,chr22,47122764,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.41000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.64000000 +11719,chr22,47123580,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,-0.14000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,5.33000000 +11720,chr22,47126568,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,6.45000000 +11721,chr22,47129293,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,1.33000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,6.35000000 +11722,chr22,47132991,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.46000000,0.00000000,,0.20454545,93.00000000,4.11504425,0.04301075,0.00000000,5.99000000 +11723,chr22,47133514,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.59000000,0.00000000,,0.21052632,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +11724,chr22,47133645,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,1.39000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.00000000,0.00000000,6.24000000 +11725,chr22,47134396,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.01000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.30000000 +11726,chr22,47135677,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.90000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +11727,chr22,47136138,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.29000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.75000000 +11728,chr22,47136371,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-1.63000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.01098901,0.00000000,6.68000000 +11729,chr22,47136753,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.60000000,0.00000000,,0.28169014,73.00000000,3.23008850,0.02739726,0.00000000,5.82000000 +11730,chr22,47136948,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.98000000,0.00000000,,0.27118644,61.00000000,2.69911504,0.01639344,0.00000000,6.33000000 +11731,chr22,47136998,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.33000000,0.00000000,,0.27777778,57.00000000,2.52212389,0.01754386,0.00000000,6.38000000 +11732,chr22,47148148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,35.00000000,1.54867257,0.05714286,0.00000000,77.00000000,0.00000000,0.17000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.02000000 +11733,chr22,47156832,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,1.40000000,0.00000000,,0.10526316,97.00000000,4.29203540,0.01030928,0.00000000,5.31000000 +11734,chr22,47156978,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,0.00000000,1.60000000,0.00000000,,0.10810811,75.00000000,3.31858407,0.01333333,0.00000000,5.10000000 +11735,chr22,47157212,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,83.00000000,0.00000000,-0.36000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.86000000 +11736,chr22,47159325,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.51000000,5.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,1.14000000,0.00000000,,0.21666667,64.00000000,2.83185841,0.04687500,0.00000000,5.65000000 +11737,chr22,47160863,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,0.00000000,-0.81000000,0.00000000,,0.21052632,78.00000000,3.45132743,0.02564103,0.00000000,5.95000000 +11738,chr22,47162202,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.21590909,92.00000000,4.07079646,0.03260870,0.00000000,5.74000000 +11739,chr22,47162235,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,1.09000000,0.00000000,,0.20238095,91.00000000,4.02654867,0.06593407,0.00000000,5.67000000 +11740,chr22,47162334,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-1.88000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.03797468,0.00000000,6.01000000 +11741,chr22,47162463,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.51000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,6.80000000 +11742,chr22,47162538,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.69000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +11743,chr22,47163041,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.57000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.68000000 +11744,chr22,47163806,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.69000000,0.00000000,,0.24444444,94.00000000,4.15929204,0.04255319,0.00000000,6.34000000 +11745,chr22,47163905,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,-1.08000000,0.00000000,,0.14942529,88.00000000,3.89380531,0.01136364,0.00000000,6.07000000 +11746,chr22,47164154,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.28000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.69000000 +11747,chr22,47172228,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,78.00000000,0.00000000,2.16000000,0.00000000,,0.30120482,86.00000000,3.80530973,0.03488372,0.00000000,5.93000000 +11748,chr22,47172648,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.58000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.03030303,0.00000000,5.94000000 +11749,chr22,47172805,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,100.00000000,0.00000000,0.25000000,0.00000000,,0.31325301,83.00000000,3.67256637,0.00000000,0.00000000,7.03000000 +11750,chr22,47173189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,-0.45000000,0.00000000,,0.13698630,73.00000000,3.23008850,0.00000000,0.00000000,5.39000000 +11751,chr22,47173328,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,-0.47000000,0.00000000,,0.23076923,67.00000000,2.96460177,0.02985075,0.00000000,6.11000000 +11752,chr22,47174901,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-1.20000000,0.00000000,,0.29411765,69.00000000,3.05309735,0.01449275,0.00000000,6.43000000 +11753,chr22,47175442,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,88.00000000,0.00000000,-0.66000000,0.00000000,,0.29268293,83.00000000,3.67256637,0.01204819,0.00000000,6.69000000 +11754,chr22,47175837,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.87000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +11755,chr22,47176335,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.83000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,65.00000000,0.00000000,-0.80000000,0.00000000,,0.16129032,65.00000000,2.87610619,0.04615385,0.00000000,5.67000000 +11756,chr22,47176367,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,50.93000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,59.00000000,0.00000000,0.43000000,0.78000000,,0.09090909,50.00000000,2.21238938,0.12000000,0.00000000,2.98000000 +11757,chr22,47176556,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.38000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,69.00000000,0.00000000,2.03000000,0.00000000,,0.15942029,73.00000000,3.23008850,0.04109589,0.00000000,5.16000000 +11758,chr22,47176636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.23000000,0.00000000,,0.18461538,70.00000000,3.09734513,0.07142857,0.00000000,5.86000000 +11759,chr22,47177245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,1.24000000,0.00000000,,0.15909091,90.00000000,3.98230088,0.02222222,0.00000000,5.43000000 +11760,chr22,47177313,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.17708333,98.00000000,4.33628319,0.02040816,0.00000000,6.14000000 +11761,chr22,47177355,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,79.00000000,0.00000000,0.60000000,0.00000000,,0.18888889,90.00000000,3.98230088,0.00000000,0.00000000,6.39000000 +11762,chr22,47177396,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,-0.34000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.00000000,0.00000000,6.42000000 +11763,chr22,47177505,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,0.87000000,0.00000000,,0.20454545,92.00000000,4.07079646,0.04347826,0.00000000,6.32000000 +11764,chr22,47177763,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.73000000,0.00000000,,0.25000000,97.00000000,4.29203540,0.01030928,0.00000000,6.22000000 +11765,chr22,47178057,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,0.44000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,6.22000000 +11766,chr22,47178074,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.39000000,0.00000000,,0.32857143,73.00000000,3.23008850,0.02739726,0.00000000,8.24000000 +11767,chr22,47178256,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,90.00000000,0.00000000,-0.21000000,0.00000000,,0.26262626,99.00000000,4.38053097,0.00000000,0.00000000,6.73000000 +11768,chr22,47189370,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.07000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.50000000 +11769,chr22,47193965,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,86.00000000,0.00000000,-0.55000000,0.00000000,,0.26315789,95.00000000,4.20353982,0.00000000,0.00000000,6.73000000 +11770,chr22,47200209,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-0.27000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +11771,chr22,47212498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.77000000,11.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,75.00000000,0.00000000,-2.08000000,0.00000000,,0.20289855,77.00000000,3.40707965,0.09090909,0.01282051,5.65000000 +11772,chr22,47212568,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.63000000,7.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,74.00000000,0.00000000,-0.49000000,0.00000000,,0.20000000,65.00000000,2.87610619,0.23076923,0.00000000,5.75000000 +11773,chr22,47212590,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.99000000,5.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,75.00000000,0.00000000,1.32000000,0.00000000,,0.20754717,64.00000000,2.83185841,0.17187500,0.00000000,5.41000000 +11774,chr22,47212790,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,58.42000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,65.00000000,0.00000000,-0.27000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.08333333,0.00000000,5.62000000 +11775,chr22,47213051,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.35000000,1.00000000,ref,1.00000000,0.03448276,32.00000000,1.41592920,0.09375000,0.00000000,58.00000000,0.00000000,1.58000000,0.00000000,,0.24137931,69.00000000,3.05309735,0.14492754,0.00000000,4.34000000 +11776,chr22,47213084,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.12000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,0.25000000,0.00000000,,0.20289855,75.00000000,3.31858407,0.08000000,0.00000000,5.69000000 +11777,chr22,47213118,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.04000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.01000000,0.00000000,,0.23943662,85.00000000,3.76106195,0.15294118,0.00000000,6.17000000 +11778,chr22,47215451,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.79000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.40000000 +11779,chr22,47215743,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,0.18000000,0.00000000,,0.28750000,80.00000000,3.53982301,0.00000000,0.00000000,6.53000000 +11780,chr22,47215790,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,0.00000000,0.54000000,0.00000000,,0.28358209,69.00000000,3.05309735,0.01449275,0.00000000,5.85000000 +11781,chr22,47230286,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,86.00000000,0.00000000,-0.49000000,0.00000000,,0.26666667,94.00000000,4.15929204,0.04255319,0.00000000,6.21000000 +11782,chr22,47231301,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,40.00000000,1.76991150,0.02500000,0.00000000,56.00000000,0.00000000,0.81000000,0.00000000,,0.29761905,89.00000000,3.93805310,0.04494382,0.00000000,2.77000000 +11783,chr22,47235271,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.42000000,0.00000000,,0.28235294,90.00000000,3.98230088,0.03333333,0.00000000,5.93000000 +11784,chr22,47239341,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-2.39000000,0.00000000,,0.23684211,80.00000000,3.53982301,0.03750000,0.00000000,6.56000000 +11785,chr22,47259525,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,0.00000000,0.67000000,0.00000000,,0.12676056,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +11786,chr22,47280049,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,85.00000000,0.00000000,0.12000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,5.91000000 +11787,chr22,47287121,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.05000000,0.00000000,,0.15384615,94.00000000,4.15929204,0.03191489,0.00000000,4.94000000 +11788,chr22,47287326,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,92.00000000,0.00000000,1.33000000,0.00000000,,0.28735632,91.00000000,4.02654867,0.03296703,0.00000000,6.07000000 +11789,chr22,47287814,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.68000000 +11790,chr22,47288055,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +11791,chr22,47290499,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.61000000,1.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,-1.43000000,0.00000000,,0.23333333,63.00000000,2.78761062,0.04761905,0.00000000,2.85000000 +11792,chr22,47296565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.14000000,0.00000000,,0.19540230,87.00000000,3.84955752,0.00000000,0.00000000,6.72000000 +11793,chr22,47310676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,1.52000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +11794,chr22,47337028,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,72.00000000,0.00000000,-0.75000000,0.00000000,,0.15909091,88.00000000,3.89380531,0.00000000,0.00000000,5.94000000 +11795,chr22,47342256,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.52000000,0.00000000,,0.25925926,81.00000000,3.58407080,0.00000000,0.00000000,6.34000000 +11796,chr22,47345567,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.39000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.74000000 +11797,chr22,47345830,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,57.50000000,8.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.29000000,0.00000000,,0.22033898,64.00000000,2.83185841,0.07812500,0.00000000,5.96000000 +11798,chr22,47353241,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.19000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.22000000 +11799,chr22,47354377,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,-0.50000000,0.00000000,,0.24615385,66.00000000,2.92035398,0.01515152,0.00000000,5.88000000 +11800,chr22,47354974,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,2.11000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.14000000 +11801,chr22,47355207,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,81.00000000,0.00000000,1.01000000,0.00000000,,0.23611111,75.00000000,3.31858407,0.04000000,0.00000000,5.96000000 +11802,chr22,47359575,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.26315789,76.00000000,3.36283186,0.00000000,0.00000000,6.76000000 +11803,chr22,47361064,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.62000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,6.42000000 +11804,chr22,47361564,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.35000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.59000000 +11805,chr22,47361797,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.48000000,0.00000000,,0.17500000,81.00000000,3.58407080,0.01234568,0.00000000,6.33000000 +11806,chr22,47362540,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.35000000,0.00000000,,0.24242424,69.00000000,3.05309735,0.04347826,0.00000000,5.99000000 +11807,chr22,47363212,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,-0.39000000,0.00000000,,0.25000000,84.00000000,3.71681416,0.04761905,0.00000000,6.00000000 +11808,chr22,47363710,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,0.00000000,-1.73000000,0.00000000,,0.21739130,52.00000000,2.30088496,0.11538462,0.00000000,2.94000000 +11809,chr22,47364119,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.68000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.16000000 +11810,chr22,47365005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.13000000 +11811,chr22,47365008,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.06000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +11812,chr22,47367280,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.05000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.65000000 +11813,chr22,47367339,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.47000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.00000000,0.00000000,6.54000000 +11814,chr22,47369979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,79.00000000,0.00000000,1.27000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +11815,chr22,47370469,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,0.00000000,-1.92000000,0.00000000,,0.20930233,96.00000000,4.24778761,0.10416667,0.00000000,5.99000000 +11816,chr22,47374788,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.06000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.97000000 +11817,chr22,47375550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.49000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11818,chr22,47375800,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.22000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.01282051,0.00000000,6.60000000 +11819,chr22,47376055,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,1.15000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,5.82000000 +11820,chr22,47378170,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,0.00000000,0.64000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,5.48000000 +11821,chr22,47378679,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-0.28000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.64000000 +11822,chr22,47380231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,0.00000000,-0.17000000,0.00000000,,0.28421053,95.00000000,4.20353982,0.00000000,0.00000000,6.43000000 +11823,chr22,47381671,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,0.03000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,5.87000000 +11824,chr22,47386596,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.82000000,0.00000000,,0.21875000,64.00000000,2.83185841,0.00000000,0.00000000,6.93000000 +11825,chr22,47387537,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,6.87000000 +11826,chr22,47387702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.98000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,73.00000000,0.00000000,-0.09000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.52000000 +11827,chr22,47389144,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.48000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.60000000 +11828,chr22,47389948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,65.00000000,0.00000000,0.46000000,0.00000000,,0.17460317,66.00000000,2.92035398,0.04545455,0.00000000,5.34000000 +11829,chr22,47395927,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.20000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.64000000 +11830,chr22,47396302,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,-0.32000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,5.90000000 +11831,chr22,47401320,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-1.95000000,0.00000000,,0.29347826,93.00000000,4.11504425,0.01075269,0.00000000,6.22000000 +11832,chr22,47401692,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-2.20000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.29000000 +11833,chr22,47406877,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-0.55000000,0.00000000,,0.28767123,73.00000000,3.23008850,0.00000000,0.00000000,7.12000000 +11834,chr22,47407060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.81000000,0.00000000,,0.25714286,72.00000000,3.18584071,0.02777778,0.00000000,6.04000000 +11835,chr22,47407652,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.08000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.01282051,0.00000000,6.87000000 +11836,chr22,47411179,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.13000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +11837,chr22,47414984,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.60000000,0.00000000,,0.21333333,77.00000000,3.40707965,0.02597403,0.00000000,6.34000000 +11838,chr22,47415171,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-0.22000000,0.00000000,,0.12500000,57.00000000,2.52212389,0.00000000,0.00000000,5.20000000 +11839,chr22,47415925,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,0.07000000,0.00000000,,0.28750000,82.00000000,3.62831858,0.02439024,0.00000000,6.71000000 +11840,chr22,47422191,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,75.00000000,0.00000000,-1.07000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.41000000 +11841,chr22,47423495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.21052632,77.00000000,3.40707965,0.00000000,0.00000000,6.84000000 +11842,chr22,47424483,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-1.20000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.57000000 +11843,chr22,47424918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.77000000 +11844,chr22,47424937,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,80.00000000,0.00000000,0.74000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.02531646,0.00000000,5.77000000 +11845,chr22,47427622,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,2.07000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.04000000,0.00000000,5.75000000 +11846,chr22,47428546,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,39.00000000,1.72566372,0.05128205,0.00000000,71.00000000,0.00000000,-0.80000000,0.00000000,,0.20731707,85.00000000,3.76106195,0.03529412,0.00000000,5.78000000 +11847,chr22,47430856,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.00000000,0.00000000,6.98000000 +11848,chr22,47433372,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.08000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.01587302,0.00000000,6.39000000 +11849,chr22,47434284,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-0.52000000,0.00000000,,0.19736842,76.00000000,3.36283186,0.00000000,0.00000000,7.05000000 +11850,chr22,47436741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,0.28000000,0.00000000,,0.24590164,61.00000000,2.69911504,0.00000000,0.00000000,6.38000000 +11851,chr22,47436752,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,0.02000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.37000000 +11852,chr22,47437863,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,-1.04000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.36000000 +11853,chr22,47439089,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.18750000,83.00000000,3.67256637,0.03614458,0.00000000,5.64000000 +11854,chr22,47441979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.92000000,0.00000000,,0.17021277,95.00000000,4.20353982,0.01052632,0.00000000,6.06000000 +11855,chr22,47446554,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,1.43000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,5.95000000 +11856,chr22,47447001,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.76000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.79000000 +11857,chr22,47447199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,71.00000000,0.00000000,2.11000000,0.00000000,,0.18279570,96.00000000,4.24778761,0.03125000,0.00000000,5.70000000 +11858,chr22,47452235,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,6.94000000 +11859,chr22,47461546,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.15000000,0.00000000,,0.20588235,71.00000000,3.14159292,0.04225352,0.00000000,6.52000000 +11860,chr22,47461788,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,73.00000000,0.00000000,-0.92000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.01315789,0.00000000,6.05000000 +11861,chr22,47461802,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,73.00000000,0.00000000,-0.01000000,0.00000000,,0.17105263,81.00000000,3.58407080,0.06172840,0.00000000,5.55000000 +11862,chr22,47461827,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-0.42000000,0.00000000,,0.18840580,74.00000000,3.27433628,0.06756757,0.00000000,6.20000000 +11863,chr22,47463749,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.10000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,6.55000000 +11864,chr22,47464070,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.13000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.01851852,0.00000000,6.65000000 +11865,chr22,47464145,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,-0.29000000,0.00000000,,0.23333333,62.00000000,2.74336283,0.03225806,0.00000000,6.00000000 +11866,chr22,47464470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.76000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.01492537,0.00000000,6.39000000 +11867,chr22,47464487,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.28000000 +11868,chr22,47464893,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,75.00000000,0.00000000,-1.27000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,6.50000000 +11869,chr22,47464930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,79.00000000,0.00000000,-2.06000000,0.00000000,,0.19354839,63.00000000,2.78761062,0.01587302,0.00000000,6.30000000 +11870,chr22,47466495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.09000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.01123596,0.00000000,6.65000000 +11871,chr22,47466651,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,61.00000000,0.00000000,1.45000000,0.00000000,,0.14634146,85.00000000,3.76106195,0.01176471,0.00000000,5.27000000 +11872,chr22,47466978,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,1.45000000,0.00000000,,0.19266055,109.00000000,4.82300885,0.00000000,0.00000000,6.39000000 +11873,chr22,47467312,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.14000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,7.04000000 +11874,chr22,47469015,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,65.00000000,0.00000000,0.76000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.02197802,0.00000000,4.96000000 +11875,chr22,47471423,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-0.25000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.34000000 +11876,chr22,47471441,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,0.52000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.02816901,0.00000000,6.05000000 +11877,chr22,47474754,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.51000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.01408451,0.00000000,5.97000000 +11878,chr22,47476087,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,2.19000000,0.00000000,,0.28169014,71.00000000,3.14159292,0.00000000,0.00000000,6.54000000 +11879,chr22,47476495,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.63000000,0.00000000,,0.32098765,81.00000000,3.58407080,0.00000000,0.00000000,8.36000000 +11880,chr22,47476994,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,0.39000000,0.00000000,,0.22891566,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +11881,chr22,47477273,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,64.00000000,0.00000000,1.66000000,0.00000000,,0.11267606,76.00000000,3.36283186,0.06578947,0.00000000,4.58000000 +11882,chr22,47478923,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,-0.59000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,6.16000000 +11883,chr22,47482201,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,0.00000000,-1.18000000,0.00000000,,0.27272727,67.00000000,2.96460177,0.17910448,0.00000000,5.86000000 +11884,chr22,47482245,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,1.69000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.02666667,0.00000000,5.83000000 +11885,chr22,47483361,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,1.89000000,0.00000000,,0.20000000,102.00000000,4.51327434,0.01960784,0.00000000,5.63000000 +11886,chr22,47483940,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.15151515,0.00000000,75.00000000,0.00000000,0.17000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.26086957,0.00000000,8.17000000 +11887,chr22,47486378,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.27000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,6.85000000 +11888,chr22,47491990,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,1.23000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.58000000 +11889,chr22,47496910,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,0.00000000,1.17000000,0.00000000,,0.30263158,76.00000000,3.36283186,0.00000000,0.00000000,5.92000000 +11890,chr22,47498982,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-0.64000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.72000000 +11891,chr22,47499597,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,-0.69000000,0.00000000,,0.12857143,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +11892,chr22,47511955,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,0.00000000,0.34000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,6.43000000 +11893,chr22,47516431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.30000000 +11894,chr22,47537441,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.01408451,0.00000000,6.63000000 +11895,chr22,47543848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,98.00000000,0.00000000,0.66000000,0.00000000,,0.27160494,82.00000000,3.62831858,0.00000000,0.00000000,5.68000000 +11896,chr22,47543932,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.05000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.43000000 +11897,chr22,47544679,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-1.88000000,0.00000000,,0.17857143,58.00000000,2.56637168,0.03448276,0.00000000,6.43000000 +11898,chr22,47545159,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,1.22000000,0.00000000,,0.25757576,68.00000000,3.00884956,0.01470588,0.00000000,3.02000000 +11899,chr22,47546863,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,0.00000000,-0.43000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.09803922,0.00000000,2.87000000 +11900,chr22,47548520,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.97000000,0.00000000,,0.17567568,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +11901,chr22,47548999,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,-0.07000000,0.00000000,,0.12820513,79.00000000,3.49557522,0.01265823,0.00000000,5.72000000 +11902,chr22,47549212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.81000000,0.00000000,,0.15853659,82.00000000,3.62831858,0.00000000,0.00000000,5.86000000 +11903,chr22,47549310,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-1.60000000,0.00000000,,0.22535211,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +11904,chr22,47549903,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.56000000,0.00000000,,0.20224719,91.00000000,4.02654867,0.02197802,0.00000000,5.82000000 +11905,chr22,47550047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.10000000,0.00000000,,0.17582418,92.00000000,4.07079646,0.00000000,0.00000000,6.22000000 +11906,chr22,47552839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,69.00000000,0.00000000,0.49000000,0.00000000,,0.14102564,81.00000000,3.58407080,0.02469136,0.00000000,5.52000000 +11907,chr22,47557099,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,-0.05000000,0.00000000,,0.16867470,83.00000000,3.67256637,0.00000000,0.00000000,6.69000000 +11908,chr22,47571012,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.00000000,0.00000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,6.96000000 +11909,chr22,47571944,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.46000000,0.00000000,,0.21250000,81.00000000,3.58407080,0.01234568,0.00000000,6.02000000 +11910,chr22,47580784,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-2.23000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,8.73000000 +11911,chr22,47581820,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,79.00000000,0.00000000,0.22000000,0.00000000,,0.25252525,99.00000000,4.38053097,0.00000000,0.00000000,5.91000000 +11912,chr22,47590616,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,55.50000000,12.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,0.00000000,-0.15000000,0.00000000,,0.23076923,41.00000000,1.81415929,0.04878049,0.00000000,2.78000000 +11913,chr22,47602694,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.56000000,0.00000000,,0.15957447,94.00000000,4.15929204,0.00000000,0.00000000,5.40000000 +11914,chr22,47603022,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,83.00000000,0.00000000,1.48000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.02000000 +11915,chr22,47603563,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-0.97000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.06000000 +11916,chr22,47603579,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.31000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +11917,chr22,47603581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,-1.11000000,0.00000000,,0.20547945,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +11918,chr22,47605084,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.54000000,0.00000000,,0.19354839,95.00000000,4.20353982,0.01052632,0.00000000,6.52000000 +11919,chr22,47606707,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.03000000,0.00000000,,0.21917808,74.00000000,3.27433628,0.01351351,0.00000000,7.09000000 +11920,chr22,47612460,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.29000000,0.00000000,,0.22413793,60.00000000,2.65486726,0.01666667,0.00000000,6.41000000 +11921,chr22,47625237,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.24193548,62.00000000,2.74336283,0.00000000,0.00000000,6.43000000 +11922,chr22,47634739,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,74.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,71.00000000,3.14159292,0.02816901,0.00000000,6.17000000 +11923,chr22,47636440,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,-0.91000000,0.00000000,,0.40000000,63.00000000,2.78761062,0.03174603,0.00000000,7.81000000 +11924,chr22,47637584,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.18000000,0.00000000,,0.49230769,65.00000000,2.87610619,0.00000000,0.00000000,4.24000000 +11925,chr22,47640764,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,95.00000000,0.00000000,-2.30000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,8.89000000 +11926,chr22,47642264,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,37.00000000,0.00000000,-0.91000000,0.00000000,,0.53333333,61.00000000,2.69911504,0.01639344,0.00000000,4.02000000 +11927,chr22,47646186,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,108.00000000,0.00000000,-0.84000000,0.00000000,,0.38157895,76.00000000,3.36283186,0.00000000,0.00000000,15.05000000 +11928,chr22,47646807,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.02000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,6.28000000 +11929,chr22,47650140,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.66000000,0.00000000,,0.35897436,79.00000000,3.49557522,0.01265823,0.00000000,7.95000000 +11930,chr22,47652183,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,56.00000000,0.00000000,-0.96000000,0.00000000,,0.46590909,91.00000000,4.02654867,0.02197802,0.00000000,4.34000000 +11931,chr22,47653871,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,1.13000000,0.00000000,,0.40277778,73.00000000,3.23008850,0.00000000,0.00000000,8.05000000 +11932,chr22,47655699,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,54.00000000,0.00000000,-0.09000000,0.00000000,,0.42253521,73.00000000,3.23008850,0.01369863,0.00000000,4.31000000 +11933,chr22,47659256,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.35135135,75.00000000,3.31858407,0.01333333,0.00000000,8.22000000 +11934,chr22,47666835,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-0.42000000,0.00000000,,0.41891892,74.00000000,3.27433628,0.00000000,0.00000000,4.63000000 +11935,chr22,47672579,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,48.00000000,0.00000000,-0.42000000,0.00000000,,0.45161290,63.00000000,2.78761062,0.00000000,0.00000000,4.22000000 +11936,chr22,47674595,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.01000000,0.00000000,,0.36231884,72.00000000,3.18584071,0.04166667,0.00000000,7.96000000 +11937,chr22,47677028,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,53.00000000,0.00000000,-0.22000000,0.00000000,,0.40845070,75.00000000,3.31858407,0.05333333,0.00000000,4.53000000 +11938,chr22,47677045,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,48.00000000,0.00000000,0.06000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.04054054,0.00000000,4.75000000 +11939,chr22,47678111,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,22.00000000,0.97345133,0.00000000,0.00000000,3.00000000,0.00000000,-0.23000000,0.00000000,,0.44117647,69.00000000,3.05309735,0.01449275,0.00000000,3.00000000 +11940,chr22,47689131,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,58.58000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.42000000,0.00000000,,0.43421053,77.00000000,3.40707965,0.01298701,0.00000000,8.58000000 +11941,chr22,47698931,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.62000000,0.00000000,,0.19318182,89.00000000,3.93805310,0.01123596,0.00000000,6.65000000 +11942,chr22,47699240,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-1.32000000,0.00000000,,0.40740741,82.00000000,3.62831858,0.01219512,0.00000000,9.08000000 +11943,chr22,47699561,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.17000000,0.00000000,,0.61971831,72.00000000,3.18584071,0.01388889,0.00000000,7.77000000 +11944,chr22,47705689,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,54.00000000,0.00000000,0.08000000,0.00000000,,0.39682540,64.00000000,2.83185841,0.01562500,0.00000000,4.62000000 +11945,chr22,47707010,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,0.00000000,1.68000000,0.00000000,,0.43529412,86.00000000,3.80530973,0.01162791,0.00000000,8.75000000 +11946,chr22,47711305,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,1.15000000,0.00000000,,0.36486486,75.00000000,3.31858407,0.01333333,0.00000000,8.03000000 +11947,chr22,47712570,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,1.11000000,0.00000000,,0.37974684,82.00000000,3.62831858,0.01219512,0.00000000,4.17000000 +11948,chr22,47714510,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,77.00000000,0.00000000,-1.40000000,0.00000000,,0.44155844,79.00000000,3.49557522,0.02531646,0.00000000,8.35000000 +11949,chr22,47715996,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,0.08000000,0.00000000,,0.51612903,63.00000000,2.78761062,0.01587302,0.00000000,4.42000000 +11950,chr22,47717463,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.51000000,0.00000000,,0.35211268,73.00000000,3.23008850,0.02739726,0.00000000,8.35000000 +11951,chr22,47718071,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.75000000,0.00000000,,0.48351648,92.00000000,4.07079646,0.01086957,0.00000000,8.43000000 +11952,chr22,47720217,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,31.00000000,0.00000000,-1.49000000,0.00000000,,0.41071429,61.00000000,2.69911504,0.08196721,0.00000000,3.85000000 +11953,chr22,47723674,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,0.00000000,-2.24000000,0.00000000,,0.26250000,81.00000000,3.58407080,0.01234568,0.00000000,7.06000000 +11954,chr22,47726228,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.57000000,0.00000000,,0.44444444,83.00000000,3.67256637,0.02409639,0.00000000,8.33000000 +11955,chr22,47728261,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,26.00000000,0.00000000,1.36000000,0.00000000,,0.38888889,81.00000000,3.58407080,0.09876543,0.00000000,3.40000000 +11956,chr22,47731547,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.35000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,8.41000000 +11957,chr22,47734964,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.21000000,0.00000000,,0.29850746,67.00000000,2.96460177,0.00000000,0.00000000,6.76000000 +11958,chr22,47738618,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,-0.04000000,0.00000000,,0.42307692,81.00000000,3.58407080,0.03703704,0.00000000,8.33000000 +11959,chr22,47740273,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,0.21000000,0.00000000,,0.38961039,79.00000000,3.49557522,0.02531646,0.00000000,8.15000000 +11960,chr22,47748128,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.18000000,0.00000000,,0.49090909,56.00000000,2.47787611,0.01785714,0.00000000,8.39000000 +11961,chr22,47748164,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.90000000,0.00000000,,0.50980392,52.00000000,2.30088496,0.01923077,0.00000000,4.68000000 +11962,chr22,47749095,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,51.00000000,0.00000000,0.60000000,0.00000000,,0.36507937,65.00000000,2.87610619,0.01538462,0.00000000,4.36000000 +11963,chr22,47752509,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.67000000,1.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,46.00000000,0.00000000,0.05000000,0.00000000,,0.47540984,63.00000000,2.78761062,0.03174603,0.00000000,4.14000000 +11964,chr22,47758265,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-0.84000000,0.00000000,,0.53947368,77.00000000,3.40707965,0.01298701,0.00000000,6.18000000 +11965,chr22,47766709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-1.24000000,0.00000000,,0.25974026,80.00000000,3.53982301,0.02500000,0.00000000,6.36000000 +11966,chr22,47768458,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,70.00000000,0.00000000,0.90000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,5.76000000 +11967,chr22,47778105,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-1.58000000,0.00000000,,0.45000000,61.00000000,2.69911504,0.01639344,0.00000000,7.60000000 +11968,chr22,47796883,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,0.00000000,-0.36000000,0.00000000,,0.43373494,86.00000000,3.80530973,0.02325581,0.00000000,8.20000000 +11969,chr22,47799946,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,-0.40000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,6.06000000 +11970,chr22,47799965,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.77000000,0.00000000,,0.26582278,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +11971,chr22,47806806,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,-1.55000000,0.00000000,,0.21666667,62.00000000,2.74336283,0.03225806,0.00000000,5.89000000 +11972,chr22,47809818,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,58.70000000,4.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,0.00000000,0.06000000,0.00000000,,0.55319149,50.00000000,2.21238938,0.06000000,0.00000000,4.07000000 +11973,chr22,47810696,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.16000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.00000000,0.00000000,7.43000000 +11974,chr22,47810750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.63000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.86000000 +11975,chr22,47812147,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,-0.50000000,0.00000000,,0.22222222,72.00000000,3.18584071,0.00000000,0.00000000,6.72000000 +11976,chr22,47814436,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,0.00000000,-0.39000000,0.00000000,,0.20731707,84.00000000,3.71681416,0.01190476,0.00000000,6.48000000 +11977,chr22,47814678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,0.00000000,1.86000000,0.00000000,,0.17910448,71.00000000,3.14159292,0.04225352,0.00000000,5.57000000 +11978,chr22,47814720,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,66.00000000,0.00000000,-1.76000000,0.00000000,,0.12903226,67.00000000,2.96460177,0.07462687,0.00000000,5.32000000 +11979,chr22,47821049,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.63000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.38000000 +11980,chr22,47824188,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-1.04000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +11981,chr22,47833029,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.43000000,0.00000000,,0.19047619,85.00000000,3.76106195,0.01176471,0.00000000,6.58000000 +11982,chr22,47838893,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +11983,chr22,47842070,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,0.35000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.01204819,0.00000000,6.10000000 +11984,chr22,47842687,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,-0.76000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.40000000 +11985,chr22,47842910,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,-2.58000000,0.00000000,,0.27272727,60.00000000,2.65486726,0.06666667,0.00000000,6.23000000 +11986,chr22,47843733,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,-1.91000000,0.00000000,,0.20312500,65.00000000,2.87610619,0.01538462,0.00000000,6.57000000 +11987,chr22,47844331,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,74.00000000,0.00000000,-0.74000000,0.00000000,,0.18518519,84.00000000,3.71681416,0.03571429,0.00000000,5.91000000 +11988,chr22,47844831,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,89.00000000,0.00000000,-0.81000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +11989,chr22,47845949,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.32000000,0.00000000,,0.17441860,86.00000000,3.80530973,0.00000000,0.00000000,6.19000000 +11990,chr22,47846062,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,-1.06000000,0.00000000,,0.15789474,76.00000000,3.36283186,0.00000000,0.00000000,6.09000000 +11991,chr22,47846890,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.63000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,6.28000000 +11992,chr22,47847604,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23750000,81.00000000,3.58407080,0.01234568,0.00000000,6.22000000 +11993,chr22,47847639,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,0.08000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +11994,chr22,47847689,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.11000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.34000000 +11995,chr22,47848117,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,0.95000000,0.00000000,,0.21518987,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +11996,chr22,47848593,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,-0.60000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.59000000 +11997,chr22,47849021,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,87.00000000,0.00000000,-1.82000000,0.00000000,,0.25352113,73.00000000,3.23008850,0.02739726,0.00000000,5.79000000 +11998,chr22,47849701,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.50000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,6.20000000 +11999,chr22,47852148,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.22727273,91.00000000,4.02654867,0.02197802,0.00000000,6.64000000 +12000,chr22,47852971,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,0.55000000,0.00000000,,0.18055556,72.00000000,3.18584071,0.00000000,0.00000000,6.38000000 +12001,chr22,47853833,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,1.05000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +12002,chr22,47854132,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.47000000,0.00000000,,0.26470588,69.00000000,3.05309735,0.01449275,0.00000000,6.34000000 +12003,chr22,47854777,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,91.00000000,0.00000000,-2.55000000,0.00000000,,0.33766234,78.00000000,3.45132743,0.01282051,0.00000000,8.67000000 +12004,chr22,47854832,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,1.66000000,0.00000000,,0.36000000,78.00000000,3.45132743,0.02564103,0.00000000,8.23000000 +12005,chr22,47855875,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,49.00000000,0.00000000,0.96000000,0.00000000,,0.30000000,68.00000000,3.00884956,0.07352941,0.00000000,4.43000000 +12006,chr22,47855960,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,1.09000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,5.62000000 +12007,chr22,47856124,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-1.36000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12008,chr22,47857697,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.12000000,0.00000000,,0.25714286,74.00000000,3.27433628,0.05405405,0.00000000,6.37000000 +12009,chr22,47857951,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.25316456,80.00000000,3.53982301,0.01250000,0.00000000,6.89000000 +12010,chr22,47857988,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,80.00000000,0.00000000,-1.53000000,0.00000000,,0.31034483,87.00000000,3.84955752,0.00000000,0.00000000,6.61000000 +12011,chr22,47858065,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,2.00000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.19000000 +12012,chr22,47858247,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.71000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12013,chr22,47858410,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.12000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,6.60000000 +12014,chr22,47858829,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,0.30000000,0.00000000,,0.20000000,78.00000000,3.45132743,0.03846154,0.00000000,6.13000000 +12015,chr22,47859190,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.41000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.02352941,0.00000000,5.90000000 +12016,chr22,47859591,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,1.72000000,0.00000000,,0.15555556,94.00000000,4.15929204,0.03191489,0.00000000,5.05000000 +12017,chr22,47859620,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,0.79000000,0.00000000,,0.13095238,85.00000000,3.76106195,0.01176471,0.00000000,4.90000000 +12018,chr22,47860113,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.59000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.32000000 +12019,chr22,47860309,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,0.18000000,0.00000000,,0.15053763,93.00000000,4.11504425,0.00000000,0.00000000,5.44000000 +12020,chr22,47860405,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-0.25000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.03529412,0.00000000,5.35000000 +12021,chr22,47860511,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.18000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +12022,chr22,47860858,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,58.00000000,0.00000000,-0.38000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,3.76000000 +12023,chr22,47860946,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,84.00000000,0.00000000,1.58000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,5.83000000 +12024,chr22,47861547,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.45000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +12025,chr22,47862190,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,1.12000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.41000000 +12026,chr22,47862840,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,0.63000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.61000000 +12027,chr22,47866395,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,-1.21000000,0.00000000,,0.16161616,101.00000000,4.46902655,0.01980198,0.00000000,5.42000000 +12028,chr22,47867769,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.57000000,0.00000000,,0.20253165,79.00000000,3.49557522,0.00000000,0.00000000,7.09000000 +12029,chr22,47868073,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,66.00000000,0.00000000,0.21000000,0.00000000,,0.13157895,77.00000000,3.40707965,0.01298701,0.00000000,5.10000000 +12030,chr22,47869041,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.36000000,0.00000000,,0.25000000,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +12031,chr22,47869625,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,-0.41000000,0.00000000,,0.30136986,74.00000000,3.27433628,0.01351351,0.00000000,6.61000000 +12032,chr22,47871451,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,0.53000000,0.00000000,,0.18478261,95.00000000,4.20353982,0.02105263,0.00000000,6.30000000 +12033,chr22,47875176,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.76000000,0.00000000,,0.16666667,91.00000000,4.02654867,0.01098901,0.00000000,5.23000000 +12034,chr22,47916953,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.32000000,0.00000000,,0.28205128,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +12035,chr22,47928472,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.14000000,0.00000000,,0.24691358,84.00000000,3.71681416,0.03571429,0.00000000,6.67000000 +12036,chr22,47956691,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,4.70000000 +12037,chr22,47957573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.51000000,0.00000000,,0.20000000,95.00000000,4.20353982,0.00000000,0.00000000,6.70000000 +12038,chr22,47981754,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,98.00000000,0.00000000,-1.07000000,0.00000000,,0.29411765,85.00000000,3.76106195,0.00000000,0.00000000,6.59000000 +12039,chr22,47995365,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.60000000,0.00000000,,0.34375000,68.00000000,3.00884956,0.05882353,0.00000000,7.98000000 +12040,chr22,47998371,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.36000000,0.00000000,,0.23809524,64.00000000,2.83185841,0.00000000,0.00000000,6.76000000 +12041,chr22,47998997,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,1.71000000,0.00000000,,0.23750000,83.00000000,3.67256637,0.03614458,0.00000000,6.19000000 +12042,chr22,48004480,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,1.02000000,0.00000000,,0.28260870,94.00000000,4.15929204,0.00000000,0.00000000,6.70000000 +12043,chr22,48011793,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.63000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,5.84000000 +12044,chr22,48013311,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,83.00000000,0.00000000,0.27000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,6.43000000 +12045,chr22,48014027,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,86.00000000,0.00000000,0.61000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.00000000 +12046,chr22,48014226,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,0.00000000,0.61000000,0.00000000,,0.36923077,70.00000000,3.09734513,0.05714286,0.00000000,4.60000000 +12047,chr22,48014902,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,0.00000000,-1.37000000,0.00000000,,0.14285714,63.00000000,2.78761062,0.00000000,0.00000000,6.12000000 +12048,chr22,48017685,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.34000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.95000000 +12049,chr22,48021192,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.16949153,60.00000000,2.65486726,0.00000000,0.00000000,6.83000000 +12050,chr22,48023882,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,0.00000000,0.83000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.48000000 +12051,chr22,48024732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,0.00000000,0.00000000,0.00000000,,0.15094340,55.00000000,2.43362832,0.03636364,0.00000000,4.87000000 +12052,chr22,48027688,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,0.08000000,0.00000000,,0.14000000,103.00000000,4.55752212,0.02912621,0.00000000,5.41000000 +12053,chr22,48029150,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-1.01000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,7.01000000 +12054,chr22,48042672,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.20512821,80.00000000,3.53982301,0.01250000,0.00000000,6.60000000 +12055,chr22,48056600,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,-0.04000000,0.00000000,,0.26436782,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +12056,chr22,48073553,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,1.08000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.02500000,0.00000000,6.16000000 +12057,chr22,48081307,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,0.00000000,1.00000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.17000000 +12058,chr22,48081667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,72.00000000,0.00000000,0.18000000,0.00000000,,0.22857143,75.00000000,3.31858407,0.06666667,0.00000000,5.74000000 +12059,chr22,48081823,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,0.43000000,0.00000000,,0.14864865,76.00000000,3.36283186,0.02631579,0.00000000,5.54000000 +12060,chr22,48081889,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,0.00000000,0.00000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.11000000 +12061,chr22,48082173,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,-0.25000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.76000000 +12062,chr22,48082341,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.01000000,0.00000000,,0.26829268,85.00000000,3.76106195,0.02352941,0.00000000,6.64000000 +12063,chr22,48082573,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.56000000 +12064,chr22,48083568,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.34000000 +12065,chr22,48085463,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.27000000,0.00000000,,0.22413793,60.00000000,2.65486726,0.03333333,0.00000000,6.24000000 +12066,chr22,48088944,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,-0.71000000,0.00000000,,0.25510204,98.00000000,4.33628319,0.00000000,0.00000000,6.72000000 +12067,chr22,48095136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.21052632,58.00000000,2.56637168,0.01724138,0.00000000,6.76000000 +12068,chr22,48099782,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.35000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12069,chr22,48100886,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,0.00000000,0.47000000,0.00000000,,0.15068493,75.00000000,3.31858407,0.02666667,0.00000000,5.37000000 +12070,chr22,48103825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,0.00000000,0.37000000,0.00000000,,0.26250000,82.00000000,3.62831858,0.02439024,0.00000000,5.42000000 +12071,chr22,48104570,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.19000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,6.41000000 +12072,chr22,48104712,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,-1.55000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.45000000 +12073,chr22,48106271,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.16666667,79.00000000,3.49557522,0.01265823,0.00000000,5.63000000 +12074,chr22,48106335,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,97.00000000,0.00000000,-0.74000000,0.00000000,,0.30120482,83.00000000,3.67256637,0.00000000,0.00000000,6.36000000 +12075,chr22,48107700,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.37000000,0.00000000,,0.24705882,89.00000000,3.93805310,0.04494382,0.00000000,6.28000000 +12076,chr22,48108160,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,-1.60000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.80000000 +12077,chr22,48110895,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-1.35000000,0.00000000,,0.17708333,97.00000000,4.29203540,0.00000000,0.00000000,6.63000000 +12078,chr22,48111075,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.08823529,0.00000000,71.00000000,0.00000000,0.69000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,5.55000000 +12079,chr22,48111430,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,0.00000000,-0.10000000,0.00000000,,0.13131313,99.00000000,4.38053097,0.00000000,0.00000000,5.45000000 +12080,chr22,48111435,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.32000000,0.00000000,,0.13684211,95.00000000,4.20353982,0.00000000,0.00000000,5.20000000 +12081,chr22,48111498,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,33.00000000,1.46017699,0.06060606,0.00000000,69.00000000,0.00000000,-1.66000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,5.81000000 +12082,chr22,48111829,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,63.00000000,0.00000000,-1.45000000,0.00000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,5.05000000 +12083,chr22,48113275,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.36000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.41000000 +12084,chr22,48113376,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,0.00000000,0.08000000,0.00000000,,0.14492754,69.00000000,3.05309735,0.00000000,0.00000000,4.23000000 +12085,chr22,48115136,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,0.82000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.05000000 +12086,chr22,48115217,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,80.00000000,0.00000000,-0.67000000,0.00000000,,0.20000000,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12087,chr22,48118397,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,0.19000000,0.00000000,,0.16666667,78.00000000,3.45132743,0.00000000,0.00000000,5.73000000 +12088,chr22,48118479,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.28000000,0.00000000,,0.18309859,74.00000000,3.27433628,0.04054054,0.00000000,5.96000000 +12089,chr22,48119901,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,43.00000000,0.00000000,-0.28000000,0.00000000,,0.32894737,76.00000000,3.36283186,0.00000000,0.00000000,4.31000000 +12090,chr22,48121065,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.24000000,0.00000000,,0.22033898,59.00000000,2.61061947,0.00000000,0.00000000,6.45000000 +12091,chr22,48121818,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,2.81000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.27000000 +12092,chr22,48127950,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,0.36000000,0.00000000,,0.24175824,93.00000000,4.11504425,0.01075269,0.00000000,6.61000000 +12093,chr22,48129965,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,0.47000000,0.00000000,,0.11392405,85.00000000,3.76106195,0.04705882,0.00000000,5.33000000 +12094,chr22,48146851,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,1.06000000,0.00000000,,0.19178082,74.00000000,3.27433628,0.01351351,0.00000000,6.89000000 +12095,chr22,48149151,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,0.96000000,0.00000000,,0.18333333,60.00000000,2.65486726,0.00000000,0.00000000,6.48000000 +12096,chr22,48149692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,56.68000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.59000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,5.73000000 +12097,chr22,48155917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,88.00000000,0.00000000,-1.17000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.58000000 +12098,chr22,48157892,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.56000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +12099,chr22,48188800,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.54000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.69000000 +12100,chr22,48189107,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-1.24000000,0.00000000,,0.33333333,79.00000000,3.49557522,0.01265823,0.00000000,8.25000000 +12101,chr22,48190184,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,0.54000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12102,chr22,48191993,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,81.00000000,0.00000000,-1.29000000,0.00000000,,0.22727273,90.00000000,3.98230088,0.02222222,0.00000000,6.75000000 +12103,chr22,48192148,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.23863636,90.00000000,3.98230088,0.02222222,0.00000000,6.07000000 +12104,chr22,48194757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.08000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.40000000 +12105,chr22,48194758,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,0.00000000,-0.08000000,0.00000000,,0.22727273,88.00000000,3.89380531,0.00000000,0.00000000,6.43000000 +12106,chr22,48195433,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.03000000,0.00000000,,0.54098361,62.00000000,2.74336283,0.00000000,0.00000000,4.05000000 +12107,chr22,48195880,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,47.00000000,0.00000000,-0.62000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,4.74000000 +12108,chr22,48198497,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.03000000,0.00000000,,0.40789474,79.00000000,3.49557522,0.03797468,0.00000000,8.17000000 +12109,chr22,48200216,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,0.00000000,-1.42000000,0.00000000,,0.38461538,65.00000000,2.87610619,0.00000000,0.00000000,8.93000000 +12110,chr22,48207816,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,0.93000000,0.00000000,,0.10389610,78.00000000,3.45132743,0.00000000,0.00000000,4.98000000 +12111,chr22,48207901,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.01282051,0.00000000,5.84000000 +12112,chr22,48209595,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,62.00000000,0.00000000,0.59000000,0.00000000,,0.48000000,76.00000000,3.36283186,0.01315789,0.00000000,8.06000000 +12113,chr22,48210596,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.24637681,71.00000000,3.14159292,0.01408451,0.00000000,6.35000000 +12114,chr22,48211087,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,99.00000000,0.00000000,-1.69000000,0.00000000,,0.33846154,67.00000000,2.96460177,0.02985075,0.00000000,7.97000000 +12115,chr22,48213882,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,88.00000000,0.00000000,-0.59000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,8.69000000 +12116,chr22,48222630,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.95000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.87000000 +12117,chr22,48225175,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,46.00000000,0.00000000,-1.45000000,0.00000000,,0.48437500,65.00000000,2.87610619,0.01538462,0.00000000,4.19000000 +12118,chr22,48229784,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,90.00000000,0.00000000,-0.05000000,0.00000000,,0.27368421,99.00000000,4.38053097,0.04040404,0.00000000,6.31000000 +12119,chr22,48232935,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.66000000,0.00000000,,0.24390244,83.00000000,3.67256637,0.01204819,0.00000000,6.61000000 +12120,chr22,48238270,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,0.00000000,-1.13000000,0.00000000,,0.38356164,73.00000000,3.23008850,0.00000000,0.00000000,8.12000000 +12121,chr22,48254018,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.80000000,0.00000000,,0.18918919,77.00000000,3.40707965,0.02597403,0.00000000,6.25000000 +12122,chr22,48255229,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,1.38000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.15000000 +12123,chr22,48257394,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.31000000,0.00000000,,0.18055556,76.00000000,3.36283186,0.03947368,0.00000000,6.05000000 +12124,chr22,48257510,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.31000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.62000000 +12125,chr22,48262681,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,98.00000000,0.00000000,-1.45000000,0.00000000,,0.33802817,74.00000000,3.27433628,0.04054054,0.00000000,7.92000000 +12126,chr22,48263144,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,61.00000000,0.00000000,0.32000000,0.00000000,,0.45000000,81.00000000,3.58407080,0.01234568,0.00000000,7.88000000 +12127,chr22,48263453,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,9.00000000,0.00000000,-0.82000000,0.00000000,,0.45454545,67.00000000,2.96460177,0.01492537,0.00000000,3.03000000 +12128,chr22,48265297,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,7.02000000 +12129,chr22,48265987,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-0.08000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.68000000 +12130,chr22,48266726,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,-0.98000000,0.00000000,,0.26582278,80.00000000,3.53982301,0.01250000,0.00000000,6.45000000 +12131,chr22,48276204,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,2.00000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.15000000 +12132,chr22,48290813,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,57.95000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,-0.99000000,0.00000000,,0.30864198,81.00000000,3.58407080,0.00000000,0.00000000,6.67000000 +12133,chr22,48292312,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,0.87000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.58000000 +12134,chr22,48292333,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,67.00000000,0.00000000,-0.16000000,0.00000000,,0.16883117,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +12135,chr22,48292617,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.25373134,69.00000000,3.05309735,0.02898551,0.00000000,5.76000000 +12136,chr22,48292690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.04000000,0.00000000,,0.26153846,67.00000000,2.96460177,0.02985075,0.00000000,6.00000000 +12137,chr22,48292691,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,-1.43000000,0.00000000,,0.26562500,67.00000000,2.96460177,0.02985075,0.00000000,6.00000000 +12138,chr22,48293314,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,0.06000000,0.00000000,,0.28125000,65.00000000,2.87610619,0.00000000,0.00000000,6.30000000 +12139,chr22,48293527,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.37000000,0.00000000,,0.24137931,89.00000000,3.93805310,0.02247191,0.00000000,6.54000000 +12140,chr22,48293631,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.54000000,0.00000000,,0.21126761,74.00000000,3.27433628,0.04054054,0.00000000,6.40000000 +12141,chr22,48293638,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.75000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.11000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.75000000 +12142,chr22,48293649,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.20000000,0.00000000,,0.19354839,65.00000000,2.87610619,0.04615385,0.00000000,6.63000000 +12143,chr22,48294375,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.39000000,0.00000000,,0.21212121,67.00000000,2.96460177,0.01492537,0.00000000,6.21000000 +12144,chr22,48294636,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,-0.14000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,6.48000000 +12145,chr22,48294968,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.46000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.07000000 +12146,chr22,48295341,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.01388889,0.00000000,5.89000000 +12147,chr22,48296844,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.28000000,0.00000000,,0.26153846,65.00000000,2.87610619,0.00000000,0.00000000,7.17000000 +12148,chr22,48297923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,0.00000000,-0.61000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.01351351,0.00000000,6.55000000 +12149,chr22,48298141,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-0.58000000,0.00000000,,0.35211268,72.00000000,3.18584071,0.01388889,0.00000000,8.28000000 +12150,chr22,48299054,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,-1.55000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,6.09000000 +12151,chr22,48300885,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,67.00000000,0.00000000,0.07000000,0.00000000,,0.14563107,103.00000000,4.55752212,0.00000000,0.00000000,5.19000000 +12152,chr22,48303009,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,78.00000000,0.00000000,0.18000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.03333333,0.00000000,5.68000000 +12153,chr22,48303805,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.18333333,63.00000000,2.78761062,0.04761905,0.00000000,6.56000000 +12154,chr22,48304000,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.07894737,0.00000000,74.00000000,0.00000000,-0.56000000,0.00000000,,0.18965517,59.00000000,2.61061947,0.01694915,0.00000000,6.14000000 +12155,chr22,48304411,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,1.02000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.49000000 +12156,chr22,48305211,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.26000000,0.00000000,,0.20967742,66.00000000,2.92035398,0.06060606,0.00000000,6.29000000 +12157,chr22,48305218,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.10000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,6.36000000 +12158,chr22,48313142,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.68000000,0.00000000,,0.29577465,74.00000000,3.27433628,0.02702703,0.00000000,6.42000000 +12159,chr22,48314668,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.08000000,0.00000000,,0.25316456,79.00000000,3.49557522,0.00000000,0.00000000,5.92000000 +12160,chr22,48315247,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.24731183,93.00000000,4.11504425,0.00000000,0.00000000,6.51000000 +12161,chr22,48316663,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.18000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,6.39000000 +12162,chr22,48317739,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.08000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.01351351,0.00000000,6.93000000 +12163,chr22,48318067,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.28000000,0.00000000,,0.18840580,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +12164,chr22,48318300,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,0.00000000,0.26000000,0.00000000,,0.14666667,81.00000000,3.58407080,0.04938272,0.00000000,5.30000000 +12165,chr22,48319013,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.55000000,0.00000000,,0.20895522,70.00000000,3.09734513,0.04285714,0.00000000,5.79000000 +12166,chr22,48320446,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,54.80000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.39000000,0.00000000,,0.19148936,52.00000000,2.30088496,0.09615385,0.00000000,5.88000000 +12167,chr22,48320470,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.33000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,-0.58000000,0.00000000,,0.24193548,68.00000000,3.00884956,0.07352941,0.00000000,6.32000000 +12168,chr22,48320541,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.93000000,0.00000000,,0.22368421,77.00000000,3.40707965,0.01298701,0.00000000,6.81000000 +12169,chr22,48322909,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,94.00000000,0.00000000,1.09000000,0.00000000,,0.26373626,92.00000000,4.07079646,0.01086957,0.00000000,6.37000000 +12170,chr22,48323646,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,0.00000000,-0.02000000,0.00000000,,0.18390805,87.00000000,3.84955752,0.00000000,0.00000000,6.14000000 +12171,chr22,48323758,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.20000000,66.00000000,2.92035398,0.01515152,0.00000000,6.74000000 +12172,chr22,48324380,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,77.00000000,0.00000000,1.70000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.99000000 +12173,chr22,48324577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-0.61000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.34000000 +12174,chr22,48324774,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.26000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.94000000 +12175,chr22,48325515,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.21000000,0.00000000,,0.18181818,80.00000000,3.53982301,0.02500000,0.00000000,6.11000000 +12176,chr22,48327848,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.64000000 +12177,chr22,48329723,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-0.18000000,0.00000000,,0.15151515,67.00000000,2.96460177,0.01492537,0.00000000,5.58000000 +12178,chr22,48330705,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.43000000,0.00000000,,0.19696970,67.00000000,2.96460177,0.01492537,0.00000000,6.46000000 +12179,chr22,48331862,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,3.48000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.28000000 +12180,chr22,48332261,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,57.42000000,9.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,37.00000000,0.00000000,1.47000000,0.00000000,,0.34328358,68.00000000,3.00884956,0.01470588,0.00000000,3.40000000 +12181,chr22,48332470,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.51000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.20454545,90.00000000,3.98230088,0.02222222,0.00000000,6.08000000 +12182,chr22,48333376,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,0.10000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.32000000 +12183,chr22,48333738,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,76.00000000,0.00000000,0.93000000,0.00000000,,0.23529412,87.00000000,3.84955752,0.02298851,0.00000000,5.68000000 +12184,chr22,48334257,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,0.00000000,0.83000000,0.00000000,,0.18918919,76.00000000,3.36283186,0.00000000,0.00000000,6.01000000 +12185,chr22,48334299,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.17000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.91000000 +12186,chr22,48335101,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,6.04000000 +12187,chr22,48340184,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-0.43000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.02597403,0.00000000,5.59000000 +12188,chr22,48340310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,0.12000000,0.00000000,,0.13333333,78.00000000,3.45132743,0.03846154,0.00000000,5.22000000 +12189,chr22,48341827,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.29000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.73000000,0.00000000,,0.19047619,63.00000000,2.78761062,0.00000000,0.00000000,6.68000000 +12190,chr22,48342321,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.72000000,0.00000000,,0.16483516,91.00000000,4.02654867,0.00000000,0.00000000,5.92000000 +12191,chr22,48342651,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.31000000,0.00000000,,0.22105263,99.00000000,4.38053097,0.02020202,0.00000000,6.64000000 +12192,chr22,48343300,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.00000000,0.00000000,6.65000000 +12193,chr22,48343635,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,79.00000000,0.00000000,-1.16000000,0.00000000,,0.22826087,93.00000000,4.11504425,0.01075269,0.00000000,6.39000000 +12194,chr22,48343644,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,60.00000000,0.00000000,-0.03000000,0.00000000,,0.51807229,84.00000000,3.71681416,0.01190476,0.00000000,7.72000000 +12195,chr22,48343830,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.44285714,71.00000000,3.14159292,0.01408451,0.00000000,8.34000000 +12196,chr22,48344918,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.66000000,0.00000000,,0.22807018,57.00000000,2.52212389,0.00000000,0.00000000,6.43000000 +12197,chr22,48345199,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,0.45000000,0.00000000,,0.28846154,57.00000000,2.52212389,0.05263158,0.00000000,6.72000000 +12198,chr22,48345200,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,55.00000000,0.00000000,0.05000000,0.00000000,,0.37037037,57.00000000,2.52212389,0.05263158,0.00000000,4.70000000 +12199,chr22,48345498,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.59000000,0.00000000,,0.24561404,59.00000000,2.61061947,0.03389831,0.00000000,6.51000000 +12200,chr22,48345537,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-1.06000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.97000000 +12201,chr22,48345573,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,0.44000000,0.00000000,,0.17142857,74.00000000,3.27433628,0.05405405,0.00000000,5.91000000 +12202,chr22,48346844,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,70.00000000,0.00000000,0.18000000,0.00000000,,0.16438356,79.00000000,3.49557522,0.01265823,0.00000000,6.65000000 +12203,chr22,48346979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-2.09000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.60000000 +12204,chr22,48347437,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.21917808,76.00000000,3.36283186,0.03947368,0.00000000,5.80000000 +12205,chr22,48348532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.47000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,4.24000000 +12206,chr22,48348598,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,62.00000000,0.00000000,1.80000000,0.00000000,,0.08860759,81.00000000,3.58407080,0.00000000,0.00000000,4.83000000 +12207,chr22,48348705,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-1.09000000,0.00000000,,0.10256410,79.00000000,3.49557522,0.01265823,0.00000000,5.14000000 +12208,chr22,48348799,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,1.07000000,0.00000000,,0.11864407,61.00000000,2.69911504,0.03278689,0.00000000,4.85000000 +12209,chr22,48348884,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.49000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,62.00000000,0.00000000,-0.83000000,0.00000000,,0.13461538,56.00000000,2.47787611,0.05357143,0.00000000,5.00000000 +12210,chr22,48349488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.00000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.05000000 +12211,chr22,48349529,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.68000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.01639344,0.00000000,6.03000000 +12212,chr22,48349670,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.94000000,0.00000000,,0.21428571,73.00000000,3.23008850,0.04109589,0.00000000,6.54000000 +12213,chr22,48349863,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,1.95000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.31000000 +12214,chr22,48349989,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.90000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.90000000 +12215,chr22,48350994,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.45000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.02222222,0.00000000,5.57000000 +12216,chr22,48351572,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,80.00000000,0.00000000,-0.02000000,0.00000000,,0.21875000,68.00000000,3.00884956,0.05882353,0.00000000,5.99000000 +12217,chr22,48352107,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,-0.69000000,0.00000000,,0.15942029,72.00000000,3.18584071,0.04166667,0.00000000,5.51000000 +12218,chr22,48352723,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,0.00000000,-0.35000000,0.00000000,,0.12500000,80.00000000,3.53982301,0.00000000,0.00000000,5.26000000 +12219,chr22,48353370,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,0.00000000,0.42000000,0.00000000,,0.16666667,55.00000000,2.43362832,0.01818182,0.00000000,5.13000000 +12220,chr22,48354244,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,1.01000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,6.59000000 +12221,chr22,48355234,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,0.00000000,0.62000000,0.00000000,,0.18750000,65.00000000,2.87610619,0.01538462,0.00000000,6.18000000 +12222,chr22,48358373,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,55.82000000,14.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,0.68000000,0.00000000,,0.17910448,70.00000000,3.09734513,0.04285714,0.00000000,2.86000000 +12223,chr22,48360055,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,102.00000000,0.00000000,0.59000000,0.00000000,,0.38372093,86.00000000,3.80530973,0.00000000,0.00000000,13.75000000 +12224,chr22,48362269,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.09000000,0.00000000,,0.19277108,85.00000000,3.76106195,0.02352941,0.00000000,6.63000000 +12225,chr22,48362959,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,-1.00000000,0.00000000,,0.17391304,71.00000000,3.14159292,0.01408451,0.00000000,6.43000000 +12226,chr22,48363959,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.00000000,0.00000000,,0.19512195,85.00000000,3.76106195,0.02352941,0.00000000,6.03000000 +12227,chr22,48366697,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,0.00000000,1.33000000,0.00000000,,0.15492958,73.00000000,3.23008850,0.02739726,0.00000000,5.39000000 +12228,chr22,48366814,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,65.00000000,0.00000000,-0.46000000,0.00000000,,0.15853659,87.00000000,3.84955752,0.03448276,0.00000000,5.58000000 +12229,chr22,48367097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,-1.26000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.17000000 +12230,chr22,48369430,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.98000000,0.00000000,,0.22222222,73.00000000,3.23008850,0.01369863,0.00000000,6.41000000 +12231,chr22,48369769,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,55.00000000,0.00000000,0.79000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,2.78000000 +12232,chr22,48370088,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.18840580,70.00000000,3.09734513,0.01428571,0.00000000,6.46000000 +12233,chr22,48370335,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.39000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.63000000 +12234,chr22,48370360,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.63000000 +12235,chr22,48370979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,1.07000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,5.94000000 +12236,chr22,48370980,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,0.70000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.80000000 +12237,chr22,48371012,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,1.12000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.00000000,0.00000000,6.39000000 +12238,chr22,48371335,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.28813559,61.00000000,2.69911504,0.01639344,0.00000000,5.82000000 +12239,chr22,48371377,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.87000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.00000000,0.00000000,5.90000000 +12240,chr22,48372384,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.37000000,0.00000000,,0.23809524,85.00000000,3.76106195,0.01176471,0.00000000,6.69000000 +12241,chr22,48374036,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,0.37000000,0.00000000,,0.14516129,63.00000000,2.78761062,0.01587302,0.00000000,5.22000000 +12242,chr22,48389606,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,0.00000000,-1.71000000,0.00000000,,0.11392405,80.00000000,3.53982301,0.01250000,0.00000000,5.17000000 +12243,chr22,48407438,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.34000000,0.00000000,,0.25352113,72.00000000,3.18584071,0.01388889,0.00000000,6.80000000 +12244,chr22,48407702,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.99000000,0.00000000,,0.19565217,92.00000000,4.07079646,0.00000000,0.00000000,6.76000000 +12245,chr22,48415005,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,-0.60000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.55000000 +12246,chr22,48415713,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,1.48000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,5.98000000 +12247,chr22,48415941,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,0.54000000,0.00000000,,0.08450704,72.00000000,3.18584071,0.01388889,0.00000000,5.28000000 +12248,chr22,48416040,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,67.00000000,0.00000000,-1.07000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.70000000 +12249,chr22,48416062,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.55000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.04225352,0.00000000,5.94000000 +12250,chr22,48416134,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,1.47000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.34000000 +12251,chr22,48416318,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.74000000,0.00000000,,0.14606742,93.00000000,4.11504425,0.03225806,0.00000000,5.33000000 +12252,chr22,48416323,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,0.00000000,-0.54000000,0.00000000,,0.15909091,91.00000000,4.02654867,0.03296703,0.00000000,5.40000000 +12253,chr22,48417836,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.95000000,0.00000000,,0.30985915,73.00000000,3.23008850,0.01369863,0.00000000,7.99000000 +12254,chr22,48421060,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.61000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,5.95000000 +12255,chr22,48422209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.41000000,0.00000000,,0.19672131,64.00000000,2.83185841,0.01562500,0.00000000,6.55000000 +12256,chr22,48423429,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,0.00000000,0.03000000,0.00000000,,0.23076923,78.00000000,3.45132743,0.00000000,0.00000000,5.89000000 +12257,chr22,48423552,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.95000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.50000000 +12258,chr22,48426684,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,0.00000000,1.00000000,0.00000000,,0.26436782,91.00000000,4.02654867,0.03296703,0.00000000,6.27000000 +12259,chr22,48431672,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,-0.60000000,0.00000000,,0.11940299,68.00000000,3.00884956,0.01470588,0.00000000,4.96000000 +12260,chr22,48431879,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.25000000,0.00000000,,0.14285714,57.00000000,2.52212389,0.01754386,0.00000000,4.83000000 +12261,chr22,48432197,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,1.03000000,0.00000000,,0.13559322,61.00000000,2.69911504,0.03278689,0.00000000,5.06000000 +12262,chr22,48432963,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.08000000,0.00000000,,0.23943662,73.00000000,3.23008850,0.02739726,0.00000000,6.36000000 +12263,chr22,48433978,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.42000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.80000000 +12264,chr22,48434404,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-1.93000000,0.00000000,,0.22093023,87.00000000,3.84955752,0.00000000,0.00000000,7.18000000 +12265,chr22,48436282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,-0.77000000,0.00000000,,0.25000000,81.00000000,3.58407080,0.01234568,0.00000000,4.88000000 +12266,chr22,48436403,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,0.35000000,0.00000000,,0.22058824,68.00000000,3.00884956,0.00000000,0.00000000,2.76000000 +12267,chr22,48436981,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-1.33000000,0.00000000,,0.45360825,99.00000000,4.38053097,0.02020202,0.00000000,8.61000000 +12268,chr22,48437092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.21111111,90.00000000,3.98230088,0.00000000,0.00000000,6.72000000 +12269,chr22,48437141,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-0.28000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.00000000,0.00000000,6.87000000 +12270,chr22,48437894,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-0.66000000,0.00000000,,0.26582278,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12271,chr22,48438711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,0.56000000,0.00000000,,0.20895522,67.00000000,2.96460177,0.00000000,0.00000000,5.86000000 +12272,chr22,48439653,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.34000000,0.00000000,,0.22535211,73.00000000,3.23008850,0.02739726,0.00000000,5.87000000 +12273,chr22,48440230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.54000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.00000000,0.00000000,6.45000000 +12274,chr22,48441817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,89.00000000,0.00000000,0.43000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +12275,chr22,48442600,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.24390244,82.00000000,3.62831858,0.00000000,0.00000000,6.39000000 +12276,chr22,48447716,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,93.00000000,0.00000000,1.37000000,0.00000000,,0.29729730,74.00000000,3.27433628,0.00000000,0.00000000,6.42000000 +12277,chr22,48462411,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,0.00000000,0.56000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.02564103,0.00000000,6.28000000 +12278,chr22,48463015,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.03000000,0.00000000,,0.24657534,74.00000000,3.27433628,0.01351351,0.00000000,6.74000000 +12279,chr22,48464180,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.73000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.01408451,0.00000000,5.90000000 +12280,chr22,48464615,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,54.00000000,0.00000000,-1.09000000,0.00000000,,0.47457627,62.00000000,2.74336283,0.03225806,0.00000000,4.37000000 +12281,chr22,48467961,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,33.00000000,0.00000000,0.99000000,0.00000000,,0.29268293,42.00000000,1.85840708,0.00000000,0.00000000,2.91000000 +12282,chr22,48468581,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,79.00000000,0.00000000,0.19000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.43000000 +12283,chr22,48468866,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.32000000,0.00000000,,0.17647059,74.00000000,3.27433628,0.06756757,0.00000000,6.06000000 +12284,chr22,48469284,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.63000000 +12285,chr22,48471219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,0.89000000,0.00000000,,0.27272727,80.00000000,3.53982301,0.03750000,0.00000000,6.15000000 +12286,chr22,48475066,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,1.77000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.02857143,0.01408451,6.37000000 +12287,chr22,48475206,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,0.00000000,0.22000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,5.82000000 +12288,chr22,48475246,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,0.02000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,5.79000000 +12289,chr22,48475332,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,1.24000000,0.00000000,,0.24444444,93.00000000,4.11504425,0.03225806,0.00000000,5.81000000 +12290,chr22,48476369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,0.82000000,0.00000000,,0.24637681,70.00000000,3.09734513,0.01428571,0.00000000,6.10000000 +12291,chr22,48476428,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,0.00000000,-0.49000000,0.00000000,,0.15068493,74.00000000,3.27433628,0.01351351,0.00000000,5.44000000 +12292,chr22,48476839,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,-0.79000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.03030303,0.00000000,6.18000000 +12293,chr22,48477733,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,67.00000000,0.00000000,0.12000000,0.00000000,,0.16666667,90.00000000,3.98230088,0.06666667,0.00000000,5.00000000 +12294,chr22,48479120,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,1.66000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.26000000 +12295,chr22,48480395,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,-0.32000000,0.00000000,,0.20618557,98.00000000,4.33628319,0.01020408,0.00000000,6.61000000 +12296,chr22,48480475,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.42000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12297,chr22,48480477,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.03000000,0.00000000,,0.24358974,80.00000000,3.53982301,0.02500000,0.00000000,6.32000000 +12298,chr22,48480635,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,-0.92000000,0.00000000,,0.21590909,88.00000000,3.89380531,0.00000000,0.00000000,6.72000000 +12299,chr22,48481115,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.31000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.69000000,0.00000000,,0.24285714,71.00000000,3.14159292,0.01408451,0.00000000,6.26000000 +12300,chr22,48481121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.23000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.82000000,0.00000000,,0.25000000,67.00000000,2.96460177,0.02985075,0.00000000,5.68000000 +12301,chr22,48481166,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.07000000,6.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.71000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.45000000 +12302,chr22,48481411,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.78000000,0.00000000,,0.21951220,86.00000000,3.80530973,0.04651163,0.00000000,5.82000000 +12303,chr22,48481804,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,1.36000000,0.00000000,,0.19230769,79.00000000,3.49557522,0.01265823,0.00000000,6.47000000 +12304,chr22,48482251,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,0.73000000,0.00000000,,0.15789474,77.00000000,3.40707965,0.00000000,0.00000000,6.33000000 +12305,chr22,48483299,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,-1.36000000,0.00000000,,0.33333333,87.00000000,3.84955752,0.03448276,0.00000000,8.08000000 +12306,chr22,48483701,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.18446602,103.00000000,4.55752212,0.00000000,0.00000000,6.67000000 +12307,chr22,48483827,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,0.00000000,-0.44000000,0.00000000,,0.37500000,75.00000000,3.31858407,0.04000000,0.00000000,7.07000000 +12308,chr22,48484359,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,0.27000000,0.00000000,,0.15686275,52.00000000,2.30088496,0.01923077,0.00000000,5.46000000 +12309,chr22,48484475,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.00000000,30.00000000,0.00000000,-0.44000000,0.00000000,,0.32142857,34.00000000,1.50442478,0.17647059,0.00000000,3.85000000 +12310,chr22,48485761,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.45000000,0.00000000,,0.23076923,80.00000000,3.53982301,0.02500000,0.00000000,6.33000000 +12311,chr22,48485891,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,90.00000000,0.00000000,0.54000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.00000000,0.00000000,6.94000000 +12312,chr22,48485960,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,0.00000000,-0.09000000,0.00000000,,0.16666667,68.00000000,3.00884956,0.02941176,0.00000000,5.58000000 +12313,chr22,48486489,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,0.00000000,-0.44000000,0.00000000,,0.14666667,80.00000000,3.53982301,0.05000000,0.00000000,4.88000000 +12314,chr22,48486793,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.07000000,0.00000000,,0.16981132,54.00000000,2.38938053,0.01851852,0.00000000,5.91000000 +12315,chr22,48487242,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.73000000,0.00000000,,0.18461538,67.00000000,2.96460177,0.01492537,0.00000000,6.65000000 +12316,chr22,48487501,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,0.00000000,1.13000000,0.00000000,,0.22352941,88.00000000,3.89380531,0.01136364,0.00000000,5.84000000 +12317,chr22,48487664,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.59000000,0.00000000,,0.13888889,75.00000000,3.31858407,0.04000000,0.00000000,5.40000000 +12318,chr22,48487821,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.37000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,4.56000000 +12319,chr22,48488041,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,1.20000000,0.00000000,,0.22641509,59.00000000,2.61061947,0.10169492,0.00000000,5.98000000 +12320,chr22,48488043,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,55.00000000,0.00000000,1.40000000,0.00000000,,0.23076923,59.00000000,2.61061947,0.11864407,0.00000000,2.80000000 +12321,chr22,48488093,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.81000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,68.00000000,0.00000000,1.21000000,0.00000000,,0.20689655,63.00000000,2.78761062,0.07936508,0.00000000,5.55000000 +12322,chr22,48488785,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,-0.04000000,0.00000000,,0.41935484,62.00000000,2.74336283,0.00000000,0.00000000,8.91000000 +12323,chr22,48489240,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,51.00000000,0.00000000,0.24000000,0.00000000,,0.46774194,65.00000000,2.87610619,0.04615385,0.00000000,4.45000000 +12324,chr22,48489907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.02000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.64000000 +12325,chr22,48489977,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,0.73000000,0.00000000,,0.15189873,84.00000000,3.71681416,0.03571429,0.00000000,5.10000000 +12326,chr22,48490604,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.84000000,0.00000000,,0.24137931,62.00000000,2.74336283,0.04838710,0.00000000,6.21000000 +12327,chr22,48492539,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,0.00000000,-0.04000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.30000000 +12328,chr22,48493887,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,1.98000000,0.00000000,,0.17543860,59.00000000,2.61061947,0.03389831,0.00000000,5.89000000 +12329,chr22,48498801,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.58000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +12330,chr22,48498802,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,0.00000000,0.58000000,0.00000000,,0.26315789,78.00000000,3.45132743,0.02564103,0.00000000,6.35000000 +12331,chr22,48499962,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,80.00000000,0.00000000,1.32000000,0.00000000,,0.22222222,54.00000000,2.38938053,0.00000000,0.00000000,5.85000000 +12332,chr22,48501121,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,64.00000000,0.00000000,-1.76000000,0.00000000,,0.16438356,76.00000000,3.36283186,0.03947368,0.00000000,5.08000000 +12333,chr22,48501167,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,78.00000000,0.00000000,-1.23000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,6.39000000 +12334,chr22,48501892,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,0.00000000,-0.40000000,0.00000000,,0.14084507,73.00000000,3.23008850,0.02739726,0.00000000,5.57000000 +12335,chr22,48502039,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,-1.34000000,0.00000000,,0.27835052,98.00000000,4.33628319,0.01020408,0.00000000,6.87000000 +12336,chr22,48502711,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,0.32000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.28000000 +12337,chr22,48503032,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,1.80000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,6.33000000 +12338,chr22,48509199,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,49.00000000,0.00000000,-0.48000000,0.00000000,,0.47619048,65.00000000,2.87610619,0.03076923,0.00000000,4.74000000 +12339,chr22,48510414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-1.28000000,0.00000000,,0.27906977,87.00000000,3.84955752,0.01149425,0.00000000,6.87000000 +12340,chr22,48510646,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.25000000,0.00000000,,0.17910448,69.00000000,3.05309735,0.02898551,0.00000000,5.58000000 +12341,chr22,48511175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.23170732,82.00000000,3.62831858,0.00000000,0.00000000,6.72000000 +12342,chr22,48511943,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,0.04000000,0.00000000,,0.12500000,64.00000000,2.83185841,0.00000000,0.00000000,4.74000000 +12343,chr22,48512607,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,0.32000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,5.72000000 +12344,chr22,48512660,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.92000000,0.00000000,,0.19718310,74.00000000,3.27433628,0.04054054,0.00000000,6.48000000 +12345,chr22,48513157,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,0.24000000,0.00000000,,0.23684211,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +12346,chr22,48513190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,84.00000000,0.00000000,-0.72000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.20000000 +12347,chr22,48513270,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.03000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.61000000 +12348,chr22,48515665,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-1.60000000,0.00000000,,0.15662651,84.00000000,3.71681416,0.01190476,0.00000000,5.84000000 +12349,chr22,48515703,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.36000000,0.00000000,,0.15853659,85.00000000,3.76106195,0.03529412,0.00000000,5.29000000 +12350,chr22,48515790,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,0.65000000,0.00000000,,0.27835052,98.00000000,4.33628319,0.01020408,0.00000000,6.56000000 +12351,chr22,48516016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,5.73000000 +12352,chr22,48517574,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.65000000,0.00000000,,0.24418605,88.00000000,3.89380531,0.01136364,0.00000000,6.69000000 +12353,chr22,48517804,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.18556701,98.00000000,4.33628319,0.01020408,0.00000000,6.47000000 +12354,chr22,48518690,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.37000000,0.00000000,,0.31818182,68.00000000,3.00884956,0.02941176,0.00000000,7.62000000 +12355,chr22,48522012,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.60000000,0.00000000,,0.24719101,89.00000000,3.93805310,0.00000000,0.00000000,6.39000000 +12356,chr22,48523220,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.18823529,86.00000000,3.80530973,0.01162791,0.00000000,6.39000000 +12357,chr22,48523914,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-1.25000000,0.00000000,,0.47272727,57.00000000,2.52212389,0.01754386,0.00000000,8.34000000 +12358,chr22,48523996,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,1.60000000,0.00000000,,0.26506024,86.00000000,3.80530973,0.03488372,0.00000000,5.79000000 +12359,chr22,48524187,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.77000000,0.00000000,,0.23076923,81.00000000,3.58407080,0.02469136,0.00000000,6.27000000 +12360,chr22,48524912,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.75000000,0.00000000,,0.22891566,85.00000000,3.76106195,0.02352941,0.00000000,6.69000000 +12361,chr22,48525853,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.14492754,71.00000000,3.14159292,0.02816901,0.00000000,5.54000000 +12362,chr22,48526013,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.69000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.01639344,0.00000000,6.11000000 +12363,chr22,48527311,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,62.00000000,0.00000000,-1.05000000,0.00000000,,0.15277778,75.00000000,3.31858407,0.01333333,0.00000000,5.37000000 +12364,chr22,48527652,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,-0.96000000,0.00000000,,0.17283951,85.00000000,3.76106195,0.04705882,0.00000000,5.97000000 +12365,chr22,48527659,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,1.29000000,0.00000000,,0.23376623,82.00000000,3.62831858,0.06097561,0.00000000,6.42000000 +12366,chr22,48527963,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-0.29000000,0.00000000,,0.16666667,84.00000000,3.71681416,0.00000000,0.00000000,5.97000000 +12367,chr22,48527987,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-0.58000000,0.00000000,,0.25806452,93.00000000,4.11504425,0.00000000,0.00000000,6.72000000 +12368,chr22,48528821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,59.00000000,0.00000000,0.79000000,0.00000000,,0.25316456,81.00000000,3.58407080,0.02469136,0.00000000,4.23000000 +12369,chr22,48530817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,0.00000000,-0.15000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.25000000 +12370,chr22,48531317,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,63.00000000,0.00000000,-0.01000000,0.00000000,,0.18055556,74.00000000,3.27433628,0.02702703,0.00000000,5.46000000 +12371,chr22,48531323,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,78.00000000,0.00000000,-0.39000000,0.00000000,,0.20833333,76.00000000,3.36283186,0.02631579,0.00000000,6.05000000 +12372,chr22,48531442,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,0.00000000,0.41000000,0.00000000,,0.13235294,68.00000000,3.00884956,0.00000000,0.00000000,4.96000000 +12373,chr22,48532555,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.21686747,84.00000000,3.71681416,0.01190476,0.00000000,6.03000000 +12374,chr22,48533312,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,-1.24000000,0.00000000,,0.48863636,89.00000000,3.93805310,0.01123596,0.00000000,8.59000000 +12375,chr22,48533359,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,0.00000000,-0.78000000,0.00000000,,0.42253521,74.00000000,3.27433628,0.02702703,0.00000000,8.20000000 +12376,chr22,48533414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,93.00000000,0.00000000,-0.77000000,0.00000000,,0.27272727,69.00000000,3.05309735,0.04347826,0.00000000,5.34000000 +12377,chr22,48533457,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,0.25000000,0.00000000,,0.20967742,62.00000000,2.74336283,0.00000000,0.00000000,6.39000000 +12378,chr22,48534279,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,0.00000000,2.09000000,0.00000000,,0.24096386,85.00000000,3.76106195,0.02352941,0.00000000,5.87000000 +12379,chr22,48534593,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,0.00000000,0.48000000,0.00000000,,0.10869565,92.00000000,4.07079646,0.00000000,0.00000000,4.84000000 +12380,chr22,48539265,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.32000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,4.82000000 +12381,chr22,48541105,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,66.00000000,0.00000000,-0.24000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.85000000 +12382,chr22,48545987,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.36000000,0.00000000,,0.25806452,62.00000000,2.74336283,0.00000000,0.00000000,6.45000000 +12383,chr22,48550369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,0.05000000,0.00000000,,0.15584416,78.00000000,3.45132743,0.00000000,0.00000000,5.52000000 +12384,chr22,48556649,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,97.00000000,0.00000000,1.54000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,5.26000000 +12385,chr22,48564597,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,68.00000000,0.00000000,0.64000000,0.00000000,,0.41176471,86.00000000,3.80530973,0.01162791,0.00000000,8.31000000 +12386,chr22,48564752,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.88000000,0.00000000,,0.51250000,82.00000000,3.62831858,0.02439024,0.00000000,8.32000000 +12387,chr22,48564934,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,63.00000000,0.00000000,-0.84000000,0.00000000,,0.49333333,75.00000000,3.31858407,0.00000000,0.00000000,8.00000000 +12388,chr22,48565567,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-0.77000000,0.00000000,,0.41772152,82.00000000,3.62831858,0.03658537,0.00000000,7.74000000 +12389,chr22,48566067,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,44.00000000,0.00000000,0.03000000,0.00000000,,0.50793651,65.00000000,2.87610619,0.00000000,0.00000000,3.87000000 +12390,chr22,48566757,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,38.00000000,0.00000000,1.76000000,0.00000000,,0.41379310,58.00000000,2.56637168,0.00000000,0.00000000,4.02000000 +12391,chr22,48566905,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.72000000,0.00000000,,0.43076923,66.00000000,2.92035398,0.00000000,0.00000000,8.32000000 +12392,chr22,48567620,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,-0.36000000,0.00000000,,0.55384615,65.00000000,2.87610619,0.00000000,0.00000000,8.04000000 +12393,chr22,48569735,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,37.00000000,0.00000000,0.03000000,0.00000000,,0.46753247,80.00000000,3.53982301,0.03750000,0.00000000,3.78000000 +12394,chr22,48569914,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,40.00000000,1.76991150,0.07500000,0.00000000,43.00000000,0.00000000,-0.94000000,0.00000000,,0.50000000,72.00000000,3.18584071,0.05555556,0.00000000,3.92000000 +12395,chr22,48570531,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.46753247,77.00000000,3.40707965,0.00000000,0.00000000,8.06000000 +12396,chr22,48571377,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.18181818,0.00000000,29.00000000,0.00000000,-0.50000000,0.00000000,,0.46296296,60.00000000,2.65486726,0.10000000,0.00000000,3.71000000 +12397,chr22,48571849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.78000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,7.20000000 +12398,chr22,48572258,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,-1.08000000,0.00000000,,0.50684932,73.00000000,3.23008850,0.00000000,0.00000000,8.82000000 +12399,chr22,48572886,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,82.00000000,0.00000000,0.08000000,0.00000000,,0.37777778,92.00000000,4.07079646,0.02173913,0.00000000,7.87000000 +12400,chr22,48572978,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.66000000,0.00000000,,0.34328358,67.00000000,2.96460177,0.00000000,0.00000000,8.37000000 +12401,chr22,48579884,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,78.00000000,0.00000000,-0.49000000,0.00000000,,0.19444444,72.00000000,3.18584071,0.00000000,0.00000000,6.35000000 +12402,chr22,48593561,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,0.00000000,1.31000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.20000000 +12403,chr22,48607282,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,56.40000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,-1.45000000,0.00000000,,0.50819672,65.00000000,2.87610619,0.04615385,0.00000000,4.29000000 +12404,chr22,48607517,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,55.11000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,0.39000000,0.00000000,,0.43396226,58.00000000,2.56637168,0.08620690,0.00000000,7.43000000 +12405,chr22,48608124,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,64.00000000,0.00000000,0.16000000,0.00000000,,0.38461538,66.00000000,2.92035398,0.01515152,0.00000000,7.67000000 +12406,chr22,48608692,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,0.00000000,-1.06000000,0.00000000,,0.44285714,72.00000000,3.18584071,0.02777778,0.00000000,6.17000000 +12407,chr22,48608889,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,0.66000000,0.00000000,,0.43076923,65.00000000,2.87610619,0.00000000,0.00000000,8.40000000 +12408,chr22,48610645,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.62000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,52.00000000,0.00000000,-2.23000000,0.00000000,,0.41176471,51.00000000,2.25663717,0.00000000,0.00000000,4.54000000 +12409,chr22,48610711,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,0.00000000,0.46000000,0.00000000,,0.39743590,79.00000000,3.49557522,0.00000000,0.00000000,8.03000000 +12410,chr22,48611172,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,-0.34000000,0.00000000,,0.37878788,66.00000000,2.92035398,0.00000000,0.00000000,8.91000000 +12411,chr22,48623060,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.83000000,0.00000000,,0.25862069,60.00000000,2.65486726,0.03333333,0.00000000,5.83000000 +12412,chr22,48639184,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,77.00000000,0.00000000,-1.91000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,6.57000000 +12413,chr22,48651603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-1.09000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,5.97000000 +12414,chr22,48652673,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,79.00000000,0.00000000,-1.78000000,0.00000000,,0.22388060,69.00000000,3.05309735,0.00000000,0.00000000,6.23000000 +12415,chr22,48653086,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.20000000,0.00000000,,0.17105263,78.00000000,3.45132743,0.01282051,0.00000000,5.77000000 +12416,chr22,48653192,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-0.75000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.76000000 +12417,chr22,48653535,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.13000000,0.00000000,,0.22222222,67.00000000,2.96460177,0.04477612,0.00000000,6.67000000 +12418,chr22,48653581,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,-0.13000000,0.00000000,,0.19444444,76.00000000,3.36283186,0.03947368,0.00000000,6.66000000 +12419,chr22,48653755,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,-1.40000000,0.00000000,,0.23437500,65.00000000,2.87610619,0.01538462,0.00000000,6.15000000 +12420,chr22,48654008,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.91000000,0.00000000,,0.25000000,90.00000000,3.98230088,0.02222222,0.00000000,5.82000000 +12421,chr22,48654220,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.56000000,0.00000000,,0.19696970,66.00000000,2.92035398,0.00000000,0.00000000,6.67000000 +12422,chr22,48654475,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,-0.07000000,0.00000000,,0.20547945,75.00000000,3.31858407,0.02666667,0.00000000,6.00000000 +12423,chr22,48654560,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,1.47000000,0.00000000,,0.12500000,68.00000000,3.00884956,0.05882353,0.00000000,5.17000000 +12424,chr22,48654613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,-1.91000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,5.78000000 +12425,chr22,48654623,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,-1.59000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,5.87000000 +12426,chr22,48654636,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,-2.04000000,0.00000000,,0.17187500,65.00000000,2.87610619,0.00000000,0.00000000,6.48000000 +12427,chr22,48654732,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,78.00000000,0.00000000,1.28000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,6.03000000 +12428,chr22,48655115,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,2.54000000,0.00000000,,0.21686747,85.00000000,3.76106195,0.02352941,0.00000000,6.31000000 +12429,chr22,48655373,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,78.00000000,0.00000000,-1.07000000,0.00000000,,0.19753086,84.00000000,3.71681416,0.02380952,0.00000000,6.36000000 +12430,chr22,48655438,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,0.00000000,1.65000000,0.00000000,,0.19178082,78.00000000,3.45132743,0.06410256,0.00000000,4.58000000 +12431,chr22,48655445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.74000000,0.00000000,,0.15492958,76.00000000,3.36283186,0.06578947,0.00000000,4.30000000 +12432,chr22,48655543,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.31000000,0.00000000,,0.21176471,85.00000000,3.76106195,0.00000000,0.00000000,7.09000000 +12433,chr22,48655806,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,58.00000000,0.00000000,-0.95000000,0.00000000,,0.15714286,74.00000000,3.27433628,0.05405405,0.00000000,4.40000000 +12434,chr22,48656061,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,0.00000000,-2.02000000,0.00000000,,0.26666667,61.00000000,2.69911504,0.01639344,0.00000000,2.99000000 +12435,chr22,48656093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.16000000,0.00000000,,0.27777778,56.00000000,2.47787611,0.03571429,0.00000000,6.63000000 +12436,chr22,48656106,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,64.00000000,0.00000000,-0.39000000,0.00000000,,0.31481481,58.00000000,2.56637168,0.05172414,0.00000000,7.78000000 +12437,chr22,48656139,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,0.00000000,1.09000000,0.00000000,,0.32812500,64.00000000,2.83185841,0.00000000,0.00000000,7.95000000 +12438,chr22,48656922,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,45.00000000,0.00000000,1.00000000,0.00000000,,0.35294118,52.00000000,2.30088496,0.01923077,0.00000000,4.04000000 +12439,chr22,48657414,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,91.00000000,0.00000000,0.37000000,0.00000000,,0.28235294,89.00000000,3.93805310,0.02247191,0.00000000,6.28000000 +12440,chr22,48657527,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.07000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.15000000 +12441,chr22,48657624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.65000000,0.00000000,,0.15277778,73.00000000,3.23008850,0.01369863,0.00000000,5.51000000 +12442,chr22,48657717,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,75.00000000,0.00000000,-1.36000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.53000000 +12443,chr22,48657743,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-0.50000000,0.00000000,,0.20289855,72.00000000,3.18584071,0.04166667,0.00000000,5.95000000 +12444,chr22,48658690,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,1.74000000,0.00000000,,0.21505376,94.00000000,4.15929204,0.01063830,0.00000000,6.78000000 +12445,chr22,48659355,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.44000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.01388889,0.00000000,4.94000000 +12446,chr22,48659518,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,0.00000000,-0.20000000,0.00000000,,0.31506849,74.00000000,3.27433628,0.00000000,0.00000000,8.59000000 +12447,chr22,48660226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,0.23000000,0.00000000,,0.16000000,76.00000000,3.36283186,0.01315789,0.00000000,5.64000000 +12448,chr22,48660264,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,67.00000000,0.00000000,-0.19000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.87000000 +12449,chr22,48660364,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.19000000,0.00000000,,0.09876543,81.00000000,3.58407080,0.00000000,0.00000000,5.02000000 +12450,chr22,48660853,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.13333333,0.00000000,65.00000000,0.00000000,1.82000000,0.00000000,,0.15277778,77.00000000,3.40707965,0.05194805,0.00000000,4.95000000 +12451,chr22,48660924,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,0.00000000,-0.74000000,0.00000000,,0.15662651,88.00000000,3.89380531,0.05681818,0.00000000,5.36000000 +12452,chr22,48660949,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.17500000,84.00000000,3.71681416,0.04761905,0.00000000,5.65000000 +12453,chr22,48661013,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,0.00000000,1.17000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.51000000 +12454,chr22,48661137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.03658537,0.00000000,4.88000000 +12455,chr22,48661292,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,73.00000000,0.00000000,0.65000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.41000000 +12456,chr22,48661404,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,0.00000000,-1.45000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.79000000 +12457,chr22,48661467,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.06000000,0.00000000,,0.20000000,76.00000000,3.36283186,0.01315789,0.00000000,6.39000000 +12458,chr22,48661676,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.55000000,0.00000000,,0.22972973,75.00000000,3.31858407,0.01333333,0.00000000,6.60000000 +12459,chr22,48661679,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.70000000 +12460,chr22,48662346,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.89000000,0.00000000,,0.25373134,68.00000000,3.00884956,0.01470588,0.00000000,6.33000000 +12461,chr22,48662350,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,80.00000000,0.00000000,-1.60000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.21000000 +12462,chr22,48662421,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,66.00000000,0.00000000,-0.81000000,0.00000000,,0.28048780,84.00000000,3.71681416,0.02380952,0.00000000,6.29000000 +12463,chr22,48662466,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,0.00000000,0.31000000,0.00000000,,0.16438356,73.00000000,3.23008850,0.00000000,0.00000000,5.08000000 +12464,chr22,48662700,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.18000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.77000000 +12465,chr22,48663108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.88000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.61000000 +12466,chr22,48663270,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.06000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,6.23000000 +12467,chr22,48663368,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,60.00000000,0.00000000,1.17000000,0.00000000,,0.11940299,68.00000000,3.00884956,0.01470588,0.00000000,5.57000000 +12468,chr22,48663425,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-0.79000000,0.00000000,,0.17647059,85.00000000,3.76106195,0.00000000,0.00000000,6.87000000 +12469,chr22,48663499,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.18681319,93.00000000,4.11504425,0.02150538,0.00000000,6.23000000 +12470,chr22,48663744,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,2.01000000,0.00000000,,0.13953488,87.00000000,3.84955752,0.01149425,0.00000000,5.30000000 +12471,chr22,48664112,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,0.13000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.38000000 +12472,chr22,48664157,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,70.00000000,0.00000000,0.56000000,0.00000000,,0.15714286,70.00000000,3.09734513,0.00000000,0.00000000,5.44000000 +12473,chr22,48664991,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.34000000,0.00000000,,0.22857143,71.00000000,3.14159292,0.01408451,0.00000000,5.96000000 +12474,chr22,48665164,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,69.00000000,0.00000000,0.15000000,0.00000000,,0.13513514,77.00000000,3.40707965,0.03896104,0.00000000,4.98000000 +12475,chr22,48665175,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.44000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +12476,chr22,48665182,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,75.00000000,0.00000000,-0.08000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,5.96000000 +12477,chr22,48665301,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-0.36000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.71000000 +12478,chr22,48666432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.84000000,0.00000000,,0.13636364,68.00000000,3.00884956,0.02941176,0.00000000,5.39000000 +12479,chr22,48667370,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,0.00000000,1.00000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.02631579,0.00000000,6.32000000 +12480,chr22,48667531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,0.00000000,-1.68000000,0.00000000,,0.30357143,56.00000000,2.47787611,0.00000000,0.00000000,6.47000000 +12481,chr22,48667700,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.13000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,73.00000000,0.00000000,-0.05000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.38000000 +12482,chr22,48667752,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,55.57000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.15000000,0.00000000,,0.17460317,64.00000000,2.83185841,0.01562500,0.00000000,5.91000000 +12483,chr22,48668714,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,55.39000000,7.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,59.00000000,0.00000000,0.02000000,0.00000000,,0.10526316,69.00000000,3.05309735,0.14492754,0.00000000,4.11000000 +12484,chr22,48668807,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.87000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.27000000,0.00000000,,0.17647059,68.00000000,3.00884956,0.00000000,0.00000000,6.08000000 +12485,chr22,48669038,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,0.00000000,1.36000000,0.00000000,,0.31147541,63.00000000,2.78761062,0.03174603,0.00000000,5.84000000 +12486,chr22,48669090,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,0.00000000,0.67000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.00000000,0.00000000,5.95000000 +12487,chr22,48669212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.89000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.01388889,0.00000000,6.48000000 +12488,chr22,48669304,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,-0.58000000,0.00000000,,0.26760563,72.00000000,3.18584071,0.01388889,0.00000000,6.59000000 +12489,chr22,48669369,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,88.00000000,0.00000000,1.47000000,0.00000000,,0.26966292,89.00000000,3.93805310,0.00000000,0.00000000,6.56000000 +12490,chr22,48669422,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,2.35000000,0.00000000,,0.20930233,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +12491,chr22,48669444,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,1.40000000,0.00000000,,0.22368421,78.00000000,3.45132743,0.02564103,0.00000000,6.29000000 +12492,chr22,48669502,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-1.61000000,0.00000000,,0.22580645,62.00000000,2.74336283,0.00000000,0.00000000,6.90000000 +12493,chr22,48669512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.36000000,0.00000000,,0.22033898,60.00000000,2.65486726,0.01666667,0.00000000,6.93000000 +12494,chr22,48669574,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,2.02000000,0.00000000,,0.25000000,57.00000000,2.52212389,0.01754386,0.00000000,2.99000000 +12495,chr22,48669851,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,1.98000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.00000000,0.00000000,5.44000000 +12496,chr22,48671087,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-2.03000000,0.00000000,,0.26153846,68.00000000,3.00884956,0.04411765,0.00000000,5.30000000 +12497,chr22,48671241,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,1.05000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.25000000 +12498,chr22,48671713,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.84000000,0.66000000,,0.08450704,73.00000000,3.23008850,0.02739726,0.00000000,3.90000000 +12499,chr22,48671965,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,70.00000000,0.00000000,0.28000000,0.00000000,,0.15730337,91.00000000,4.02654867,0.01098901,0.00000000,5.30000000 +12500,chr22,48672127,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.17000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.62000000 +12501,chr22,48673108,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,0.64000000,0.00000000,,0.23076923,68.00000000,3.00884956,0.04411765,0.00000000,6.17000000 +12502,chr22,48673123,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.40000000,0.00000000,,0.23437500,68.00000000,3.00884956,0.05882353,0.00000000,5.86000000 +12503,chr22,48673516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,76.00000000,0.00000000,-0.13000000,0.00000000,,0.20754717,54.00000000,2.38938053,0.01851852,0.00000000,6.33000000 +12504,chr22,48673638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.05000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,6.17000000 +12505,chr22,48690669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,81.00000000,0.00000000,-1.03000000,0.00000000,,0.19753086,85.00000000,3.76106195,0.04705882,0.00000000,5.86000000 +12506,chr22,48691385,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,85.00000000,0.00000000,1.77000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,5.87000000 +12507,chr22,48692308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.71000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.01176471,0.00000000,6.50000000 +12508,chr22,48692945,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,72.00000000,0.00000000,-0.31000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.02222222,0.00000000,5.93000000 +12509,chr22,48692948,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,-0.09000000,0.00000000,,0.21839080,89.00000000,3.93805310,0.02247191,0.00000000,6.10000000 +12510,chr22,48694118,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.21250000,80.00000000,3.53982301,0.00000000,0.00000000,5.91000000 +12511,chr22,48694187,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.17000000,0.00000000,,0.22368421,76.00000000,3.36283186,0.00000000,0.00000000,6.42000000 +12512,chr22,48694496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.10000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.53000000 +12513,chr22,48695418,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.83000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.76000000 +12514,chr22,48696291,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,1.17000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.01369863,0.00000000,6.07000000 +12515,chr22,48696429,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.76000000,0.00000000,,0.30158730,64.00000000,2.83185841,0.01562500,0.00000000,4.92000000 +12516,chr22,48731371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,0.38000000,0.00000000,,0.25714286,71.00000000,3.14159292,0.00000000,0.00000000,6.76000000 +12517,chr22,48782949,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,0.51000000,0.00000000,,0.43478261,69.00000000,3.05309735,0.00000000,0.00000000,7.92000000 +12518,chr22,48783734,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,-0.53000000,0.00000000,,0.41558442,79.00000000,3.49557522,0.01265823,0.00000000,8.37000000 +12519,chr22,48784448,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,50.00000000,0.00000000,0.89000000,0.00000000,,0.38571429,71.00000000,3.14159292,0.01408451,0.00000000,4.35000000 +12520,chr22,48785268,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.06000000,0.00000000,,0.36666667,61.00000000,2.69911504,0.01639344,0.00000000,8.27000000 +12521,chr22,48785275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.32000000,0.00000000,,0.38095238,65.00000000,2.87610619,0.01538462,0.00000000,8.20000000 +12522,chr22,48789249,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,33.00000000,0.00000000,0.19000000,0.00000000,,0.42592593,55.00000000,2.43362832,0.01818182,0.00000000,3.78000000 +12523,chr22,48790941,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,0.66000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.58000000 +12524,chr22,48792098,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.80000000,0.00000000,,0.39189189,76.00000000,3.36283186,0.02631579,0.00000000,8.08000000 +12525,chr22,48792549,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.06000000,0.00000000,,0.17241379,87.00000000,3.84955752,0.00000000,0.00000000,6.45000000 +12526,chr22,48792552,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,51.00000000,0.00000000,-0.16000000,0.00000000,,0.43023256,86.00000000,3.80530973,0.00000000,0.00000000,4.65000000 +12527,chr22,48792770,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,83.00000000,0.00000000,1.01000000,0.00000000,,0.55555556,84.00000000,3.71681416,0.03571429,0.00000000,8.01000000 +12528,chr22,48793421,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,42.00000000,0.00000000,0.12000000,0.00000000,,0.48611111,72.00000000,3.18584071,0.00000000,0.00000000,4.07000000 +12529,chr22,48794110,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.85000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,28.00000000,0.00000000,-1.03000000,0.00000000,,0.52000000,54.00000000,2.38938053,0.07407407,0.00000000,3.82000000 +12530,chr22,48794282,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,91.00000000,0.00000000,-0.19000000,0.00000000,,0.38461538,70.00000000,3.09734513,0.07142857,0.00000000,8.50000000 +12531,chr22,48794285,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,87.00000000,0.00000000,-0.02000000,0.00000000,,0.36923077,70.00000000,3.09734513,0.05714286,0.00000000,8.50000000 +12532,chr22,48795748,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,56.00000000,0.00000000,0.37000000,0.00000000,,0.40298507,68.00000000,3.00884956,0.01470588,0.00000000,4.43000000 +12533,chr22,48795942,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,1.75000000,0.00000000,,0.39473684,77.00000000,3.40707965,0.01298701,0.00000000,8.45000000 +12534,chr22,48796218,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,112.00000000,0.00000000,0.97000000,0.00000000,,0.37096774,65.00000000,2.87610619,0.04615385,0.00000000,12.15000000 +12535,chr22,48796351,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.48717949,79.00000000,3.49557522,0.01265823,0.00000000,4.20000000 +12536,chr22,48796429,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-0.81000000,0.00000000,,0.48101266,80.00000000,3.53982301,0.00000000,0.00000000,8.76000000 +12537,chr22,48796603,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.01000000,0.00000000,,0.35135135,74.00000000,3.27433628,0.00000000,0.00000000,8.57000000 +12538,chr22,48796652,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-0.88000000,0.00000000,,0.43055556,76.00000000,3.36283186,0.05263158,0.00000000,8.43000000 +12539,chr22,48796944,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-1.05000000,0.00000000,,0.32051282,79.00000000,3.49557522,0.01265823,0.00000000,7.91000000 +12540,chr22,48797143,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.03000000,0.00000000,,0.42528736,88.00000000,3.89380531,0.00000000,0.00000000,8.54000000 +12541,chr22,48797239,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,0.00000000,-1.29000000,0.00000000,,0.36363636,67.00000000,2.96460177,0.01492537,0.00000000,8.29000000 +12542,chr22,48797252,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,55.00000000,0.00000000,0.15000000,0.00000000,,0.38709677,64.00000000,2.83185841,0.01562500,0.00000000,4.35000000 +12543,chr22,48797447,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,-0.28000000,0.00000000,,0.48387097,73.00000000,3.23008850,0.15068493,0.00000000,8.16000000 +12544,chr22,48797585,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.12000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.09090909,0.00000000,5.72000000 +12545,chr22,48797607,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,1.32000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.23000000 +12546,chr22,48799848,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.05000000,0.00000000,,0.19298246,57.00000000,2.52212389,0.00000000,0.00000000,2.93000000 +12547,chr22,48800494,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,61.00000000,0.00000000,2.10000000,0.00000000,,0.15853659,84.00000000,3.71681416,0.02380952,0.00000000,4.65000000 +12548,chr22,48800587,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,2.13000000,0.00000000,,0.31168831,77.00000000,3.40707965,0.00000000,0.00000000,6.74000000 +12549,chr22,48800813,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,71.00000000,0.00000000,1.00000000,0.00000000,,0.40506329,80.00000000,3.53982301,0.01250000,0.00000000,8.33000000 +12550,chr22,48802888,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.67000000,0.00000000,,0.29687500,67.00000000,2.96460177,0.04477612,0.00000000,6.39000000 +12551,chr22,48803238,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.89000000,0.00000000,,0.20481928,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +12552,chr22,48803620,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,59.00000000,0.00000000,-0.31000000,0.00000000,,0.16923077,71.00000000,3.14159292,0.02816901,0.00000000,4.06000000 +12553,chr22,48803629,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,72.00000000,0.00000000,-1.49000000,0.00000000,,0.32307692,70.00000000,3.09734513,0.04285714,0.00000000,8.20000000 +12554,chr22,48803741,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.53000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.01538462,0.00000000,5.79000000 +12555,chr22,48804403,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,102.00000000,0.00000000,0.34000000,0.00000000,,0.34210526,78.00000000,3.45132743,0.02564103,0.00000000,13.31000000 +12556,chr22,48804595,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,72.00000000,0.00000000,-0.95000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.02500000,0.00000000,5.83000000 +12557,chr22,48804799,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,79.00000000,0.00000000,0.02000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.00000000,0.00000000,5.92000000 +12558,chr22,48805640,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.26984127,65.00000000,2.87610619,0.01538462,0.00000000,6.31000000 +12559,chr22,48805892,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,100.00000000,0.00000000,-0.87000000,0.00000000,,0.31395349,86.00000000,3.80530973,0.00000000,0.00000000,7.33000000 +12560,chr22,48806632,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,77.00000000,0.00000000,-1.29000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +12561,chr22,48807542,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.07000000,0.00000000,,0.20338983,59.00000000,2.61061947,0.00000000,0.00000000,5.53000000 +12562,chr22,48807863,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.40000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.01123596,0.00000000,6.67000000 +12563,chr22,48807867,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.71000000,0.00000000,,0.24719101,90.00000000,3.98230088,0.01111111,0.00000000,6.67000000 +12564,chr22,48807918,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,1.07000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.02409639,0.00000000,5.56000000 +12565,chr22,48807949,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,73.00000000,0.00000000,1.94000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,5.71000000 +12566,chr22,48808793,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,1.09000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,5.85000000 +12567,chr22,48808801,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.97000000,0.00000000,,0.17647059,72.00000000,3.18584071,0.05555556,0.00000000,5.51000000 +12568,chr22,48809054,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +12569,chr22,48809862,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-1.85000000,0.00000000,,0.17721519,81.00000000,3.58407080,0.02469136,0.00000000,5.80000000 +12570,chr22,48811517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.15000000,2.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,0.00000000,1.55000000,0.00000000,,0.21276596,48.00000000,2.12389381,0.02083333,0.00000000,3.10000000 +12571,chr22,48811521,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.18000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,1.72000000,0.00000000,,0.20408163,50.00000000,2.21238938,0.02000000,0.00000000,5.06000000 +12572,chr22,48812114,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.50000000,0.00000000,,0.21794872,80.00000000,3.53982301,0.00000000,0.00000000,6.72000000 +12573,chr22,48812320,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.50000000,0.00000000,,0.20779221,78.00000000,3.45132743,0.01282051,0.00000000,6.77000000 +12574,chr22,48813491,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.10843373,85.00000000,3.76106195,0.02352941,0.00000000,4.66000000 +12575,chr22,48814284,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,69.00000000,0.00000000,0.53000000,0.00000000,,0.16049383,83.00000000,3.67256637,0.02409639,0.00000000,4.98000000 +12576,chr22,48814311,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,69.00000000,0.00000000,0.96000000,0.00000000,,0.13157895,79.00000000,3.49557522,0.03797468,0.00000000,4.89000000 +12577,chr22,48814313,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.20512821,81.00000000,3.58407080,0.03703704,0.00000000,6.12000000 +12578,chr22,48815246,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.24000000,0.00000000,,0.23611111,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +12579,chr22,48819075,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,-0.10000000,0.00000000,,0.25675676,74.00000000,3.27433628,0.00000000,0.00000000,6.72000000 +12580,chr22,48819370,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.24000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,7.04000000 +12581,chr22,48820078,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,0.00000000,-0.93000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,4.63000000 +12582,chr22,48821329,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.23636364,56.00000000,2.47787611,0.01785714,0.00000000,5.98000000 +12583,chr22,48821441,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,0.00000000,0.25000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.01428571,0.00000000,5.90000000 +12584,chr22,48822300,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,0.00000000,0.24000000,0.00000000,,0.23728814,61.00000000,2.69911504,0.03278689,0.00000000,5.99000000 +12585,chr22,48822310,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,0.00000000,0.36000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.00000000,5.66000000 +12586,chr22,48822579,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,-1.20000000,0.00000000,,0.25714286,70.00000000,3.09734513,0.00000000,0.00000000,6.43000000 +12587,chr22,48822812,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,1.53000000,0.00000000,,0.21538462,67.00000000,2.96460177,0.02985075,0.00000000,6.32000000 +12588,chr22,48823011,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,92.00000000,0.00000000,1.90000000,0.00000000,,0.29850746,67.00000000,2.96460177,0.00000000,0.00000000,6.37000000 +12589,chr22,48823366,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,84.00000000,0.00000000,0.64000000,0.00000000,,0.25806452,63.00000000,2.78761062,0.01587302,0.00000000,6.52000000 +12590,chr22,48823778,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,88.00000000,0.00000000,-1.88000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.04040404,0.00000000,4.91000000 +12591,chr22,48823779,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,49.00000000,2.16814159,0.04081633,0.00000000,84.00000000,0.00000000,-1.53000000,0.00000000,,0.20000000,99.00000000,4.38053097,0.04040404,0.00000000,4.93000000 +12592,chr22,48823999,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-0.70000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,6.56000000 +12593,chr22,48824016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.43000000,0.00000000,,0.22784810,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12594,chr22,48824098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,1.76000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.61000000 +12595,chr22,48824177,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,0.00000000,-1.36000000,0.00000000,,0.13043478,71.00000000,3.14159292,0.01408451,0.00000000,5.65000000 +12596,chr22,48824371,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.99000000,0.00000000,,0.24444444,94.00000000,4.15929204,0.04255319,0.00000000,6.34000000 +12597,chr22,48824578,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,0.00000000,0.76000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.58000000 +12598,chr22,48824892,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-1.72000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.00000000,0.00000000,7.09000000 +12599,chr22,48825117,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.16000000,0.00000000,,0.18571429,70.00000000,3.09734513,0.00000000,0.00000000,5.67000000 +12600,chr22,48825153,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.07000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.20000000 +12601,chr22,48825189,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.20338983,61.00000000,2.69911504,0.03278689,0.00000000,6.26000000 +12602,chr22,48825221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,69.00000000,0.00000000,-0.76000000,0.00000000,,0.21875000,65.00000000,2.87610619,0.00000000,0.00000000,6.35000000 +12603,chr22,48825606,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,0.00000000,0.82000000,0.00000000,,0.22077922,79.00000000,3.49557522,0.01265823,0.00000000,5.98000000 +12604,chr22,48825670,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,70.00000000,0.00000000,-0.72000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.22000000 +12605,chr22,48825920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.27000000,0.00000000,,0.13888889,74.00000000,3.27433628,0.02702703,0.00000000,5.35000000 +12606,chr22,48826724,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.94000000,0.00000000,,0.18987342,79.00000000,3.49557522,0.00000000,0.00000000,6.72000000 +12607,chr22,48827203,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.13513514,0.00000000,70.00000000,0.00000000,-0.35000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.10810811,0.00000000,5.19000000 +12608,chr22,48827871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,2.41000000,0.00000000,,0.21212121,69.00000000,3.05309735,0.02898551,0.00000000,5.85000000 +12609,chr22,48828098,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-1.42000000,0.00000000,,0.27692308,67.00000000,2.96460177,0.02985075,0.00000000,6.30000000 +12610,chr22,48828201,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.07000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.57000000 +12611,chr22,48831794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,0.00000000,0.05000000,0.00000000,,0.26190476,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +12612,chr22,48836030,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.06000000,0.00000000,,0.24657534,73.00000000,3.23008850,0.00000000,0.00000000,7.05000000 +12613,chr22,48837571,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,79.00000000,0.00000000,-0.08000000,0.00000000,,0.22222222,76.00000000,3.36283186,0.03947368,0.00000000,5.99000000 +12614,chr22,48838450,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.74000000,0.00000000,,0.25000000,89.00000000,3.93805310,0.03370787,0.00000000,6.19000000 +12615,chr22,48838548,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.07000000,0.00000000,,0.32183908,87.00000000,3.84955752,0.00000000,0.00000000,6.57000000 +12616,chr22,48838877,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,0.00000000,-0.27000000,0.00000000,,0.15254237,61.00000000,2.69911504,0.01639344,0.00000000,5.60000000 +12617,chr22,48840161,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.35000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,6.72000000 +12618,chr22,48840205,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,-1.39000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,5.50000000 +12619,chr22,48840295,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,83.00000000,0.00000000,0.54000000,0.00000000,,0.32835821,74.00000000,3.27433628,0.08108108,0.00000000,7.91000000 +12620,chr22,48842825,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.03000000,0.00000000,,0.23809524,63.00000000,2.78761062,0.00000000,0.00000000,6.71000000 +12621,chr22,48844549,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,0.25000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.04938272,0.00000000,6.05000000 +12622,chr22,48845518,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,0.00000000,0.07000000,0.00000000,,0.23376623,77.00000000,3.40707965,0.00000000,0.00000000,6.34000000 +12623,chr22,48863143,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,0.00000000,-0.88000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.87000000 +12624,chr22,48864371,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,63.00000000,0.00000000,-0.26000000,0.00000000,,0.28205128,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +12625,chr22,48865250,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.65000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.58000000 +12626,chr22,48865467,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,-1.55000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.04000000 +12627,chr22,48865764,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,87.00000000,0.00000000,-0.24000000,0.00000000,,0.26470588,70.00000000,3.09734513,0.01428571,0.00000000,6.31000000 +12628,chr22,48866332,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,-1.08000000,0.00000000,,0.35135135,76.00000000,3.36283186,0.01315789,0.00000000,8.29000000 +12629,chr22,48866678,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,69.00000000,0.00000000,-2.99000000,0.00000000,,0.17910448,77.00000000,3.40707965,0.12987013,0.00000000,5.88000000 +12630,chr22,48866679,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,69.00000000,0.00000000,-2.73000000,0.00000000,,0.19402985,77.00000000,3.40707965,0.11688312,0.00000000,5.86000000 +12631,chr22,48868059,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,-0.13000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,6.42000000 +12632,chr22,48868085,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.25000000,0.00000000,,0.23880597,69.00000000,3.05309735,0.02898551,0.00000000,6.30000000 +12633,chr22,48868501,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,0.00000000,0.14000000,0.00000000,,0.44927536,72.00000000,3.18584071,0.04166667,0.00000000,4.27000000 +12634,chr22,48868734,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,35.00000000,0.00000000,-0.04000000,0.00000000,,0.43243243,75.00000000,3.31858407,0.01333333,0.00000000,3.88000000 +12635,chr22,48868762,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,28.00000000,0.00000000,0.21000000,0.00000000,,0.45454545,71.00000000,3.14159292,0.05633803,0.00000000,3.89000000 +12636,chr22,48868871,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,0.00000000,-0.66000000,0.00000000,,0.12820513,80.00000000,3.53982301,0.00000000,0.00000000,5.79000000 +12637,chr22,48869387,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,0.05000000,0.00000000,,0.21333333,78.00000000,3.45132743,0.03846154,0.00000000,5.80000000 +12638,chr22,48870984,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,66.00000000,0.00000000,-0.56000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.58000000 +12639,chr22,48872265,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,0.87000000,0.00000000,,0.19117647,68.00000000,3.00884956,0.00000000,0.00000000,6.89000000 +12640,chr22,48872431,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,-0.16000000,0.00000000,,0.25000000,62.00000000,2.74336283,0.03225806,0.00000000,6.01000000 +12641,chr22,48872712,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,69.00000000,0.00000000,0.44000000,0.00000000,,0.18644068,75.00000000,3.31858407,0.21333333,0.00000000,5.53000000 +12642,chr22,48873110,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.29850746,69.00000000,3.05309735,0.02898551,0.00000000,6.16000000 +12643,chr22,48874114,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,84.00000000,0.00000000,-0.59000000,0.00000000,,0.27272727,78.00000000,3.45132743,0.01282051,0.00000000,6.14000000 +12644,chr22,48874733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.26984127,68.00000000,3.00884956,0.07352941,0.00000000,6.33000000 +12645,chr22,48876312,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.20270270,76.00000000,3.36283186,0.02631579,0.00000000,6.28000000 +12646,chr22,48877046,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,0.00000000,0.03000000,0.00000000,,0.12500000,91.00000000,4.02654867,0.03296703,0.00000000,5.12000000 +12647,chr22,48877992,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,0.08000000,0.00000000,,0.26923077,81.00000000,3.58407080,0.03703704,0.00000000,6.28000000 +12648,chr22,48878137,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,0.00000000,-0.01000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,6.32000000 +12649,chr22,48878701,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-1.37000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.22000000 +12650,chr22,48879191,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.16000000,0.00000000,,0.18750000,80.00000000,3.53982301,0.00000000,0.00000000,6.67000000 +12651,chr22,48880403,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,54.00000000,0.00000000,-1.13000000,0.00000000,,0.60000000,88.00000000,3.89380531,0.03409091,0.00000000,4.81000000 +12652,chr22,48881341,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,72.00000000,0.00000000,0.31000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.02325581,0.00000000,8.10000000 +12653,chr22,48882751,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.79000000,0.00000000,,0.21917808,75.00000000,3.31858407,0.02666667,0.00000000,6.27000000 +12654,chr22,48882753,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,75.00000000,0.00000000,-0.67000000,0.00000000,,0.21621622,76.00000000,3.36283186,0.02631579,0.00000000,6.25000000 +12655,chr22,48883156,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-0.35000000,0.00000000,,0.20481928,85.00000000,3.76106195,0.02352941,0.00000000,6.03000000 +12656,chr22,48884400,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.45000000,0.00000000,,0.23255814,87.00000000,3.84955752,0.01149425,0.00000000,6.54000000 +12657,chr22,48888588,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,98.00000000,0.00000000,0.33000000,0.00000000,,0.28947368,76.00000000,3.36283186,0.00000000,0.00000000,6.34000000 +12658,chr22,48894821,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,96.00000000,0.00000000,-1.81000000,0.00000000,,0.37179487,79.00000000,3.49557522,0.01265823,0.00000000,8.56000000 +12659,chr22,48897397,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,-0.19000000,0.00000000,,0.44047619,84.00000000,3.71681416,0.00000000,0.00000000,9.09000000 +12660,chr22,48899909,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,0.00000000,-0.80000000,0.00000000,,0.27868852,63.00000000,2.78761062,0.03174603,0.00000000,6.04000000 +12661,chr22,48900004,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,0.00000000,0.42000000,0.00000000,,0.38461538,67.00000000,2.96460177,0.01492537,0.00000000,8.19000000 +12662,chr22,48900035,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,76.00000000,0.00000000,0.32000000,0.00000000,,0.41891892,76.00000000,3.36283186,0.02631579,0.00000000,8.07000000 +12663,chr22,48901968,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,57.24000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-0.04000000,0.00000000,,0.50684932,74.00000000,3.27433628,0.00000000,0.00000000,7.87000000 +12664,chr22,48903189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,0.00000000,-0.38000000,0.00000000,,0.40579710,70.00000000,3.09734513,0.01428571,0.00000000,6.43000000 +12665,chr22,48904017,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,48.00000000,0.00000000,0.41000000,0.00000000,,0.53521127,71.00000000,3.14159292,0.00000000,0.00000000,4.38000000 +12666,chr22,48905283,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,48.00000000,0.00000000,-0.74000000,0.00000000,,0.49275362,71.00000000,3.14159292,0.02816901,0.00000000,4.66000000 +12667,chr22,48905551,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,0.74000000,0.00000000,,0.20547945,74.00000000,3.27433628,0.01351351,0.00000000,5.92000000 +12668,chr22,48906313,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,39.00000000,0.00000000,0.50000000,0.00000000,,0.47560976,83.00000000,3.67256637,0.01204819,0.00000000,4.24000000 +12669,chr22,48906416,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.45000000,0.00000000,,0.40243902,85.00000000,3.76106195,0.02352941,0.00000000,8.00000000 +12670,chr22,48906945,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,56.00000000,0.00000000,-0.75000000,0.00000000,,0.53846154,67.00000000,2.96460177,0.02985075,0.00000000,4.80000000 +12671,chr22,48908401,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,59.06000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.84000000,0.00000000,,0.38709677,66.00000000,2.92035398,0.04545455,0.00000000,7.54000000 +12672,chr22,48913823,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,2.04000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.00000000,0.00000000,6.43000000 +12673,chr22,48927552,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,87.00000000,0.00000000,0.57000000,0.00000000,,0.28571429,85.00000000,3.76106195,0.01176471,0.00000000,5.96000000 +12674,chr22,48927715,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,-0.62000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.00000000,0.00000000,6.46000000 +12675,chr22,48929505,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,77.00000000,0.00000000,0.31000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,6.60000000 +12676,chr22,48929644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,36.00000000,1.59292035,0.00000000,0.00000000,74.00000000,0.00000000,-0.95000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,6.44000000 +12677,chr22,48929786,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.54000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,6.68000000 +12678,chr22,48929912,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.57000000,0.00000000,,0.23076923,91.00000000,4.02654867,0.00000000,0.00000000,6.99000000 +12679,chr22,48929956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.26595745,96.00000000,4.24778761,0.02083333,0.00000000,5.76000000 +12680,chr22,48931621,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-2.01000000,0.00000000,,0.26984127,63.00000000,2.78761062,0.00000000,0.00000000,7.04000000 +12681,chr22,48931813,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,-1.46000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.04938272,0.00000000,6.19000000 +12682,chr22,48932118,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,-0.23000000,0.00000000,,0.19354839,93.00000000,4.11504425,0.00000000,0.00000000,7.00000000 +12683,chr22,48934911,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-0.07000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,5.79000000 +12684,chr22,48934964,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,80.00000000,0.00000000,-0.46000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.20000000 +12685,chr22,48935106,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,78.00000000,3.45132743,0.01282051,0.00000000,6.29000000 +12686,chr22,48935351,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.98000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.00000000,0.00000000,5.81000000 +12687,chr22,48939897,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,0.00000000,2.50000000,0.00000000,,0.27777778,95.00000000,4.20353982,0.05263158,0.00000000,6.59000000 +12688,chr22,48942051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,70.00000000,0.00000000,1.36000000,0.00000000,,0.17808219,73.00000000,3.23008850,0.00000000,0.00000000,6.49000000 +12689,chr22,48944659,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.02631579,0.00000000,6.53000000 +12690,chr22,48945571,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.97000000,0.00000000,,0.16883117,81.00000000,3.58407080,0.03703704,0.00000000,5.73000000 +12691,chr22,48945646,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.80000000,0.00000000,,0.21875000,67.00000000,2.96460177,0.04477612,0.00000000,6.62000000 +12692,chr22,48946220,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,1.53000000,0.00000000,,0.21839080,87.00000000,3.84955752,0.00000000,0.00000000,6.42000000 +12693,chr22,48946965,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,-0.60000000,0.00000000,,0.33333333,69.00000000,3.05309735,0.00000000,0.00000000,9.09000000 +12694,chr22,48947969,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.51000000,0.00000000,,0.22500000,80.00000000,3.53982301,0.00000000,0.00000000,7.00000000 +12695,chr22,48948675,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,46.00000000,0.00000000,-0.31000000,0.00000000,,0.36764706,74.00000000,3.27433628,0.06756757,0.00000000,4.66000000 +12696,chr22,48949702,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-1.61000000,0.00000000,,0.15000000,60.00000000,2.65486726,0.00000000,0.00000000,6.11000000 +12697,chr22,48949704,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,-1.38000000,0.00000000,,0.14516129,62.00000000,2.74336283,0.00000000,0.00000000,6.18000000 +12698,chr22,48949853,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.34000000,0.00000000,,0.23076923,74.00000000,3.27433628,0.12162162,0.00000000,5.76000000 +12699,chr22,48950864,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.22000000,0.00000000,,0.21126761,75.00000000,3.31858407,0.05333333,0.00000000,6.60000000 +12700,chr22,48952248,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.16000000,0.00000000,,0.20987654,82.00000000,3.62831858,0.00000000,0.00000000,5.95000000 +12701,chr22,48952319,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,1.72000000,0.00000000,,0.20270270,74.00000000,3.27433628,0.00000000,0.00000000,6.40000000 +12702,chr22,48952856,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,-0.40000000,0.00000000,,0.23376623,78.00000000,3.45132743,0.00000000,0.00000000,6.72000000 +12703,chr22,48953202,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,81.00000000,0.00000000,-0.14000000,0.00000000,,0.24050633,81.00000000,3.58407080,0.01234568,0.00000000,6.61000000 +12704,chr22,48953468,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.87000000,0.00000000,,0.25287356,87.00000000,3.84955752,0.00000000,0.00000000,6.41000000 +12705,chr22,48954378,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,0.86000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.22000000 +12706,chr22,48954626,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,82.00000000,0.00000000,2.43000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,5.92000000 +12707,chr22,48958619,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,0.00000000,0.98000000,0.00000000,,0.16923077,65.00000000,2.87610619,0.00000000,0.00000000,2.81000000 +12708,chr22,48959761,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.78000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,0.00000000,0.90000000,0.00000000,,0.17460317,65.00000000,2.87610619,0.03076923,0.00000000,5.72000000 +12709,chr22,48963216,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,89.00000000,0.00000000,-0.75000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +12710,chr22,48964133,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,71.00000000,0.00000000,-0.03000000,0.00000000,,0.21250000,86.00000000,3.80530973,0.06976744,0.00000000,5.89000000 +12711,chr22,48965815,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,0.95000000,0.00000000,,0.15384615,79.00000000,3.49557522,0.01265823,0.00000000,5.76000000 +12712,chr22,48966510,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,0.00000000,3.16000000,0.00000000,,0.18987342,80.00000000,3.53982301,0.01250000,0.00000000,6.07000000 +12713,chr22,48967146,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,73.00000000,0.00000000,-0.89000000,0.00000000,,0.16666667,85.00000000,3.76106195,0.01176471,0.00000000,5.94000000 +12714,chr22,48967208,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.12000000,0.00000000,,0.20289855,71.00000000,3.14159292,0.01408451,0.00000000,6.02000000 +12715,chr22,48967297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,-1.05000000,0.00000000,,0.20779221,81.00000000,3.58407080,0.04938272,0.00000000,6.00000000 +12716,chr22,48967550,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,95.00000000,0.00000000,0.85000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,5.89000000 +12717,chr22,48967647,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,0.60000000,0.00000000,,0.26388889,73.00000000,3.23008850,0.00000000,0.00000000,6.56000000 +12718,chr22,48967971,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,1.49000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.00000000,5.93000000 +12719,chr22,48968037,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.33000000,0.00000000,,0.19736842,79.00000000,3.49557522,0.01265823,0.00000000,6.22000000 +12720,chr22,48968113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,0.82000000,0.00000000,,0.15555556,95.00000000,4.20353982,0.05263158,0.00000000,5.40000000 +12721,chr22,48968118,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,0.95000000,0.00000000,,0.16666667,95.00000000,4.20353982,0.05263158,0.00000000,5.43000000 +12722,chr22,48968152,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,78.00000000,0.00000000,-0.09000000,0.00000000,,0.18681319,95.00000000,4.20353982,0.03157895,0.00000000,6.25000000 +12723,chr22,48968595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,72.00000000,0.00000000,-2.36000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.00000000,0.00000000,6.80000000 +12724,chr22,48968750,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,1.19000000,0.00000000,,0.25675676,76.00000000,3.36283186,0.01315789,0.00000000,6.93000000 +12725,chr22,48969668,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,-2.12000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +12726,chr22,48973380,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-0.28000000,0.00000000,,0.09722222,74.00000000,3.27433628,0.02702703,0.00000000,4.18000000 +12727,chr22,48973386,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,0.21000000,0.00000000,,0.10958904,75.00000000,3.31858407,0.02666667,0.00000000,5.23000000 +12728,chr22,48973455,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,-0.78000000,0.00000000,,0.13333333,75.00000000,3.31858407,0.00000000,0.00000000,5.26000000 +12729,chr22,48973879,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.07000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.02941176,0.00000000,6.49000000 +12730,chr22,48974181,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-1.01000000,0.00000000,,0.20588235,70.00000000,3.09734513,0.02857143,0.00000000,6.31000000 +12731,chr22,48974190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.42000000,0.00000000,,0.21428571,72.00000000,3.18584071,0.02777778,0.00000000,6.48000000 +12732,chr22,48974231,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-1.32000000,0.00000000,,0.22535211,72.00000000,3.18584071,0.01388889,0.00000000,6.78000000 +12733,chr22,48983254,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,0.20000000,0.00000000,,0.28000000,76.00000000,3.36283186,0.01315789,0.00000000,6.48000000 +12734,chr22,48993016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.97000000,0.00000000,,0.26315789,57.00000000,2.52212389,0.00000000,0.00000000,6.66000000 +12735,chr22,48993708,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,2.22000000,0.00000000,,0.16666667,66.00000000,2.92035398,0.00000000,0.00000000,5.50000000 +12736,chr22,48994495,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,74.00000000,0.00000000,-1.02000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.02222222,0.00000000,6.27000000 +12737,chr22,48998499,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,1.53000000,0.00000000,,0.26250000,80.00000000,3.53982301,0.00000000,0.00000000,6.30000000 +12738,chr22,49000336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,2.12000000,0.00000000,,0.25000000,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +12739,chr22,49000500,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,0.00000000,0.46000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.09000000 +12740,chr22,49000700,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.84000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.43000000 +12741,chr22,49003603,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.69000000,0.00000000,,0.22972973,76.00000000,3.36283186,0.01315789,0.00000000,6.50000000 +12742,chr22,49004572,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,-1.51000000,0.00000000,,0.23255814,86.00000000,3.80530973,0.00000000,0.00000000,6.98000000 +12743,chr22,49005304,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,0.57000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.32000000 +12744,chr22,49007219,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,0.03000000,0.00000000,,0.25352113,71.00000000,3.14159292,0.00000000,0.00000000,6.39000000 +12745,chr22,49014040,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,0.97000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.43000000 +12746,chr22,49014144,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.48000000,0.00000000,,0.23157895,97.00000000,4.29203540,0.02061856,0.00000000,6.34000000 +12747,chr22,49024669,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,0.00000000,0.47000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,2.84000000 +12748,chr22,49027730,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,0.70000000,0.00000000,,0.17647059,86.00000000,3.80530973,0.01162791,0.00000000,6.41000000 +12749,chr22,49039049,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.40000000,0.00000000,,0.20000000,68.00000000,3.00884956,0.02941176,0.00000000,6.31000000 +12750,chr22,49041282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-1.16000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.01538462,0.00000000,5.19000000 +12751,chr22,49076222,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-2.32000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,6.63000000 +12752,chr22,49076635,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,6.35000000 +12753,chr22,49077408,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.11000000,0.00000000,,0.20253165,82.00000000,3.62831858,0.03658537,0.00000000,6.57000000 +12754,chr22,49077654,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,0.27000000,0.00000000,,0.28767123,75.00000000,3.31858407,0.01333333,0.00000000,6.35000000 +12755,chr22,49077811,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.13000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.43000000 +12756,chr22,49077935,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.26000000,0.00000000,,0.27692308,66.00000000,2.92035398,0.01515152,0.00000000,6.29000000 +12757,chr22,49078055,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.13000000,0.00000000,,0.26315789,60.00000000,2.65486726,0.05000000,0.00000000,6.32000000 +12758,chr22,49078059,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,0.82000000,0.00000000,,0.26785714,59.00000000,2.61061947,0.05084746,0.00000000,2.86000000 +12759,chr22,49078419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,0.00000000,0.36000000,0.00000000,,0.31343284,70.00000000,3.09734513,0.01428571,0.00000000,8.04000000 +12760,chr22,49079282,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,0.03000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.52000000 +12761,chr22,49079412,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,-0.81000000,0.00000000,,0.17105263,77.00000000,3.40707965,0.01298701,0.00000000,6.12000000 +12762,chr22,49079580,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,-0.48000000,0.00000000,,0.16216216,75.00000000,3.31858407,0.01333333,0.00000000,6.04000000 +12763,chr22,49085778,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,87.00000000,0.00000000,0.33000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,5.87000000 +12764,chr22,49086604,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,0.00000000,1.72000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,5.75000000 +12765,chr22,49095399,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-0.05000000,0.00000000,,0.17647059,69.00000000,3.05309735,0.01449275,0.00000000,6.05000000 +12766,chr22,49096166,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.07317073,0.00000000,71.00000000,0.00000000,0.75000000,0.00000000,,0.15384615,82.00000000,3.62831858,0.04878049,0.00000000,5.00000000 +12767,chr22,49096517,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.08163265,0.00000000,94.00000000,0.00000000,0.12000000,0.00000000,,0.24324324,79.00000000,3.49557522,0.05063291,0.00000000,5.22000000 +12768,chr22,49097060,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,0.88000000,0.00000000,,0.15584416,77.00000000,3.40707965,0.00000000,0.00000000,5.55000000 +12769,chr22,49098455,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.34000000,0.00000000,,0.15714286,71.00000000,3.14159292,0.00000000,0.00000000,6.20000000 +12770,chr22,49099037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,-0.53000000,0.00000000,,0.21538462,65.00000000,2.87610619,0.00000000,0.00000000,6.82000000 +12771,chr22,49099765,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,1.14000000,0.00000000,,0.21333333,75.00000000,3.31858407,0.00000000,0.00000000,6.01000000 +12772,chr22,49101950,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,0.00000000,-1.23000000,0.00000000,,0.23728814,59.00000000,2.61061947,0.00000000,0.00000000,6.35000000 +12773,chr22,49102145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,1.01000000,0.00000000,,0.20689655,88.00000000,3.89380531,0.01136364,0.00000000,5.94000000 +12774,chr22,49103500,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,0.30000000,0.00000000,,0.25000000,64.00000000,2.83185841,0.00000000,0.00000000,6.39000000 +12775,chr22,49107353,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.41000000,0.00000000,,0.24637681,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +12776,chr22,49109109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,0.00000000,-0.59000000,2.80000000,,0.11594203,70.00000000,3.09734513,0.01428571,0.00000000,4.12000000 +12777,chr22,49112979,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,0.91000000,0.00000000,,0.18181818,67.00000000,2.96460177,0.01492537,0.00000000,6.09000000 +12778,chr22,49113278,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-0.78000000,0.00000000,,0.14062500,65.00000000,2.87610619,0.01538462,0.00000000,4.93000000 +12779,chr22,49113732,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,-0.39000000,0.00000000,,0.28169014,74.00000000,3.27433628,0.04054054,0.00000000,6.61000000 +12780,chr22,49113802,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.11000000,0.00000000,,0.29729730,75.00000000,3.31858407,0.01333333,0.00000000,6.89000000 +12781,chr22,49114160,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,75.00000000,0.00000000,0.12000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,5.98000000 +12782,chr22,49114655,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,0.16000000,0.00000000,,0.20779221,79.00000000,3.49557522,0.02531646,0.00000000,6.37000000 +12783,chr22,49116073,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.37000000,0.00000000,,0.16867470,85.00000000,3.76106195,0.00000000,0.00000000,6.67000000 +12784,chr22,49117076,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,62.00000000,0.00000000,0.15000000,0.00000000,,0.12121212,73.00000000,3.23008850,0.09589041,0.00000000,4.66000000 +12785,chr22,49117794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.05000000,0.00000000,,0.19736842,78.00000000,3.45132743,0.02564103,0.00000000,6.64000000 +12786,chr22,49117939,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,81.00000000,0.00000000,0.38000000,0.00000000,,0.29333333,75.00000000,3.31858407,0.00000000,0.00000000,6.57000000 +12787,chr22,49119728,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,-1.41000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,6.03000000 +12788,chr22,49122248,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,0.20000000,0.00000000,,0.17910448,68.00000000,3.00884956,0.01470588,0.00000000,6.17000000 +12789,chr22,49122419,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.21000000,0.00000000,,0.19402985,69.00000000,3.05309735,0.02898551,0.00000000,6.15000000 +12790,chr22,49122420,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,73.00000000,0.00000000,1.66000000,0.00000000,,0.19696970,70.00000000,3.09734513,0.02857143,0.00000000,5.72000000 +12791,chr22,49123538,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.23611111,73.00000000,3.23008850,0.00000000,0.00000000,5.95000000 +12792,chr22,49129548,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.41000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,59.00000000,0.00000000,-0.27000000,0.00000000,,0.18867925,64.00000000,2.83185841,0.17187500,0.00000000,5.11000000 +12793,chr22,49131043,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-2.09000000,0.00000000,,0.20289855,69.00000000,3.05309735,0.00000000,0.00000000,7.05000000 +12794,chr22,49131929,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,61.00000000,0.00000000,-0.31000000,0.00000000,,0.16470588,86.00000000,3.80530973,0.00000000,0.00000000,5.81000000 +12795,chr22,49132633,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,72.00000000,0.00000000,0.57000000,0.00000000,,0.15887850,113.00000000,5.00000000,0.02654867,0.00000000,6.16000000 +12796,chr22,49133688,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-1.32000000,0.00000000,,0.18666667,76.00000000,3.36283186,0.01315789,0.00000000,6.52000000 +12797,chr22,49134544,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,1.04000000,0.00000000,,0.23376623,81.00000000,3.58407080,0.04938272,0.00000000,6.52000000 +12798,chr22,49134597,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.12000000,0.00000000,,0.22500000,83.00000000,3.67256637,0.02409639,0.00000000,6.70000000 +12799,chr22,49134639,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,1.10000000,0.00000000,,0.18421053,77.00000000,3.40707965,0.01298701,0.00000000,6.49000000 +12800,chr22,49134701,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,1.48000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,5.72000000 +12801,chr22,49134829,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.81000000,0.00000000,,0.18823529,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +12802,chr22,49139140,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-0.15000000,0.00000000,,0.21428571,88.00000000,3.89380531,0.04545455,0.00000000,6.31000000 +12803,chr22,49139264,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,80.00000000,0.00000000,-0.09000000,0.00000000,,0.20253165,80.00000000,3.53982301,0.01250000,0.00000000,6.57000000 +12804,chr22,49139480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,73.00000000,0.00000000,0.60000000,0.00000000,,0.17045455,89.00000000,3.93805310,0.01123596,0.00000000,6.12000000 +12805,chr22,49139484,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,1.36000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,6.12000000 +12806,chr22,49139737,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,63.00000000,0.00000000,-0.11000000,0.00000000,,0.13636364,66.00000000,2.92035398,0.00000000,0.00000000,5.15000000 +12807,chr22,49140049,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,-0.30000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +12808,chr22,49140985,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,-0.59000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.69000000 +12809,chr22,49141319,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,73.00000000,0.00000000,-0.42000000,0.00000000,,0.18181818,66.00000000,2.92035398,0.00000000,0.00000000,6.28000000 +12810,chr22,49142172,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,86.00000000,0.00000000,0.17000000,0.00000000,,0.27659574,99.00000000,4.38053097,0.05050505,0.00000000,5.72000000 +12811,chr22,49145797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,78.00000000,0.00000000,-0.37000000,0.00000000,,0.18181818,99.00000000,4.38053097,0.00000000,0.00000000,6.77000000 +12812,chr22,49146410,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,1.51000000,0.00000000,,0.17721519,79.00000000,3.49557522,0.00000000,0.00000000,6.24000000 +12813,chr22,49149230,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.19000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,0.00000000,0.73000000,0.50000000,,0.20454545,45.00000000,1.99115044,0.02222222,0.00000000,4.13000000 +12814,chr22,49150352,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.73000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,6.08000000 +12815,chr22,49150527,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,0.00000000,-1.42000000,0.00000000,,0.11111111,55.00000000,2.43362832,0.01818182,0.00000000,3.00000000 +12816,chr22,49151696,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,84.00000000,0.00000000,2.31000000,0.00000000,,0.21951220,87.00000000,3.84955752,0.05747126,0.00000000,5.81000000 +12817,chr22,49153632,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,0.00000000,-0.36000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.01851852,0.00000000,5.75000000 +12818,chr22,49157557,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,77.00000000,0.00000000,1.11000000,0.00000000,,0.28735632,90.00000000,3.98230088,0.03333333,0.00000000,5.86000000 +12819,chr22,49157679,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.21000000,0.00000000,,0.24175824,96.00000000,4.24778761,0.02083333,0.00000000,6.22000000 +12820,chr22,49158327,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.49000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,67.00000000,0.00000000,0.59000000,0.00000000,,0.14634146,82.00000000,3.62831858,0.00000000,0.00000000,5.33000000 +12821,chr22,49159003,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,71.00000000,0.00000000,-1.43000000,0.00000000,,0.15384615,66.00000000,2.92035398,0.01515152,0.00000000,5.23000000 +12822,chr22,49164361,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,58.59000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,0.00000000,-1.50000000,0.00000000,,0.27419355,66.00000000,2.92035398,0.04545455,0.00000000,5.59000000 +12823,chr22,49164398,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.63000000,2.00000000,ref,1.00000000,0.05555556,18.00000000,0.79646018,0.00000000,0.00000000,30.00000000,0.00000000,-0.07000000,0.00000000,,0.31481481,58.00000000,2.56637168,0.06896552,0.00000000,3.14000000 +12824,chr22,49165619,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.63000000,0.00000000,,0.26744186,88.00000000,3.89380531,0.02272727,0.00000000,6.28000000 +12825,chr22,49165945,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.03000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.89000000 +12826,chr22,49171848,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,1.44000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.01408451,0.00000000,6.17000000 +12827,chr22,49172782,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,66.00000000,0.00000000,-0.43000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.00000000,0.00000000,5.91000000 +12828,chr22,49173087,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.17647059,0.00000000,73.00000000,0.00000000,0.90000000,0.00000000,,0.21052632,64.00000000,2.83185841,0.09375000,0.00000000,5.63000000 +12829,chr22,49174973,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.27000000,0.00000000,,0.18072289,83.00000000,3.67256637,0.00000000,0.00000000,6.24000000 +12830,chr22,49175279,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.01408451,0.00000000,6.44000000 +12831,chr22,49175817,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,70.00000000,0.00000000,0.17000000,0.00000000,,0.17721519,80.00000000,3.53982301,0.01250000,0.00000000,5.88000000 +12832,chr22,49175823,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,0.27000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,5.95000000 +12833,chr22,49175858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,5.67000000 +12834,chr22,49176010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,0.77000000,0.00000000,,0.20833333,73.00000000,3.23008850,0.00000000,0.00000000,6.43000000 +12835,chr22,49176071,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,76.00000000,0.00000000,-1.41000000,0.00000000,,0.18823529,87.00000000,3.84955752,0.02298851,0.00000000,6.50000000 +12836,chr22,49177948,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,77.00000000,0.00000000,-0.58000000,0.00000000,,0.17592593,108.00000000,4.77876106,0.00000000,0.00000000,6.10000000 +12837,chr22,49178802,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,64.00000000,0.00000000,-0.20000000,0.00000000,,0.21739130,70.00000000,3.09734513,0.01428571,0.00000000,5.77000000 +12838,chr22,49179098,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.35000000,0.00000000,,0.25742574,102.00000000,4.51327434,0.00980392,0.00000000,6.52000000 +12839,chr22,49179141,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,72.00000000,0.00000000,1.22000000,0.00000000,,0.24000000,103.00000000,4.55752212,0.00970874,0.00000000,5.93000000 +12840,chr22,49179515,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.43000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.21000000 +12841,chr22,49180016,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,63.00000000,0.00000000,-1.13000000,0.00000000,,0.15189873,84.00000000,3.71681416,0.04761905,0.00000000,4.88000000 +12842,chr22,49182727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,72.00000000,0.00000000,0.61000000,0.00000000,,0.17391304,70.00000000,3.09734513,0.01428571,0.00000000,5.60000000 +12843,chr22,49183683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,0.00000000,1.00000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.08536585,0.00000000,5.65000000 +12844,chr22,49184722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.24000000,0.00000000,,0.28571429,79.00000000,3.49557522,0.02531646,0.00000000,6.64000000 +12845,chr22,49185711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,74.00000000,0.00000000,1.15000000,0.00000000,,0.18072289,86.00000000,3.80530973,0.03488372,0.00000000,5.98000000 +12846,chr22,49186827,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.24324324,75.00000000,3.31858407,0.01333333,0.00000000,6.35000000 +12847,chr22,49188482,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,96.00000000,0.00000000,1.25000000,0.00000000,,0.30263158,77.00000000,3.40707965,0.01298701,0.00000000,5.80000000 +12848,chr22,49189118,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,1.26000000,0.00000000,,0.25581395,87.00000000,3.84955752,0.01149425,0.00000000,6.62000000 +12849,chr22,49191512,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-0.85000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,6.75000000 +12850,chr22,49195189,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,2.14000000,0.00000000,,0.19117647,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +12851,chr22,49247332,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.01000000,0.00000000,,0.30000000,72.00000000,3.18584071,0.02777778,0.00000000,6.36000000 +12852,chr22,49251638,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,-0.09000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.02531646,0.00000000,6.01000000 +12853,chr22,49258223,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,88.00000000,0.00000000,1.51000000,0.00000000,,0.27536232,70.00000000,3.09734513,0.00000000,0.00000000,5.89000000 +12854,chr22,49262566,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.76000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,5.77000000 +12855,chr22,49262630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,0.23000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.00000000,0.00000000,5.90000000 +12856,chr22,49263640,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,51.00000000,0.00000000,-0.08000000,0.00000000,,0.47945205,74.00000000,3.27433628,0.01351351,0.00000000,4.48000000 +12857,chr22,49267445,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.25000000,83.00000000,3.67256637,0.03614458,0.00000000,5.81000000 +12858,chr22,49267522,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,0.00000000,0.38000000,0.00000000,,0.24390244,86.00000000,3.80530973,0.04651163,0.00000000,5.56000000 +12859,chr22,49273999,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.17000000,0.00000000,,0.21176471,86.00000000,3.80530973,0.01162791,0.00000000,5.98000000 +12860,chr22,49275026,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,49.33000000,46.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,68.00000000,0.00000000,-0.30000000,0.00000000,,0.20754717,68.00000000,3.00884956,0.20588235,0.00000000,5.85000000 +12861,chr22,49280799,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.12000000,0.00000000,,0.19117647,71.00000000,3.14159292,0.02816901,0.00000000,6.38000000 +12862,chr22,49284337,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,-0.47000000,0.00000000,,0.51724138,87.00000000,3.84955752,0.00000000,0.00000000,9.20000000 +12863,chr22,49285329,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.13000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.00000000,0.00000000,6.67000000 +12864,chr22,49286149,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.96000000,0.00000000,,0.22058824,71.00000000,3.14159292,0.04225352,0.00000000,6.04000000 +12865,chr22,49286565,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,89.00000000,0.00000000,-0.30000000,0.00000000,,0.25263158,97.00000000,4.29203540,0.02061856,0.00000000,5.89000000 +12866,chr22,49286620,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.25000000,99.00000000,4.38053097,0.03030303,0.00000000,5.79000000 +12867,chr22,49287381,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.13000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,5.85000000 +12868,chr22,49287426,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,91.00000000,0.00000000,-1.85000000,0.00000000,,0.35937500,66.00000000,2.92035398,0.03030303,0.00000000,8.26000000 +12869,chr22,49287979,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,0.61000000,0.00000000,,0.20512821,79.00000000,3.49557522,0.01265823,0.00000000,6.76000000 +12870,chr22,49288881,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.82000000,0.00000000,,0.21951220,83.00000000,3.67256637,0.01204819,0.00000000,6.65000000 +12871,chr22,49289217,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,84.00000000,0.00000000,0.67000000,0.00000000,,0.23684211,78.00000000,3.45132743,0.02564103,0.00000000,5.87000000 +12872,chr22,49290512,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,1.60000000,0.00000000,,0.12500000,92.00000000,4.07079646,0.04347826,0.00000000,5.11000000 +12873,chr22,49290733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.36000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.57000000 +12874,chr22,49290947,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,0.00000000,1.16000000,0.00000000,,0.22077922,77.00000000,3.40707965,0.00000000,0.00000000,6.44000000 +12875,chr22,49291116,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,81.00000000,0.00000000,-0.22000000,0.00000000,,0.25287356,88.00000000,3.89380531,0.01136364,0.00000000,6.64000000 +12876,chr22,49291210,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,74.00000000,0.00000000,0.86000000,0.00000000,,0.17500000,82.00000000,3.62831858,0.02439024,0.00000000,5.47000000 +12877,chr22,49291226,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,1.00000000,0.00000000,,0.17948718,81.00000000,3.58407080,0.02469136,0.00000000,5.70000000 +12878,chr22,49291284,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-0.05000000,0.00000000,,0.12345679,85.00000000,3.76106195,0.03529412,0.00000000,3.72000000 +12879,chr22,49291316,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,-1.03000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,5.91000000 +12880,chr22,49291381,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.92000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.00000000,0.00000000,6.37000000 +12881,chr22,49291471,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,0.00000000,1.37000000,0.00000000,,0.22988506,87.00000000,3.84955752,0.00000000,0.00000000,6.28000000 +12882,chr22,49291487,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,0.90000000,0.00000000,,0.19318182,90.00000000,3.98230088,0.01111111,0.00000000,6.43000000 +12883,chr22,49291666,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.70000000 +12884,chr22,49291667,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,0.35000000,0.00000000,,0.16901408,73.00000000,3.23008850,0.02739726,0.00000000,5.70000000 +12885,chr22,49291676,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,0.48000000,0.00000000,,0.18032787,65.00000000,2.87610619,0.03076923,0.00000000,5.93000000 +12886,chr22,49291745,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.12121212,0.00000000,66.00000000,0.00000000,-0.14000000,0.00000000,,0.15094340,67.00000000,2.96460177,0.20895522,0.00000000,5.28000000 +12887,chr22,49291775,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,59.00000000,0.00000000,-0.63000000,0.00000000,,0.20289855,76.00000000,3.36283186,0.09210526,0.00000000,4.04000000 +12888,chr22,49291797,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,0.00000000,0.12000000,0.00000000,,0.17808219,75.00000000,3.31858407,0.02666667,0.00000000,5.52000000 +12889,chr22,49291916,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,68.00000000,0.00000000,-0.51000000,0.00000000,,0.12987013,77.00000000,3.40707965,0.00000000,0.00000000,5.59000000 +12890,chr22,49292122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.36000000,0.00000000,,0.26984127,64.00000000,2.83185841,0.01562500,0.00000000,6.28000000 +12891,chr22,49292225,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,0.00000000,1.11000000,0.00000000,,0.21739130,71.00000000,3.14159292,0.02816901,0.00000000,6.29000000 +12892,chr22,49292349,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,64.00000000,0.00000000,-1.25000000,0.00000000,,0.12790698,87.00000000,3.84955752,0.01149425,0.00000000,5.39000000 +12893,chr22,49292514,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.24000000,0.00000000,,0.24050633,80.00000000,3.53982301,0.01250000,0.00000000,6.82000000 +12894,chr22,49294819,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.99000000,0.00000000,,0.22580645,63.00000000,2.78761062,0.00000000,0.00000000,6.98000000 +12895,chr22,49295348,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.06000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.62000000 +12896,chr22,49297630,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,84.00000000,0.00000000,-0.08000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.09000000 +12897,chr22,49299342,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,0.75000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.43000000 +12898,chr22,49299846,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,0.06000000,0.00000000,,0.20430108,95.00000000,4.20353982,0.00000000,0.00000000,6.30000000 +12899,chr22,49300084,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,59.00000000,0.00000000,-0.40000000,0.00000000,,0.21518987,82.00000000,3.62831858,0.02439024,0.00000000,3.89000000 +12900,chr22,49300142,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,66.00000000,0.00000000,-1.01000000,0.00000000,,0.22077922,78.00000000,3.45132743,0.01282051,0.00000000,6.30000000 +12901,chr22,49300155,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,0.00000000,-0.04000000,0.00000000,,0.21590909,90.00000000,3.98230088,0.01111111,0.00000000,6.28000000 +12902,chr22,49300750,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,82.00000000,0.00000000,0.18000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.02597403,0.00000000,6.35000000 +12903,chr22,49301040,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,30.00000000,1.32743363,0.06666667,0.00000000,69.00000000,0.00000000,-0.67000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.02816901,0.00000000,5.80000000 +12904,chr22,49301132,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,1.78000000,0.00000000,,0.25000000,73.00000000,3.23008850,0.01369863,0.00000000,6.66000000 +12905,chr22,49301613,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.45000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.33000000 +12906,chr22,49301616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.84000000,0.00000000,,0.25757576,69.00000000,3.05309735,0.04347826,0.00000000,6.33000000 +12907,chr22,49301746,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,71.00000000,0.00000000,-0.47000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.41000000 +12908,chr22,49301923,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,74.00000000,0.00000000,-0.87000000,0.00000000,,0.17777778,92.00000000,4.07079646,0.01086957,0.00000000,6.84000000 +12909,chr22,49302485,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,1.59000000,0.00000000,,0.27160494,89.00000000,3.93805310,0.07865169,0.00000000,5.81000000 +12910,chr22,49302653,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.32000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,65.00000000,0.00000000,1.37000000,0.00000000,,0.15384615,57.00000000,2.52212389,0.08771930,0.00000000,4.96000000 +12911,chr22,49304625,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.17000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.03571429,0.00000000,5.50000000 +12912,chr22,49306980,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.01000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.03157895,0.00000000,6.17000000 +12913,chr22,49308051,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,0.00000000,-1.44000000,0.00000000,,0.20754717,55.00000000,2.43362832,0.03636364,0.00000000,6.25000000 +12914,chr22,49308982,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,-0.96000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,7.17000000 +12915,chr22,49309085,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,0.41000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,5.89000000 +12916,chr22,49310357,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,0.88000000,0.00000000,,0.21621622,112.00000000,4.95575221,0.00892857,0.00000000,6.33000000 +12917,chr22,49310363,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-1.17000000,0.00000000,,0.22429907,108.00000000,4.77876106,0.00925926,0.00000000,6.65000000 +12918,chr22,49316267,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,74.00000000,0.00000000,-0.16000000,0.00000000,,0.17948718,80.00000000,3.53982301,0.02500000,0.00000000,5.85000000 +12919,chr22,49318592,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-1.97000000,0.00000000,,0.25806452,94.00000000,4.15929204,0.01063830,0.00000000,6.23000000 +12920,chr22,49319213,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,77.00000000,0.00000000,-0.54000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,5.90000000 +12921,chr22,49320852,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,0.00000000,0.30000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +12922,chr22,49322140,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,87.00000000,0.00000000,-0.80000000,0.00000000,,0.28712871,102.00000000,4.51327434,0.00980392,0.00000000,6.66000000 +12923,chr22,49322439,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,0.51000000,0.00000000,,0.25423729,59.00000000,2.61061947,0.00000000,0.00000000,6.74000000 +12924,chr22,49322837,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,0.53000000,0.00000000,,0.22972973,79.00000000,3.49557522,0.06329114,0.00000000,6.33000000 +12925,chr22,49322871,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,66.00000000,0.00000000,0.22000000,0.00000000,,0.31884058,69.00000000,3.05309735,0.00000000,0.00000000,6.82000000 +12926,chr22,49322931,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.77000000,0.00000000,,0.26923077,79.00000000,3.49557522,0.01265823,0.00000000,6.61000000 +12927,chr22,49323339,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.33000000,0.00000000,,0.27777778,74.00000000,3.27433628,0.02702703,0.00000000,6.37000000 +12928,chr22,49325001,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,84.00000000,0.00000000,-0.29000000,0.00000000,,0.23655914,95.00000000,4.20353982,0.02105263,0.00000000,6.27000000 +12929,chr22,49325361,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,0.00000000,-0.79000000,0.00000000,,0.23880597,68.00000000,3.00884956,0.01470588,0.00000000,6.11000000 +12930,chr22,49325480,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,0.00000000,-0.44000000,0.00000000,,0.10958904,75.00000000,3.31858407,0.02666667,0.00000000,5.25000000 +12931,chr22,49325493,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.02816901,0.00000000,5.55000000 +12932,chr22,49326670,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,1.48000000,0.00000000,,0.23076923,69.00000000,3.05309735,0.02898551,0.00000000,6.16000000 +12933,chr22,49327000,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,38.00000000,0.00000000,0.07000000,0.00000000,,0.32894737,77.00000000,3.40707965,0.01298701,0.00000000,3.56000000 +12934,chr22,49327791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,77.00000000,0.00000000,0.30000000,0.00000000,,0.19480519,77.00000000,3.40707965,0.00000000,0.00000000,6.39000000 +12935,chr22,49330102,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,-1.26000000,0.00000000,,0.27941176,69.00000000,3.05309735,0.01449275,0.00000000,6.65000000 +12936,chr22,49330881,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.99000000,0.00000000,,0.22340426,95.00000000,4.20353982,0.01052632,0.00000000,6.64000000 +12937,chr22,49331061,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,0.00000000,-0.48000000,0.00000000,,0.13483146,89.00000000,3.93805310,0.00000000,0.00000000,5.81000000 +12938,chr22,49331791,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.08000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,6.44000000 +12939,chr22,49332129,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,0.00000000,-1.06000000,0.00000000,,0.09302326,87.00000000,3.84955752,0.01149425,0.00000000,5.32000000 +12940,chr22,49332992,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,89.00000000,0.00000000,0.09000000,0.00000000,,0.24705882,85.00000000,3.76106195,0.00000000,0.00000000,5.77000000 +12941,chr22,49333465,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,0.00000000,0.36000000,0.00000000,,0.29870130,78.00000000,3.45132743,0.01282051,0.00000000,6.28000000 +12942,chr22,49334622,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,0.29000000,0.00000000,,0.26136364,88.00000000,3.89380531,0.00000000,0.00000000,6.01000000 +12943,chr22,49335068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-1.66000000,0.00000000,,0.23287671,73.00000000,3.23008850,0.00000000,0.00000000,6.98000000 +12944,chr22,49335372,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,77.00000000,0.00000000,1.34000000,0.00000000,,0.27586207,89.00000000,3.93805310,0.02247191,0.00000000,6.36000000 +12945,chr22,49336097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.85000000,0.00000000,,0.21951220,82.00000000,3.62831858,0.00000000,0.00000000,6.76000000 +12946,chr22,49336148,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.81000000,0.00000000,,0.19230769,80.00000000,3.53982301,0.00000000,0.00000000,6.58000000 +12947,chr22,49337292,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-0.87000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.68000000 +12948,chr22,49337402,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.17283951,81.00000000,3.58407080,0.00000000,0.00000000,5.94000000 +12949,chr22,49338089,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,0.43000000,0.00000000,,0.21333333,76.00000000,3.36283186,0.01315789,0.00000000,6.64000000 +12950,chr22,49338248,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,69.00000000,0.00000000,1.69000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.65000000 +12951,chr22,49341668,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,94.00000000,0.00000000,0.20000000,0.00000000,,0.27956989,93.00000000,4.11504425,0.00000000,0.00000000,6.29000000 +12952,chr22,49343435,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,68.00000000,0.00000000,-1.41000000,0.00000000,,0.18571429,78.00000000,3.45132743,0.07692308,0.00000000,6.23000000 +12953,chr22,49344191,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,73.00000000,0.00000000,0.48000000,0.00000000,,0.17441860,88.00000000,3.89380531,0.02272727,0.00000000,5.96000000 +12954,chr22,49344459,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,0.45000000,0.00000000,,0.15384615,65.00000000,2.87610619,0.00000000,0.00000000,5.83000000 +12955,chr22,49344821,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,80.00000000,0.00000000,-0.12000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.62000000 +12956,chr22,49345029,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,81.00000000,0.00000000,-1.15000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.68000000 +12957,chr22,49345512,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,0.00000000,-0.79000000,0.00000000,,0.20588235,75.00000000,3.31858407,0.09333333,0.00000000,6.28000000 +12958,chr22,49345908,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,0.79000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.50000000 +12959,chr22,49346172,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,59.90000000,0.00000000,ref,1.00000000,0.02439024,41.00000000,1.81415929,0.00000000,0.00000000,59.00000000,0.00000000,-1.56000000,0.00000000,,0.22680412,97.00000000,4.29203540,0.00000000,0.00000000,3.73000000 +12960,chr22,49346497,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,82.00000000,0.00000000,-0.82000000,0.00000000,,0.25000000,95.00000000,4.20353982,0.02105263,0.00000000,6.34000000 +12961,chr22,49346509,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-0.83000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.02272727,0.00000000,6.34000000 +12962,chr22,49346964,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,0.00000000,0.73000000,0.00000000,,0.13559322,59.00000000,2.61061947,0.00000000,0.00000000,5.22000000 +12963,chr22,49347381,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,0.00000000,0.24000000,0.00000000,,0.18571429,75.00000000,3.31858407,0.04000000,0.00000000,5.38000000 +12964,chr22,49348457,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,70.00000000,0.00000000,-0.86000000,0.00000000,,0.16483516,92.00000000,4.07079646,0.01086957,0.00000000,6.09000000 +12965,chr22,49348643,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,1.24000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,4.98000000 +12966,chr22,49348644,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,1.69000000,0.00000000,,0.17142857,72.00000000,3.18584071,0.01388889,0.00000000,6.68000000 +12967,chr22,49349402,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,56.00000000,0.00000000,1.17000000,0.00000000,,0.34615385,80.00000000,3.53982301,0.02500000,0.00000000,4.84000000 +12968,chr22,49349446,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,-0.39000000,0.00000000,,0.29885057,89.00000000,3.93805310,0.02247191,0.00000000,6.03000000 +12969,chr22,49349482,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,0.00000000,0.12000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,6.02000000 +12970,chr22,49351505,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.42000000,0.00000000,,0.50000000,102.00000000,4.51327434,0.03921569,0.00000000,8.29000000 +12971,chr22,49351534,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,0.00000000,0.23000000,0.00000000,,0.50943396,113.00000000,5.00000000,0.05309735,0.00000000,7.94000000 +12972,chr22,49355277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,0.57000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.05000000,0.00000000,6.27000000 +12973,chr22,49355279,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,88.00000000,0.00000000,0.57000000,0.00000000,,0.25000000,80.00000000,3.53982301,0.05000000,0.00000000,6.27000000 +12974,chr22,49355280,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,89.00000000,0.00000000,0.38000000,0.00000000,,0.26315789,80.00000000,3.53982301,0.05000000,0.00000000,6.19000000 +12975,chr22,49355466,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.38000000,0.00000000,,0.30555556,79.00000000,3.49557522,0.07594937,0.00000000,6.48000000 +12976,chr22,49355494,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,-0.33000000,0.00000000,,0.24657534,80.00000000,3.53982301,0.08750000,0.00000000,5.98000000 +12977,chr22,49355775,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,84.00000000,0.00000000,-0.53000000,0.00000000,,0.27118644,59.00000000,2.61061947,0.00000000,0.00000000,6.72000000 +12978,chr22,49357190,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,50.00000000,0.00000000,-0.42000000,0.00000000,,0.40625000,64.00000000,2.83185841,0.00000000,0.00000000,4.65000000 +12979,chr22,49357798,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.49295775,78.00000000,3.45132743,0.08974359,0.00000000,8.35000000 +12980,chr22,49361830,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,95.00000000,0.00000000,0.51000000,0.00000000,,0.38461538,78.00000000,3.45132743,0.00000000,0.00000000,8.36000000 +12981,chr22,49362381,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,116.00000000,0.00000000,1.44000000,0.00000000,,0.37931034,88.00000000,3.89380531,0.00000000,0.00000000,13.59000000 +12982,chr22,49362628,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,1.24000000,0.00000000,,0.34285714,72.00000000,3.18584071,0.02777778,0.00000000,8.01000000 +12983,chr22,49363017,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,107.00000000,0.00000000,-0.90000000,0.00000000,,0.35714286,71.00000000,3.14159292,0.00000000,0.00000000,15.22000000 +12984,chr22,49363149,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,58.53000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,0.57000000,0.00000000,,0.37681159,69.00000000,3.05309735,0.00000000,0.00000000,8.14000000 +12985,chr22,49363169,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,59.05000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,0.12000000,0.00000000,,0.35483871,64.00000000,2.83185841,0.03125000,0.00000000,7.76000000 +12986,chr22,49363384,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,0.99000000,0.00000000,,0.45833333,98.00000000,4.33628319,0.02040816,0.00000000,8.13000000 +12987,chr22,49363688,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,0.00000000,0.22000000,0.00000000,,0.41333333,76.00000000,3.36283186,0.01315789,0.00000000,4.71000000 +12988,chr22,49364255,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,-0.33000000,0.00000000,,0.41250000,86.00000000,3.80530973,0.06976744,0.00000000,8.29000000 +12989,chr22,49364270,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.37333333,83.00000000,3.67256637,0.09638554,0.00000000,8.35000000 +12990,chr22,49364273,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,76.00000000,0.00000000,-1.03000000,0.00000000,,0.36000000,84.00000000,3.71681416,0.09523810,0.00000000,8.35000000 +12991,chr22,49365365,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,75.00000000,0.00000000,-1.57000000,0.00000000,,0.45833333,98.00000000,4.33628319,0.00000000,0.00000000,8.82000000 +12992,chr22,49368145,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,77.00000000,0.00000000,-1.15000000,0.00000000,,0.24731183,97.00000000,4.29203540,0.04123711,0.00000000,6.01000000 +12993,chr22,49369243,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,87.00000000,0.00000000,-0.27000000,0.00000000,,0.43298969,98.00000000,4.33628319,0.01020408,0.00000000,8.41000000 +12994,chr22,49371481,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,0.39000000,0.00000000,,0.43396226,55.00000000,2.43362832,0.03636364,0.00000000,4.25000000 +12995,chr22,49371782,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,87.00000000,0.00000000,0.20000000,0.00000000,,0.23456790,82.00000000,3.62831858,0.01219512,0.00000000,5.83000000 +12996,chr22,49371877,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,74.00000000,0.00000000,-0.04000000,0.00000000,,0.27631579,78.00000000,3.45132743,0.02564103,0.00000000,6.09000000 +12997,chr22,49381692,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,0.19000000,0.00000000,,0.24096386,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +12998,chr22,49382323,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.67000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.00000000,0.00000000,6.70000000 +12999,chr22,49383054,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,0.00000000,-1.38000000,0.00000000,,0.50632911,79.00000000,3.49557522,0.00000000,0.00000000,8.71000000 +13000,chr22,49383477,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,50.00000000,0.00000000,0.84000000,0.00000000,,0.40384615,68.00000000,3.00884956,0.23529412,0.00000000,4.54000000 +13001,chr22,49386575,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,45.37000000,60.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,0.00000000,1.14000000,0.00000000,,0.25423729,61.00000000,2.69911504,0.03278689,0.00000000,5.64000000 +13002,chr22,49386909,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,56.17000000,19.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.08000000,0.00000000,111.00000000,0.00000000,-1.92000000,0.00000000,,0.38775510,103.00000000,4.55752212,0.03883495,0.00000000,9.72000000 +13003,chr22,49387479,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,45.71000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,55.00000000,0.00000000,0.83000000,0.00000000,,0.41463415,43.00000000,1.90265487,0.04651163,0.00000000,4.84000000 +13004,chr22,49387481,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,45.38000000,44.00000000,ref,1.00000000,0.04166667,26.00000000,1.15044248,0.07692308,0.00000000,44.00000000,0.00000000,0.73000000,0.00000000,,0.41025641,42.00000000,1.85840708,0.07142857,0.02325581,3.58000000 +13005,chr22,49389500,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,92.00000000,0.00000000,0.70000000,0.00000000,,0.33707865,91.00000000,4.02654867,0.01098901,0.00000000,8.15000000 +13006,chr22,49390502,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,21.00000000,0.00000000,0.14000000,0.00000000,,0.48684211,78.00000000,3.45132743,0.01282051,0.00000000,3.96000000 +13007,chr22,49390640,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,0.00000000,-1.38000000,0.00000000,,0.42857143,77.00000000,3.40707965,0.00000000,0.00000000,8.41000000 +13008,chr22,49391461,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,0.15000000,0.00000000,,0.46478873,73.00000000,3.23008850,0.02739726,0.00000000,8.11000000 +13009,chr22,49392843,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,91.00000000,0.00000000,-1.24000000,0.00000000,,0.42391304,92.00000000,4.07079646,0.00000000,0.00000000,8.96000000 +13010,chr22,49392937,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.21000000,0.00000000,,0.41860465,86.00000000,3.80530973,0.00000000,0.00000000,8.52000000 +13011,chr22,49393037,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,84.00000000,0.00000000,-0.01000000,0.00000000,,0.34375000,66.00000000,2.92035398,0.03030303,0.00000000,8.27000000 +13012,chr22,49393176,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,0.00000000,-1.48000000,0.00000000,,0.42222222,92.00000000,4.07079646,0.02173913,0.00000000,8.33000000 +13013,chr22,49394501,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.00000000,32.00000000,0.00000000,-1.69000000,0.00000000,,0.60377358,55.00000000,2.43362832,0.01818182,0.00000000,3.73000000 +13014,chr22,49395140,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,28.00000000,1.23893805,0.00000000,0.00000000,17.00000000,0.00000000,0.65000000,0.00000000,,0.46052632,77.00000000,3.40707965,0.01298701,0.00000000,3.21000000 +13015,chr22,49397613,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,0.00000000,-1.38000000,0.00000000,,0.43478261,70.00000000,3.09734513,0.01428571,0.00000000,7.67000000 +13016,chr22,49398203,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.23000000,0.00000000,,0.50793651,65.00000000,2.87610619,0.03076923,0.00000000,8.00000000 +13017,chr22,49400291,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,78.00000000,0.00000000,0.85000000,0.00000000,,0.37931034,58.00000000,2.56637168,0.00000000,0.00000000,8.54000000 +13018,chr22,49400760,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,110.00000000,0.00000000,-0.27000000,0.00000000,,0.37634409,93.00000000,4.11504425,0.00000000,0.00000000,15.14000000 +13019,chr22,49401590,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.48000000,0.00000000,,0.42708333,97.00000000,4.29203540,0.01030928,0.00000000,8.54000000 +13020,chr22,49402023,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.38000000,0.00000000,,0.42105263,78.00000000,3.45132743,0.02564103,0.00000000,8.26000000 +13021,chr22,49403882,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,79.00000000,0.00000000,-0.50000000,0.00000000,,0.46913580,82.00000000,3.62831858,0.00000000,0.00000000,8.95000000 +13022,chr22,49404362,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-0.50000000,0.00000000,,0.45205479,74.00000000,3.27433628,0.01351351,0.00000000,8.53000000 +13023,chr22,49405079,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,113.00000000,0.00000000,0.27000000,0.00000000,,0.33734940,86.00000000,3.80530973,0.03488372,0.00000000,13.21000000 +13024,chr22,49405081,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,112.00000000,0.00000000,0.99000000,0.00000000,,0.34177215,83.00000000,3.67256637,0.03614458,0.00000000,13.29000000 +13025,chr22,49405119,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,119.00000000,0.00000000,-0.08000000,0.00000000,,0.40217391,92.00000000,4.07079646,0.00000000,0.00000000,12.42000000 +13026,chr22,49405170,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,0.00000000,-1.59000000,0.00000000,,0.41975309,84.00000000,3.71681416,0.03571429,0.00000000,8.32000000 +13027,chr22,49405174,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,-1.01000000,0.00000000,,0.44155844,80.00000000,3.53982301,0.03750000,0.00000000,8.35000000 +13028,chr22,49405616,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.06060606,38.00000000,1.68141593,0.10526316,0.00000000,48.00000000,0.00000000,-1.12000000,0.00000000,,0.50632911,86.00000000,3.80530973,0.06976744,0.00000000,4.29000000 +13029,chr22,49405749,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,82.00000000,0.00000000,0.12000000,0.00000000,,0.46774194,63.00000000,2.78761062,0.01587302,0.00000000,7.98000000 +13030,chr22,49405772,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,0.00000000,0.61000000,0.00000000,,0.43548387,65.00000000,2.87610619,0.04615385,0.00000000,7.79000000 +13031,chr22,49405778,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.19000000,0.00000000,,0.42857143,67.00000000,2.96460177,0.05970149,0.00000000,7.95000000 +13032,chr22,49406616,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,75.00000000,0.00000000,-0.74000000,0.00000000,,0.24358974,78.00000000,3.45132743,0.00000000,0.00000000,6.93000000 +13033,chr22,49406677,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,0.98000000,0.00000000,,0.20987654,81.00000000,3.58407080,0.00000000,0.00000000,6.54000000 +13034,chr22,49406727,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,58.00000000,0.00000000,0.53000000,0.00000000,,0.16455696,79.00000000,3.49557522,0.00000000,0.00000000,3.56000000 +13035,chr22,49407822,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,49.45000000,24.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.21739130,0.00000000,39.00000000,0.00000000,-0.69000000,0.00000000,,0.38095238,49.00000000,2.16814159,0.14285714,0.00000000,4.13000000 +13036,chr22,49407832,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,48.68000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,48.00000000,0.00000000,0.60000000,0.00000000,,0.38095238,49.00000000,2.16814159,0.14285714,0.00000000,4.38000000 +13037,chr22,49408275,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,44.00000000,0.00000000,-0.61000000,0.00000000,,0.40298507,73.00000000,3.23008850,0.04109589,0.00000000,4.53000000 +13038,chr22,49408433,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,0.00000000,1.21000000,0.00000000,,0.36111111,72.00000000,3.18584071,0.00000000,0.00000000,8.86000000 +13039,chr22,49409209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,0.00000000,0.01000000,0.00000000,,0.28070175,61.00000000,2.69911504,0.06557377,0.00000000,5.92000000 +13040,chr22,49427509,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,-0.82000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.38000000 +13041,chr22,49427583,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.67000000,0.00000000,,0.25000000,66.00000000,2.92035398,0.03030303,0.00000000,6.62000000 +13042,chr22,49428795,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,85.00000000,0.00000000,-0.38000000,0.00000000,,0.25882353,86.00000000,3.80530973,0.01162791,0.00000000,6.23000000 +13043,chr22,49430149,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.54000000,1.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,41.00000000,0.00000000,-0.57000000,0.00000000,,0.33333333,48.00000000,2.12389381,0.00000000,0.00000000,4.14000000 +13044,chr22,49430291,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,0.00000000,-1.36000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.03076923,0.00000000,6.31000000 +13045,chr22,49430296,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,71.00000000,0.00000000,0.47000000,0.00000000,,0.19672131,63.00000000,2.78761062,0.03174603,0.00000000,6.30000000 +13046,chr22,49430308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,0.04000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.39000000 +13047,chr22,49430508,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,82.00000000,0.00000000,0.04000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.37000000 +13048,chr22,49430667,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,76.00000000,0.00000000,-0.32000000,0.00000000,,0.19277108,83.00000000,3.67256637,0.00000000,0.00000000,6.72000000 +13049,chr22,49430732,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,0.00000000,-0.77000000,0.00000000,,0.26436782,87.00000000,3.84955752,0.00000000,0.00000000,6.68000000 +13050,chr22,49431413,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,0.00000000,-0.94000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,6.75000000 +13051,chr22,49432301,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,0.00000000,0.29000000,0.00000000,,0.22033898,62.00000000,2.74336283,0.04838710,0.00000000,2.75000000 +13052,chr22,49433736,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,90.00000000,0.00000000,-0.77000000,0.00000000,,0.32051282,81.00000000,3.58407080,0.03703704,0.00000000,7.88000000 +13053,chr22,49434711,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,81.00000000,0.00000000,-0.01000000,0.00000000,,0.20408163,101.00000000,4.46902655,0.02970297,0.00000000,5.84000000 +13054,chr22,49435598,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,0.00000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.12000000 +13055,chr22,49435630,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,78.00000000,0.00000000,-1.22000000,0.00000000,,0.21739130,73.00000000,3.23008850,0.05479452,0.00000000,6.08000000 +13056,chr22,49442279,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,81.00000000,0.00000000,0.77000000,0.00000000,,0.21621622,77.00000000,3.40707965,0.02597403,0.00000000,5.75000000 +13057,chr22,49443583,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,0.00000000,-0.38000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.38000000 +13058,chr22,49444009,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,79.00000000,0.00000000,1.64000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,5.74000000 +13059,chr22,49457563,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,-0.13000000,0.00000000,,0.23188406,69.00000000,3.05309735,0.00000000,0.00000000,7.09000000 +13060,chr22,49460133,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.54000000,0.00000000,,0.28169014,72.00000000,3.18584071,0.01388889,0.00000000,6.54000000 +13061,chr22,49464038,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.67000000,0.00000000,,0.28048780,82.00000000,3.62831858,0.00000000,0.00000000,7.03000000 +13062,chr22,49464931,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,81.00000000,0.00000000,-0.81000000,0.00000000,,0.19101124,90.00000000,3.98230088,0.01111111,0.00000000,6.57000000 +13063,chr22,49464941,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.61000000,0.00000000,,0.18181818,90.00000000,3.98230088,0.02222222,0.00000000,6.14000000 +13064,chr22,49465738,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,0.95000000,0.00000000,,0.28723404,94.00000000,4.15929204,0.00000000,0.00000000,6.52000000 +13065,chr22,49469254,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,78.00000000,0.00000000,0.47000000,0.00000000,,0.22580645,95.00000000,4.20353982,0.02105263,0.00000000,5.77000000 +13066,chr22,49474282,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,75.00000000,0.00000000,-1.37000000,0.00000000,,0.18571429,71.00000000,3.14159292,0.00000000,0.00000000,6.64000000 +13067,chr22,49475432,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,0.53000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.01265823,0.00000000,6.67000000 +13068,chr22,49481194,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,-0.18000000,0.00000000,,0.24137931,90.00000000,3.98230088,0.03333333,0.00000000,5.96000000 +13069,chr22,49482951,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,68.00000000,0.00000000,0.82000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.44000000 +13070,chr22,49484644,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,0.00000000,1.75000000,0.00000000,,0.25000000,79.00000000,3.49557522,0.02531646,0.00000000,5.93000000 +13071,chr22,49486928,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,0.00000000,0.58000000,0.00000000,,0.12000000,77.00000000,3.40707965,0.02597403,0.00000000,4.05000000 +13072,chr22,49490948,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,0.00000000,0.02000000,0.00000000,,0.30645161,63.00000000,2.78761062,0.01587302,0.00000000,6.27000000 +13073,chr22,49491122,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,0.00000000,1.12000000,0.00000000,,0.11111111,83.00000000,3.67256637,0.01204819,0.00000000,4.74000000 +13074,chr22,49491529,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.35000000,0.00000000,,0.20879121,93.00000000,4.11504425,0.01075269,0.00000000,5.97000000 +13075,chr22,49491727,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.02857143,35.00000000,1.54867257,0.00000000,0.00000000,62.00000000,0.00000000,0.66000000,0.00000000,,0.16666667,74.00000000,3.27433628,0.02702703,0.00000000,5.08000000 +13076,chr22,49491749,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.17000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,67.00000000,0.00000000,0.57000000,0.00000000,,0.14062500,69.00000000,3.05309735,0.07246377,0.00000000,4.84000000 +13077,chr22,49491882,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,0.36000000,0.00000000,,0.18888889,93.00000000,4.11504425,0.03225806,0.00000000,5.94000000 +13078,chr22,49492187,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,-0.84000000,0.00000000,,0.19000000,102.00000000,4.51327434,0.00000000,0.00000000,6.57000000 +13079,chr22,49492207,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,86.00000000,0.00000000,-0.46000000,0.00000000,,0.20560748,109.00000000,4.82300885,0.01834862,0.00000000,6.23000000 +13080,chr22,49492248,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,75.00000000,0.00000000,0.61000000,0.00000000,,0.24175824,93.00000000,4.11504425,0.01075269,0.00000000,5.91000000 +13081,chr22,49492624,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.32000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,6.35000000 +13082,chr22,49494570,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,49.93000000,33.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,51.00000000,0.00000000,-0.15000000,0.00000000,,0.30769231,62.00000000,2.74336283,0.11290323,0.00000000,4.35000000 +13083,chr22,49494707,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,78.00000000,0.00000000,-1.25000000,0.00000000,,0.23529412,55.00000000,2.43362832,0.05454545,0.00000000,5.90000000 +13084,chr22,49494931,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,-0.93000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,5.94000000 +13085,chr22,49495188,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,0.00000000,-1.17000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.43000000 +13086,chr22,49495310,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,0.00000000,-0.73000000,0.00000000,,0.18072289,85.00000000,3.76106195,0.02352941,0.00000000,5.81000000 +13087,chr22,49495437,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.62000000,0.00000000,,0.22619048,86.00000000,3.80530973,0.02325581,0.00000000,6.67000000 +13088,chr22,49495464,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,-0.65000000,0.00000000,,0.24418605,89.00000000,3.93805310,0.03370787,0.00000000,6.31000000 +13089,chr22,49495540,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,0.00000000,-0.04000000,0.00000000,,0.19565217,94.00000000,4.15929204,0.02127660,0.00000000,6.29000000 +13090,chr22,49498109,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,70.00000000,0.00000000,-1.30000000,0.00000000,,0.16901408,77.00000000,3.40707965,0.07792208,0.00000000,5.63000000 +13091,chr22,49498667,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,0.49000000,0.00000000,,0.24691358,83.00000000,3.67256637,0.01204819,0.00000000,6.54000000 +13092,chr22,49500766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,68.00000000,0.00000000,-0.49000000,0.00000000,,0.24358974,81.00000000,3.58407080,0.03703704,0.00000000,5.89000000 +13093,chr22,49506040,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,0.00000000,-1.21000000,0.00000000,,0.31428571,70.00000000,3.09734513,0.00000000,0.00000000,8.16000000 +13094,chr22,49517522,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,70.00000000,0.00000000,-0.17000000,0.00000000,,0.45882353,85.00000000,3.76106195,0.00000000,0.00000000,8.76000000 +13095,chr22,49517573,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,-0.39000000,0.00000000,,0.23529412,89.00000000,3.93805310,0.04494382,0.00000000,5.48000000 +13096,chr22,49518730,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,0.98000000,0.00000000,,0.11688312,78.00000000,3.45132743,0.01282051,0.00000000,5.27000000 +13097,chr22,49518733,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,0.00000000,1.04000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.32000000 +13098,chr22,49518757,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,70.00000000,0.00000000,-0.13000000,0.00000000,,0.12500000,80.00000000,3.53982301,0.00000000,0.00000000,5.12000000 +13099,chr22,49519728,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,66.00000000,0.00000000,2.32000000,0.00000000,,0.26229508,65.00000000,2.87610619,0.06153846,0.00000000,5.56000000 +13100,chr22,49520334,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,-0.47000000,0.00000000,,0.28358209,70.00000000,3.09734513,0.04285714,0.00000000,6.06000000 +13101,chr22,49520530,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,0.00000000,-1.25000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.01470588,0.00000000,6.39000000 +13102,chr22,49522761,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,85.00000000,0.00000000,-0.66000000,0.00000000,,0.28235294,87.00000000,3.84955752,0.02298851,0.00000000,6.02000000 +13103,chr22,49522884,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,0.02000000,0.00000000,,0.24000000,75.00000000,3.31858407,0.00000000,0.00000000,6.39000000 +13104,chr22,49525168,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,75.00000000,0.00000000,0.01000000,0.00000000,,0.17582418,91.00000000,4.02654867,0.00000000,0.00000000,6.33000000 +13105,chr22,49526000,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.12000000,0.00000000,,0.22727273,69.00000000,3.05309735,0.02898551,0.00000000,6.00000000 +13106,chr22,49527137,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,0.00000000,-0.84000000,0.00000000,,0.20547945,73.00000000,3.23008850,0.00000000,0.00000000,6.72000000 +13107,chr22,49527206,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,71.00000000,0.00000000,0.98000000,0.00000000,,0.19767442,87.00000000,3.84955752,0.01149425,0.00000000,5.79000000 +13108,chr22,49527797,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.10000000,0.00000000,,0.18750000,81.00000000,3.58407080,0.01234568,0.00000000,6.50000000 +13109,chr22,49527917,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-0.67000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.89000000 +13110,chr22,49528577,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.46000000,2.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.25000000,0.00000000,51.00000000,0.00000000,0.40000000,0.00000000,,0.26229508,78.00000000,3.45132743,0.21794872,0.00000000,2.94000000 +13111,chr22,49529611,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,0.11000000,0.00000000,,0.31034483,58.00000000,2.56637168,0.00000000,0.00000000,6.87000000 +13112,chr22,49530879,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,77.00000000,0.00000000,-0.83000000,0.00000000,,0.18181818,91.00000000,4.02654867,0.03296703,0.00000000,5.22000000 +13113,chr22,49530881,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,78.00000000,0.00000000,-0.73000000,0.00000000,,0.17977528,92.00000000,4.07079646,0.03260870,0.00000000,5.22000000 +13114,chr22,49531010,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,87.00000000,0.00000000,-0.50000000,0.00000000,,0.23232323,100.00000000,4.42477876,0.01000000,0.00000000,6.66000000 +13115,chr22,49532214,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.19000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,-1.45000000,0.00000000,,0.24590164,62.00000000,2.74336283,0.01612903,0.00000000,6.46000000 +13116,chr22,49534424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,66.00000000,0.00000000,0.09000000,0.00000000,,0.14634146,83.00000000,3.67256637,0.01204819,0.00000000,5.72000000 +13117,chr22,49534629,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,1.37000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.82000000 +13118,chr22,49536806,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-1.45000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.00000000,0.00000000,6.20000000 +13119,chr22,49550983,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.67000000,0.00000000,,0.27272727,89.00000000,3.93805310,0.01123596,0.00000000,6.54000000 +13120,chr22,49571595,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,0.00000000,-0.11000000,0.00000000,,0.15492958,71.00000000,3.14159292,0.00000000,0.00000000,5.89000000 +13121,chr22,49575483,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.74000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.10810811,0.00000000,82.00000000,0.00000000,1.31000000,0.00000000,,0.22972973,79.00000000,3.49557522,0.06329114,0.00000000,5.60000000 +13122,chr22,49600823,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,0.47000000,0.00000000,,0.17777778,90.00000000,3.98230088,0.00000000,0.00000000,6.24000000 +13123,chr22,49601711,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.28000000,0.00000000,,0.23684211,79.00000000,3.49557522,0.03797468,0.00000000,6.62000000 +13124,chr22,49652835,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,84.00000000,0.00000000,0.67000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.66000000 +13125,chr22,49751044,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,0.00000000,0.98000000,0.00000000,,0.12658228,82.00000000,3.62831858,0.03658537,0.00000000,4.76000000 +13126,chr22,49755045,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,0.00000000,0.66000000,0.00000000,,0.12359551,91.00000000,4.02654867,0.00000000,0.00000000,5.12000000 +13127,chr22,49765424,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,0.00000000,-1.19000000,0.00000000,,0.23750000,82.00000000,3.62831858,0.02439024,0.00000000,6.02000000 +13128,chr22,49809548,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,59.88000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,-0.35000000,0.00000000,,0.16417910,70.00000000,3.09734513,0.04285714,0.00000000,5.37000000 +13129,chr22,49814261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02777778,38.00000000,1.68141593,0.05263158,0.00000000,65.00000000,0.00000000,0.82000000,0.00000000,,0.14772727,91.00000000,4.02654867,0.03296703,0.00000000,4.97000000 +13130,chr22,49819175,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,66.00000000,0.00000000,1.11000000,0.00000000,,0.16129032,63.00000000,2.78761062,0.01587302,0.00000000,5.11000000 +13131,chr22,49843648,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,87.00000000,0.00000000,2.02000000,0.00000000,,0.24719101,93.00000000,4.11504425,0.03225806,0.00000000,5.62000000 +13132,chr22,49843718,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,0.00000000,-1.66000000,0.00000000,,0.22500000,82.00000000,3.62831858,0.02439024,0.00000000,6.10000000 +13133,chr22,49843864,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,0.00000000,0.92000000,0.00000000,,0.16883117,77.00000000,3.40707965,0.00000000,0.00000000,5.49000000 +13134,chr22,49843947,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,74.00000000,0.00000000,-0.47000000,0.00000000,,0.18666667,78.00000000,3.45132743,0.03846154,0.00000000,5.87000000 +13135,chr22,49844733,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,72.00000000,0.00000000,-1.28000000,0.00000000,,0.19298246,60.00000000,2.65486726,0.05000000,0.00000000,6.11000000 +13136,chr22,49845505,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,0.00000000,-1.26000000,0.00000000,,0.17647059,88.00000000,3.89380531,0.03409091,0.00000000,6.00000000 +13137,chr22,49847064,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.00000000,0.00000000,,0.30379747,82.00000000,3.62831858,0.02439024,0.00000000,7.31000000 +13138,chr22,49847562,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,0.00000000,-1.40000000,0.00000000,,0.18627451,103.00000000,4.55752212,0.00970874,0.00000000,6.69000000 +13139,chr22,49849085,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04878049,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.21839080,97.00000000,4.29203540,0.08247423,0.00000000,5.40000000 +13140,chr22,49849285,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,1.20000000,0.00000000,,0.24271845,104.00000000,4.60176991,0.00961538,0.00000000,6.54000000 +13141,chr22,49850099,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,0.00000000,-0.42000000,0.00000000,,0.06410256,79.00000000,3.49557522,0.01265823,0.00000000,5.30000000 +13142,chr22,49850423,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,74.00000000,0.00000000,-0.11000000,0.00000000,,0.21518987,80.00000000,3.53982301,0.01250000,0.00000000,6.17000000 +13143,chr22,49850885,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,65.00000000,0.00000000,1.87000000,0.00000000,,0.13095238,86.00000000,3.80530973,0.02325581,0.00000000,4.80000000 +13144,chr22,49851047,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,-0.26000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.97000000 +13145,chr22,49851129,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,0.00000000,0.26000000,0.00000000,,0.16831683,108.00000000,4.77876106,0.06481481,0.00000000,5.80000000 +13146,chr22,49851548,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,0.00000000,1.40000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.00000000,0.00000000,5.44000000 +13147,chr22,49854741,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,81.00000000,0.00000000,-0.16000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.26000000 +13148,chr22,49855483,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04545455,23.00000000,1.01769912,0.04347826,0.00000000,55.00000000,0.00000000,-1.34000000,0.00000000,,0.21428571,58.00000000,2.56637168,0.03448276,0.00000000,2.83000000 +13149,chr22,49856029,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,0.00000000,-1.39000000,0.00000000,,0.24691358,81.00000000,3.58407080,0.00000000,0.00000000,6.81000000 +13150,chr22,49856635,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.24000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,0.73000000,0.00000000,,0.11764706,72.00000000,3.18584071,0.05555556,0.00000000,4.63000000 +13151,chr22,49856816,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,58.86000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,0.00000000,-1.28000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.04225352,0.00000000,5.62000000 +13152,chr22,49856817,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.86000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.43000000,0.00000000,,0.14925373,71.00000000,3.14159292,0.05633803,0.00000000,5.77000000 +13153,chr22,49857179,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,79.00000000,0.00000000,1.14000000,0.00000000,,0.19178082,73.00000000,3.23008850,0.00000000,0.00000000,6.30000000 +13154,chr22,49857701,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,0.00000000,1.17000000,0.00000000,,0.17045455,88.00000000,3.89380531,0.00000000,0.00000000,5.53000000 +13155,chr22,49857828,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-0.91000000,0.00000000,,0.25842697,90.00000000,3.98230088,0.01111111,0.00000000,6.82000000 +13156,chr22,49858056,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,74.00000000,0.00000000,-0.64000000,0.00000000,,0.16216216,113.00000000,5.00000000,0.01769912,0.00000000,4.91000000 +13157,chr22,49858094,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,75.00000000,0.00000000,0.42000000,0.00000000,,0.19354839,96.00000000,4.24778761,0.03125000,0.00000000,5.70000000 +13158,chr22,49858479,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,96.00000000,0.00000000,-0.32000000,0.00000000,,0.22105263,96.00000000,4.24778761,0.01041667,0.00000000,4.85000000 +13159,chr22,49859135,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.19230769,78.00000000,3.45132743,0.00000000,0.00000000,5.91000000 +13160,chr22,49859206,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,38.00000000,1.68141593,0.02631579,0.00000000,64.00000000,0.00000000,-1.12000000,0.00000000,,0.13750000,81.00000000,3.58407080,0.01234568,0.00000000,5.26000000 +13161,chr22,49859453,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,64.00000000,0.00000000,-1.50000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.23000000 +13162,chr22,49859489,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,0.26000000,0.00000000,,0.21428571,70.00000000,3.09734513,0.00000000,0.00000000,6.25000000 +13163,chr22,49859542,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,0.00000000,1.80000000,0.00000000,,0.17073171,82.00000000,3.62831858,0.00000000,0.00000000,5.58000000 +13164,chr22,49859572,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,0.59000000,0.00000000,,0.13750000,82.00000000,3.62831858,0.01219512,0.00000000,5.72000000 +13165,chr22,49860172,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,57.92000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.78000000 +13166,chr22,49861244,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,1.05000000,0.00000000,,0.14285714,78.00000000,3.45132743,0.01282051,0.00000000,5.09000000 +13167,chr22,49862224,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.56000000,0.00000000,,0.20224719,89.00000000,3.93805310,0.00000000,0.00000000,6.72000000 +13168,chr22,49862661,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.15625000,0.00000000,73.00000000,0.00000000,-0.96000000,0.00000000,,0.20987654,96.00000000,4.24778761,0.14583333,0.00000000,5.88000000 +13169,chr22,49863038,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,82.00000000,0.00000000,1.15000000,0.00000000,,0.21176471,88.00000000,3.89380531,0.03409091,0.00000000,5.65000000 +13170,chr22,49863090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-1.21000000,0.00000000,,0.21875000,98.00000000,4.33628319,0.01020408,0.00000000,6.22000000 +13171,chr22,49863237,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,58.00000000,0.00000000,1.01000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,3.60000000 +13172,chr22,49863238,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,0.00000000,0.63000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.14000000 +13173,chr22,49864018,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,1.19000000,0.00000000,,0.18421053,76.00000000,3.36283186,0.00000000,0.00000000,6.44000000 +13174,chr22,49864531,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.63000000,0.00000000,,0.21212121,68.00000000,3.00884956,0.02941176,0.00000000,6.36000000 +13175,chr22,49865042,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-1.88000000,0.00000000,,0.22222222,68.00000000,3.00884956,0.07352941,0.00000000,6.21000000 +13176,chr22,49865103,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.39000000,0.00000000,,0.31506849,76.00000000,3.36283186,0.02631579,0.00000000,8.46000000 +13177,chr22,49865150,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,66.00000000,0.00000000,0.91000000,0.00000000,,0.35593220,59.00000000,2.61061947,0.00000000,0.00000000,8.12000000 +13178,chr22,49865219,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,0.37000000,0.00000000,,0.28787879,67.00000000,2.96460177,0.00000000,0.00000000,6.48000000 +13179,chr22,49865266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.62000000,0.00000000,,0.26229508,62.00000000,2.74336283,0.01612903,0.00000000,6.25000000 +13180,chr22,49865504,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.41000000,0.00000000,,0.13750000,80.00000000,3.53982301,0.00000000,0.00000000,5.82000000 +13181,chr22,49866048,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,88.00000000,0.00000000,0.12000000,0.00000000,,0.27631579,76.00000000,3.36283186,0.00000000,0.00000000,5.85000000 +13182,chr22,49866336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,78.00000000,0.00000000,-0.75000000,0.00000000,,0.20731707,82.00000000,3.62831858,0.00000000,0.00000000,6.95000000 +13183,chr22,49866521,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,95.00000000,0.00000000,0.34000000,0.00000000,,0.24444444,91.00000000,4.02654867,0.01098901,0.00000000,5.47000000 +13184,chr22,49866824,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,75.00000000,0.00000000,0.64000000,0.00000000,,0.23943662,72.00000000,3.18584071,0.01388889,0.00000000,6.50000000 +13185,chr22,49866875,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,0.48000000,0.00000000,,0.21794872,78.00000000,3.45132743,0.00000000,0.00000000,6.43000000 +13186,chr22,49867412,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,0.17000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,2.81000000 +13187,chr22,49867475,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-0.03000000,0.00000000,,0.22222222,81.00000000,3.58407080,0.00000000,0.00000000,6.76000000 +13188,chr22,49868783,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,-0.85000000,0.00000000,,0.18292683,83.00000000,3.67256637,0.01204819,0.00000000,6.55000000 +13189,chr22,49869354,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.08000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.02439024,0.00000000,5.80000000 +13190,chr22,49869722,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,0.31000000,0.00000000,,0.18888889,91.00000000,4.02654867,0.01098901,0.00000000,5.92000000 +13191,chr22,49869993,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,61.00000000,0.00000000,1.19000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.91000000 +13192,chr22,49870394,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-1.06000000,0.00000000,,0.23188406,70.00000000,3.09734513,0.01428571,0.00000000,6.63000000 +13193,chr22,49872129,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,0.00000000,0.65000000,0.00000000,,0.26666667,91.00000000,4.02654867,0.01098901,0.00000000,6.59000000 +13194,chr22,49872136,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,89.00000000,0.00000000,0.71000000,0.00000000,,0.27083333,97.00000000,4.29203540,0.01030928,0.00000000,6.51000000 +13195,chr22,49872669,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,82.00000000,0.00000000,-0.20000000,0.00000000,,0.18181818,100.00000000,4.42477876,0.01000000,0.00000000,5.25000000 +13196,chr22,49872982,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,83.00000000,0.00000000,0.22000000,0.00000000,,0.21951220,84.00000000,3.71681416,0.00000000,0.00000000,6.39000000 +13197,chr22,49873860,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,71.00000000,0.00000000,0.87000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.60000000 +13198,chr22,49874174,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,0.00000000,2.00000000,0.00000000,,0.10144928,70.00000000,3.09734513,0.01428571,0.00000000,5.31000000 +13199,chr22,49874366,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.47000000,0.00000000,,0.14492754,72.00000000,3.18584071,0.04166667,0.00000000,5.05000000 +13200,chr22,49875444,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,-0.33000000,0.00000000,,0.15116279,91.00000000,4.02654867,0.05494505,0.00000000,5.42000000 +13201,chr22,49875570,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,0.83000000,0.00000000,,0.16304348,93.00000000,4.11504425,0.01075269,0.00000000,5.69000000 +13202,chr22,49875607,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,66.00000000,0.00000000,0.62000000,0.00000000,,0.14473684,77.00000000,3.40707965,0.01298701,0.00000000,5.16000000 +13203,chr22,49876567,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,0.00000000,-1.03000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.00000000,0.00000000,6.16000000 +13204,chr22,49876661,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,78.00000000,0.00000000,0.95000000,0.00000000,,0.18666667,75.00000000,3.31858407,0.00000000,0.00000000,5.52000000 +13205,chr22,49876922,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,0.00000000,1.22000000,0.00000000,,0.14772727,89.00000000,3.93805310,0.01123596,0.00000000,5.17000000 +13206,chr22,49877136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,34.00000000,1.50442478,0.00000000,0.00000000,75.00000000,0.00000000,-0.82000000,0.00000000,,0.21428571,86.00000000,3.80530973,0.02325581,0.00000000,6.33000000 +13207,chr22,49877528,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,74.00000000,0.00000000,0.05000000,0.00000000,,0.20967742,64.00000000,2.83185841,0.03125000,0.00000000,6.31000000 +13208,chr22,49877766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,78.00000000,0.00000000,2.00000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.64000000 +13209,chr22,49877780,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,0.00000000,0.20000000,0.00000000,,0.23611111,76.00000000,3.36283186,0.02631579,0.00000000,6.29000000 +13210,chr22,49877812,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,0.00000000,-0.56000000,0.00000000,,0.18309859,73.00000000,3.23008850,0.02739726,0.00000000,6.50000000 +13211,chr22,49877983,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,74.00000000,0.00000000,-0.28000000,0.00000000,,0.22857143,70.00000000,3.09734513,0.00000000,0.00000000,6.76000000 +13212,chr22,49878580,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,-0.11000000,0.00000000,,0.21794872,79.00000000,3.49557522,0.01265823,0.00000000,6.69000000 +13213,chr22,49878867,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.65000000,0.00000000,,0.15789474,57.00000000,2.52212389,0.00000000,0.00000000,5.16000000 +13214,chr22,49879272,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,58.31000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-0.85000000,0.00000000,,0.25000000,58.00000000,2.56637168,0.10344828,0.00000000,6.60000000 +13215,chr22,49879526,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,58.89000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,0.00000000,1.58000000,0.00000000,,0.09090909,67.00000000,2.96460177,0.01492537,0.00000000,4.88000000 +13216,chr22,49881083,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,76.00000000,0.00000000,-0.25000000,0.00000000,,0.16923077,68.00000000,3.00884956,0.04411765,0.00000000,5.47000000 +13217,chr22,49881103,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,72.00000000,0.00000000,0.45000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.08000000 +13218,chr22,49881532,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,0.00000000,-2.74000000,0.00000000,,0.21621622,74.00000000,3.27433628,0.00000000,0.00000000,6.92000000 +13219,chr22,49881677,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,70.00000000,0.00000000,0.07000000,0.00000000,,0.16470588,89.00000000,3.93805310,0.04494382,0.00000000,4.99000000 +13220,chr22,49883047,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-2.58000000,0.00000000,,0.22580645,96.00000000,4.24778761,0.03125000,0.00000000,6.54000000 +13221,chr22,49883180,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,80.00000000,0.00000000,1.76000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,5.83000000 +13222,chr22,49883261,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,0.00000000,-0.88000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.28000000 +13223,chr22,49884790,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,81.00000000,0.00000000,-1.24000000,0.00000000,,0.20833333,96.00000000,4.24778761,0.00000000,0.00000000,6.68000000 +13224,chr22,49884920,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,98.00000000,0.00000000,-0.39000000,0.00000000,,0.29761905,85.00000000,3.76106195,0.00000000,0.00000000,6.62000000 +13225,chr22,49884994,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,84.00000000,0.00000000,1.39000000,0.00000000,,0.21875000,97.00000000,4.29203540,0.01030928,0.00000000,6.56000000 +13226,chr22,49886488,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,-0.15000000,0.00000000,,0.21739130,92.00000000,4.07079646,0.00000000,0.00000000,4.76000000 +13227,chr22,49888269,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,75.00000000,0.00000000,2.63000000,0.00000000,,0.16814159,116.00000000,5.13274336,0.02586207,0.00000000,5.97000000 +13228,chr22,49888556,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,76.00000000,0.00000000,-1.11000000,0.00000000,,0.18604651,86.00000000,3.80530973,0.00000000,0.00000000,6.64000000 +13229,chr22,49888955,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,88.00000000,0.00000000,-2.14000000,0.00000000,,0.24418605,87.00000000,3.84955752,0.01149425,0.00000000,6.91000000 +13230,chr22,49889338,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,81.00000000,0.00000000,0.33000000,0.00000000,,0.19148936,94.00000000,4.15929204,0.00000000,0.00000000,6.41000000 +13231,chr22,49890372,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,98.00000000,0.00000000,-1.35000000,0.00000000,,0.27184466,104.00000000,4.60176991,0.00000000,0.00000000,6.01000000 +13232,chr22,49890430,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,0.00000000,1.04000000,0.00000000,,0.44859813,108.00000000,4.77876106,0.00925926,0.00000000,8.00000000 +13233,chr22,49890657,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.10000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00000000,0.00000000,6.27000000 +13234,chr22,49943113,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,73.00000000,0.00000000,0.69000000,0.00000000,,0.25274725,91.00000000,4.02654867,0.00000000,0.00000000,6.39000000 +13235,chr22,49957690,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,0.00000000,1.06000000,0.00000000,,0.30263158,80.00000000,3.53982301,0.05000000,0.00000000,6.36000000 +13236,chr22,49970241,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,104.00000000,0.00000000,-1.05000000,0.00000000,,0.35294118,88.00000000,3.89380531,0.03409091,0.00000000,13.27000000 +13237,chr22,49976339,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,0.19000000,0.00000000,,0.47191011,89.00000000,3.93805310,0.00000000,0.00000000,7.89000000 +13238,chr22,49987735,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,0.00000000,-0.48000000,0.00000000,,0.21311475,62.00000000,2.74336283,0.01612903,0.00000000,6.35000000 +13239,chr22,50001197,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,83.00000000,0.00000000,1.37000000,0.00000000,,0.20238095,86.00000000,3.80530973,0.02325581,0.00000000,5.21000000 +13240,chr22,50013610,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,53.00000000,0.00000000,1.51000000,0.00000000,,0.43636364,66.00000000,2.92035398,0.16666667,0.00000000,4.68000000 +13241,chr22,50029693,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.05555556,0.00000000,32.00000000,0.00000000,-0.35000000,0.00000000,,0.44827586,66.00000000,2.92035398,0.10606061,0.00000000,4.02000000 +13242,chr22,50030478,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,105.00000000,0.00000000,-0.19000000,0.00000000,,0.43298969,100.00000000,4.42477876,0.03000000,0.00000000,13.14000000 +13243,chr22,50031116,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.05000000,21.00000000,0.92920354,0.04761905,0.00000000,29.00000000,0.00000000,-0.75000000,0.00000000,,0.44594595,79.00000000,3.49557522,0.06329114,0.00000000,3.62000000 +13244,chr22,50031149,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,39.00000000,0.00000000,-0.89000000,0.00000000,,0.46428571,86.00000000,3.80530973,0.02325581,0.00000000,4.22000000 +13245,chr22,50033013,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,0.00000000,0.99000000,0.00000000,,0.45555556,92.00000000,4.07079646,0.01086957,0.00000000,4.02000000 +13246,chr22,50033039,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,42.00000000,0.00000000,1.17000000,0.00000000,,0.43209877,84.00000000,3.71681416,0.01190476,0.00000000,4.11000000 +13247,chr22,50033613,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,0.00000000,-0.18000000,0.00000000,,0.49411765,85.00000000,3.76106195,0.00000000,0.00000000,8.06000000 +13248,chr22,50034748,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,55.00000000,0.00000000,-0.37000000,0.00000000,,0.42647059,75.00000000,3.31858407,0.08000000,0.00000000,4.70000000 +13249,chr22,50034967,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,95.00000000,0.00000000,-0.39000000,0.00000000,,0.37209302,88.00000000,3.89380531,0.02272727,0.00000000,8.32000000 +13250,chr22,50035189,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,84.00000000,0.00000000,0.55000000,0.00000000,,0.34782609,77.00000000,3.40707965,0.10389610,0.00000000,7.97000000 +13251,chr22,50035207,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,63.00000000,0.00000000,0.70000000,0.00000000,,0.14000000,77.00000000,3.40707965,0.35064935,0.00000000,4.29000000 +13252,chr22,50035215,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,72.00000000,0.00000000,-1.08000000,0.00000000,,0.35714286,78.00000000,3.45132743,0.10256410,0.00000000,8.55000000 +13253,chr22,50035290,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,0.00000000,0.17000000,0.00000000,,0.37313433,67.00000000,2.96460177,0.00000000,0.00000000,8.52000000 +13254,chr22,50035532,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.45000000,0.00000000,,0.41666667,73.00000000,3.23008850,0.01369863,0.00000000,8.34000000 +13255,chr22,50036428,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,0.00000000,-0.59000000,0.00000000,,0.43037975,82.00000000,3.62831858,0.01219512,0.00000000,4.21000000 +13256,chr22,50040399,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,59.73000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,0.00000000,1.62000000,0.00000000,,0.44303797,82.00000000,3.62831858,0.03658537,0.00000000,6.29000000 +13257,chr22,50040615,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,0.00000000,0.08000000,0.00000000,,0.33333333,75.00000000,3.31858407,0.00000000,0.00000000,8.29000000 +13258,chr22,50041427,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-1.59000000,0.00000000,,0.39285714,84.00000000,3.71681416,0.00000000,0.00000000,9.34000000 +13259,chr22,50041679,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,102.00000000,0.00000000,1.10000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.01123596,0.00000000,12.86000000 +13260,chr22,50042497,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,67.00000000,0.00000000,0.06000000,0.00000000,,0.35443038,81.00000000,3.58407080,0.02469136,0.00000000,7.90000000 +13261,chr22,50043244,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,57.41000000,3.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,61.00000000,0.00000000,-1.59000000,0.00000000,,0.34848485,73.00000000,3.23008850,0.09589041,0.00000000,7.34000000 +13262,chr22,50043697,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,57.13000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,61.00000000,0.00000000,0.42000000,0.00000000,,0.54411765,70.00000000,3.09734513,0.02857143,0.00000000,7.47000000 +13263,chr22,50043822,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,66.00000000,0.00000000,-0.40000000,0.00000000,,0.40540541,78.00000000,3.45132743,0.05128205,0.00000000,8.06000000 +13264,chr22,50044688,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,0.00000000,-2.01000000,0.00000000,,0.49333333,75.00000000,3.31858407,0.00000000,0.00000000,8.29000000 +13265,chr22,50045421,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,107.00000000,0.00000000,-1.65000000,0.00000000,,0.43333333,92.00000000,4.07079646,0.00000000,0.00000000,14.07000000 +13266,chr22,50045460,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,95.00000000,0.00000000,-0.46000000,0.00000000,,0.47126437,87.00000000,3.84955752,0.00000000,0.00000000,8.93000000 +13267,chr22,50045497,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,0.00000000,0.51000000,0.00000000,,0.41463415,84.00000000,3.71681416,0.02380952,0.00000000,8.09000000 +13268,chr22,50046597,TP,A,A,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,69.00000000,0.00000000,0.09000000,0.00000000,,0.35616438,75.00000000,3.31858407,0.02666667,0.00000000,7.92000000 +13269,chr22,50050566,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,0.00000000,1.31000000,0.00000000,,0.43750000,64.00000000,2.83185841,0.00000000,0.00000000,8.49000000 +13270,chr22,50052068,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,-1.46000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.02631579,0.00000000,4.13000000 +13271,chr22,50052434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,0.00000000,-0.99000000,0.00000000,,0.16455696,82.00000000,3.62831858,0.01219512,0.00000000,6.21000000 +13272,chr22,50053339,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,94.00000000,0.00000000,0.85000000,0.00000000,,0.27380952,85.00000000,3.76106195,0.01176471,0.00000000,6.46000000 +13273,chr22,50053517,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.60000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.01149425,0.00000000,6.09000000 +13274,chr22,50053692,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,86.00000000,0.00000000,-0.77000000,0.00000000,,0.25925926,83.00000000,3.67256637,0.02409639,0.00000000,6.00000000 +13275,chr22,50053806,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,0.00000000,0.07000000,0.00000000,,0.18390805,90.00000000,3.98230088,0.03333333,0.00000000,6.21000000 +13276,chr22,50055043,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,0.00000000,-1.60000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.02597403,0.00000000,6.30000000 +13277,chr22,50058990,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,98.00000000,0.00000000,-1.78000000,0.00000000,,0.26966292,93.00000000,4.11504425,0.04301075,0.00000000,5.49000000 +13278,chr22,50059620,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,0.70000000,0.00000000,,0.15476190,85.00000000,3.76106195,0.01176471,0.00000000,5.59000000 +13279,chr22,50059819,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,0.17000000,0.00000000,,0.16842105,95.00000000,4.20353982,0.00000000,0.00000000,6.09000000 +13280,chr22,50062279,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.13636364,0.00000000,53.00000000,0.00000000,-0.44000000,0.00000000,,0.15873016,77.00000000,3.40707965,0.18181818,0.00000000,2.76000000 +13281,chr22,50064018,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,63.00000000,0.00000000,-0.57000000,0.00000000,,0.24528302,64.00000000,2.83185841,0.17187500,0.00000000,5.58000000 +13282,chr22,50064459,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.06000000,0.00000000,,0.22988506,91.00000000,4.02654867,0.04395604,0.00000000,2.97000000 +13283,chr22,50064907,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.82000000,0.00000000,,0.20000000,86.00000000,3.80530973,0.01162791,0.00000000,6.84000000 +13284,chr22,50066257,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,78.00000000,0.00000000,-1.84000000,0.00000000,,0.20652174,95.00000000,4.20353982,0.03157895,0.00000000,6.21000000 +13285,chr22,50070292,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,0.00000000,-0.94000000,0.00000000,,0.10843373,85.00000000,3.76106195,0.02352941,0.00000000,4.90000000 +13286,chr22,50070767,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,0.82000000,0.00000000,,0.20270270,75.00000000,3.31858407,0.01333333,0.00000000,6.78000000 +13287,chr22,50072799,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.16250000,83.00000000,3.67256637,0.01204819,0.00000000,6.41000000 +13288,chr22,50084037,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,0.00000000,-0.87000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.71000000 +13289,chr22,50084649,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,88.00000000,0.00000000,-0.26000000,0.00000000,,0.24074074,110.00000000,4.86725664,0.00909091,0.00000000,6.50000000 +13290,chr22,50107168,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,66.00000000,0.00000000,-0.52000000,0.00000000,,0.27710843,86.00000000,3.80530973,0.02325581,0.00000000,6.35000000 +13291,chr22,50130092,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,74.00000000,0.00000000,0.39000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.01204819,0.00000000,5.98000000 +13292,chr22,50131022,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,0.00000000,-0.37000000,0.00000000,,0.22077922,81.00000000,3.58407080,0.03703704,0.00000000,6.19000000 +13293,chr22,50140785,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,0.00000000,1.28000000,0.00000000,,0.11627907,87.00000000,3.84955752,0.00000000,0.00000000,3.90000000 +13294,chr22,50147533,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.06000000,24.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,42.00000000,0.00000000,1.97000000,0.00000000,,0.32142857,29.00000000,1.28318584,0.03448276,0.00000000,3.37000000 +13295,chr22,50152896,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,0.50000000,0.00000000,,0.17948718,79.00000000,3.49557522,0.01265823,0.00000000,5.83000000 +13296,chr22,50157193,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,0.00000000,1.54000000,0.00000000,,0.25000000,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +13297,chr22,50170182,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,79.00000000,0.00000000,-1.11000000,0.00000000,,0.22727273,72.00000000,3.18584071,0.05555556,0.00000000,6.09000000 +13298,chr22,50171475,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-1.31000000,0.00000000,,0.21428571,78.00000000,3.45132743,0.08974359,0.00000000,6.25000000 +13299,chr22,50171476,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,-0.90000000,0.00000000,,0.19718310,77.00000000,3.40707965,0.07792208,0.00000000,6.22000000 +13300,chr22,50173486,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,0.00000000,-1.94000000,0.00000000,,0.14705882,104.00000000,4.60176991,0.01923077,0.00000000,5.95000000 +13301,chr22,50173755,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,0.00000000,0.91000000,0.00000000,,0.17441860,87.00000000,3.84955752,0.00000000,0.00000000,6.33000000 +13302,chr22,50179297,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,2.14000000,0.00000000,,0.22935780,110.00000000,4.86725664,0.00909091,0.00000000,6.46000000 +13303,chr22,50179554,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,-0.12000000,0.00000000,,0.19191919,102.00000000,4.51327434,0.01960784,0.00000000,6.27000000 +13304,chr22,50179849,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,46.00000000,2.03539823,0.00000000,0.00000000,75.00000000,0.00000000,-0.76000000,0.00000000,,0.19047619,108.00000000,4.77876106,0.01851852,0.00000000,5.42000000 +13305,chr22,50180212,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,81.00000000,0.00000000,1.02000000,0.00000000,,0.18421053,114.00000000,5.04424779,0.00000000,0.00000000,6.46000000 +13306,chr22,50181478,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,-0.54000000,0.00000000,,0.27536232,69.00000000,3.05309735,0.00000000,0.00000000,6.68000000 +13307,chr22,50182079,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,77.00000000,0.00000000,0.21000000,0.00000000,,0.20000000,96.00000000,4.24778761,0.11458333,0.00000000,5.54000000 +13308,chr22,50183975,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,0.00000000,1.16000000,0.00000000,,0.20689655,90.00000000,3.98230088,0.03333333,0.00000000,6.17000000 +13309,chr22,50185828,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.76000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,69.00000000,0.00000000,2.04000000,0.00000000,,0.17142857,79.00000000,3.49557522,0.11392405,0.00000000,5.51000000 +13310,chr22,50186842,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,76.00000000,0.00000000,0.86000000,0.00000000,,0.17283951,82.00000000,3.62831858,0.01219512,0.00000000,5.47000000 +13311,chr22,50187020,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,71.00000000,0.00000000,-0.05000000,0.00000000,,0.15217391,95.00000000,4.20353982,0.02105263,0.00000000,5.55000000 +13312,chr22,50188759,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,96.00000000,0.00000000,-0.42000000,0.00000000,,0.29268293,84.00000000,3.71681416,0.02380952,0.00000000,5.88000000 +13313,chr22,50190567,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.16666667,80.00000000,3.53982301,0.01250000,0.00000000,5.93000000 +13314,chr22,50191443,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,0.00000000,1.50000000,0.00000000,,0.16216216,76.00000000,3.36283186,0.02631579,0.00000000,5.69000000 +13315,chr22,50192365,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.01000000,0.00000000,,0.21428571,85.00000000,3.76106195,0.01176471,0.00000000,6.83000000 +13316,chr22,50195257,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,0.00000000,-1.72000000,0.00000000,,0.24418605,86.00000000,3.80530973,0.00000000,0.00000000,6.69000000 +13317,chr22,50196097,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,0.00000000,-0.42000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,6.19000000 +13318,chr22,50196123,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,82.00000000,0.00000000,0.09000000,0.00000000,,0.29885057,87.00000000,3.84955752,0.00000000,0.00000000,5.94000000 +13319,chr22,50199196,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,92.00000000,0.00000000,-0.32000000,0.00000000,,0.23214286,114.00000000,5.04424779,0.01754386,0.00000000,5.30000000 +13320,chr22,50199493,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,81.00000000,0.00000000,0.61000000,0.00000000,,0.20689655,91.00000000,4.02654867,0.03296703,0.00000000,6.35000000 +13321,chr22,50199743,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,74.00000000,0.00000000,0.18000000,0.00000000,,0.28767123,78.00000000,3.45132743,0.06410256,0.00000000,5.76000000 +13322,chr22,50203930,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,0.86000000,0.00000000,,0.17307692,107.00000000,4.73451327,0.02803738,0.00000000,5.35000000 +13323,chr22,50204119,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,67.00000000,0.00000000,2.09000000,0.00000000,,0.15463918,98.00000000,4.33628319,0.01020408,0.00000000,5.36000000 +13324,chr22,50206790,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,83.00000000,0.00000000,-1.08000000,0.00000000,,0.22340426,97.00000000,4.29203540,0.03092784,0.00000000,5.98000000 +13325,chr22,50209019,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.29000000,0.00000000,,0.23157895,96.00000000,4.24778761,0.01041667,0.00000000,6.62000000 +13326,chr22,50210052,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,1.17000000,0.00000000,,0.27083333,98.00000000,4.33628319,0.02040816,0.00000000,6.25000000 +13327,chr22,50210868,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,68.00000000,0.00000000,-0.33000000,0.00000000,,0.15189873,80.00000000,3.53982301,0.01250000,0.00000000,5.58000000 +13328,chr22,50213356,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,61.00000000,0.00000000,-0.11000000,0.00000000,,0.15942029,70.00000000,3.09734513,0.01428571,0.00000000,4.89000000 +13329,chr22,50218683,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,1.05000000,0.00000000,,0.15000000,82.00000000,3.62831858,0.02439024,0.00000000,5.38000000 +13330,chr22,50219995,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,81.00000000,0.00000000,-0.92000000,0.00000000,,0.19047619,89.00000000,3.93805310,0.05617978,0.00000000,5.54000000 +13331,chr22,50224992,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03333333,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,0.00000000,-0.42000000,0.00000000,,0.16666667,89.00000000,3.93805310,0.05617978,0.00000000,5.53000000 +13332,chr22,50227794,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,96.00000000,0.00000000,-0.09000000,0.00000000,,0.30882353,68.00000000,3.00884956,0.00000000,0.00000000,6.83000000 +13333,chr22,50228352,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.72000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,0.00000000,0.14000000,0.00000000,,0.21126761,72.00000000,3.18584071,0.00000000,0.00000000,6.28000000 +13334,chr22,50229136,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,0.00000000,0.05000000,0.00000000,,0.13636364,67.00000000,2.96460177,0.01492537,0.00000000,5.11000000 +13335,chr22,50237269,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,90.00000000,0.00000000,-0.60000000,0.00000000,,0.26760563,71.00000000,3.14159292,0.00000000,0.00000000,6.96000000 +13336,chr22,50241007,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,0.00000000,-0.44000000,0.00000000,,0.15662651,83.00000000,3.67256637,0.00000000,0.00000000,5.89000000 +13337,chr22,50244017,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,70.00000000,0.00000000,1.99000000,0.00000000,,0.17977528,90.00000000,3.98230088,0.01111111,0.00000000,6.50000000 +13338,chr22,50245883,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,68.00000000,0.00000000,1.41000000,0.00000000,,0.15189873,81.00000000,3.58407080,0.02469136,0.00000000,5.39000000 +13339,chr22,50258233,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,93.00000000,0.00000000,-0.45000000,0.00000000,,0.27956989,94.00000000,4.15929204,0.01063830,0.00000000,6.63000000 +13340,chr22,50261918,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,65.00000000,0.00000000,-0.47000000,0.00000000,,0.22222222,87.00000000,3.84955752,0.06896552,0.00000000,5.81000000 +13341,chr22,50267952,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,84.00000000,0.00000000,1.17000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,6.61000000 +13342,chr22,50269093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,1.23000000,0.00000000,,0.21276596,98.00000000,4.33628319,0.04081633,0.00000000,6.29000000 +13343,chr22,50269112,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,84.00000000,0.00000000,1.91000000,0.00000000,,0.19780220,95.00000000,4.20353982,0.04210526,0.00000000,5.51000000 +13344,chr22,50271528,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,0.00000000,0.11000000,0.00000000,,0.17283951,83.00000000,3.67256637,0.02409639,0.00000000,5.41000000 +13345,chr22,50271920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,0.00000000,-0.70000000,0.00000000,,0.22680412,101.00000000,4.46902655,0.03960396,0.00000000,6.04000000 +13346,chr22,50272381,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,71.00000000,0.00000000,0.16000000,0.00000000,,0.16666667,100.00000000,4.42477876,0.03000000,0.00000000,5.89000000 +13347,chr22,50273293,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.00000000,45.00000000,0.00000000,-0.30000000,0.00000000,,0.36250000,80.00000000,3.53982301,0.00000000,0.00000000,4.47000000 +13348,chr22,50277544,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.03571429,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,0.00000000,-1.13000000,0.00000000,,0.28947368,78.00000000,3.45132743,0.00000000,0.00000000,6.88000000 +13349,chr22,50277738,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,79.00000000,0.00000000,0.71000000,0.00000000,,0.20588235,103.00000000,4.55752212,0.00970874,0.00000000,6.83000000 +13350,chr22,50278700,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,77.00000000,0.00000000,-0.50000000,0.00000000,,0.15789474,96.00000000,4.24778761,0.01041667,0.00000000,5.28000000 +13351,chr22,50282475,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,0.06000000,0.00000000,,0.22988506,89.00000000,3.93805310,0.02247191,0.00000000,5.84000000 +13352,chr22,50283738,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,70.00000000,0.00000000,-0.01000000,0.00000000,,0.16216216,77.00000000,3.40707965,0.00000000,0.00000000,6.38000000 +13353,chr22,50286872,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,70.00000000,0.00000000,1.71000000,0.00000000,,0.16455696,80.00000000,3.53982301,0.01250000,0.00000000,5.20000000 +13354,chr22,50287124,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,72.00000000,0.00000000,2.08000000,0.00000000,,0.14117647,91.00000000,4.02654867,0.04395604,0.00000000,4.95000000 +13355,chr22,50292029,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,84.00000000,0.00000000,-0.23000000,0.00000000,,0.39473684,79.00000000,3.49557522,0.03797468,0.00000000,8.29000000 +13356,chr22,50301560,TP,T,T,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,86.00000000,0.00000000,0.26000000,0.00000000,,0.41111111,90.00000000,3.98230088,0.00000000,0.00000000,8.55000000 +13357,chr22,50308277,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,76.00000000,0.00000000,-0.84000000,0.00000000,,0.22857143,72.00000000,3.18584071,0.02777778,0.00000000,6.13000000 +13358,chr22,50313100,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,0.00000000,-0.05000000,0.00000000,,0.27500000,84.00000000,3.71681416,0.04761905,0.00000000,5.76000000 +13359,chr22,50315299,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,77.00000000,0.00000000,-0.17000000,0.00000000,,0.17582418,93.00000000,4.11504425,0.02150538,0.00000000,6.08000000 +13360,chr22,50318919,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,75.00000000,0.00000000,-0.13000000,0.00000000,,0.17073171,83.00000000,3.67256637,0.01204819,0.00000000,5.63000000 +13361,chr22,50319251,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,82.00000000,0.00000000,0.31000000,0.00000000,,0.22988506,90.00000000,3.98230088,0.03333333,0.00000000,5.81000000 +13362,chr22,50320272,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,0.00000000,-0.36000000,0.00000000,,0.15789474,97.00000000,4.29203540,0.02061856,0.00000000,5.57000000 +13363,chr22,50320444,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,80.00000000,0.00000000,-0.74000000,0.00000000,,0.24242424,100.00000000,4.42477876,0.01000000,0.00000000,6.61000000 +13364,chr22,50321053,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,69.00000000,0.00000000,0.57000000,0.00000000,,0.26829268,83.00000000,3.67256637,0.01204819,0.00000000,6.87000000 +13365,chr22,50321463,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,71.00000000,0.00000000,1.54000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.67000000 +13366,chr22,50327459,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,67.00000000,0.00000000,-1.67000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.98000000 +13367,chr22,50362340,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,83.00000000,0.00000000,-1.02000000,0.00000000,,0.22916667,100.00000000,4.42477876,0.04000000,0.00000000,6.00000000 +13368,chr22,50383516,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,0.00000000,0.25000000,0.00000000,,0.20000000,81.00000000,3.58407080,0.01234568,0.00000000,6.91000000 +13369,chr22,50394778,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,0.00000000,-0.42000000,0.00000000,,0.18867925,54.00000000,2.38938053,0.01851852,0.00000000,6.20000000 +13370,chr22,50396426,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.12500000,0.00000000,73.00000000,0.00000000,-0.21000000,0.00000000,,0.20895522,77.00000000,3.40707965,0.11688312,0.00000000,5.98000000 +13371,chr22,50429870,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,85.00000000,0.00000000,-0.60000000,0.00000000,,0.24691358,82.00000000,3.62831858,0.01219512,0.00000000,6.64000000 +13372,chr22,50430917,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,83.00000000,0.00000000,0.28000000,0.00000000,,0.26744186,92.00000000,4.07079646,0.06521739,0.00000000,5.60000000 +13373,chr22,50432117,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,0.00000000,0.37000000,0.00000000,,0.37777778,93.00000000,4.11504425,0.03225806,0.00000000,8.17000000 +13374,chr22,50436185,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,-0.06000000,0.00000000,,0.41758242,93.00000000,4.11504425,0.01075269,0.00000000,8.58000000 +13375,chr22,50436464,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,87.00000000,0.00000000,-0.69000000,0.00000000,,0.47368421,96.00000000,4.24778761,0.01041667,0.00000000,8.56000000 +13376,chr22,50437316,TP,A,A,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,0.00000000,0.11000000,0.00000000,,0.42682927,86.00000000,3.80530973,0.03488372,0.00000000,7.62000000 +13377,chr22,50439767,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,102.00000000,0.00000000,-0.75000000,0.00000000,,0.45744681,100.00000000,4.42477876,0.06000000,0.00000000,11.53000000 +13378,chr22,50440498,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,74.00000000,0.00000000,0.74000000,0.00000000,,0.44155844,80.00000000,3.53982301,0.03750000,0.00000000,8.09000000 +13379,chr22,50442824,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,35.00000000,0.00000000,-1.15000000,0.00000000,,0.48888889,49.00000000,2.16814159,0.08163265,0.00000000,3.84000000 +13380,chr22,50443089,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,49.00000000,0.00000000,0.54000000,0.00000000,,0.44615385,67.00000000,2.96460177,0.02985075,0.00000000,4.35000000 +13381,chr22,50443697,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,92.00000000,0.00000000,-0.68000000,0.00000000,,0.47619048,87.00000000,3.84955752,0.03448276,0.00000000,8.32000000 +13382,chr22,50444161,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,90.00000000,0.00000000,-2.34000000,0.00000000,,0.43373494,85.00000000,3.76106195,0.00000000,0.00000000,8.92000000 +13383,chr22,50447791,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,0.00000000,0.19000000,0.00000000,,0.41379310,90.00000000,3.98230088,0.03333333,0.00000000,8.01000000 +13384,chr22,50451457,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,100.00000000,0.00000000,0.27000000,0.00000000,,0.37078652,89.00000000,3.93805310,0.00000000,0.00000000,8.42000000 +13385,chr22,50453986,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,77.00000000,0.00000000,-0.39000000,0.00000000,,0.50000000,75.00000000,3.31858407,0.02666667,0.00000000,8.42000000 +13386,chr22,50457029,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,93.00000000,0.00000000,-1.50000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.29000000 +13387,chr22,50457692,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,83.00000000,0.00000000,0.45000000,0.00000000,,0.44565217,95.00000000,4.20353982,0.03157895,0.00000000,8.07000000 +13388,chr22,50457955,TP,C,C,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,48.00000000,0.00000000,-0.06000000,0.00000000,,0.37662338,78.00000000,3.45132743,0.01282051,0.00000000,4.71000000 +13389,chr22,50458472,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,57.00000000,0.00000000,-1.64000000,0.00000000,,0.47872340,97.00000000,4.29203540,0.03092784,0.00000000,4.72000000 +13390,chr22,50460996,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,25.00000000,1.10619469,0.00000000,0.00000000,35.00000000,0.00000000,-0.35000000,0.00000000,,0.47727273,88.00000000,3.89380531,0.00000000,0.00000000,3.57000000 +13391,chr22,50461329,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.23333333,0.00000000,48.00000000,0.00000000,-1.23000000,0.00000000,,0.51470588,76.00000000,3.36283186,0.10526316,0.00000000,4.42000000 +13392,chr22,50462830,TP,G,G,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,0.00000000,-1.33000000,0.00000000,,0.42857143,77.00000000,3.40707965,0.00000000,0.00000000,8.00000000 +13393,chr22,50463802,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,69.00000000,0.00000000,0.06000000,0.00000000,,0.43209877,83.00000000,3.67256637,0.02409639,0.00000000,8.09000000 +13394,chr22,50468089,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,50.00000000,0.00000000,0.11000000,0.00000000,,0.48837209,90.00000000,3.98230088,0.03333333,0.00000000,4.29000000 +13395,chr22,50468488,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,70.00000000,0.00000000,0.46000000,0.00000000,,0.41071429,62.00000000,2.74336283,0.09677419,0.00000000,8.12000000 +13396,chr22,50468766,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,0.00000000,-1.05000000,0.00000000,,0.26865672,68.00000000,3.00884956,0.01470588,0.00000000,6.48000000 +13397,chr22,50473892,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.09090909,0.00000000,71.00000000,0.00000000,0.27000000,0.00000000,,0.40476190,86.00000000,3.80530973,0.02325581,0.00000000,8.16000000 +13398,chr22,50475810,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,0.00000000,-1.71000000,0.00000000,,0.49367089,79.00000000,3.49557522,0.00000000,0.00000000,8.99000000 +13399,chr22,50479977,TP,G,G,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,0.00000000,-2.64000000,0.00000000,,0.45945946,75.00000000,3.31858407,0.01333333,0.00000000,6.19000000 +13400,chr22,50483215,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,0.81000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.65000000 +13401,chr22,50484115,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,54.00000000,0.00000000,-1.02000000,0.00000000,,0.46987952,87.00000000,3.84955752,0.04597701,0.00000000,4.35000000 +13402,chr22,50485991,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,89.00000000,0.00000000,-0.83000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.02597403,0.00000000,8.29000000 +13403,chr22,50486963,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.05263158,0.00000000,73.00000000,0.00000000,0.55000000,0.00000000,,0.17441860,89.00000000,3.93805310,0.03370787,0.00000000,5.37000000 +13404,chr22,50487342,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,76.00000000,0.00000000,0.49000000,0.00000000,,0.18072289,84.00000000,3.71681416,0.01190476,0.00000000,6.45000000 +13405,chr22,50488493,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,54.91000000,3.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.33333333,0.00000000,27.00000000,0.00000000,-0.08000000,0.00000000,,0.36842105,52.00000000,2.30088496,0.26923077,0.00000000,3.73000000 +13406,chr22,50489013,TP,C,C,A,A,-1.00000000,,,,1.00000000,,,58.46000000,3.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,33.00000000,0.00000000,-0.20000000,0.00000000,,0.42857143,52.00000000,2.30088496,0.19230769,0.00000000,3.99000000 +13407,chr22,50489527,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,0.00000000,-0.74000000,0.00000000,,0.31250000,81.00000000,3.58407080,0.01234568,0.00000000,6.58000000 +13408,chr22,50489990,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,81.00000000,0.00000000,-0.90000000,0.00000000,,0.19736842,77.00000000,3.40707965,0.01298701,0.00000000,5.93000000 +13409,chr22,50490447,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,0.00000000,1.84000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,6.04000000 +13410,chr22,50490565,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,96.00000000,0.00000000,-1.39000000,0.00000000,,0.45918367,103.00000000,4.55752212,0.04854369,0.00000000,8.65000000 +13411,chr22,50491152,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,100.00000000,0.00000000,-1.25000000,0.00000000,,0.44594595,77.00000000,3.40707965,0.02597403,0.00000000,7.80000000 +13412,chr22,50493057,TP,T,T,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,93.00000000,0.00000000,-0.34000000,0.00000000,,0.38202247,91.00000000,4.02654867,0.01098901,0.00000000,8.48000000 +13413,chr22,50497515,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,89.00000000,0.00000000,0.40000000,0.00000000,,0.23943662,74.00000000,3.27433628,0.04054054,0.00000000,6.21000000 +13414,chr22,50498614,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,0.00000000,1.00000000,0.00000000,,0.18518519,81.00000000,3.58407080,0.00000000,0.00000000,6.56000000 +13415,chr22,50502104,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,75.00000000,0.00000000,-2.22000000,0.00000000,,0.19512195,83.00000000,3.67256637,0.01204819,0.00000000,6.41000000 +13416,chr22,50505699,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,82.00000000,0.00000000,-0.49000000,0.00000000,,0.19801980,102.00000000,4.51327434,0.00980392,0.00000000,6.60000000 +13417,chr22,50511068,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,74.00000000,0.00000000,2.56000000,0.00000000,,0.26506024,85.00000000,3.76106195,0.02352941,0.00000000,5.46000000 +13418,chr22,50512078,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,84.00000000,0.00000000,-1.48000000,0.00000000,,0.23913043,92.00000000,4.07079646,0.00000000,0.00000000,6.69000000 +13419,chr22,50512135,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,91.00000000,0.00000000,-0.83000000,0.00000000,,0.25333333,77.00000000,3.40707965,0.02597403,0.00000000,5.66000000 +13420,chr22,50520623,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,64.00000000,0.00000000,-0.72000000,0.00000000,,0.10666667,82.00000000,3.62831858,0.07317073,0.00000000,5.04000000 +13421,chr22,50522253,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,0.00000000,-1.46000000,0.00000000,,0.18571429,72.00000000,3.18584071,0.02777778,0.00000000,6.41000000 +13422,chr22,50525476,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.07500000,0.00000000,80.00000000,0.00000000,-0.15000000,0.00000000,,0.19767442,89.00000000,3.93805310,0.02247191,0.00000000,5.81000000 +13423,chr22,50525807,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,87.00000000,0.00000000,-1.54000000,0.00000000,,0.25842697,91.00000000,4.02654867,0.02197802,0.00000000,6.78000000 +13424,chr22,50528116,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,0.00000000,-0.84000000,0.00000000,,0.13253012,85.00000000,3.76106195,0.00000000,0.00000000,5.92000000 +13425,chr22,50534112,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,83.00000000,0.00000000,0.77000000,0.00000000,,0.20689655,89.00000000,3.93805310,0.00000000,0.00000000,6.36000000 +13426,chr22,50534684,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,0.00000000,0.17000000,0.00000000,,0.20779221,77.00000000,3.40707965,0.00000000,0.00000000,6.04000000 +13427,chr22,50536072,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,0.42000000,0.00000000,,0.19480519,78.00000000,3.45132743,0.01282051,0.00000000,5.95000000 +13428,chr22,50536179,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,74.00000000,0.00000000,1.01000000,0.00000000,,0.19402985,68.00000000,3.00884956,0.01470588,0.00000000,6.67000000 +13429,chr22,50536180,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,1.18000000,0.00000000,,0.19696970,68.00000000,3.00884956,0.01470588,0.00000000,6.71000000 +13430,chr22,50537172,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,0.00000000,0.60000000,0.00000000,,0.25000000,72.00000000,3.18584071,0.00000000,0.00000000,6.39000000 +13431,chr22,50537216,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,0.00000000,-1.51000000,0.00000000,,0.25373134,67.00000000,2.96460177,0.00000000,0.00000000,6.70000000 +13432,chr22,50537257,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,77.00000000,0.00000000,0.98000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.03000000 +13433,chr22,50537644,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,0.00000000,0.75000000,0.00000000,,0.17241379,88.00000000,3.89380531,0.01136364,0.00000000,5.73000000 +13434,chr22,50538738,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,0.00000000,-1.03000000,0.00000000,,0.32352941,68.00000000,3.00884956,0.00000000,0.00000000,8.99000000 +13435,chr22,50538916,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,80.00000000,0.00000000,1.04000000,0.00000000,,0.24637681,72.00000000,3.18584071,0.04166667,0.00000000,5.83000000 +13436,chr22,50539833,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,0.00000000,0.39000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.28000000 +13437,chr22,50542389,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-1.35000000,0.00000000,,0.17021277,96.00000000,4.24778761,0.02083333,0.00000000,5.98000000 +13438,chr22,50542556,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,80.00000000,0.00000000,0.20000000,0.00000000,,0.25301205,84.00000000,3.71681416,0.01190476,0.00000000,6.52000000 +13439,chr22,50543400,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,0.70000000,0.00000000,,0.14432990,100.00000000,4.42477876,0.02000000,0.00000000,5.57000000 +13440,chr22,50543729,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,69.00000000,0.00000000,-1.53000000,0.00000000,,0.20000000,64.00000000,2.83185841,0.04687500,0.00000000,6.61000000 +13441,chr22,50544110,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,0.00000000,1.70000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.02739726,0.00000000,6.72000000 +13442,chr22,50544557,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.06000000,0.00000000,,0.08695652,94.00000000,4.15929204,0.02127660,0.00000000,4.90000000 +13443,chr22,50545122,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,83.00000000,0.00000000,-0.63000000,0.00000000,,0.29487179,79.00000000,3.49557522,0.01265823,0.00000000,6.94000000 +13444,chr22,50546840,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-1.36000000,0.00000000,,0.18181818,89.00000000,3.93805310,0.00000000,0.00000000,6.71000000 +13445,chr22,50547303,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,72.00000000,0.00000000,-1.93000000,0.00000000,,0.18055556,73.00000000,3.23008850,0.01369863,0.00000000,6.29000000 +13446,chr22,50547446,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,70.00000000,0.00000000,0.61000000,0.00000000,,0.15492958,72.00000000,3.18584071,0.01388889,0.00000000,5.02000000 +13447,chr22,50548858,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,0.00000000,-1.23000000,0.00000000,,0.22222222,83.00000000,3.67256637,0.02409639,0.00000000,6.38000000 +13448,chr22,50550266,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,85.00000000,0.00000000,-0.29000000,0.00000000,,0.22666667,77.00000000,3.40707965,0.01298701,0.00000000,6.58000000 +13449,chr22,50561252,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,0.00000000,1.13000000,0.00000000,,0.21568627,103.00000000,4.55752212,0.00970874,0.00000000,6.65000000 +13450,chr22,50561917,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,36.00000000,0.00000000,-0.12000000,0.00000000,,0.19444444,40.00000000,1.76991150,0.10000000,0.00000000,2.87000000 +13451,chr22,50562962,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,58.00000000,0.00000000,0.17000000,0.00000000,,0.14925373,73.00000000,3.23008850,0.08219178,0.00000000,4.10000000 +13452,chr22,50564122,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,86.00000000,0.00000000,-0.89000000,0.00000000,,0.24000000,78.00000000,3.45132743,0.03846154,0.00000000,6.22000000 +13453,chr22,50564334,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,0.00000000,-0.35000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.57000000 +13454,chr22,50564531,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,59.79000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,87.00000000,0.00000000,-2.58000000,0.00000000,,0.22105263,95.00000000,4.20353982,0.00000000,0.00000000,7.12000000 +13455,chr22,50566731,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,79.00000000,0.00000000,-0.54000000,0.00000000,,0.19718310,72.00000000,3.18584071,0.01388889,0.00000000,5.98000000 +13456,chr22,50567230,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,74.00000000,0.00000000,0.40000000,0.00000000,,0.18181818,81.00000000,3.58407080,0.04938272,0.00000000,5.72000000 +13457,chr22,50568287,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,76.00000000,0.00000000,0.65000000,0.00000000,,0.19540230,90.00000000,3.98230088,0.02222222,0.00000000,5.81000000 +13458,chr22,50568559,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,0.00000000,1.12000000,0.00000000,,0.20000000,77.00000000,3.40707965,0.02597403,0.00000000,5.61000000 +13459,chr22,50569059,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.07692308,0.00000000,81.00000000,0.00000000,-1.87000000,0.00000000,,0.21917808,78.00000000,3.45132743,0.06410256,0.00000000,5.91000000 +13460,chr22,50570421,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,83.00000000,0.00000000,0.44000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.85000000 +13461,chr22,50570496,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,85.00000000,0.00000000,0.55000000,0.00000000,,0.25641026,78.00000000,3.45132743,0.00000000,0.00000000,6.15000000 +13462,chr22,50571623,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,1.19000000,0.00000000,,0.20000000,97.00000000,4.29203540,0.02061856,0.00000000,6.27000000 +13463,chr22,50571683,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-0.24000000,0.00000000,,0.22330097,106.00000000,4.69026549,0.02830189,0.00000000,6.28000000 +13464,chr22,50572510,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,72.00000000,0.00000000,0.86000000,0.00000000,,0.16842105,97.00000000,4.29203540,0.02061856,0.00000000,5.68000000 +13465,chr22,50572686,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,81.00000000,0.00000000,-1.49000000,0.00000000,,0.19565217,93.00000000,4.11504425,0.01075269,0.00000000,6.45000000 +13466,chr22,50572812,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,68.00000000,0.00000000,-1.31000000,0.00000000,,0.16666667,67.00000000,2.96460177,0.01492537,0.00000000,5.41000000 +13467,chr22,50573504,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,-0.85000000,0.00000000,,0.14814815,86.00000000,3.80530973,0.04651163,0.00000000,4.46000000 +13468,chr22,50574643,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,83.00000000,0.00000000,1.72000000,0.00000000,,0.21428571,84.00000000,3.71681416,0.00000000,0.00000000,6.23000000 +13469,chr22,50575035,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,72.00000000,0.00000000,-1.21000000,0.00000000,,0.16883117,79.00000000,3.49557522,0.02531646,0.00000000,5.88000000 +13470,chr22,50575343,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,68.00000000,0.00000000,0.59000000,0.00000000,,0.14606742,92.00000000,4.07079646,0.03260870,0.00000000,4.97000000 +13471,chr22,50575569,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,82.00000000,0.00000000,-0.38000000,0.00000000,,0.23611111,74.00000000,3.27433628,0.02702703,0.00000000,6.05000000 +13472,chr22,50577128,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,86.00000000,0.00000000,-0.37000000,0.00000000,,0.28985507,71.00000000,3.14159292,0.01408451,0.00000000,6.50000000 +13473,chr22,50577245,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,77.00000000,0.00000000,-0.21000000,0.00000000,,0.21590909,93.00000000,4.11504425,0.05376344,0.00000000,6.26000000 +13474,chr22,50577409,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,86.00000000,0.00000000,-0.31000000,0.00000000,,0.22000000,102.00000000,4.51327434,0.01960784,0.00000000,5.86000000 +13475,chr22,50577669,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02941176,35.00000000,1.54867257,0.02857143,0.00000000,79.00000000,0.00000000,-1.24000000,0.00000000,,0.25600000,130.00000000,5.75221239,0.03076923,0.00000000,5.99000000 +13476,chr22,50578867,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,0.00000000,-0.32000000,0.00000000,,0.15217391,93.00000000,4.11504425,0.01075269,0.00000000,5.95000000 +13477,chr22,50578924,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,78.00000000,0.00000000,0.25000000,0.00000000,,0.17894737,97.00000000,4.29203540,0.01030928,0.00000000,6.54000000 +13478,chr22,50578965,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,79.00000000,0.00000000,-0.98000000,0.00000000,,0.18604651,88.00000000,3.89380531,0.02272727,0.00000000,5.04000000 +13479,chr22,50579047,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,81.00000000,0.00000000,0.91000000,0.00000000,,0.20454545,89.00000000,3.93805310,0.01123596,0.00000000,5.94000000 +13480,chr22,50579284,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,0.00000000,1.27000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.01123596,0.00000000,5.87000000 +13481,chr22,50579365,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,0.00000000,-0.01000000,0.00000000,,0.08750000,80.00000000,3.53982301,0.00000000,0.00000000,5.52000000 +13482,chr22,50581640,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,0.00000000,0.18000000,0.00000000,,0.09375000,67.00000000,2.96460177,0.04477612,0.00000000,4.72000000 +13483,chr22,50584979,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,68.00000000,0.00000000,1.90000000,0.00000000,,0.16842105,98.00000000,4.33628319,0.02040816,0.00000000,5.70000000 +13484,chr22,50586113,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,68.00000000,0.00000000,0.03000000,0.00000000,,0.14141414,100.00000000,4.42477876,0.01000000,0.00000000,5.68000000 +13485,chr22,50586925,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,75.00000000,0.00000000,0.11000000,0.00000000,,0.18085106,95.00000000,4.20353982,0.01052632,0.00000000,6.45000000 +13486,chr22,50597958,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.17948718,0.00000000,82.00000000,0.00000000,-0.30000000,0.00000000,,0.24615385,76.00000000,3.36283186,0.14473684,0.00000000,5.79000000 +13487,chr22,50599940,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,80.00000000,0.00000000,-0.40000000,0.00000000,,0.26732673,103.00000000,4.55752212,0.00970874,0.00000000,6.48000000 +13488,chr22,50603603,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,-1.35000000,0.00000000,,0.19148936,97.00000000,4.29203540,0.03092784,0.00000000,6.57000000 +13489,chr22,50603605,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-1.57000000,0.00000000,,0.20430108,97.00000000,4.29203540,0.04123711,0.00000000,6.72000000 +13490,chr22,50606067,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,74.00000000,0.00000000,-0.45000000,0.00000000,,0.27710843,83.00000000,3.67256637,0.00000000,0.00000000,6.79000000 +13491,chr22,50606071,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,0.00000000,-0.56000000,0.00000000,,0.26506024,83.00000000,3.67256637,0.00000000,0.00000000,6.92000000 +13492,chr22,50607761,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,86.00000000,0.00000000,1.34000000,0.00000000,,0.23943662,75.00000000,3.31858407,0.04000000,0.00000000,5.61000000 +13493,chr22,50610154,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,76.00000000,0.00000000,-1.96000000,0.00000000,,0.17142857,71.00000000,3.14159292,0.01408451,0.00000000,5.60000000 +13494,chr22,50612909,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,58.25000000,5.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,57.00000000,0.00000000,-0.10000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,3.33000000 +13495,chr22,50617090,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,58.42000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,70.00000000,0.00000000,-0.47000000,0.00000000,,0.19753086,85.00000000,3.76106195,0.04705882,0.00000000,5.93000000 +13496,chr22,50621407,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,76.00000000,0.00000000,-0.66000000,0.00000000,,0.20512821,83.00000000,3.67256637,0.06024096,0.00000000,6.27000000 +13497,chr22,50622024,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,67.00000000,0.00000000,0.21000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.00000000,0.00000000,5.28000000 +13498,chr22,50623399,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,86.00000000,0.00000000,-1.22000000,0.00000000,,0.22891566,83.00000000,3.67256637,0.00000000,0.00000000,6.94000000 +13499,chr22,50623623,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,83.00000000,0.00000000,-0.28000000,0.00000000,,0.23809524,66.00000000,2.92035398,0.01515152,0.00000000,6.28000000 +13500,chr22,50624510,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.19512195,86.00000000,3.80530973,0.03488372,0.00000000,5.87000000 +13501,chr22,50626470,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,74.00000000,0.00000000,0.15000000,0.00000000,,0.15463918,99.00000000,4.38053097,0.02020202,0.00000000,4.91000000 +13502,chr22,50627096,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.02564103,45.00000000,1.99115044,0.11111111,0.00000000,68.00000000,0.00000000,1.34000000,0.00000000,,0.16417910,76.00000000,3.36283186,0.09210526,0.00000000,5.12000000 +13503,chr22,50628109,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.39000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,0.00000000,-1.58000000,0.00000000,,0.25714286,75.00000000,3.31858407,0.06666667,0.00000000,6.79000000 +13504,chr22,50632488,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,0.00000000,0.28000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,5.64000000 +13505,chr22,50639027,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,77.00000000,0.00000000,2.03000000,0.00000000,,0.24137931,88.00000000,3.89380531,0.00000000,0.00000000,6.30000000 +13506,chr22,50641766,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,76.00000000,0.00000000,-0.89000000,0.00000000,,0.27710843,84.00000000,3.71681416,0.00000000,0.00000000,6.76000000 +13507,chr22,50642329,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,94.00000000,0.00000000,0.30000000,0.00000000,,0.29670330,95.00000000,4.20353982,0.04210526,0.00000000,5.66000000 +13508,chr22,50644690,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,0.00000000,0.68000000,0.00000000,,0.19780220,93.00000000,4.11504425,0.01075269,0.00000000,6.82000000 +13509,chr22,50645977,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,72.00000000,0.00000000,1.82000000,0.00000000,,0.23076923,79.00000000,3.49557522,0.00000000,0.00000000,5.87000000 +13510,chr22,50648920,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,0.00000000,0.67000000,0.00000000,,0.15730337,89.00000000,3.93805310,0.00000000,0.00000000,5.44000000 +13511,chr22,50653486,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,0.00000000,1.62000000,0.00000000,,0.22340426,94.00000000,4.15929204,0.00000000,0.00000000,5.83000000 +13512,chr22,50654636,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,0.00000000,0.30000000,0.00000000,,0.28813559,59.00000000,2.61061947,0.00000000,0.00000000,6.04000000 +13513,chr22,50656498,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,82.00000000,0.00000000,0.69000000,0.00000000,,0.20930233,89.00000000,3.93805310,0.03370787,0.00000000,6.31000000 +13514,chr22,50657521,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,0.00000000,1.46000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,5.60000000 +13515,chr22,50660336,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,79.00000000,0.00000000,0.92000000,0.00000000,,0.24000000,79.00000000,3.49557522,0.05063291,0.00000000,5.73000000 +13516,chr22,50661434,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,0.00000000,0.89000000,0.00000000,,0.20833333,74.00000000,3.27433628,0.02702703,0.00000000,6.70000000 +13517,chr22,50663471,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,78.00000000,0.00000000,-0.73000000,0.00000000,,0.19090909,110.00000000,4.86725664,0.00000000,0.00000000,6.72000000 +13518,chr22,50663510,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,81.00000000,0.00000000,-0.75000000,0.00000000,,0.19230769,104.00000000,4.60176991,0.00000000,0.00000000,6.69000000 +13519,chr22,50664167,TP,C,C,T,T,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,39.00000000,0.00000000,-1.75000000,0.00000000,,0.49295775,71.00000000,3.14159292,0.00000000,0.00000000,4.24000000 +13520,chr22,50665264,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,0.00000000,1.10000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,5.87000000 +13521,chr22,50665742,TP,A,A,G,G,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,77.00000000,0.00000000,-0.36000000,0.00000000,,0.44117647,70.00000000,3.09734513,0.01428571,0.00000000,8.37000000 +13522,chr22,50666252,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,82.00000000,0.00000000,0.33000000,0.00000000,,0.27941176,71.00000000,3.14159292,0.01408451,0.00000000,5.97000000 +13523,chr22,50668551,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,81.00000000,0.00000000,0.46000000,0.00000000,,0.23863636,89.00000000,3.93805310,0.01123596,0.00000000,6.00000000 +13524,chr22,50669644,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,73.00000000,0.00000000,0.44000000,0.00000000,,0.24615385,71.00000000,3.14159292,0.08450704,0.00000000,5.61000000 +13525,chr22,50670081,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,0.65000000,0.00000000,,0.27058824,86.00000000,3.80530973,0.01162791,0.00000000,6.61000000 +13526,chr22,50670432,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,79.00000000,0.00000000,0.15000000,0.00000000,,0.24705882,88.00000000,3.89380531,0.03409091,0.00000000,5.74000000 +13527,chr22,50673933,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,65.00000000,0.00000000,-2.32000000,0.00000000,,0.17307692,56.00000000,2.47787611,0.07142857,0.00000000,6.05000000 +13528,chr22,50677435,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,84.00000000,0.00000000,-0.03000000,0.00000000,,0.32394366,71.00000000,3.14159292,0.00000000,0.00000000,8.87000000 +13529,chr22,50678709,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,66.00000000,0.00000000,-2.24000000,0.00000000,,0.15384615,80.00000000,3.53982301,0.01250000,0.00000000,5.53000000 +13530,chr22,50683093,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,76.00000000,0.00000000,1.23000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.01190476,0.00000000,5.96000000 +13531,chr22,50684165,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,69.00000000,0.00000000,-0.17000000,0.00000000,,0.20689655,60.00000000,2.65486726,0.01666667,0.00000000,6.41000000 +13532,chr22,50687700,TP,T,T,A,A,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,0.00000000,0.48000000,0.00000000,,0.41509434,56.00000000,2.47787611,0.03571429,0.00000000,8.19000000 +13533,chr22,50690220,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.14000000,0.00000000,,0.18627451,105.00000000,4.64601770,0.02857143,0.00000000,6.18000000 +13534,chr22,50690221,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,0.00000000,0.10000000,0.00000000,,0.18446602,106.00000000,4.69026549,0.02830189,0.00000000,6.27000000 +13535,chr22,50690896,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,83.00000000,0.00000000,-0.47000000,0.00000000,,0.21276596,97.00000000,4.29203540,0.01030928,0.00000000,6.61000000 +13536,chr22,50692956,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,62.00000000,0.00000000,0.56000000,0.00000000,,0.15584416,79.00000000,3.49557522,0.02531646,0.00000000,5.28000000 +13537,chr22,50693308,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,0.00000000,0.08000000,0.00000000,,0.17721519,82.00000000,3.62831858,0.03658537,0.00000000,6.26000000 +13538,chr22,50696565,TP,C,C,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,77.00000000,0.00000000,-0.31000000,0.00000000,,0.17391304,93.00000000,4.11504425,0.01075269,0.00000000,6.05000000 +13539,chr22,50698166,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,0.00000000,1.15000000,0.00000000,,0.13043478,72.00000000,3.18584071,0.02777778,0.00000000,5.00000000 +13540,chr22,50698666,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,0.00000000,-0.91000000,0.00000000,,0.20270270,77.00000000,3.40707965,0.03896104,0.00000000,6.22000000 +13541,chr22,50707711,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,62.00000000,0.00000000,-0.30000000,0.00000000,,0.18292683,84.00000000,3.71681416,0.02380952,0.00000000,5.94000000 +13542,chr22,50714126,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,0.00000000,-0.13000000,0.00000000,,0.14130435,93.00000000,4.11504425,0.00000000,0.00000000,5.89000000 +13543,chr22,50717305,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,71.00000000,0.00000000,0.59000000,0.00000000,,0.18032787,64.00000000,2.83185841,0.04687500,0.00000000,5.63000000 +13544,chr22,50719055,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,0.00000000,-0.02000000,0.00000000,,0.20408163,102.00000000,4.51327434,0.01960784,0.00000000,6.33000000 +13545,chr22,50719683,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,76.00000000,0.00000000,-0.70000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,5.83000000 +13546,chr22,50722853,TP,C,C,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,0.00000000,1.20000000,0.00000000,,0.23456790,81.00000000,3.58407080,0.00000000,0.00000000,6.13000000 +13547,chr22,50724710,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,91.00000000,0.00000000,0.65000000,0.00000000,,0.23000000,101.00000000,4.46902655,0.00990099,0.00000000,5.61000000 +13548,chr22,50733265,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,88.00000000,0.00000000,0.00000000,0.00000000,,0.21739130,97.00000000,4.29203540,0.04123711,0.00000000,5.02000000 +13549,chr22,50735620,TP,G,G,C,C,-1.00000000,,,,1.00000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,72.00000000,0.00000000,-0.90000000,0.00000000,,0.50746269,69.00000000,3.05309735,0.01449275,0.00000000,8.40000000 +13550,chr22,50737198,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,88.00000000,0.00000000,-1.39000000,0.00000000,,0.24000000,76.00000000,3.36283186,0.01315789,0.00000000,6.85000000 +13551,chr22,50739662,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,80.00000000,0.00000000,0.84000000,0.00000000,,0.23456790,84.00000000,3.71681416,0.03571429,0.00000000,6.29000000 +13552,chr22,50743558,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.26000000,11.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,63.00000000,0.00000000,-2.04000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.03000000 +13553,chr22,50743971,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,52.67000000,20.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,65.00000000,0.00000000,-1.07000000,0.00000000,,0.17741935,63.00000000,2.78761062,0.01587302,0.00000000,5.83000000 +13554,chr22,50747800,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,76.00000000,0.00000000,-1.20000000,0.00000000,,0.20454545,88.00000000,3.89380531,0.00000000,0.00000000,6.68000000 +13555,chr22,50747848,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,80.00000000,0.00000000,-0.36000000,0.00000000,,0.26190476,85.00000000,3.76106195,0.00000000,0.00000000,6.72000000 +13556,chr22,50750718,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,53.10000000,18.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,0.00000000,-1.38000000,0.00000000,,0.23404255,48.00000000,2.12389381,0.02083333,0.00000000,2.87000000 +13557,chr22,50755837,TP,A,A,C,C,-1.00000000,,,,0.50000000,,,48.13000000,32.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,38.00000000,0.00000000,-0.39000000,0.00000000,,0.29545455,44.00000000,1.94690265,0.00000000,0.00000000,2.82000000 +13558,chr22,50759174,TP,T,T,A,A,-1.00000000,,,,0.50000000,,,58.76000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,74.00000000,0.00000000,0.99000000,0.00000000,,0.19047619,84.00000000,3.71681416,0.00000000,0.00000000,6.12000000 +13559,chr22,50760141,TP,G,G,C,C,-1.00000000,,,,0.50000000,,,58.83000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,0.00000000,1.00000000,0.00000000,,0.07142857,73.00000000,3.23008850,0.02739726,0.00000000,4.69000000 +13560,chr22,50760853,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,56.06000000,8.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,0.00000000,1.02000000,0.00000000,,0.17948718,78.00000000,3.45132743,0.00000000,0.00000000,6.08000000 +13561,chr22,50771840,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,54.75000000,13.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,0.00000000,-0.66000000,0.00000000,,0.11864407,60.00000000,2.65486726,0.00000000,0.00000000,5.92000000 +13562,chr22,50773552,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,54.50000000,18.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,0.00000000,-0.16000000,0.00000000,,0.13888889,73.00000000,3.23008850,0.01369863,0.00000000,5.75000000 +13563,chr22,50773779,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,51.84000000,26.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,0.00000000,0.38000000,0.00000000,,0.15517241,58.00000000,2.56637168,0.00000000,0.00000000,5.30000000 +13564,chr22,50776757,TP,C,C,T,T,-1.00000000,,,,0.50000000,,,51.79000000,24.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,55.00000000,0.00000000,-1.43000000,0.00000000,,0.33898305,60.00000000,2.65486726,0.01666667,0.00000000,4.43000000 +13565,chr22,50778136,TP,T,T,C,C,-1.00000000,,,,0.50000000,,,47.61000000,41.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,0.00000000,-0.15000000,0.33000000,,0.19607843,51.00000000,2.25663717,0.00000000,0.00000000,5.60000000 +13566,chr22,50780578,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,0.00000000,-0.73000000,0.00000000,,0.26315789,58.00000000,2.56637168,0.01724138,0.00000000,6.72000000 +13567,chr22,50783672,TP,G,G,T,T,-1.00000000,,,,0.50000000,,,55.28000000,16.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,0.00000000,-0.93000000,0.00000000,,0.22857143,73.00000000,3.23008850,0.04109589,0.00000000,2.80000000 +13568,chr22,50784338,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.22000000,19.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,0.00000000,-1.15000000,0.00000000,,0.08928571,56.00000000,2.47787611,0.00000000,0.00000000,4.06000000 +13569,chr22,50785209,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,48.46000000,27.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,69.00000000,0.00000000,0.70000000,0.00000000,,0.16393443,62.00000000,2.74336283,0.01612903,0.00000000,5.14000000 +13570,chr22,50786519,TP,A,A,G,G,-1.00000000,,,,0.50000000,,,39.71000000,63.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,0.00000000,0.52000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,4.00000000 +13571,chr22,50789463,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,52.47000000,27.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,0.00000000,0.92000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,4.72000000 +13572,chr22,50790460,TP,T,T,G,G,-1.00000000,,,,0.50000000,,,49.43000000,21.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,0.00000000,-1.51000000,0.00000000,,0.13580247,84.00000000,3.71681416,0.02380952,0.00000000,5.58000000 +13573,chr22,50791178,TP,A,A,T,T,-1.00000000,,,,0.50000000,,,41.32000000,34.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,0.00000000,0.00000000,0.00000000,,0.20512821,40.00000000,1.76991150,0.02500000,0.00000000,4.53000000 +13574,chr22,50791190,TP,G,G,A,A,-1.00000000,,,,0.50000000,,,39.56000000,34.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,56.00000000,0.00000000,-0.75000000,0.00000000,,0.18181818,35.00000000,1.54867257,0.02857143,0.00000000,2.78000000 +0,chr22,10719812,FP,T,,C,,-1.00000000,,,,,,,36.11000000,235.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.15909091,0.00000000,66.00000000,,0.60000000,6.00000000,,0.09900990,119.00000000,5.26548673,0.15126050,0.00000000,3.21000000 +1,chr22,10723639,FP,T,,C,,-1.00000000,,,,,,,36.79000000,206.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,62.00000000,,-0.71000000,0.00000000,,0.10465116,91.00000000,4.02654867,0.05494505,0.00000000,4.78000000 +2,chr22,10732184,FP,C,,G,,-1.00000000,,,,,,,52.88000000,56.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,75.00000000,,0.31000000,0.00000000,,0.02702703,301.00000000,13.31858407,0.01328904,0.00000000,4.35000000 +3,chr22,10757277,FP,C,,G,,-1.00000000,,,,,,,44.70000000,120.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,,0.08000000,0.00000000,,0.04635762,153.00000000,6.76991150,0.01307190,0.00000000,4.33000000 +4,chr22,10771748,FP,A,,G,,-1.00000000,,,,,,,51.24000000,73.00000000,ref,1.00000000,0.00000000,158.00000000,6.99115044,0.00632911,0.00000000,121.00000000,,-0.46000000,0.00000000,,0.02678571,455.00000000,20.13274336,0.01318681,0.00000000,6.93000000 +5,chr22,10773232,FP,C,,A,,-1.00000000,,,,,,,43.20000000,197.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,,0.93000000,0.00000000,,0.03816794,263.00000000,11.63716814,0.00380228,0.00000000,4.41000000 +6,chr22,11051871,FP,C,,T,,-1.00000000,,,,,,,38.48000000,266.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.01052632,0.00000000,90.00000000,,-0.67000000,8.48000000,,0.03875969,259.00000000,11.46017699,0.00386100,0.00000000,3.42000000 +7,chr22,12054090,FP,A,,T,,-1.00000000,,,,,,,37.24000000,58.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,6.00000000,,-0.10000000,0.00000000,,0.44444444,37.00000000,1.63716814,0.02702703,0.00000000,3.77000000 +8,chr22,12362232,FP,C,,G,,-1.00000000,,,,,,,36.53000000,96.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-2.16000000,0.00000000,,0.05468750,131.00000000,5.79646018,0.02290076,0.00000000,4.34000000 +9,chr22,12422486,FP,G,,A,,-1.00000000,,,,,,,56.94000000,22.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,71.00000000,,2.19000000,0.00000000,,0.05442177,147.00000000,6.50442478,0.00000000,0.00000000,4.44000000 +10,chr22,12422495,FP,T,,C,,-1.00000000,,,,,,,56.95000000,21.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,68.00000000,,3.30000000,0.00000000,,0.05594406,144.00000000,6.37168142,0.00000000,0.00000000,4.52000000 +11,chr22,12521645,FP,G,,T,,-1.00000000,,,,,,,54.13000000,33.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,62.00000000,,-1.17000000,2.98000000,,0.04807692,106.00000000,4.69026549,0.01886792,0.00000000,3.21000000 +12,chr22,12567591,FP,T,,C,,-1.00000000,,,,,,,46.26000000,59.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,-0.92000000,0.00000000,,0.09523810,67.00000000,2.96460177,0.05970149,0.00000000,4.82000000 +13,chr22,12596202,FP,G,,A,,-1.00000000,,,,,,,54.60000000,47.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.04687500,0.00000000,72.00000000,,-3.08000000,0.00000000,,0.03773585,163.00000000,7.21238938,0.02453988,0.00000000,3.37000000 +14,chr22,12596214,FP,A,,G,,-1.00000000,,,,,,,54.13000000,51.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,-3.30000000,0.00000000,,0.05063291,160.00000000,7.07964602,0.01250000,0.00000000,4.26000000 +15,chr22,12600117,FP,T,,A,,-1.00000000,,,,,,,52.40000000,50.00000000,ref,1.00000000,0.01587302,63.00000000,2.78761062,0.00000000,0.00000000,72.00000000,,1.37000000,0.00000000,,0.05263158,133.00000000,5.88495575,0.00000000,0.00000000,4.42000000 +16,chr22,12629774,FP,G,,A,,-1.00000000,,,,,,,53.06000000,36.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.03448276,0.00000000,64.00000000,,1.58000000,4.71000000,,0.04687500,130.00000000,5.75221239,0.00769231,0.00000000,3.40000000 +17,chr22,12703199,FP,A,,G,,-1.00000000,,,,,,,54.82000000,40.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,79.00000000,,-0.31000000,5.50000000,,0.05737705,125.00000000,5.53097345,0.02400000,0.00000000,3.05000000 +18,chr22,12703201,FP,A,,G,,-1.00000000,,,,,,,54.37000000,44.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,,-0.31000000,4.57000000,,0.05737705,125.00000000,5.53097345,0.02400000,0.00000000,3.05000000 +19,chr22,15759012,FP,T,,C,,-1.00000000,,,,,,,49.39000000,33.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,66.00000000,,1.39000000,0.00000000,,0.04794521,147.00000000,6.50442478,0.00680272,0.00000000,4.83000000 +20,chr22,16055685,FP,C,,T,,-1.00000000,,,,,,,58.28000000,7.00000000,ref,1.00000000,0.03125000,32.00000000,1.41592920,0.00000000,0.00000000,60.00000000,,0.29000000,3.41000000,,0.07407407,84.00000000,3.71681416,0.02380952,0.00000000,3.49000000 +21,chr22,16156949,FP,G,,A,,-1.00000000,,,,,,,56.56000000,10.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.67000000,0.00000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,4.37000000 +22,chr22,16417778,FP,G,,A,,-1.00000000,,,,,,,53.44000000,17.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,56.00000000,,1.28000000,0.00000000,,0.06896552,92.00000000,4.07079646,0.05434783,0.00000000,2.94000000 +23,chr22,16431609,FP,C,,A,,-1.00000000,,,,,,,46.63000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,59.00000000,,2.70000000,0.00000000,,0.10389610,80.00000000,3.53982301,0.02500000,0.00000000,3.76000000 +24,chr22,16757562,FP,A,,G,,-1.00000000,,,,,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,63.00000000,,-1.86000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.03947368,0.00000000,4.50000000 +25,chr22,16757564,FP,G,,C,,-1.00000000,,,,,,,59.32000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,61.00000000,,-1.86000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.03947368,0.00000000,4.52000000 +26,chr22,16791815,FP,G,,A,,-1.00000000,,,,,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,52.00000000,,-0.31000000,0.00000000,,0.21153846,61.00000000,2.69911504,0.14754098,0.00000000,2.82000000 +27,chr22,19046566,FP,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,39.00000000,1.72566372,0.02564103,0.00000000,47.00000000,,1.01000000,0.00000000,,0.23684211,91.00000000,4.02654867,0.00000000,0.00000000,3.93000000 +28,chr22,19281798,FP,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.62000000,0.00000000,,0.06976744,87.00000000,3.84955752,0.01149425,0.00000000,4.87000000 +29,chr22,19661512,FP,C,,T,,-1.00000000,,,,,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,73.00000000,,-1.66000000,0.00000000,,0.19117647,74.00000000,3.27433628,0.06756757,0.00000000,6.20000000 +30,chr22,20333469,FP,G,,A,,-1.00000000,,,,,,,53.76000000,20.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,,-2.33000000,0.00000000,,0.07142857,84.00000000,3.71681416,0.00000000,0.00000000,5.24000000 +31,chr22,20628424,FP,C,,A,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-1.67000000,0.00000000,,0.10975610,91.00000000,4.02654867,0.09890110,0.00000000,4.75000000 +32,chr22,21566114,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,10.00000000,,-0.36000000,0.00000000,,0.48648649,37.00000000,1.63716814,0.00000000,0.00000000,3.77000000 +33,chr22,22376420,FP,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,61.00000000,,1.26000000,3.19000000,,0.06172840,84.00000000,3.71681416,0.02380952,0.00000000,3.35000000 +34,chr22,22806873,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05555556,18.00000000,0.79646018,0.00000000,0.00000000,3.00000000,,1.47000000,0.00000000,,0.40000000,25.00000000,1.10619469,0.00000000,0.00000000,3.00000000 +35,chr22,23640809,FP,T,,C,,-1.00000000,,,,,,,59.40000000,2.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-1.01000000,4.36000000,,0.05660377,109.00000000,4.82300885,0.02752294,0.00000000,3.97000000 +36,chr22,23641084,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-2.62000000,4.60000000,,0.09782609,93.00000000,4.11504425,0.00000000,0.00000000,4.79000000 +37,chr22,23957570,FP,C,,A,,-1.00000000,,,,,,,16.05000000,86.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.29000000,0.00000000,,0.77777778,9.00000000,0.39823009,0.00000000,0.00000000,3.00000000 +38,chr22,25517443,FP,G,,T,,-1.00000000,,,,,,,58.54000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.42000000,2.57000000,,0.09677419,95.00000000,4.20353982,0.02105263,0.00000000,3.61000000 +39,chr22,25606334,FP,C,,T,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,3.14000000,0.00000000,,0.13186813,91.00000000,4.02654867,0.00000000,0.00000000,5.03000000 +40,chr22,25607031,FP,C,,T,,-1.00000000,,,,,,,59.42000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,3.19000000,0.00000000,,0.06593407,92.00000000,4.07079646,0.01086957,0.00000000,4.69000000 +41,chr22,25607285,FP,A,,G,,-1.00000000,,,,,,,58.64000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,-1.18000000,0.00000000,,0.07446809,98.00000000,4.33628319,0.03061224,0.00000000,4.80000000 +42,chr22,26721040,FP,C,,G,,-1.00000000,,,,,,,59.37000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,64.00000000,,1.67000000,0.00000000,,0.14285714,62.00000000,2.74336283,0.03225806,0.00000000,5.36000000 +43,chr22,27292155,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.89000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.01098901,0.00000000,4.42000000 +44,chr22,30985452,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,1.16000000,0.00000000,,0.13636364,69.00000000,3.05309735,0.04347826,0.00000000,5.10000000 +45,chr22,32312365,FP,G,,A,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,71.00000000,,0.29000000,0.00000000,,0.17333333,76.00000000,3.36283186,0.01315789,0.00000000,6.36000000 +46,chr22,32351500,FP,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,,2.25000000,0.00000000,,0.28260870,53.00000000,2.34513274,0.01886792,0.00000000,8.28000000 +47,chr22,32373281,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,,-1.70000000,0.00000000,,0.25000000,92.00000000,4.07079646,0.04347826,0.00000000,6.26000000 +48,chr22,32426904,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,75.00000000,,1.61000000,0.00000000,,0.25000000,58.00000000,2.56637168,0.08620690,0.20547945,5.62000000 +49,chr22,32814141,FP,T,,A,,-1.00000000,,,,,,,59.49000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.45000000,11.00000000,,-1.69000000,0.00000000,,0.45833333,27.00000000,1.19469027,0.07407407,0.50000000,3.64000000 +50,chr22,33089391,FP,T,,C,,-1.00000000,,,,,,,57.07000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.12000000,0.03846154,59.00000000,,-1.18000000,0.00000000,,0.13846154,70.00000000,3.09734513,0.07142857,0.00000000,4.18000000 +51,chr22,33128732,FP,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.50000000,28.00000000,,1.65000000,0.00000000,,0.40476190,44.00000000,1.94690265,0.02272727,0.48837209,3.22000000 +52,chr22,33350540,FP,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,86.00000000,,-0.78000000,0.00000000,,0.30434783,84.00000000,3.71681416,0.01190476,0.00000000,8.60000000 +53,chr22,34479799,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.52941176,13.00000000,,-2.06000000,0.00000000,,0.31818182,45.00000000,1.99115044,0.00000000,0.19642857,3.42000000 +54,chr22,36892925,FP,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.06000000,0.00000000,,0.05882353,86.00000000,3.80530973,0.01162791,0.00000000,5.43000000 +55,chr22,36932540,FP,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,1.78000000,0.00000000,,0.07476636,113.00000000,5.00000000,0.03539823,0.00000000,4.65000000 +56,chr22,40339748,FP,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,0.81000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.74000000 +57,chr22,40800388,FP,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,0.37000000,0.00000000,,0.07777778,91.00000000,4.02654867,0.01098901,0.00000000,5.20000000 +58,chr22,43144972,FP,T,,C,,-1.00000000,,,,,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,,-0.60000000,0.00000000,,0.15555556,94.00000000,4.15929204,0.04255319,0.00000000,5.69000000 +59,chr22,46227138,FP,A,,G,,-1.00000000,,,,,,,58.32000000,8.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,60.00000000,,-1.59000000,0.00000000,,0.05376344,98.00000000,4.33628319,0.04081633,0.00000000,4.98000000 +60,chr22,46841073,FP,T,,A,,-1.00000000,,,,,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,63.00000000,,2.15000000,0.00000000,,0.30357143,57.00000000,2.52212389,0.00000000,0.00000000,6.14000000 +61,chr22,47603985,FP,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,1.49000000,0.00000000,,0.07462687,67.00000000,2.96460177,0.00000000,0.00000000,4.16000000 +62,chr22,48440427,FP,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,-0.41000000,0.00000000,,0.15625000,65.00000000,2.87610619,0.00000000,0.00000000,5.65000000 +63,chr22,49299176,FP,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,56.00000000,,0.42000000,0.00000000,,0.08474576,59.00000000,2.61061947,0.00000000,0.00000000,2.76000000 +64,chr22,49407892,FP,G,,A,,-1.00000000,,,,,,,50.37000000,22.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,60.00000000,,-2.77000000,0.00000000,,0.11666667,66.00000000,2.92035398,0.09090909,0.00000000,4.39000000 +65,chr22,50601301,FP,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,63.00000000,,-0.65000000,0.00000000,,0.05434783,94.00000000,4.15929204,0.01063830,0.00000000,5.02000000 +0,chr22,11282211,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1,chr22,11282402,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2,chr22,11344184,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +3,chr22,11363272,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +4,chr22,11371033,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +5,chr22,11547776,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +6,chr22,11557481,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +7,chr22,11568186,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +8,chr22,11590881,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +9,chr22,11705840,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +10,chr22,11803481,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +11,chr22,11844681,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +12,chr22,11918766,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +13,chr22,12055657,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +14,chr22,12210278,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +15,chr22,12217261,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +16,chr22,12351115,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +17,chr22,12351459,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +18,chr22,12366897,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +19,chr22,12392890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +20,chr22,12427462,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +21,chr22,12493547,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +22,chr22,12497260,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +23,chr22,12506883,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +24,chr22,12512621,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +25,chr22,12512628,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +26,chr22,12512692,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +27,chr22,12513036,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +28,chr22,12514982,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +29,chr22,12523167,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +30,chr22,12523414,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +31,chr22,12526443,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +32,chr22,12530336,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +33,chr22,12532390,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +34,chr22,12541581,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +35,chr22,12545158,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +36,chr22,12562833,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +37,chr22,12572402,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +38,chr22,12573957,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +39,chr22,12576226,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +40,chr22,12580696,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +41,chr22,12584428,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +42,chr22,12608473,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +43,chr22,12612117,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +44,chr22,12636371,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +45,chr22,12900575,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +46,chr22,15155549,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +47,chr22,15156775,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +48,chr22,15167174,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +49,chr22,15167186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +50,chr22,15168866,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +51,chr22,15171543,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +52,chr22,15176212,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +53,chr22,15180937,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +54,chr22,15180945,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +55,chr22,15182119,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +56,chr22,15186274,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +57,chr22,15186396,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +58,chr22,15195814,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +59,chr22,15202095,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +60,chr22,15206346,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +61,chr22,15209190,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +62,chr22,15209196,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +63,chr22,15220500,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +64,chr22,15222153,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +65,chr22,15222186,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +66,chr22,15223066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +67,chr22,15227906,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +68,chr22,15229992,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +69,chr22,15243794,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +70,chr22,15248686,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +71,chr22,15248994,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +72,chr22,15249023,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +73,chr22,15254369,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +74,chr22,15270644,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +75,chr22,15274832,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +76,chr22,15280902,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +77,chr22,15281327,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +78,chr22,15282867,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +79,chr22,15284316,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +80,chr22,15290487,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +81,chr22,15295018,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +82,chr22,15308661,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +83,chr22,15313814,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +84,chr22,15314315,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +85,chr22,15318176,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +86,chr22,15320153,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +87,chr22,15321908,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +88,chr22,15322045,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +89,chr22,15329690,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +90,chr22,15331785,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +91,chr22,15332669,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +92,chr22,15334578,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +93,chr22,15340480,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +94,chr22,15341400,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +95,chr22,15341403,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +96,chr22,15349257,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +97,chr22,15350971,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +98,chr22,15363818,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +99,chr22,15377040,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +100,chr22,15384719,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +101,chr22,15384753,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +102,chr22,15387306,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +103,chr22,15388486,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +104,chr22,15388533,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +105,chr22,15390877,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +106,chr22,15393992,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +107,chr22,15393994,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +108,chr22,15404230,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +109,chr22,15410057,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +110,chr22,15416777,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +111,chr22,15437116,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +112,chr22,15445917,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +113,chr22,15449903,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +114,chr22,15451478,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +115,chr22,15460337,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +116,chr22,15460486,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +117,chr22,15463012,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +118,chr22,15465945,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +119,chr22,15475556,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +120,chr22,15478743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +121,chr22,15486757,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +122,chr22,15492467,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +123,chr22,15496499,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +124,chr22,15500082,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +125,chr22,15501367,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +126,chr22,15504150,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +127,chr22,15523969,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +128,chr22,15529978,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +129,chr22,15531577,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +130,chr22,15535306,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +131,chr22,15537402,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +132,chr22,15537495,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +133,chr22,15538037,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +134,chr22,15544463,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +135,chr22,15557396,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +136,chr22,15564388,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +137,chr22,15590991,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +138,chr22,15599453,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +139,chr22,15616659,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +140,chr22,15619386,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +141,chr22,15627614,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +142,chr22,15636137,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +143,chr22,15636278,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +144,chr22,15636847,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +145,chr22,15644844,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +146,chr22,15680163,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +147,chr22,15696394,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +148,chr22,15733248,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +149,chr22,15758895,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +150,chr22,15830155,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +151,chr22,15835753,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +152,chr22,15876271,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +153,chr22,15876272,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +154,chr22,15879736,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +155,chr22,15896581,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +156,chr22,15900653,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +157,chr22,16041898,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +158,chr22,16061097,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +159,chr22,16066952,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +160,chr22,16112670,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +161,chr22,16115721,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +162,chr22,16129768,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +163,chr22,16133448,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +164,chr22,16136054,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +165,chr22,16158311,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +166,chr22,16184779,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +167,chr22,16184786,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +168,chr22,16185573,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +169,chr22,16185596,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +170,chr22,16186028,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +171,chr22,16186033,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +172,chr22,16186034,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +173,chr22,16186044,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +174,chr22,16186369,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +175,chr22,16186430,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +176,chr22,16187657,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +177,chr22,16187670,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +178,chr22,16187671,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +179,chr22,16187844,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +180,chr22,16187853,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +181,chr22,16187862,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +182,chr22,16188388,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +183,chr22,16188700,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +184,chr22,16188735,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +185,chr22,16188783,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +186,chr22,16188792,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +187,chr22,16188843,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +188,chr22,16189056,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +189,chr22,16189325,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +190,chr22,16189536,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +191,chr22,16201211,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +192,chr22,16237806,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +193,chr22,16238030,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +194,chr22,16238094,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +195,chr22,16250169,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +196,chr22,16255921,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +197,chr22,16257904,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +198,chr22,16257932,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +199,chr22,16257973,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +200,chr22,16257995,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +201,chr22,16258015,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +202,chr22,16258513,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +203,chr22,16260131,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +204,chr22,16260477,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +205,chr22,16260550,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +206,chr22,16260577,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +207,chr22,16260684,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +208,chr22,16260910,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +209,chr22,16261082,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +210,chr22,16266938,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +211,chr22,16269511,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +212,chr22,16269513,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +213,chr22,16278107,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +214,chr22,16278121,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +215,chr22,16278848,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +216,chr22,16278850,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +217,chr22,16279612,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +218,chr22,16344925,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +219,chr22,16344963,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +220,chr22,16344969,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +221,chr22,16345471,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +222,chr22,16354914,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +223,chr22,16355047,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +224,chr22,16356376,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +225,chr22,16356892,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +226,chr22,16357070,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +227,chr22,16359146,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +228,chr22,16359151,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +229,chr22,16374169,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +230,chr22,16374197,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +231,chr22,16374612,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +232,chr22,16378639,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +233,chr22,16380986,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +234,chr22,16381124,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +235,chr22,16381257,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +236,chr22,16381313,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +237,chr22,16381869,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +238,chr22,16387212,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +239,chr22,16387232,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +240,chr22,16387416,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +241,chr22,16387417,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +242,chr22,16387469,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +243,chr22,16392396,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +244,chr22,16392414,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +245,chr22,16402131,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +246,chr22,16402344,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +247,chr22,16402493,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +248,chr22,16402887,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +249,chr22,16403865,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +250,chr22,16404102,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +251,chr22,16407574,FN,,G,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +252,chr22,16409399,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +253,chr22,16412132,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +254,chr22,16417564,FN,,T,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +255,chr22,16437026,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +256,chr22,16585144,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +257,chr22,16619840,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +258,chr22,16678727,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +259,chr22,16683037,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +260,chr22,16688829,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +261,chr22,16688839,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +262,chr22,16706662,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +263,chr22,16706663,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +264,chr22,16738360,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +265,chr22,16740318,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +266,chr22,16743540,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +267,chr22,16743654,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +268,chr22,16767817,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +269,chr22,16769535,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +270,chr22,16769582,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +271,chr22,16769805,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +272,chr22,16771361,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +273,chr22,16774406,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +274,chr22,16785366,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +275,chr22,16787324,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +276,chr22,16887640,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +277,chr22,16887854,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +278,chr22,16894636,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +279,chr22,16896294,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +280,chr22,16898680,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +281,chr22,16898787,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +282,chr22,16899511,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +283,chr22,16903629,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +284,chr22,16905361,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +285,chr22,16906514,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +286,chr22,16926626,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +287,chr22,16929768,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +288,chr22,16935564,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +289,chr22,16997838,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +290,chr22,17117519,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +291,chr22,17120858,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +292,chr22,17123301,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +293,chr22,17125884,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +294,chr22,17147758,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +295,chr22,17185389,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +296,chr22,17219660,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +297,chr22,17219665,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +298,chr22,17237716,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +299,chr22,17253626,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +300,chr22,17254276,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +301,chr22,17302461,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +302,chr22,17308006,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +303,chr22,17309459,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +304,chr22,17309995,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +305,chr22,17325446,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +306,chr22,17328154,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +307,chr22,17329986,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +308,chr22,17428828,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +309,chr22,17466881,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +310,chr22,17521351,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +311,chr22,17524493,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +312,chr22,17525225,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +313,chr22,17529665,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +314,chr22,17532754,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +315,chr22,17532972,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +316,chr22,17533738,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +317,chr22,17534798,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +318,chr22,17549861,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +319,chr22,17552574,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +320,chr22,17565011,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +321,chr22,17565024,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +322,chr22,17565373,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +323,chr22,17599942,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +324,chr22,17627032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +325,chr22,17656232,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +326,chr22,17686246,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +327,chr22,17691595,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +328,chr22,17755525,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +329,chr22,17810210,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +330,chr22,17810285,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +331,chr22,17814830,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +332,chr22,17814831,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +333,chr22,17814928,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +334,chr22,17818927,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +335,chr22,17820117,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +336,chr22,17830906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +337,chr22,17832302,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +338,chr22,17837577,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +339,chr22,17843632,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +340,chr22,17850442,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +341,chr22,17864361,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +342,chr22,17865150,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +343,chr22,17868809,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +344,chr22,17877295,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +345,chr22,17877333,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +346,chr22,17892159,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +347,chr22,17892161,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +348,chr22,17900470,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +349,chr22,17911167,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +350,chr22,17961883,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +351,chr22,17963186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +352,chr22,17963925,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +353,chr22,17982521,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +354,chr22,17983394,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +355,chr22,17993054,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +356,chr22,17995908,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +357,chr22,18006282,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +358,chr22,18009413,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +359,chr22,18041240,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +360,chr22,18051268,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +361,chr22,18051847,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +362,chr22,18106483,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +363,chr22,18123074,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +364,chr22,18127480,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +365,chr22,18172400,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +366,chr22,18186065,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +367,chr22,18196944,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +368,chr22,18235120,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +369,chr22,18238803,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +370,chr22,18239000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +371,chr22,18343587,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +372,chr22,18346371,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +373,chr22,18346396,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +374,chr22,18358385,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +375,chr22,18368548,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +376,chr22,18368700,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +377,chr22,18368750,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +378,chr22,18369909,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +379,chr22,18370631,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +380,chr22,18371985,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +381,chr22,18373727,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +382,chr22,18381587,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +383,chr22,18493332,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +384,chr22,18509155,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +385,chr22,18513607,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +386,chr22,18514860,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +387,chr22,18530126,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +388,chr22,18622349,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +389,chr22,18624726,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +390,chr22,18625245,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +391,chr22,18637196,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +392,chr22,18710676,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +393,chr22,18728719,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +394,chr22,18730180,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +395,chr22,18730477,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +396,chr22,18737146,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +397,chr22,18738634,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +398,chr22,18748704,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +399,chr22,18775887,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +400,chr22,18776636,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +401,chr22,18780379,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +402,chr22,18781632,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +403,chr22,18787890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +404,chr22,18789871,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +405,chr22,18848572,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +406,chr22,18855350,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +407,chr22,18855445,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +408,chr22,18855795,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +409,chr22,18858136,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +410,chr22,18858575,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +411,chr22,18859221,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +412,chr22,18872375,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +413,chr22,18876362,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +414,chr22,18877633,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +415,chr22,18881633,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +416,chr22,18883352,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +417,chr22,18940813,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +418,chr22,18943456,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +419,chr22,18943553,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +420,chr22,18944023,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +421,chr22,18963201,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +422,chr22,18964723,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +423,chr22,18969616,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +424,chr22,18969863,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +425,chr22,18970080,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +426,chr22,18989905,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +427,chr22,19009052,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +428,chr22,19021359,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +429,chr22,19023845,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +430,chr22,19024340,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +431,chr22,19024358,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +432,chr22,19024998,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +433,chr22,19025342,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +434,chr22,19025589,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +435,chr22,19026284,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +436,chr22,19026770,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +437,chr22,19026841,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +438,chr22,19026846,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +439,chr22,19026951,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +440,chr22,19026995,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +441,chr22,19027032,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +442,chr22,19027451,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +443,chr22,19032132,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +444,chr22,19032568,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +445,chr22,19032803,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +446,chr22,19033903,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +447,chr22,19034662,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +448,chr22,19052644,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +449,chr22,19058419,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +450,chr22,19084177,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +451,chr22,19084569,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +452,chr22,19084970,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +453,chr22,19103573,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +454,chr22,19109160,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +455,chr22,19112300,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +456,chr22,19112301,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +457,chr22,19112304,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +458,chr22,19112307,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +459,chr22,19114038,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +460,chr22,19129374,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +461,chr22,19132032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +462,chr22,19141046,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +463,chr22,19144548,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +464,chr22,19196584,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +465,chr22,19227113,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +466,chr22,19275329,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +467,chr22,19288428,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +468,chr22,19334199,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +469,chr22,19535632,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +470,chr22,19656780,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +471,chr22,19658083,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +472,chr22,19660896,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +473,chr22,19691313,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +474,chr22,19736701,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +475,chr22,19879526,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +476,chr22,19931945,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +477,chr22,19970499,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +478,chr22,20006657,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +479,chr22,20164190,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +480,chr22,20164250,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +481,chr22,20164253,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +482,chr22,20201597,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +483,chr22,20231969,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +484,chr22,20232643,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +485,chr22,20297082,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +486,chr22,20304135,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +487,chr22,20333132,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +488,chr22,20333208,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +489,chr22,20333692,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +490,chr22,20334366,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +491,chr22,20334760,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +492,chr22,20334866,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +493,chr22,20334904,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +494,chr22,20335164,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +495,chr22,20336353,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +496,chr22,20342855,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +497,chr22,20346352,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +498,chr22,20355022,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +499,chr22,20360882,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +500,chr22,20370565,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +501,chr22,20372029,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +502,chr22,20373042,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +503,chr22,20458271,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +504,chr22,20535980,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +505,chr22,20589868,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +506,chr22,20624249,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +507,chr22,20652128,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +508,chr22,20657936,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +509,chr22,20658281,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +510,chr22,20679865,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +511,chr22,20702143,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +512,chr22,20826067,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +513,chr22,21006457,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +514,chr22,21007235,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +515,chr22,21010870,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +516,chr22,21041916,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +517,chr22,21049824,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +518,chr22,21080271,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +519,chr22,21088276,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +520,chr22,21088994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +521,chr22,21090612,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +522,chr22,21092400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +523,chr22,21094015,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +524,chr22,21094068,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +525,chr22,21094113,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +526,chr22,21094135,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +527,chr22,21097209,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +528,chr22,21097378,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +529,chr22,21097662,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +530,chr22,21103357,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +531,chr22,21113732,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +532,chr22,21122885,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +533,chr22,21123494,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +534,chr22,21123524,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +535,chr22,21135346,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +536,chr22,21135361,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +537,chr22,21139041,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +538,chr22,21142533,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +539,chr22,21150834,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +540,chr22,21152155,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +541,chr22,21156182,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +542,chr22,21159873,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +543,chr22,21160367,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +544,chr22,21160832,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +545,chr22,21160856,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +546,chr22,21164196,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +547,chr22,21164369,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +548,chr22,21164400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +549,chr22,21164546,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +550,chr22,21171345,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +551,chr22,21173414,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +552,chr22,21175288,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +553,chr22,21175505,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +554,chr22,21178272,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +555,chr22,21181521,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +556,chr22,21181596,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +557,chr22,21181878,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +558,chr22,21183445,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +559,chr22,21183872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +560,chr22,21184120,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +561,chr22,21184501,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +562,chr22,21184505,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +563,chr22,21196921,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +564,chr22,21201076,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +565,chr22,21201100,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +566,chr22,21201429,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +567,chr22,21221290,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +568,chr22,21233006,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +569,chr22,21239042,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +570,chr22,21248413,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +571,chr22,21250488,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +572,chr22,21251389,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +573,chr22,21264809,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +574,chr22,21265555,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +575,chr22,21265605,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +576,chr22,21265609,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +577,chr22,21281112,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +578,chr22,21281135,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +579,chr22,21285835,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +580,chr22,21287521,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +581,chr22,21289008,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +582,chr22,21289443,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +583,chr22,21299537,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +584,chr22,21310688,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +585,chr22,21326525,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +586,chr22,21328232,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +587,chr22,21328866,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +588,chr22,21328998,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +589,chr22,21329538,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +590,chr22,21333421,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +591,chr22,21333798,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +592,chr22,21334667,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +593,chr22,21336082,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +594,chr22,21336571,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +595,chr22,21336796,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +596,chr22,21337531,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +597,chr22,21339235,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +598,chr22,21341242,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +599,chr22,21352210,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +600,chr22,21358312,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +601,chr22,21358822,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +602,chr22,21368459,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +603,chr22,21402130,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +604,chr22,21414637,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +605,chr22,21576408,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +606,chr22,21686006,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +607,chr22,21691026,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +608,chr22,21692281,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +609,chr22,21692364,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +610,chr22,21699591,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +611,chr22,21699596,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +612,chr22,21741631,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +613,chr22,21742717,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +614,chr22,21778696,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +615,chr22,21795309,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +616,chr22,21818955,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +617,chr22,21847063,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +618,chr22,21854901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +619,chr22,21884000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +620,chr22,21885661,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +621,chr22,21893010,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +622,chr22,21912598,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +623,chr22,21913914,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +624,chr22,21930952,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +625,chr22,22102173,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +626,chr22,22102222,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +627,chr22,22108915,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +628,chr22,22109183,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +629,chr22,22117335,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +630,chr22,22135515,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +631,chr22,22137471,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +632,chr22,22143788,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +633,chr22,22144390,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +634,chr22,22144396,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +635,chr22,22144410,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +636,chr22,22147102,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +637,chr22,22150242,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +638,chr22,22150423,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +639,chr22,22154039,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +640,chr22,22159328,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +641,chr22,22159852,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +642,chr22,22161743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +643,chr22,22161755,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +644,chr22,22173173,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +645,chr22,22225910,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +646,chr22,22225921,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +647,chr22,22226055,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +648,chr22,22229859,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +649,chr22,22236679,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +650,chr22,22238631,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +651,chr22,22241403,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +652,chr22,22275243,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +653,chr22,22289434,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +654,chr22,22291124,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +655,chr22,22316463,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +656,chr22,22337538,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +657,chr22,22352714,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +658,chr22,22357928,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +659,chr22,22368981,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +660,chr22,22368996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +661,chr22,22398921,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +662,chr22,22514169,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +663,chr22,22514173,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +664,chr22,22582378,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +665,chr22,22628088,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +666,chr22,22635543,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +667,chr22,22635920,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +668,chr22,22636997,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +669,chr22,22637456,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +670,chr22,22637473,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +671,chr22,22640497,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +672,chr22,22643348,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +673,chr22,22644135,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +674,chr22,22644994,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +675,chr22,22645128,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +676,chr22,22645223,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +677,chr22,22645295,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +678,chr22,22645415,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +679,chr22,22646029,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +680,chr22,22646037,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +681,chr22,22654102,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +682,chr22,22654158,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +683,chr22,22773995,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +684,chr22,22810153,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +685,chr22,22855266,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +686,chr22,22866410,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +687,chr22,22875478,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +688,chr22,22899217,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +689,chr22,22900623,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +690,chr22,22901488,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +691,chr22,22905193,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +692,chr22,22906669,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +693,chr22,23081777,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +694,chr22,23082084,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +695,chr22,23086247,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +696,chr22,23088903,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +697,chr22,23089160,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +698,chr22,23091561,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +699,chr22,23091617,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +700,chr22,23109588,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +701,chr22,23170073,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +702,chr22,23170626,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +703,chr22,23172263,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +704,chr22,23172793,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +705,chr22,23178907,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +706,chr22,23180482,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +707,chr22,23194956,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +708,chr22,23194973,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +709,chr22,23196782,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +710,chr22,23295838,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +711,chr22,23310769,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +712,chr22,23311002,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +713,chr22,23311023,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +714,chr22,23311693,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +715,chr22,23315290,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +716,chr22,23317083,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +717,chr22,23317175,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +718,chr22,23318605,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +719,chr22,23319180,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +720,chr22,23319608,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +721,chr22,23320153,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +722,chr22,23320452,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +723,chr22,23326623,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +724,chr22,23327129,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +725,chr22,23327137,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +726,chr22,23489773,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +727,chr22,23489787,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +728,chr22,23493082,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +729,chr22,23497733,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +730,chr22,23500470,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +731,chr22,23502628,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +732,chr22,23502949,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +733,chr22,23593400,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +734,chr22,23595148,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +735,chr22,23595160,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +736,chr22,23595161,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +737,chr22,23595169,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +738,chr22,23595176,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +739,chr22,23595332,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +740,chr22,23668237,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +741,chr22,23683303,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +742,chr22,23754754,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +743,chr22,23754756,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +744,chr22,23754771,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +745,chr22,23754778,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +746,chr22,23759471,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +747,chr22,23797241,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +748,chr22,23808048,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +749,chr22,23809528,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +750,chr22,23832914,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +751,chr22,23839516,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +752,chr22,23892306,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +753,chr22,23893272,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +754,chr22,24102702,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +755,chr22,24211244,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +756,chr22,24213637,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +757,chr22,24213670,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +758,chr22,24213708,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +759,chr22,24259872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +760,chr22,24259904,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +761,chr22,24261561,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +762,chr22,24424484,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +763,chr22,24615450,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +764,chr22,24626710,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +765,chr22,24647820,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +766,chr22,24652130,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +767,chr22,24652146,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +768,chr22,24671903,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +769,chr22,24671908,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +770,chr22,24699473,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +771,chr22,24704716,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +772,chr22,24704807,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +773,chr22,24711599,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +774,chr22,24713060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +775,chr22,24748709,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +776,chr22,24750681,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +777,chr22,24750718,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +778,chr22,24816896,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +779,chr22,24817476,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +780,chr22,24818157,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +781,chr22,24818443,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +782,chr22,24818528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +783,chr22,24819003,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +784,chr22,24845870,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +785,chr22,24859613,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +786,chr22,24864803,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +787,chr22,24866381,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +788,chr22,24873679,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +789,chr22,24889995,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +790,chr22,24919071,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +791,chr22,24919129,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +792,chr22,24940108,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +793,chr22,24940462,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +794,chr22,24945217,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +795,chr22,24952463,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +796,chr22,24960686,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +797,chr22,24961441,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +798,chr22,25004311,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +799,chr22,25007497,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +800,chr22,25009792,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +801,chr22,25031174,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +802,chr22,25036678,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +803,chr22,25053963,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +804,chr22,25218678,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +805,chr22,25219743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +806,chr22,25232918,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +807,chr22,25232977,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +808,chr22,25233009,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +809,chr22,25245243,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +810,chr22,25246283,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +811,chr22,25246284,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +812,chr22,25247516,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +813,chr22,25253398,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +814,chr22,25264413,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +815,chr22,25286278,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +816,chr22,25315099,FN,,A,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +817,chr22,25317479,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +818,chr22,25317490,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +819,chr22,25317491,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +820,chr22,25317493,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +821,chr22,25317494,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +822,chr22,25317500,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +823,chr22,25341859,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +824,chr22,25380745,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +825,chr22,25382234,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +826,chr22,25395225,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +827,chr22,25395319,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +828,chr22,25412476,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +829,chr22,25415353,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +830,chr22,25415378,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +831,chr22,25420806,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +832,chr22,25432488,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +833,chr22,25447641,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +834,chr22,25447645,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +835,chr22,25457139,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +836,chr22,25506174,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +837,chr22,25506265,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +838,chr22,25506937,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +839,chr22,25507151,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +840,chr22,25509166,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +841,chr22,25516826,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +842,chr22,25517801,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +843,chr22,25519523,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +844,chr22,25521454,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +845,chr22,25525901,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +846,chr22,25526307,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +847,chr22,25527070,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +848,chr22,25549859,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +849,chr22,25780568,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +850,chr22,25789324,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +851,chr22,25792867,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +852,chr22,25803087,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +853,chr22,25810117,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +854,chr22,25810118,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +855,chr22,25813118,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +856,chr22,25820193,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +857,chr22,25824670,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +858,chr22,25826487,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +859,chr22,25827140,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +860,chr22,25829624,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +861,chr22,25833175,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +862,chr22,25922269,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +863,chr22,26058629,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +864,chr22,26063332,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +865,chr22,26063969,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +866,chr22,26156934,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +867,chr22,26231940,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +868,chr22,26239838,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +869,chr22,26242302,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +870,chr22,26245477,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +871,chr22,26292038,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +872,chr22,26292042,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +873,chr22,26295753,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +874,chr22,26331771,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +875,chr22,26332213,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +876,chr22,26332340,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +877,chr22,26370030,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +878,chr22,26370058,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +879,chr22,26370123,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +880,chr22,26370235,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +881,chr22,26370309,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +882,chr22,26375420,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +883,chr22,26390834,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +884,chr22,26391946,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +885,chr22,26408835,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +886,chr22,26528785,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +887,chr22,26587543,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +888,chr22,26594646,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +889,chr22,26638383,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +890,chr22,26638387,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +891,chr22,26640034,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +892,chr22,26706596,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +893,chr22,26795680,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +894,chr22,26825031,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +895,chr22,26860454,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +896,chr22,26861358,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +897,chr22,26905472,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +898,chr22,26905499,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +899,chr22,26982258,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +900,chr22,26985073,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +901,chr22,26985383,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +902,chr22,27009479,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +903,chr22,27013728,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +904,chr22,27032809,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +905,chr22,27139067,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +906,chr22,27219893,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +907,chr22,27221450,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +908,chr22,27226154,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +909,chr22,27253743,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +910,chr22,27261583,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +911,chr22,27266728,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +912,chr22,27274536,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +913,chr22,27274782,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +914,chr22,27284942,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +915,chr22,27337637,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +916,chr22,27350157,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +917,chr22,27354115,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +918,chr22,27355835,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +919,chr22,27359775,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +920,chr22,27373823,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +921,chr22,27405254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +922,chr22,27437791,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +923,chr22,27437957,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +924,chr22,27454910,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +925,chr22,27480792,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +926,chr22,27515661,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +927,chr22,27523048,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +928,chr22,27523818,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +929,chr22,27525495,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +930,chr22,27540619,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +931,chr22,27540910,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +932,chr22,27552123,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +933,chr22,27563791,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +934,chr22,27563793,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +935,chr22,27563880,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +936,chr22,27571494,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +937,chr22,27571502,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +938,chr22,27594454,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +939,chr22,27608990,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +940,chr22,27609121,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +941,chr22,27609758,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +942,chr22,27619753,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +943,chr22,27619782,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +944,chr22,27632236,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +945,chr22,27639812,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +946,chr22,27640705,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +947,chr22,27640883,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +948,chr22,27650044,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +949,chr22,27660378,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +950,chr22,27671920,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +951,chr22,27672362,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +952,chr22,27672448,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +953,chr22,27674586,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +954,chr22,27695984,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +955,chr22,27714323,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +956,chr22,27733113,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +957,chr22,27740745,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +958,chr22,27743025,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +959,chr22,28170936,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +960,chr22,28194287,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +961,chr22,28334888,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +962,chr22,28336935,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +963,chr22,28386199,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +964,chr22,28391959,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +965,chr22,28540045,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +966,chr22,28553483,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +967,chr22,28593518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +968,chr22,28655273,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +969,chr22,29316060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +970,chr22,29332494,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +971,chr22,29361101,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +972,chr22,29389608,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +973,chr22,29395245,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +974,chr22,29397536,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +975,chr22,29409878,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +976,chr22,29564346,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +977,chr22,29567519,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +978,chr22,29613790,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +979,chr22,29644886,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +980,chr22,29697257,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +981,chr22,29827015,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +982,chr22,29864820,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +983,chr22,29881077,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +984,chr22,29908245,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +985,chr22,30009994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +986,chr22,30143438,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +987,chr22,30147514,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +988,chr22,30158560,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +989,chr22,30404323,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +990,chr22,30431818,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +991,chr22,30460426,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +992,chr22,30468623,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +993,chr22,30534534,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +994,chr22,30563817,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +995,chr22,30598931,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +996,chr22,30624127,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +997,chr22,30631695,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +998,chr22,30633017,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +999,chr22,30633484,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1000,chr22,30636894,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1001,chr22,30668318,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1002,chr22,30674506,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1003,chr22,30675058,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1004,chr22,30675657,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1005,chr22,30682858,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1006,chr22,30698445,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1007,chr22,30700105,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1008,chr22,30707617,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1009,chr22,30708639,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1010,chr22,30729957,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1011,chr22,30730151,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1012,chr22,30773774,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1013,chr22,30799255,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1014,chr22,30814437,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1015,chr22,30855994,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1016,chr22,30872104,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1017,chr22,30923200,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1018,chr22,31000840,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1019,chr22,31011415,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1020,chr22,31016184,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1021,chr22,31018484,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1022,chr22,31027522,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1023,chr22,31027863,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1024,chr22,31034585,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1025,chr22,31034586,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1026,chr22,31034593,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1027,chr22,31054451,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1028,chr22,31100540,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1029,chr22,31129195,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1030,chr22,31162834,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1031,chr22,31163269,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1032,chr22,31174450,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1033,chr22,31175032,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1034,chr22,31194222,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1035,chr22,31202381,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1036,chr22,31261322,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1037,chr22,31284557,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1038,chr22,31412841,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1039,chr22,31419357,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1040,chr22,31438837,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1041,chr22,31438953,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1042,chr22,31470511,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1043,chr22,31478808,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1044,chr22,31482897,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1045,chr22,31495214,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1046,chr22,31501199,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1047,chr22,31550296,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1048,chr22,31564103,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1049,chr22,31564173,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1050,chr22,31564314,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1051,chr22,31567470,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1052,chr22,31580592,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1053,chr22,31580833,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1054,chr22,31580853,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1055,chr22,31581354,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1056,chr22,31591541,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1057,chr22,31591564,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1058,chr22,31591720,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1059,chr22,31592592,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1060,chr22,31593027,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1061,chr22,31593151,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1062,chr22,31593199,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1063,chr22,31593802,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1064,chr22,31594514,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1065,chr22,31594852,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1066,chr22,31599358,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1067,chr22,31599967,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1068,chr22,31602822,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1069,chr22,31603860,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1070,chr22,31606896,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1071,chr22,31612214,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1072,chr22,31616672,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1073,chr22,31629579,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1074,chr22,31630145,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1075,chr22,31636953,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1076,chr22,31638806,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1077,chr22,31638889,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1078,chr22,31639264,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1079,chr22,31640346,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1080,chr22,31644396,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1081,chr22,31645540,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1082,chr22,31645658,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1083,chr22,31645667,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1084,chr22,31652628,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1085,chr22,31652669,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1086,chr22,31653034,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1087,chr22,31655671,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1088,chr22,31663988,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1089,chr22,31669821,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1090,chr22,31669996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1091,chr22,31670002,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1092,chr22,31670066,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1093,chr22,31673200,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1094,chr22,31674651,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1095,chr22,31674926,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1096,chr22,31675031,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1097,chr22,31676130,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1098,chr22,31676132,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1099,chr22,31691435,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1100,chr22,31697282,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1101,chr22,31705663,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1102,chr22,31708478,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1103,chr22,31735624,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1104,chr22,31745325,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1105,chr22,31755228,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1106,chr22,31765798,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1107,chr22,31774138,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1108,chr22,31776994,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1109,chr22,31781532,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1110,chr22,31790782,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1111,chr22,31791394,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1112,chr22,31939800,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1113,chr22,32139110,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1114,chr22,32195658,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1115,chr22,32213667,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1116,chr22,32218117,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1117,chr22,32221134,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1118,chr22,32242529,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1119,chr22,32250759,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1120,chr22,32250769,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1121,chr22,32252208,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1122,chr22,32253888,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1123,chr22,32260801,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1124,chr22,32262633,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1125,chr22,32287391,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1126,chr22,32287725,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1127,chr22,32287738,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1128,chr22,32290479,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1129,chr22,32291895,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1130,chr22,32294771,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1131,chr22,32294821,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1132,chr22,32294872,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1133,chr22,32296894,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1134,chr22,32297204,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1135,chr22,32297949,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1136,chr22,32297982,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1137,chr22,32298303,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1138,chr22,32299126,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1139,chr22,32299327,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1140,chr22,32300009,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1141,chr22,32300133,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1142,chr22,32301855,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1143,chr22,32304631,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1144,chr22,32329571,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1145,chr22,32329588,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1146,chr22,32330871,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1147,chr22,32333227,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1148,chr22,32333785,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1149,chr22,32334624,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1150,chr22,32347382,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1151,chr22,32352278,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1152,chr22,32354128,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1153,chr22,32363337,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1154,chr22,32364781,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1155,chr22,32371256,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1156,chr22,32373858,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1157,chr22,32383144,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1158,chr22,32384570,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1159,chr22,32423579,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1160,chr22,32424868,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1161,chr22,32425314,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1162,chr22,32427084,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1163,chr22,32430735,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1164,chr22,32504340,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1165,chr22,32529539,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1166,chr22,32538288,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1167,chr22,32545981,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1168,chr22,32552106,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1169,chr22,32587045,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1170,chr22,32587177,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1171,chr22,32597238,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1172,chr22,32597239,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1173,chr22,32610293,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1174,chr22,32644020,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1175,chr22,32645886,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1176,chr22,32678040,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1177,chr22,32678520,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1178,chr22,32710098,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1179,chr22,32712072,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1180,chr22,32712550,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1181,chr22,32715000,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1182,chr22,32725154,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1183,chr22,32726002,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1184,chr22,32739379,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1185,chr22,32741951,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1186,chr22,32773964,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1187,chr22,32778446,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1188,chr22,32785832,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1189,chr22,32832736,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1190,chr22,32833916,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1191,chr22,32835829,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1192,chr22,32845782,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1193,chr22,32872968,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1194,chr22,32944224,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1195,chr22,32951106,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1196,chr22,32961503,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1197,chr22,32963028,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1198,chr22,32976481,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1199,chr22,32977710,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1200,chr22,32984118,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1201,chr22,32986413,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1202,chr22,32995528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1203,chr22,32995658,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1204,chr22,33007559,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1205,chr22,33008998,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1206,chr22,33018241,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1207,chr22,33025841,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1208,chr22,33034025,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1209,chr22,33034247,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1210,chr22,33035565,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1211,chr22,33039490,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1212,chr22,33052098,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1213,chr22,33089388,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1214,chr22,33092072,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1215,chr22,33105301,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1216,chr22,33155579,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1217,chr22,33395717,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1218,chr22,33414901,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1219,chr22,33419463,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1220,chr22,33441144,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1221,chr22,33450148,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1222,chr22,33451705,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1223,chr22,33471758,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1224,chr22,33471763,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1225,chr22,33502185,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1226,chr22,33587433,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1227,chr22,33589329,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1228,chr22,33593345,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1229,chr22,33600216,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1230,chr22,33601390,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1231,chr22,33605907,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1232,chr22,33606745,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1233,chr22,33609239,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1234,chr22,33626630,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1235,chr22,33630318,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1236,chr22,33778355,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1237,chr22,33833896,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1238,chr22,33846847,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1239,chr22,33865655,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1240,chr22,33875701,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1241,chr22,33900757,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1242,chr22,33916966,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1243,chr22,33931287,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1244,chr22,33949741,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1245,chr22,33950795,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1246,chr22,33959051,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1247,chr22,33986982,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1248,chr22,33988589,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1249,chr22,33990131,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1250,chr22,34109914,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1251,chr22,34147776,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1252,chr22,34153830,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1253,chr22,34153948,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1254,chr22,34154916,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1255,chr22,34156075,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1256,chr22,34156115,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1257,chr22,34157284,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1258,chr22,34157614,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1259,chr22,34157713,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1260,chr22,34199251,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1261,chr22,34199445,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1262,chr22,34205093,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1263,chr22,34205125,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1264,chr22,34246434,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1265,chr22,34381638,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1266,chr22,34403271,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1267,chr22,34424374,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1268,chr22,34436532,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1269,chr22,34469257,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1270,chr22,34552553,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1271,chr22,34612785,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1272,chr22,34667647,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1273,chr22,34690552,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1274,chr22,34791204,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1275,chr22,34818715,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1276,chr22,34927969,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1277,chr22,34944047,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1278,chr22,34970138,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1279,chr22,35022552,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1280,chr22,35058779,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1281,chr22,35058813,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1282,chr22,35062911,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1283,chr22,35074867,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1284,chr22,35118780,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1285,chr22,35121901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1286,chr22,35121961,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1287,chr22,35122279,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1288,chr22,35122354,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1289,chr22,35122417,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1290,chr22,35122439,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1291,chr22,35122483,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1292,chr22,35122536,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1293,chr22,35216776,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1294,chr22,35223012,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1295,chr22,35223426,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1296,chr22,35308619,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1297,chr22,35342929,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1298,chr22,35343343,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1299,chr22,35491061,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1300,chr22,35509216,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1301,chr22,35520598,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1302,chr22,35574507,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1303,chr22,35576732,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1304,chr22,35596557,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1305,chr22,35596660,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1306,chr22,35608057,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1307,chr22,35652319,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1308,chr22,35700874,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1309,chr22,35701066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1310,chr22,36043160,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1311,chr22,36060244,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1312,chr22,36060254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1313,chr22,36098162,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1314,chr22,36113690,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1315,chr22,36121884,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1316,chr22,36122163,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1317,chr22,36238540,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1318,chr22,36266691,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1319,chr22,36303053,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1320,chr22,36304129,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1321,chr22,36355056,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1322,chr22,36366400,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1323,chr22,36366401,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1324,chr22,36391115,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1325,chr22,36393691,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1326,chr22,36403971,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1327,chr22,36405436,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1328,chr22,36428198,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1329,chr22,36428203,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1330,chr22,36434141,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1331,chr22,36443502,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1332,chr22,36443625,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1333,chr22,36443626,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1334,chr22,36443641,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1335,chr22,36443694,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1336,chr22,36445288,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1337,chr22,36447217,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1338,chr22,36459275,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1339,chr22,36467200,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1340,chr22,36471956,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1341,chr22,36474498,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1342,chr22,36486307,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1343,chr22,36487923,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1344,chr22,36532062,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1345,chr22,36589452,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1346,chr22,36610297,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1347,chr22,36610358,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1348,chr22,36611423,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1349,chr22,36799857,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1350,chr22,36800075,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1351,chr22,36827798,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1352,chr22,36830165,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1353,chr22,36964832,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1354,chr22,36966002,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1355,chr22,36966011,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1356,chr22,36966013,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1357,chr22,36966441,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1358,chr22,36966442,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1359,chr22,36966450,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1360,chr22,36966451,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1361,chr22,36966458,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1362,chr22,36966521,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1363,chr22,36966528,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1364,chr22,36974291,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1365,chr22,36977479,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1366,chr22,36983505,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1367,chr22,37015662,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1368,chr22,37017566,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1369,chr22,37049628,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1370,chr22,37073152,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1371,chr22,37078481,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1372,chr22,37094651,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1373,chr22,37094652,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1374,chr22,37095782,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1375,chr22,37097823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1376,chr22,37098875,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1377,chr22,37100087,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1378,chr22,37100420,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1379,chr22,37156197,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1380,chr22,37159545,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1381,chr22,37179891,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1382,chr22,37182174,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1383,chr22,37182955,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1384,chr22,37198785,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1385,chr22,37216196,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1386,chr22,37242920,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1387,chr22,37247243,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1388,chr22,37247424,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1389,chr22,37263445,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1390,chr22,37263696,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1391,chr22,37286784,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1392,chr22,37292839,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1393,chr22,37391181,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1394,chr22,37399519,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1395,chr22,37404456,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1396,chr22,37405721,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1397,chr22,37413439,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1398,chr22,37524246,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1399,chr22,37555574,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1400,chr22,37590903,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1401,chr22,37595628,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1402,chr22,37719311,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1403,chr22,37730357,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1404,chr22,37730721,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1405,chr22,37730739,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1406,chr22,37770265,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1407,chr22,37787463,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1408,chr22,37789987,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1409,chr22,37790395,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1410,chr22,37800753,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1411,chr22,37806392,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1412,chr22,37911053,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1413,chr22,37911561,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1414,chr22,37922890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1415,chr22,37938527,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1416,chr22,37939746,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1417,chr22,38123506,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1418,chr22,38152965,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1419,chr22,38152966,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1420,chr22,38165300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1421,chr22,38165555,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1422,chr22,38165645,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1423,chr22,38171129,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1424,chr22,38171890,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1425,chr22,38217300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1426,chr22,38217456,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1427,chr22,38281077,FN,,G,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1428,chr22,38312501,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1429,chr22,38321435,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1430,chr22,38323796,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1431,chr22,38338152,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1432,chr22,38385077,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1433,chr22,38398104,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1434,chr22,38399295,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1435,chr22,38399932,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1436,chr22,38626893,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1437,chr22,38707013,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1438,chr22,38707015,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1439,chr22,38761894,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1440,chr22,38767009,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1441,chr22,38806593,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1442,chr22,38880465,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1443,chr22,38988695,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1444,chr22,38988703,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1445,chr22,38988719,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1446,chr22,38992202,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1447,chr22,38992211,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1448,chr22,39097797,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1449,chr22,39100894,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1450,chr22,39151422,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1451,chr22,39152759,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1452,chr22,39193971,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1453,chr22,39194075,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1454,chr22,39195917,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1455,chr22,39201433,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1456,chr22,39289010,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1457,chr22,39293363,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1458,chr22,39324067,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1459,chr22,39324651,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1460,chr22,39329842,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1461,chr22,39341626,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1462,chr22,39347425,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1463,chr22,39349236,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1464,chr22,39349255,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1465,chr22,39359436,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1466,chr22,39398429,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1467,chr22,39420819,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1468,chr22,39420823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1469,chr22,39541641,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1470,chr22,39588941,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1471,chr22,39605078,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1472,chr22,39617862,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1473,chr22,39653513,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1474,chr22,39756316,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1475,chr22,39846183,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1476,chr22,39946598,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1477,chr22,40196820,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1478,chr22,40336447,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1479,chr22,40501928,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1480,chr22,40536562,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1481,chr22,40536866,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1482,chr22,40536895,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1483,chr22,40537101,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1484,chr22,40538311,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1485,chr22,40543906,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1486,chr22,40550303,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1487,chr22,40698188,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1488,chr22,40726474,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1489,chr22,40764254,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1490,chr22,40821813,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1491,chr22,41038933,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1492,chr22,41059966,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1493,chr22,41200799,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1494,chr22,41378377,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1495,chr22,41565999,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1496,chr22,41566789,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1497,chr22,41572347,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1498,chr22,41594640,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1499,chr22,41737563,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1500,chr22,41785494,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1501,chr22,41791011,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1502,chr22,41796478,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1503,chr22,41815137,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1504,chr22,41831096,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1505,chr22,41855119,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1506,chr22,41864326,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1507,chr22,41985722,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1508,chr22,42024851,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1509,chr22,42061908,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1510,chr22,42102802,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1511,chr22,42140913,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1512,chr22,42141208,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1513,chr22,42161704,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1514,chr22,42225222,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1515,chr22,42392913,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1516,chr22,42430294,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1517,chr22,42441001,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1518,chr22,42447845,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1519,chr22,42454295,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1520,chr22,42467319,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1521,chr22,42470608,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1522,chr22,42474435,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1523,chr22,42491723,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1524,chr22,42838292,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1525,chr22,42902020,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1526,chr22,42982110,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1527,chr22,43014739,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1528,chr22,43021381,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1529,chr22,43032347,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1530,chr22,43059586,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1531,chr22,43075380,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1532,chr22,43079122,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1533,chr22,43079131,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1534,chr22,43079250,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1535,chr22,43079255,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1536,chr22,43079259,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1537,chr22,43107967,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1538,chr22,43153631,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1539,chr22,43153640,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1540,chr22,43153642,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1541,chr22,43153643,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1542,chr22,43153646,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1543,chr22,43193357,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1544,chr22,43204460,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1545,chr22,43204482,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1546,chr22,43214100,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1547,chr22,43249088,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1548,chr22,43249127,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1549,chr22,43281649,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1550,chr22,43308279,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1551,chr22,43312898,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1552,chr22,43409803,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1553,chr22,43445526,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1554,chr22,43463823,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1555,chr22,43463827,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1556,chr22,43498072,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1557,chr22,43499641,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1558,chr22,43499686,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1559,chr22,43500035,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1560,chr22,43500107,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1561,chr22,43548509,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1562,chr22,43590901,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1563,chr22,43618223,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1564,chr22,43654718,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1565,chr22,43727622,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1566,chr22,43730221,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1567,chr22,43816574,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1568,chr22,43820061,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1569,chr22,43821418,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1570,chr22,43829764,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1571,chr22,43835051,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1572,chr22,43840125,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1573,chr22,43845646,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1574,chr22,43847590,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1575,chr22,43879309,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1576,chr22,43885431,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1577,chr22,43885500,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1578,chr22,43890436,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1579,chr22,43901262,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1580,chr22,43901685,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1581,chr22,43919983,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1582,chr22,43927042,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1583,chr22,43980610,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1584,chr22,44003071,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1585,chr22,44008096,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1586,chr22,44088001,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1587,chr22,44102588,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1588,chr22,44112988,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1589,chr22,44115429,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1590,chr22,44122520,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1591,chr22,44137241,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1592,chr22,44170554,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1593,chr22,44171105,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1594,chr22,44196612,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1595,chr22,44199359,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1596,chr22,44199959,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1597,chr22,44201205,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1598,chr22,44213518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1599,chr22,44213596,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1600,chr22,44216881,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1601,chr22,44216882,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1602,chr22,44218433,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1603,chr22,44295675,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1604,chr22,44306533,FN,,C,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1605,chr22,44306615,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1606,chr22,44306681,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1607,chr22,44394020,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1608,chr22,44394996,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1609,chr22,44500192,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1610,chr22,44507584,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1611,chr22,44507585,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1612,chr22,44536657,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1613,chr22,44537010,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1614,chr22,44539850,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1615,chr22,44539965,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1616,chr22,44539979,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1617,chr22,44578613,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1618,chr22,44578695,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1619,chr22,44579333,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1620,chr22,44579386,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1621,chr22,44583932,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1622,chr22,44605259,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1623,chr22,44607547,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1624,chr22,44611720,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1625,chr22,44614760,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1626,chr22,44619593,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1627,chr22,44653804,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1628,chr22,44653881,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1629,chr22,44654027,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1630,chr22,44666031,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1631,chr22,44666036,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1632,chr22,44666046,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1633,chr22,44667615,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1634,chr22,44688367,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1635,chr22,44753661,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1636,chr22,44753705,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1637,chr22,44753733,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1638,chr22,44753739,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1639,chr22,44755779,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1640,chr22,44755836,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1641,chr22,44755859,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1642,chr22,44756284,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1643,chr22,44763466,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1644,chr22,44821195,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1645,chr22,44821197,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1646,chr22,44821198,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1647,chr22,44821203,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1648,chr22,44821206,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1649,chr22,44827880,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1650,chr22,44835817,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1651,chr22,44836692,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1652,chr22,44846142,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1653,chr22,44855931,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1654,chr22,44857232,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1655,chr22,44857584,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1656,chr22,44857586,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1657,chr22,44857590,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1658,chr22,44857623,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1659,chr22,44858591,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1660,chr22,44858592,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1661,chr22,44858613,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1662,chr22,44858837,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1663,chr22,44859016,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1664,chr22,44859090,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1665,chr22,44859808,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1666,chr22,44860262,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1667,chr22,44860270,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1668,chr22,44860273,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1669,chr22,44860276,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1670,chr22,44924073,FN,,G,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1671,chr22,45098535,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1672,chr22,45228743,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1673,chr22,45244019,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1674,chr22,45244605,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1675,chr22,45251466,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1676,chr22,45251476,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1677,chr22,45251550,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1678,chr22,45258481,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1679,chr22,45855204,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1680,chr22,45861475,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1681,chr22,45899739,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1682,chr22,45917630,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1683,chr22,45918228,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1684,chr22,45924655,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1685,chr22,45924800,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1686,chr22,45924939,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1687,chr22,45925017,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1688,chr22,45952727,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1689,chr22,45953045,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1690,chr22,45953135,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1691,chr22,45954220,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1692,chr22,45981105,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1693,chr22,45981128,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1694,chr22,46058328,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1695,chr22,46060819,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1696,chr22,46122398,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1697,chr22,46126803,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1698,chr22,46130970,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1699,chr22,46145351,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1700,chr22,46207531,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1701,chr22,46207750,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1702,chr22,46242220,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1703,chr22,46263468,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1704,chr22,46274497,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1705,chr22,46274823,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1706,chr22,46277503,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1707,chr22,46453746,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1708,chr22,46470328,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1709,chr22,46485968,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1710,chr22,46490427,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1711,chr22,46507928,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1712,chr22,46524256,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1713,chr22,46550212,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1714,chr22,46565349,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1715,chr22,46567515,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1716,chr22,46586121,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1717,chr22,46587475,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1718,chr22,46588266,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1719,chr22,46588421,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1720,chr22,46589171,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1721,chr22,46589173,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1722,chr22,46589335,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1723,chr22,46591716,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1724,chr22,46604188,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1725,chr22,46615664,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1726,chr22,46635271,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1727,chr22,46644705,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1728,chr22,46658792,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1729,chr22,46715535,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1730,chr22,46716741,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1731,chr22,46719174,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1732,chr22,46720610,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1733,chr22,46761715,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1734,chr22,46854221,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1735,chr22,46946605,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1736,chr22,47096682,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1737,chr22,47115550,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1738,chr22,47115600,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1739,chr22,47124913,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1740,chr22,47127446,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1741,chr22,47162392,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1742,chr22,47176357,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1743,chr22,47176376,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1744,chr22,47211822,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1745,chr22,47211830,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1746,chr22,47211959,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1747,chr22,47211998,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1748,chr22,47212335,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1749,chr22,47212612,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1750,chr22,47212891,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1751,chr22,47212894,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1752,chr22,47212922,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1753,chr22,47233912,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1754,chr22,47236284,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1755,chr22,47343248,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1756,chr22,47350815,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1757,chr22,47357825,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1758,chr22,47363574,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1759,chr22,47367408,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1760,chr22,47367674,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1761,chr22,47379402,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1762,chr22,47380778,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1763,chr22,47381317,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1764,chr22,47385095,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1765,chr22,47385118,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1766,chr22,47389386,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1767,chr22,47423207,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1768,chr22,47446462,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1769,chr22,47562576,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1770,chr22,47603334,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1771,chr22,47607249,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1772,chr22,47808125,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1773,chr22,47847972,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1774,chr22,47851622,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1775,chr22,47857300,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1776,chr22,47860459,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1777,chr22,48028080,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1778,chr22,48080807,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1779,chr22,48080809,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1780,chr22,48080810,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1781,chr22,48081205,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1782,chr22,48099111,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1783,chr22,48104662,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1784,chr22,48114379,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1785,chr22,48115710,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1786,chr22,48120454,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1787,chr22,48182247,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1788,chr22,48256899,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1789,chr22,48257146,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1790,chr22,48307413,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1791,chr22,48313754,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1792,chr22,48320051,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1793,chr22,48331946,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1794,chr22,48338797,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1795,chr22,48347518,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1796,chr22,48350225,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1797,chr22,48356195,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1798,chr22,48368066,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1799,chr22,48370424,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1800,chr22,48372256,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1801,chr22,48414849,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1802,chr22,48433837,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1803,chr22,48440355,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1804,chr22,48452991,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1805,chr22,48477553,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1806,chr22,48479275,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1807,chr22,48479285,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1808,chr22,48483872,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1809,chr22,48483973,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1810,chr22,48484911,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1811,chr22,48485158,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1812,chr22,48487269,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1813,chr22,48489082,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1814,chr22,48512576,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1815,chr22,48525082,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1816,chr22,48529114,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1817,chr22,48640926,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1818,chr22,48651901,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1819,chr22,48654961,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1820,chr22,48655191,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1821,chr22,48655266,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1822,chr22,48655346,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1823,chr22,48655489,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1824,chr22,48655700,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1825,chr22,48655745,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1826,chr22,48656454,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1827,chr22,48656645,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1828,chr22,48658237,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1829,chr22,48659600,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1830,chr22,48661513,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1831,chr22,48661856,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1832,chr22,48662009,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1833,chr22,48662217,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1834,chr22,48662229,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1835,chr22,48662238,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1836,chr22,48662724,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1837,chr22,48662967,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1838,chr22,48666890,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1839,chr22,48667768,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1840,chr22,48667834,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1841,chr22,48668539,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1842,chr22,48668670,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1843,chr22,48668855,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1844,chr22,48669820,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1845,chr22,48674756,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1846,chr22,48772354,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1847,chr22,48821990,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1848,chr22,48822352,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1849,chr22,48831572,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1850,chr22,48836881,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1851,chr22,48868222,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1852,chr22,48873047,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1853,chr22,48881940,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1854,chr22,48927025,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1855,chr22,48942480,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1856,chr22,48945825,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1857,chr22,48946397,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1858,chr22,48949301,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1859,chr22,48949368,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1860,chr22,48950163,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1861,chr22,48953971,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1862,chr22,48973889,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1863,chr22,48988515,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1864,chr22,48989632,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1865,chr22,49005676,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1866,chr22,49006464,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1867,chr22,49006483,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1868,chr22,49006495,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1869,chr22,49035890,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1870,chr22,49068774,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1871,chr22,49072019,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1872,chr22,49096072,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1873,chr22,49096406,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1874,chr22,49113416,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1875,chr22,49116841,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1876,chr22,49116906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1877,chr22,49116928,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1878,chr22,49119027,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1879,chr22,49149186,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1880,chr22,49151951,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1881,chr22,49164485,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1882,chr22,49176142,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1883,chr22,49179247,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1884,chr22,49179261,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1885,chr22,49179337,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1886,chr22,49179863,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1887,chr22,49185510,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1888,chr22,49237330,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1889,chr22,49265501,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1890,chr22,49265502,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1891,chr22,49265508,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1892,chr22,49286459,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1893,chr22,49292062,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1894,chr22,49292242,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1895,chr22,49292245,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1896,chr22,49292253,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1897,chr22,49292258,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1898,chr22,49292419,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1899,chr22,49300826,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1900,chr22,49300909,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1901,chr22,49306314,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1902,chr22,49312567,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1903,chr22,49312842,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1904,chr22,49323502,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1905,chr22,49337733,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1906,chr22,49342433,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1907,chr22,49364520,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1908,chr22,49368640,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1909,chr22,49381815,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1910,chr22,49384335,FN,,A,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1911,chr22,49407774,FN,,C,,T,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1912,chr22,49407775,FN,,A,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1913,chr22,49430061,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1914,chr22,49432298,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1915,chr22,49432305,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1916,chr22,49445285,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1917,chr22,49484784,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1918,chr22,49484806,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1919,chr22,49486995,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1920,chr22,49494405,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1921,chr22,49533318,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1922,chr22,49533525,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1923,chr22,49856649,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1924,chr22,49867403,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1925,chr22,49871004,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1926,chr22,49879380,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1927,chr22,49884187,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1928,chr22,49884235,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1929,chr22,49962320,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1930,chr22,50015646,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1931,chr22,50029397,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1932,chr22,50035202,FN,,T,,C,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1933,chr22,50052027,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1934,chr22,50070243,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1935,chr22,50075138,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1936,chr22,50091421,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1937,chr22,50112060,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1938,chr22,50147099,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1939,chr22,50147234,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1940,chr22,50174664,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1941,chr22,50228304,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1942,chr22,50280822,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1943,chr22,50285689,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1944,chr22,50380735,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1945,chr22,50395832,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1946,chr22,50433366,FN,,T,,G,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1947,chr22,50433501,FN,,C,,A,,,,,1.00000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1948,chr22,50488580,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1949,chr22,50535350,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1950,chr22,50537614,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1951,chr22,50542785,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1952,chr22,50543249,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1953,chr22,50555070,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1954,chr22,50557170,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1955,chr22,50572947,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1956,chr22,50573508,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1957,chr22,50573882,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1958,chr22,50573952,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1959,chr22,50580482,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1960,chr22,50619192,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1961,chr22,50651288,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1962,chr22,50682764,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1963,chr22,50682808,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1964,chr22,50682988,FN,,T,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1965,chr22,50684016,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1966,chr22,50685404,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1967,chr22,50685999,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1968,chr22,50686586,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1969,chr22,50686617,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1970,chr22,50686678,FN,,A,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1971,chr22,50686869,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1972,chr22,50686870,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1973,chr22,50695090,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1974,chr22,50697167,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1975,chr22,50698218,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1976,chr22,50742506,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1977,chr22,50742531,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1978,chr22,50748769,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1979,chr22,50750900,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1980,chr22,50750975,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1981,chr22,50752450,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1982,chr22,50752906,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1983,chr22,50756251,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1984,chr22,50757736,FN,,A,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1985,chr22,50758838,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1986,chr22,50760149,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1987,chr22,50760162,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1988,chr22,50765824,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1989,chr22,50768026,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1990,chr22,50769827,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1991,chr22,50770140,FN,,G,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1992,chr22,50774763,FN,,T,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1993,chr22,50775185,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1994,chr22,50776600,FN,,C,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1995,chr22,50777596,FN,,G,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1996,chr22,50777623,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1997,chr22,50777721,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1998,chr22,50778462,FN,,G,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +1999,chr22,50782420,FN,,C,,A,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2000,chr22,50784300,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2001,chr22,50787086,FN,,C,,T,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2002,chr22,50792591,FN,,T,,C,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2003,chr22,50792792,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +2004,chr22,50794060,FN,,A,,G,,,,,0.50000000,,,,,,,,,,,,,0.00000000,,,,,,,,, +0,chr22,10673307,UNK,A,,T,,-1.00000000,,,,,,,49.33000000,7.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,0.75000000,0.00000000,,0.35135135,37.00000000,1.63716814,0.00000000,0.00000000,3.52000000 +1,chr22,10687406,UNK,A,,G,,-1.00000000,,,,,,,49.44000000,70.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-2.08000000,0.00000000,,0.06818182,132.00000000,5.84070796,0.00000000,0.00000000,5.09000000 +2,chr22,10705395,UNK,G,,T,,-1.00000000,,,,,,,45.23000000,32.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,36.00000000,,-0.55000000,0.00000000,,0.28205128,39.00000000,1.72566372,0.00000000,0.00000000,2.78000000 +3,chr22,10705819,UNK,C,,G,,-1.00000000,,,,,,,48.57000000,42.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,68.00000000,,0.48000000,0.00000000,,0.13157895,76.00000000,3.36283186,0.00000000,0.00000000,4.93000000 +4,chr22,10705841,UNK,G,,A,,-1.00000000,,,,,,,49.21000000,41.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,70.00000000,,-2.16000000,0.00000000,,0.14473684,76.00000000,3.36283186,0.00000000,0.00000000,4.53000000 +5,chr22,10710857,UNK,C,,T,,-1.00000000,,,,,,,55.84000000,69.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.08130081,0.00000000,101.00000000,,-0.65000000,0.00000000,,0.04590164,320.00000000,14.15929204,0.04687500,0.00000000,4.42000000 +6,chr22,10711796,UNK,T,,C,,-1.00000000,,,,,,,55.18000000,33.00000000,ref,1.00000000,0.01020408,102.00000000,4.51327434,0.01960784,0.00000000,90.00000000,,-1.53000000,0.00000000,,0.04487179,325.00000000,14.38053097,0.03076923,0.00000000,4.24000000 +7,chr22,10711931,UNK,G,,A,,-1.00000000,,,,,,,58.89000000,4.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.00800000,0.00000000,105.00000000,,1.22000000,0.00000000,,0.04204204,342.00000000,15.13274336,0.02339181,0.00000000,8.12000000 +8,chr22,10712873,UNK,C,,T,,-1.00000000,,,,,,,58.31000000,14.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.00000000,0.00000000,117.00000000,,-1.29000000,0.00000000,,0.02948403,409.00000000,18.09734513,0.00244499,0.00000000,7.81000000 +9,chr22,10713036,UNK,C,,T,,-1.00000000,,,,,,,58.86000000,22.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.02255639,0.00000000,109.00000000,,-1.00000000,0.00000000,,0.04705882,433.00000000,19.15929204,0.01385681,0.00000000,8.32000000 +10,chr22,10713558,UNK,G,,C,,-1.00000000,,,,,,,56.26000000,14.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.02307692,0.00000000,107.00000000,,0.84000000,0.00000000,,0.03957784,388.00000000,17.16814159,0.02319588,0.00000000,7.62000000 +11,chr22,10713648,UNK,A,,T,,-1.00000000,,,,,,,53.16000000,22.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.01626016,0.00000000,105.00000000,,-1.20000000,0.00000000,,0.03821656,318.00000000,14.07079646,0.01257862,0.00000000,6.54000000 +12,chr22,10713749,UNK,C,,T,,-1.00000000,,,,,,,57.66000000,4.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00000000,0.00000000,101.00000000,,0.48000000,0.00000000,,0.03206997,347.00000000,15.35398230,0.00864553,0.00000000,4.73000000 +13,chr22,10714557,UNK,A,,G,,-1.00000000,,,,,,,58.99000000,13.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.01550388,0.00000000,107.00000000,,-1.34000000,0.00000000,,0.02881844,348.00000000,15.39823009,0.00287356,0.00000000,8.57000000 +14,chr22,10715716,UNK,T,,A,,-1.00000000,,,,,,,57.39000000,10.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.00833333,0.00000000,104.00000000,,1.13000000,0.00000000,,0.03513514,374.00000000,16.54867257,0.01069519,0.00000000,7.86000000 +15,chr22,10716108,UNK,A,,G,,-1.00000000,,,,,,,55.74000000,22.00000000,ref,1.00000000,0.00000000,114.00000000,5.04424779,0.00000000,0.00000000,101.00000000,,-0.05000000,0.00000000,,0.03735632,351.00000000,15.53097345,0.00569801,0.00000000,4.68000000 +16,chr22,10716421,UNK,C,,T,,-1.00000000,,,,,,,59.16000000,4.00000000,ref,1.00000000,0.00000000,131.00000000,5.79646018,0.01526718,0.00000000,108.00000000,,1.18000000,0.00000000,,0.04597701,351.00000000,15.53097345,0.00854701,0.00000000,8.80000000 +17,chr22,10716450,UNK,T,,A,,-1.00000000,,,,,,,58.74000000,4.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.00724638,0.00000000,112.00000000,,1.14000000,0.00000000,,0.05382436,357.00000000,15.79646018,0.01120448,0.00000000,8.36000000 +18,chr22,10716825,UNK,C,,G,,-1.00000000,,,,,,,58.74000000,10.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.00000000,0.00000000,101.00000000,,0.74000000,0.00000000,,0.06371191,363.00000000,16.06194690,0.00275482,0.00000000,4.67000000 +19,chr22,10716834,UNK,T,,C,,-1.00000000,,,,,,,58.17000000,18.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.00000000,0.00000000,99.00000000,,1.83000000,0.00000000,,0.03592814,337.00000000,14.91150442,0.00890208,0.00000000,4.65000000 +20,chr22,10716932,UNK,C,,T,,-1.00000000,,,,,,,54.39000000,57.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.02222222,0.00000000,90.00000000,,-0.32000000,0.00000000,,0.04263566,267.00000000,11.81415929,0.03370787,0.00743494,4.22000000 +21,chr22,10716987,UNK,C,,A,,-1.00000000,,,,,,,56.99000000,38.00000000,ref,1.00000000,0.00000000,110.00000000,4.86725664,0.03636364,0.00000000,98.00000000,,0.09000000,0.00000000,,0.05279503,329.00000000,14.55752212,0.02127660,0.00000000,4.07000000 +22,chr22,10717011,UNK,C,,A,,-1.00000000,,,,,,,58.26000000,22.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.03960396,0.00000000,94.00000000,,1.17000000,0.00000000,,0.04968944,333.00000000,14.73451327,0.03003003,0.00000000,4.12000000 +23,chr22,10717015,UNK,A,,G,,-1.00000000,,,,,,,58.19000000,22.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.03061224,0.00000000,92.00000000,,0.51000000,0.00000000,,0.04731861,333.00000000,14.73451327,0.03603604,0.00000000,4.14000000 +24,chr22,10717490,UNK,T,,C,,-1.00000000,,,,,,,51.08000000,131.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.03076923,0.00000000,78.00000000,,1.99000000,0.00000000,,0.07594937,169.00000000,7.47787611,0.06508876,0.00000000,4.10000000 +25,chr22,10719462,UNK,C,,T,,-1.00000000,,,,,,,41.86000000,67.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,59.00000000,,-0.93000000,0.00000000,,0.08602151,104.00000000,4.60176991,0.10576923,0.00000000,3.86000000 +26,chr22,10719517,UNK,C,,T,,-1.00000000,,,,,,,40.37000000,107.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.12000000,0.00000000,,0.08888889,95.00000000,4.20353982,0.05263158,0.00000000,4.53000000 +27,chr22,10720447,UNK,C,,G,,-1.00000000,,,,,,,42.79000000,147.00000000,ref,1.00000000,0.02272727,44.00000000,1.94690265,0.00000000,0.00000000,63.00000000,,-2.30000000,0.00000000,,0.15384615,96.00000000,4.24778761,0.05208333,0.00000000,4.71000000 +28,chr22,10723655,UNK,C,,T,,-1.00000000,,,,,,,36.87000000,225.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,64.00000000,,-0.66000000,0.00000000,,0.10869565,100.00000000,4.42477876,0.08000000,0.00000000,4.99000000 +29,chr22,10725345,UNK,T,,G,,-1.00000000,,,,,,,47.68000000,91.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,63.00000000,,-0.50000000,0.00000000,,0.05154639,99.00000000,4.38053097,0.02020202,0.00000000,4.82000000 +30,chr22,10727052,UNK,G,,T,,-1.00000000,,,,,,,56.43000000,49.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.03658537,0.00000000,85.00000000,,0.04000000,0.00000000,,0.05000000,270.00000000,11.94690265,0.03703704,0.00000000,4.13000000 +31,chr22,10727123,UNK,T,,C,,-1.00000000,,,,,,,55.99000000,40.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.15625000,0.00000000,74.00000000,,1.65000000,0.00000000,,0.05714286,203.00000000,8.98230088,0.13793103,0.00000000,4.19000000 +32,chr22,10727652,UNK,C,,T,,-1.00000000,,,,,,,53.66000000,113.00000000,ref,1.00000000,0.00980392,136.00000000,6.01769912,0.25000000,0.00000000,64.00000000,,0.01000000,0.00000000,,0.04382470,309.00000000,13.67256637,0.18446602,0.00000000,4.28000000 +33,chr22,10727992,UNK,C,,T,,-1.00000000,,,,,,,56.60000000,44.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.01234568,0.00000000,86.00000000,,0.93000000,0.00000000,,0.05508475,245.00000000,10.84070796,0.03673469,0.00000000,4.25000000 +34,chr22,10728778,UNK,A,,T,,-1.00000000,,,,,,,45.12000000,139.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.13636364,0.00000000,67.00000000,,0.84000000,0.00000000,,0.07920792,130.00000000,5.75221239,0.21538462,0.00000000,4.17000000 +35,chr22,10728783,UNK,T,,A,,-1.00000000,,,,,,,45.55000000,139.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.14893617,0.00000000,68.00000000,,0.99000000,0.00000000,,0.09278351,134.00000000,5.92920354,0.25373134,0.00000000,4.12000000 +36,chr22,10729700,UNK,T,,A,,-1.00000000,,,,,,,49.78000000,149.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.03896104,0.00000000,83.00000000,,0.39000000,0.00000000,,0.05504587,232.00000000,10.26548673,0.05172414,0.00000000,4.13000000 +37,chr22,10729776,UNK,A,,G,,-1.00000000,,,,,,,55.32000000,66.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.07865169,0.00000000,87.00000000,,-0.51000000,0.00000000,,0.04048583,263.00000000,11.63716814,0.05703422,0.00000000,4.08000000 +38,chr22,10730062,UNK,G,,T,,-1.00000000,,,,,,,56.49000000,46.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.07142857,0.00000000,85.00000000,,1.08000000,0.00000000,,0.07600000,275.00000000,12.16814159,0.08727273,0.00000000,4.11000000 +39,chr22,10730513,UNK,A,,C,,-1.00000000,,,,,,,58.70000000,21.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.02325581,0.00000000,106.00000000,,0.48000000,0.00000000,,0.04285714,357.00000000,15.79646018,0.01960784,0.00000000,7.71000000 +40,chr22,10730768,UNK,C,,T,,-1.00000000,,,,,,,58.85000000,15.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.04587156,0.00000000,96.00000000,,0.33000000,0.00000000,,0.05841924,302.00000000,13.36283186,0.03311258,0.00000000,4.12000000 +41,chr22,10731134,UNK,C,,G,,-1.00000000,,,,,,,58.26000000,22.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.04629630,0.00000000,96.00000000,,0.73000000,0.00000000,,0.04747774,352.00000000,15.57522124,0.04261364,0.00000000,4.13000000 +42,chr22,10731734,UNK,A,,G,,-1.00000000,,,,,,,53.12000000,62.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.02352941,0.00000000,87.00000000,,0.49000000,0.00000000,,0.04687500,258.00000000,11.41592920,0.00775194,0.00000000,4.12000000 +43,chr22,10733082,UNK,C,,T,,-1.00000000,,,,,,,48.79000000,26.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.01111111,0.00000000,88.00000000,,-0.54000000,0.00000000,,0.03875969,265.00000000,11.72566372,0.01886792,0.00000000,4.17000000 +44,chr22,10733536,UNK,G,,C,,-1.00000000,,,,,,,44.71000000,170.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.02325581,0.00000000,88.00000000,,0.45000000,0.00000000,,0.03474903,263.00000000,11.63716814,0.01520913,0.00000000,4.31000000 +45,chr22,10734326,UNK,C,,T,,-1.00000000,,,,,,,53.65000000,84.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00751880,0.00000000,110.00000000,,-0.65000000,0.00000000,,0.04518072,340.00000000,15.04424779,0.02352941,0.00000000,6.88000000 +46,chr22,10734490,UNK,G,,A,,-1.00000000,,,,,,,48.26000000,123.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.00000000,0.00000000,89.00000000,,-0.80000000,0.00000000,,0.04887218,267.00000000,11.81415929,0.00000000,0.00000000,4.73000000 +47,chr22,10734545,UNK,C,,T,,-1.00000000,,,,,,,45.13000000,128.00000000,ref,1.00000000,0.01351351,75.00000000,3.31858407,0.01333333,0.00000000,74.00000000,,0.33000000,0.00000000,,0.09045226,200.00000000,8.84955752,0.00500000,0.00000000,4.18000000 +48,chr22,10734812,UNK,C,,A,,-1.00000000,,,,,,,50.52000000,115.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.00793651,0.00000000,106.00000000,,0.37000000,0.00000000,,0.04571429,352.00000000,15.57522124,0.00568182,0.00000000,7.40000000 +49,chr22,10735238,UNK,G,,A,,-1.00000000,,,,,,,54.17000000,77.00000000,ref,1.00000000,0.00709220,142.00000000,6.28318584,0.00704225,0.00000000,104.00000000,,1.11000000,0.00000000,,0.03587444,451.00000000,19.95575221,0.01108647,0.00000000,5.86000000 +50,chr22,10735260,UNK,C,,T,,-1.00000000,,,,,,,55.25000000,72.00000000,ref,1.00000000,0.00000000,159.00000000,7.03539823,0.00000000,0.00000000,122.00000000,,0.67000000,0.00000000,,0.02647658,497.00000000,21.99115044,0.01207243,0.00000000,8.07000000 +51,chr22,10735435,UNK,G,,A,,-1.00000000,,,,,,,54.47000000,87.00000000,ref,1.00000000,0.00000000,161.00000000,7.12389381,0.00621118,0.00000000,122.00000000,,-0.07000000,0.00000000,,0.04076739,419.00000000,18.53982301,0.00238663,0.00000000,7.09000000 +52,chr22,10736328,UNK,C,,T,,-1.00000000,,,,,,,49.50000000,101.00000000,ref,1.00000000,0.00892857,113.00000000,5.00000000,0.00884956,0.00000000,91.00000000,,1.08000000,0.00000000,,0.05704698,301.00000000,13.31858407,0.00996678,0.00000000,4.28000000 +53,chr22,10736357,UNK,G,,T,,-1.00000000,,,,,,,49.48000000,121.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,-0.32000000,0.00000000,,0.04406780,297.00000000,13.14159292,0.00673401,0.00000000,6.96000000 +54,chr22,10736400,UNK,G,,A,,-1.00000000,,,,,,,49.43000000,173.00000000,ref,1.00000000,0.00854701,136.00000000,6.01769912,0.13970588,0.00000000,65.00000000,,2.10000000,0.00000000,,0.05395683,325.00000000,14.38053097,0.14461538,0.00000000,4.09000000 +55,chr22,10736827,UNK,G,,A,,-1.00000000,,,,,,,48.36000000,152.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00847458,0.00000000,103.00000000,,-1.89000000,0.00000000,,0.03693182,358.00000000,15.84070796,0.01675978,0.00000000,6.18000000 +56,chr22,10737247,UNK,T,,A,,-1.00000000,,,,,,,46.65000000,159.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,-0.58000000,0.11000000,,0.03157895,288.00000000,12.74336283,0.01041667,0.00000000,4.06000000 +57,chr22,10737575,UNK,T,,G,,-1.00000000,,,,,,,47.50000000,186.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.01785714,0.00000000,100.00000000,,0.96000000,0.00000000,,0.05521472,330.00000000,14.60176991,0.00909091,0.00000000,4.22000000 +58,chr22,10737807,UNK,C,,A,,-1.00000000,,,,,,,53.09000000,32.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,0.38000000,0.00000000,,0.05479452,220.00000000,9.73451327,0.00454545,0.00000000,4.21000000 +59,chr22,10737960,UNK,A,,G,,-1.00000000,,,,,,,47.65000000,132.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,0.65000000,0.00000000,,0.03603604,227.00000000,10.04424779,0.01321586,0.00000000,4.29000000 +60,chr22,10738138,UNK,C,,A,,-1.00000000,,,,,,,57.38000000,36.00000000,ref,1.00000000,0.00854701,117.00000000,5.17699115,0.00000000,0.00000000,60.00000000,,-2.62000000,0.00000000,,0.02472527,367.00000000,16.23893805,0.00544959,0.00000000,4.07000000 +61,chr22,10738661,UNK,C,,T,,-1.00000000,,,,,,,53.60000000,109.00000000,ref,1.00000000,0.00000000,124.00000000,5.48672566,0.01612903,0.00000000,105.00000000,,-0.14000000,0.00000000,,0.03978780,380.00000000,16.81415929,0.00789474,0.00000000,6.76000000 +62,chr22,10738960,UNK,G,,C,,-1.00000000,,,,,,,46.53000000,201.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.01149425,0.00000000,88.00000000,,-1.05000000,0.00000000,,0.04291845,239.00000000,10.57522124,0.02092050,0.00000000,4.47000000 +63,chr22,10739121,UNK,G,,C,,-1.00000000,,,,,,,53.29000000,100.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.03703704,0.00000000,85.00000000,,0.30000000,0.00000000,,0.06741573,285.00000000,12.61061947,0.05614035,0.00000000,4.11000000 +64,chr22,10739493,UNK,T,,C,,-1.00000000,,,,,,,56.94000000,39.00000000,ref,1.00000000,0.00000000,132.00000000,5.84070796,0.00000000,0.00000000,110.00000000,,0.41000000,0.00000000,,0.04603581,397.00000000,17.56637168,0.01259446,0.00000000,8.74000000 +65,chr22,10740322,UNK,G,,A,,-1.00000000,,,,,,,48.08000000,200.00000000,ref,1.00000000,0.00806452,125.00000000,5.53097345,0.00800000,0.00000000,102.00000000,,1.70000000,0.00000000,,0.04069767,351.00000000,15.53097345,0.01709402,0.00000000,5.59000000 +66,chr22,10740527,UNK,A,,T,,-1.00000000,,,,,,,49.21000000,100.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.01941748,0.00000000,95.00000000,,-0.36000000,0.00000000,,0.04513889,292.00000000,12.92035398,0.01369863,0.00000000,4.30000000 +67,chr22,10740705,UNK,C,,T,,-1.00000000,,,,,,,50.86000000,231.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.00000000,0.00000000,116.00000000,,1.44000000,0.00000000,,0.03687636,462.00000000,20.44247788,0.00000000,0.00000000,7.46000000 +68,chr22,10741395,UNK,G,,T,,-1.00000000,,,,,,,46.79000000,181.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.04347826,0.00000000,79.00000000,,1.92000000,0.00000000,,0.06735751,194.00000000,8.58407080,0.00515464,0.00000000,4.09000000 +69,chr22,10741579,UNK,G,,A,,-1.00000000,,,,,,,51.93000000,30.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.06818182,0.00000000,68.00000000,,0.89000000,0.00000000,,0.05882353,131.00000000,5.79646018,0.09160305,0.00000000,3.90000000 +70,chr22,10742368,UNK,C,,T,,-1.00000000,,,,,,,55.93000000,26.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.03157895,0.00000000,91.00000000,,-0.51000000,0.00000000,,0.04528302,271.00000000,11.99115044,0.02214022,0.00000000,4.05000000 +71,chr22,10742769,UNK,A,,G,,-1.00000000,,,,,,,54.45000000,23.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.02500000,0.00000000,85.00000000,,-1.08000000,0.00000000,,0.03934426,313.00000000,13.84955752,0.02236422,0.00000000,4.29000000 +72,chr22,10746426,UNK,C,,T,,-1.00000000,,,,,,,49.11000000,49.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,0.54000000,0.00000000,,0.06569343,143.00000000,6.32743363,0.04195804,0.00000000,4.69000000 +73,chr22,10746621,UNK,C,,T,,-1.00000000,,,,,,,54.09000000,52.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.05172414,0.00000000,74.00000000,,0.33000000,0.00000000,,0.07106599,204.00000000,9.02654867,0.03431373,0.00000000,4.09000000 +74,chr22,10746925,UNK,G,,A,,-1.00000000,,,,,,,52.99000000,47.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,79.00000000,,0.31000000,0.00000000,,0.04761905,257.00000000,11.37168142,0.01945525,0.00000000,4.24000000 +75,chr22,10747864,UNK,C,,T,,-1.00000000,,,,,,,48.79000000,189.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.00000000,0.00000000,100.00000000,,0.35000000,0.00000000,,0.05337079,362.00000000,16.01769912,0.01381215,0.00000000,4.45000000 +76,chr22,10748027,UNK,G,,A,,-1.00000000,,,,,,,56.93000000,49.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00751880,0.00000000,108.00000000,,0.02000000,0.00000000,,0.02686567,339.00000000,15.00000000,0.01179941,0.00000000,8.11000000 +77,chr22,10749617,UNK,C,,T,,-1.00000000,,,,,,,53.92000000,59.00000000,ref,1.00000000,0.01041667,96.00000000,4.24778761,0.00000000,0.00000000,69.00000000,,-3.55000000,0.00000000,,0.03623188,276.00000000,12.21238938,0.00000000,0.00000000,3.51000000 +78,chr22,10749739,UNK,T,,A,,-1.00000000,,,,,,,50.22000000,172.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.00000000,0.00000000,105.00000000,,-0.42000000,0.00000000,,0.04177546,388.00000000,17.16814159,0.01030928,0.00000000,6.74000000 +79,chr22,10750122,UNK,A,,T,,-1.00000000,,,,,,,47.60000000,223.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.07368421,0.00000000,89.00000000,,1.19000000,0.00000000,,0.10344828,303.00000000,13.40707965,0.04290429,0.00000000,3.91000000 +80,chr22,10750196,UNK,C,,A,,-1.00000000,,,,,,,49.75000000,171.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,108.00000000,,1.42000000,0.00000000,,0.07105263,381.00000000,16.85840708,0.00262467,0.00000000,7.09000000 +81,chr22,10750206,UNK,A,,G,,-1.00000000,,,,,,,49.17000000,172.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,101.00000000,,0.94000000,0.00000000,,0.07754011,375.00000000,16.59292035,0.00266667,0.00000000,4.37000000 +82,chr22,10750684,UNK,G,,T,,-1.00000000,,,,,,,38.56000000,210.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,0.46000000,0.00000000,,0.10743802,122.00000000,5.39823009,0.00819672,0.00000000,4.41000000 +83,chr22,10751112,UNK,A,,T,,-1.00000000,,,,,,,38.21000000,263.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.01639344,0.00000000,77.00000000,,2.86000000,0.00000000,,0.09574468,189.00000000,8.36283186,0.00529101,0.00000000,4.30000000 +84,chr22,10751705,UNK,A,,T,,-1.00000000,,,,,,,39.78000000,235.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,0.24000000,0.00000000,,0.07096774,158.00000000,6.99115044,0.01898734,0.00000000,4.23000000 +85,chr22,10751852,UNK,G,,T,,-1.00000000,,,,,,,50.03000000,18.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.01234568,0.00000000,86.00000000,,-0.57000000,0.00000000,,0.13043478,187.00000000,8.27433628,0.01069519,0.00000000,4.65000000 +86,chr22,10751871,UNK,G,,A,,-1.00000000,,,,,,,47.22000000,21.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,79.00000000,,-0.64000000,0.00000000,,0.12500000,138.00000000,6.10619469,0.01449275,0.00000000,4.52000000 +87,chr22,10752483,UNK,A,,T,,-1.00000000,,,,,,,40.47000000,231.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,85.00000000,,0.72000000,0.00000000,,0.08225108,232.00000000,10.26548673,0.00431034,0.00000000,4.55000000 +88,chr22,10752820,UNK,C,,T,,-1.00000000,,,,,,,39.53000000,316.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-2.28000000,0.00000000,,0.08755760,220.00000000,9.73451327,0.01363636,0.00000000,4.90000000 +89,chr22,10752906,UNK,G,,T,,-1.00000000,,,,,,,41.22000000,164.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,86.00000000,,-0.57000000,6.99000000,,0.05909091,221.00000000,9.77876106,0.00452489,0.00000000,3.73000000 +90,chr22,10752930,UNK,A,,C,,-1.00000000,,,,,,,44.26000000,113.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.00000000,0.00000000,95.00000000,,1.16000000,0.00000000,,0.09782609,278.00000000,12.30088496,0.00719424,0.00000000,4.46000000 +91,chr22,10753043,UNK,A,,G,,-1.00000000,,,,,,,50.07000000,149.00000000,ref,1.00000000,0.00000000,178.00000000,7.87610619,0.00561798,0.00000000,130.00000000,,1.01000000,0.00000000,,0.03076923,459.00000000,20.30973451,0.00871460,0.00000000,7.00000000 +92,chr22,10753425,UNK,C,,T,,-1.00000000,,,,,,,48.59000000,213.00000000,ref,1.00000000,0.00847458,119.00000000,5.26548673,0.00840336,0.00000000,94.00000000,,2.88000000,0.00000000,,0.08605341,343.00000000,15.17699115,0.01749271,0.00000000,4.08000000 +93,chr22,10753489,UNK,T,,A,,-1.00000000,,,,,,,51.64000000,116.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00699301,0.00000000,62.00000000,,2.00000000,11.42000000,,0.02290076,397.00000000,17.56637168,0.00503778,0.00000000,3.26000000 +94,chr22,10753726,UNK,G,,A,,-1.00000000,,,,,,,42.40000000,296.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.01149425,0.00000000,89.00000000,,-0.30000000,0.00000000,,0.11486486,299.00000000,13.23008850,0.00668896,0.00000000,4.32000000 +95,chr22,10754290,UNK,T,,C,,-1.00000000,,,,,,,54.84000000,95.00000000,ref,1.00000000,0.00746269,140.00000000,6.19469027,0.04285714,0.00000000,88.00000000,,1.13000000,0.00000000,,0.03233831,419.00000000,18.53982301,0.04057279,0.00000000,4.26000000 +96,chr22,10754331,UNK,C,,T,,-1.00000000,,,,,,,55.53000000,89.00000000,ref,1.00000000,0.00751880,135.00000000,5.97345133,0.01481481,0.00000000,106.00000000,,0.98000000,0.00000000,,0.05641026,399.00000000,17.65486726,0.02255639,0.00000000,8.12000000 +97,chr22,10754356,UNK,C,,T,,-1.00000000,,,,,,,54.59000000,108.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.00740741,0.00000000,111.00000000,,0.66000000,0.00000000,,0.05263158,400.00000000,17.69911504,0.00250000,0.00000000,7.78000000 +98,chr22,10754431,UNK,A,,T,,-1.00000000,,,,,,,51.74000000,127.00000000,ref,1.00000000,0.00000000,147.00000000,6.50442478,0.04081633,0.00000000,114.00000000,,-0.11000000,0.00000000,,0.06015038,415.00000000,18.36283186,0.03614458,0.00000000,6.23000000 +99,chr22,10754551,UNK,A,,G,,-1.00000000,,,,,,,53.30000000,104.00000000,ref,1.00000000,0.00000000,171.00000000,7.56637168,0.00584795,0.00000000,127.00000000,,-0.78000000,0.00000000,,0.03271984,493.00000000,21.81415929,0.00811359,0.00000000,6.85000000 +100,chr22,10754913,UNK,T,,G,,-1.00000000,,,,,,,51.06000000,121.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00735294,0.00000000,111.00000000,,-0.28000000,0.00000000,,0.03636364,387.00000000,17.12389381,0.00516796,0.00000000,6.83000000 +101,chr22,10755015,UNK,C,,G,,-1.00000000,,,,,,,46.45000000,90.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.00813008,0.00000000,105.00000000,,2.20000000,0.00000000,,0.10216718,328.00000000,14.51327434,0.01219512,0.00000000,6.87000000 +102,chr22,10755248,UNK,G,,C,,-1.00000000,,,,,,,48.53000000,148.00000000,ref,1.00000000,0.01324503,152.00000000,6.72566372,0.00657895,0.00000000,111.00000000,,-0.63000000,0.00000000,,0.04179104,338.00000000,14.95575221,0.00591716,0.00000000,6.86000000 +103,chr22,10755330,UNK,T,,C,,-1.00000000,,,,,,,47.58000000,183.00000000,ref,1.00000000,0.00000000,172.00000000,7.61061947,0.01744186,0.00000000,63.00000000,,0.54000000,5.17000000,,0.02362205,382.00000000,16.90265487,0.00261780,0.00000000,3.14000000 +104,chr22,10755667,UNK,G,,A,,-1.00000000,,,,,,,43.11000000,179.00000000,ref,1.00000000,0.00000000,86.00000000,3.80530973,0.01162791,0.00000000,88.00000000,,0.29000000,0.00000000,,0.07177033,212.00000000,9.38053097,0.00943396,0.00000000,4.43000000 +105,chr22,10755694,UNK,C,,T,,-1.00000000,,,,,,,43.59000000,201.00000000,ref,1.00000000,0.00000000,105.00000000,4.64601770,0.01904762,0.00000000,96.00000000,,1.58000000,0.00000000,,0.05063291,242.00000000,10.70796460,0.01652893,0.00000000,4.25000000 +106,chr22,10755794,UNK,C,,T,,-1.00000000,,,,,,,45.87000000,263.00000000,ref,1.00000000,0.00000000,142.00000000,6.28318584,0.21830986,0.00000000,100.00000000,,-1.55000000,0.00000000,,0.09022556,341.00000000,15.08849558,0.21700880,0.00000000,3.96000000 +107,chr22,10755875,UNK,C,,T,,-1.00000000,,,,,,,49.41000000,154.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.05504587,0.00000000,96.00000000,,0.18000000,0.00000000,,0.05309735,349.00000000,15.44247788,0.02578797,0.00000000,4.01000000 +108,chr22,10756015,UNK,T,,C,,-1.00000000,,,,,,,43.62000000,118.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.06666667,0.00000000,58.00000000,,-0.13000000,0.00000000,,0.03246753,160.00000000,7.07964602,0.03750000,0.00000000,3.32000000 +109,chr22,10756148,UNK,A,,G,,-1.00000000,,,,,,,40.44000000,103.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,77.00000000,,1.24000000,0.00000000,,0.15555556,136.00000000,6.01769912,0.00735294,0.00000000,4.68000000 +110,chr22,10756467,UNK,C,,T,,-1.00000000,,,,,,,49.62000000,45.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,89.00000000,,4.73000000,0.00000000,,0.33333333,103.00000000,4.55752212,0.00970874,0.00000000,7.63000000 +111,chr22,10756640,UNK,C,,T,,-1.00000000,,,,,,,47.09000000,20.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-1.11000000,0.00000000,,0.07200000,128.00000000,5.66371681,0.02343750,0.00000000,5.17000000 +112,chr22,10756818,UNK,A,,T,,-1.00000000,,,,,,,50.66000000,37.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.03333333,0.00000000,76.00000000,,1.04000000,0.00000000,,0.06956522,232.00000000,10.26548673,0.00862069,0.00000000,4.21000000 +113,chr22,10756821,UNK,A,,G,,-1.00000000,,,,,,,51.01000000,38.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,77.00000000,,3.46000000,0.00000000,,0.13852814,233.00000000,10.30973451,0.00858369,0.00000000,4.24000000 +114,chr22,10756953,UNK,A,,C,,-1.00000000,,,,,,,47.85000000,94.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,75.00000000,,-2.16000000,0.00000000,,0.14925373,203.00000000,8.98230088,0.00985222,0.00000000,4.65000000 +115,chr22,10756975,UNK,C,,T,,-1.00000000,,,,,,,44.04000000,106.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-1.13000000,0.00000000,,0.09433962,161.00000000,7.12389381,0.01242236,0.00000000,4.85000000 +116,chr22,10756976,UNK,A,,G,,-1.00000000,,,,,,,43.92000000,106.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,79.00000000,,-2.03000000,0.00000000,,0.16560510,160.00000000,7.07964602,0.01250000,0.00000000,5.90000000 +117,chr22,10757199,UNK,T,,C,,-1.00000000,,,,,,,42.59000000,131.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,75.00000000,,0.02000000,0.00000000,,0.13939394,168.00000000,7.43362832,0.01785714,0.00000000,4.54000000 +118,chr22,10757481,UNK,G,,A,,-1.00000000,,,,,,,41.51000000,202.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.08928571,0.00000000,73.00000000,,1.41000000,0.00000000,,0.06508876,174.00000000,7.69911504,0.02873563,0.00000000,4.37000000 +119,chr22,10757924,UNK,A,,C,,-1.00000000,,,,,,,44.96000000,86.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.07017544,0.00000000,73.00000000,,-0.84000000,0.00000000,,0.06626506,172.00000000,7.61061947,0.03488372,0.00000000,4.25000000 +120,chr22,10758109,UNK,T,,C,,-1.00000000,,,,,,,54.21000000,66.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.01098901,0.00000000,90.00000000,,-0.52000000,0.00000000,,0.10069444,293.00000000,12.96460177,0.01706485,0.00000000,4.09000000 +121,chr22,10758112,UNK,T,,C,,-1.00000000,,,,,,,54.49000000,63.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.01063830,0.00000000,92.00000000,,0.71000000,0.00000000,,0.03754266,296.00000000,13.09734513,0.01013514,0.00000000,4.27000000 +122,chr22,10758363,UNK,T,,A,,-1.00000000,,,,,,,51.90000000,17.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,-1.94000000,0.00000000,,0.04166667,296.00000000,13.09734513,0.02702703,0.00000000,4.31000000 +123,chr22,10758367,UNK,T,,G,,-1.00000000,,,,,,,52.04000000,15.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.00000000,0.00000000,83.00000000,,-1.13000000,0.00000000,,0.03703704,302.00000000,13.36283186,0.01324503,0.00000000,4.84000000 +124,chr22,10758670,UNK,A,,G,,-1.00000000,,,,,,,50.35000000,30.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.01282051,0.00000000,84.00000000,,1.17000000,0.00000000,,0.11328125,259.00000000,11.46017699,0.00772201,0.00000000,4.19000000 +125,chr22,10758702,UNK,A,,G,,-1.00000000,,,,,,,53.31000000,20.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,91.00000000,,-0.21000000,0.00000000,,0.04040404,302.00000000,13.36283186,0.01655629,0.00000000,4.28000000 +126,chr22,10758769,UNK,A,,G,,-1.00000000,,,,,,,53.59000000,37.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.01041667,0.00000000,92.00000000,,1.06000000,0.00000000,,0.03797468,320.00000000,14.15929204,0.00937500,0.00000000,4.38000000 +127,chr22,10759059,UNK,G,,A,,-1.00000000,,,,,,,40.72000000,170.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.18000000,0.00000000,,0.08024691,164.00000000,7.25663717,0.01219512,0.00000000,4.75000000 +128,chr22,10759154,UNK,G,,T,,-1.00000000,,,,,,,43.83000000,154.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,2.85000000,5.31000000,,0.05181347,198.00000000,8.76106195,0.02020202,0.00000000,3.38000000 +129,chr22,10759330,UNK,A,,T,,-1.00000000,,,,,,,38.58000000,154.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,-0.98000000,0.00000000,,0.05882353,103.00000000,4.55752212,0.00970874,0.00000000,5.07000000 +130,chr22,10759565,UNK,C,,T,,-1.00000000,,,,,,,46.75000000,155.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.04411765,0.00000000,79.00000000,,0.61000000,0.00000000,,0.04060914,206.00000000,9.11504425,0.03398058,0.00000000,4.16000000 +131,chr22,10759700,UNK,G,,T,,-1.00000000,,,,,,,45.39000000,224.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,0.79000000,0.00000000,,0.08085106,241.00000000,10.66371681,0.02074689,0.00000000,4.47000000 +132,chr22,10759719,UNK,C,,G,,-1.00000000,,,,,,,48.19000000,172.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.00000000,0.00000000,87.00000000,,-1.57000000,0.00000000,,0.05098039,257.00000000,11.37168142,0.00778210,0.00000000,4.68000000 +133,chr22,10761070,UNK,A,,G,,-1.00000000,,,,,,,45.33000000,216.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,0.27000000,0.00000000,,0.06106870,266.00000000,11.76991150,0.01503759,0.00000000,4.13000000 +134,chr22,10761119,UNK,C,,T,,-1.00000000,,,,,,,46.11000000,143.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.15789474,78.00000000,,-3.21000000,0.00000000,,0.09604520,180.00000000,7.96460177,0.01111111,0.12621359,4.53000000 +135,chr22,10761383,UNK,G,,A,,-1.00000000,,,,,,,50.58000000,182.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.01769912,0.00000000,100.00000000,,1.37000000,0.00000000,,0.06140351,347.00000000,15.35398230,0.01440922,0.00000000,4.23000000 +136,chr22,10761784,UNK,T,,C,,-1.00000000,,,,,,,50.83000000,105.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.02020202,0.00000000,94.00000000,,-0.45000000,0.00000000,,0.04676259,283.00000000,12.52212389,0.01060071,0.00000000,4.62000000 +137,chr22,10761860,UNK,C,,T,,-1.00000000,,,,,,,38.28000000,175.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,2.23000000,0.00000000,,0.13385827,131.00000000,5.79646018,0.03053435,0.00000000,4.66000000 +138,chr22,10762012,UNK,A,,C,,-1.00000000,,,,,,,44.00000000,162.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,94.00000000,,0.39000000,0.00000000,,0.17085427,202.00000000,8.93805310,0.01485149,0.00000000,4.94000000 +139,chr22,10762094,UNK,G,,T,,-1.00000000,,,,,,,49.45000000,74.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,1.47000000,0.00000000,,0.10679612,210.00000000,9.29203540,0.01904762,0.00000000,4.22000000 +140,chr22,10762572,UNK,C,,T,,-1.00000000,,,,,,,40.15000000,124.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.67000000,0.00000000,,0.07784431,172.00000000,7.61061947,0.02325581,0.00000000,4.50000000 +141,chr22,10762624,UNK,G,,A,,-1.00000000,,,,,,,38.08000000,62.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.54000000,0.00000000,,0.08695652,94.00000000,4.15929204,0.02127660,0.00000000,4.03000000 +142,chr22,10762864,UNK,G,,T,,-1.00000000,,,,,,,53.58000000,113.00000000,ref,1.00000000,0.00000000,153.00000000,6.76991150,0.00000000,0.00000000,119.00000000,,-0.19000000,0.00000000,,0.06479482,463.00000000,20.48672566,0.00000000,0.00000000,7.37000000 +143,chr22,10762896,UNK,A,,G,,-1.00000000,,,,,,,55.18000000,66.00000000,ref,1.00000000,0.00000000,144.00000000,6.37168142,0.00694444,0.00000000,115.00000000,,-1.59000000,0.00000000,,0.05274725,460.00000000,20.35398230,0.00869565,0.00000000,7.28000000 +144,chr22,10762917,UNK,A,,G,,-1.00000000,,,,,,,55.05000000,64.00000000,ref,1.00000000,0.00751880,134.00000000,5.92920354,0.00746269,0.00000000,73.00000000,,-2.05000000,0.00000000,,0.03255814,431.00000000,19.07079646,0.00232019,0.00000000,4.28000000 +145,chr22,10763252,UNK,G,,T,,-1.00000000,,,,,,,46.49000000,276.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.00769231,0.00000000,108.00000000,,-2.47000000,0.00000000,,0.07821229,365.00000000,16.15044248,0.01643836,0.00000000,6.53000000 +146,chr22,10763719,UNK,T,,C,,-1.00000000,,,,,,,36.39000000,131.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,0.97000000,0.00000000,,0.09433962,106.00000000,4.69026549,0.00000000,0.00000000,4.80000000 +147,chr22,10763822,UNK,C,,G,,-1.00000000,,,,,,,48.82000000,117.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.08000000,0.00000000,81.00000000,,0.37000000,0.00000000,,0.09417040,256.00000000,11.32743363,0.12890625,0.00000000,4.07000000 +148,chr22,10763860,UNK,G,,T,,-1.00000000,,,,,,,51.82000000,93.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.05208333,0.00000000,91.00000000,,0.74000000,0.00000000,,0.09556314,303.00000000,13.40707965,0.02970297,0.00000000,4.00000000 +149,chr22,10763976,UNK,T,,C,,-1.00000000,,,,,,,49.95000000,72.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,,-1.29000000,4.10000000,,0.05789474,194.00000000,8.58407080,0.01546392,0.00000000,3.43000000 +150,chr22,10764360,UNK,G,,T,,-1.00000000,,,,,,,45.61000000,23.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,5.00000000,,-1.27000000,0.00000000,,0.32432432,39.00000000,1.72566372,0.05128205,0.00000000,3.46000000 +151,chr22,10765028,UNK,G,,T,,-1.00000000,,,,,,,44.55000000,141.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,1.56000000,0.00000000,,0.07647059,172.00000000,7.61061947,0.01162791,0.00000000,4.77000000 +152,chr22,10765330,UNK,T,,C,,-1.00000000,,,,,,,34.15000000,215.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,0.35000000,4.15000000,,0.05882353,154.00000000,6.81415929,0.00649351,0.00000000,3.74000000 +153,chr22,10765621,UNK,A,,G,,-1.00000000,,,,,,,28.74000000,236.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,1.94000000,0.00000000,,0.07843137,105.00000000,4.64601770,0.02857143,0.00000000,4.65000000 +154,chr22,10765673,UNK,A,,G,,-1.00000000,,,,,,,36.72000000,262.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,77.00000000,,-0.49000000,0.00000000,,0.03982301,236.00000000,10.44247788,0.03389831,0.00000000,4.77000000 +155,chr22,10766678,UNK,T,,G,,-1.00000000,,,,,,,40.04000000,124.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.06976744,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.07812500,131.00000000,5.79646018,0.01526718,0.00000000,4.39000000 +156,chr22,10766852,UNK,A,,G,,-1.00000000,,,,,,,49.10000000,62.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.00000000,0.00000000,93.00000000,,1.00000000,0.00000000,,0.07894737,232.00000000,10.26548673,0.01293103,0.00000000,4.56000000 +157,chr22,10766931,UNK,G,,A,,-1.00000000,,,,,,,51.77000000,33.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.02531646,0.00000000,84.00000000,,-0.93000000,0.00000000,,0.06341463,211.00000000,9.33628319,0.02843602,0.00000000,4.16000000 +158,chr22,10767099,UNK,G,,T,,-1.00000000,,,,,,,49.01000000,72.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.41509434,0.00000000,64.00000000,,-0.24000000,0.00000000,,0.12403101,168.00000000,7.43362832,0.22619048,0.00000000,4.29000000 +159,chr22,10767399,UNK,T,,C,,-1.00000000,,,,,,,56.99000000,29.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.01941748,0.00000000,95.00000000,,-0.70000000,0.00000000,,0.08438819,246.00000000,10.88495575,0.03252033,0.00000000,4.14000000 +160,chr22,10767544,UNK,T,,A,,-1.00000000,,,,,,,53.24000000,63.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.03260870,0.00000000,90.00000000,,-1.15000000,0.00000000,,0.03734440,252.00000000,11.15044248,0.03571429,0.00000000,4.13000000 +161,chr22,10767694,UNK,G,,A,,-1.00000000,,,,,,,58.37000000,4.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.04347826,0.00000000,77.00000000,,-0.93000000,0.00000000,,0.05847953,352.00000000,15.57522124,0.02556818,0.00000000,4.23000000 +162,chr22,10767729,UNK,T,,C,,-1.00000000,,,,,,,56.82000000,10.00000000,ref,1.00000000,0.00000000,138.00000000,6.10619469,0.00724638,0.00000000,87.00000000,,-0.55000000,0.00000000,,0.02976190,340.00000000,15.04424779,0.00882353,0.00000000,4.26000000 +163,chr22,10768609,UNK,T,,G,,-1.00000000,,,,,,,55.22000000,4.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,103.00000000,,-1.42000000,0.00000000,,0.04105572,345.00000000,15.26548673,0.01159420,0.00000000,6.46000000 +164,chr22,10768675,UNK,A,,G,,-1.00000000,,,,,,,54.65000000,29.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02189781,0.00000000,110.00000000,,2.14000000,0.00000000,,0.10077519,392.00000000,17.34513274,0.01020408,0.00000000,7.12000000 +165,chr22,10768778,UNK,G,,A,,-1.00000000,,,,,,,53.39000000,60.00000000,ref,1.00000000,0.00000000,149.00000000,6.59292035,0.01342282,0.00000000,116.00000000,,-1.84000000,0.00000000,,0.09375000,387.00000000,17.12389381,0.00775194,0.00000000,6.99000000 +166,chr22,10769027,UNK,G,,T,,-1.00000000,,,,,,,52.64000000,68.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,85.00000000,,0.32000000,0.00000000,,0.12000000,228.00000000,10.08849558,0.01315789,0.00000000,4.61000000 +167,chr22,10769030,UNK,G,,T,,-1.00000000,,,,,,,52.60000000,68.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,84.00000000,,0.65000000,0.00000000,,0.12000000,228.00000000,10.08849558,0.01315789,0.00000000,4.61000000 +168,chr22,10769041,UNK,A,,G,,-1.00000000,,,,,,,52.85000000,64.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,0.18000000,0.00000000,,0.11261261,229.00000000,10.13274336,0.03056769,0.00000000,4.30000000 +169,chr22,10769071,UNK,T,,C,,-1.00000000,,,,,,,54.18000000,48.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,-1.60000000,0.00000000,,0.04761905,235.00000000,10.39823009,0.01702128,0.00000000,4.48000000 +170,chr22,10769175,UNK,C,,T,,-1.00000000,,,,,,,56.16000000,20.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.03418803,0.00000000,101.00000000,,-1.55000000,0.00000000,,0.09157509,278.00000000,12.30088496,0.01079137,0.00000000,4.67000000 +171,chr22,10769275,UNK,A,,T,,-1.00000000,,,,,,,51.66000000,80.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.05263158,0.00000000,90.00000000,,-0.40000000,0.00000000,,0.04938272,251.00000000,11.10619469,0.03187251,0.00000000,4.06000000 +172,chr22,10769502,UNK,G,,C,,-1.00000000,,,,,,,57.15000000,28.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.05882353,0.00000000,86.00000000,,0.57000000,0.00000000,,0.08602151,196.00000000,8.67256637,0.05102041,0.00000000,4.12000000 +173,chr22,10769814,UNK,A,,C,,-1.00000000,,,,,,,56.28000000,28.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.00000000,0.00000000,103.00000000,,1.85000000,0.00000000,,0.09836066,245.00000000,10.84070796,0.00000000,0.00000000,8.04000000 +174,chr22,10769887,UNK,C,,T,,-1.00000000,,,,,,,54.52000000,57.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.00000000,0.00000000,95.00000000,,1.03000000,0.00000000,,0.07421875,258.00000000,11.41592920,0.00775194,0.00000000,4.26000000 +175,chr22,10769949,UNK,A,,T,,-1.00000000,,,,,,,48.78000000,89.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.00000000,0.04395604,89.00000000,,-1.01000000,0.00000000,,0.05777778,228.00000000,10.08849558,0.01315789,0.02978723,4.22000000 +176,chr22,10769953,UNK,A,,T,,-1.00000000,,,,,,,47.50000000,102.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.00000000,0.00000000,87.00000000,,-0.67000000,0.00000000,,0.05963303,221.00000000,9.77876106,0.01357466,0.00000000,4.54000000 +177,chr22,10770088,UNK,G,,A,,-1.00000000,,,,,,,36.38000000,92.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.88000000,0.00000000,,0.09302326,86.00000000,3.80530973,0.00000000,0.00000000,5.13000000 +178,chr22,10770309,UNK,T,,C,,-1.00000000,,,,,,,47.43000000,124.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.01086957,0.00000000,91.00000000,,0.84000000,0.00000000,,0.04313725,257.00000000,11.37168142,0.00778210,0.00000000,4.19000000 +179,chr22,10770331,UNK,T,,C,,-1.00000000,,,,,,,45.49000000,150.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,1.91000000,0.00000000,,0.08400000,253.00000000,11.19469027,0.00395257,0.00000000,4.31000000 +180,chr22,10770449,UNK,G,,A,,-1.00000000,,,,,,,39.51000000,160.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,0.77000000,0.00000000,,0.08910891,204.00000000,9.02654867,0.00980392,0.00000000,4.89000000 +181,chr22,10770489,UNK,C,,T,,-1.00000000,,,,,,,42.12000000,88.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,82.00000000,,1.03000000,0.00000000,,0.05294118,173.00000000,7.65486726,0.01156069,0.00000000,4.43000000 +182,chr22,10770767,UNK,T,,A,,-1.00000000,,,,,,,45.78000000,105.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-0.12000000,0.00000000,,0.11013216,233.00000000,10.30973451,0.02575107,0.00000000,4.84000000 +183,chr22,10770829,UNK,C,,A,,-1.00000000,,,,,,,45.99000000,114.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.04347826,0.00000000,79.00000000,,-0.82000000,0.00000000,,0.10743802,246.00000000,10.88495575,0.01626016,0.00000000,4.33000000 +184,chr22,10770923,UNK,C,,T,,-1.00000000,,,,,,,55.96000000,40.00000000,ref,1.00000000,0.00000000,115.00000000,5.08849558,0.01739130,0.00000000,101.00000000,,0.44000000,0.00000000,,0.06250000,360.00000000,15.92920354,0.02222222,0.00000000,4.41000000 +185,chr22,10771033,UNK,T,,G,,-1.00000000,,,,,,,54.97000000,21.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.00934579,0.00000000,98.00000000,,0.51000000,0.00000000,,0.07987220,316.00000000,13.98230088,0.00949367,0.00000000,4.44000000 +186,chr22,10771080,UNK,C,,T,,-1.00000000,,,,,,,54.33000000,38.00000000,ref,1.00000000,0.00000000,121.00000000,5.35398230,0.00826446,0.00000000,104.00000000,,2.52000000,0.00000000,,0.12500000,344.00000000,15.22123894,0.02325581,0.00000000,7.10000000 +187,chr22,10771115,UNK,T,,G,,-1.00000000,,,,,,,53.53000000,53.00000000,ref,1.00000000,0.00781250,129.00000000,5.70796460,0.00775194,0.00000000,104.00000000,,0.78000000,0.00000000,,0.06976744,351.00000000,15.53097345,0.01994302,0.00000000,7.06000000 +188,chr22,10771220,UNK,A,,G,,-1.00000000,,,,,,,45.89000000,71.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.01075269,0.00000000,91.00000000,,-0.09000000,0.00000000,,0.06293706,288.00000000,12.74336283,0.00694444,0.00000000,4.22000000 +189,chr22,10771448,UNK,A,,G,,-1.00000000,,,,,,,50.81000000,99.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,-1.41000000,0.00000000,,0.04712042,384.00000000,16.99115044,0.00520833,0.00000000,6.78000000 +190,chr22,10771544,UNK,T,,C,,-1.00000000,,,,,,,48.65000000,127.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.01265823,0.13186813,84.00000000,,1.42000000,0.00000000,,0.09090909,332.00000000,14.69026549,0.03614458,0.09289617,3.94000000 +191,chr22,10771893,UNK,A,,G,,-1.00000000,,,,,,,50.14000000,171.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00000000,0.00000000,111.00000000,,0.14000000,0.00000000,,0.06040268,449.00000000,19.86725664,0.00445434,0.00000000,7.44000000 +192,chr22,10772330,UNK,G,,A,,-1.00000000,,,,,,,47.40000000,182.00000000,ref,1.00000000,0.00813008,124.00000000,5.48672566,0.00806452,0.00000000,102.00000000,,-1.93000000,0.00000000,,0.03773585,372.00000000,16.46017699,0.00268817,0.00000000,5.74000000 +193,chr22,10772549,UNK,G,,A,,-1.00000000,,,,,,,47.43000000,143.00000000,ref,1.00000000,0.00000000,105.00000000,4.64601770,0.00952381,0.00000000,96.00000000,,0.60000000,0.00000000,,0.03672316,363.00000000,16.06194690,0.02203857,0.00000000,4.13000000 +194,chr22,10772668,UNK,T,,C,,-1.00000000,,,,,,,54.14000000,150.00000000,ref,1.00000000,0.01098901,183.00000000,8.09734513,0.00546448,0.00000000,63.00000000,,1.50000000,0.00000000,,0.04379562,549.00000000,24.29203540,0.00182149,0.00000000,4.10000000 +195,chr22,10772724,UNK,G,,T,,-1.00000000,,,,,,,47.65000000,254.00000000,ref,1.00000000,0.00884956,113.00000000,5.00000000,0.00000000,0.00000000,69.00000000,,1.52000000,0.00000000,,0.03641457,367.00000000,16.23893805,0.02452316,0.00000000,4.21000000 +196,chr22,10772832,UNK,G,,T,,-1.00000000,,,,,,,37.94000000,206.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,72.00000000,,1.78000000,0.00000000,,0.20529801,156.00000000,6.90265487,0.03205128,0.00000000,5.01000000 +197,chr22,10772918,UNK,C,,A,,-1.00000000,,,,,,,44.10000000,208.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.06756757,0.00000000,84.00000000,,-0.23000000,0.00000000,,0.14883721,232.00000000,10.26548673,0.07327586,0.00000000,4.52000000 +198,chr22,10772937,UNK,C,,G,,-1.00000000,,,,,,,45.70000000,195.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.14864865,0.00000000,78.00000000,,0.12000000,0.00000000,,0.08920188,252.00000000,11.15044248,0.14682540,0.00000000,4.03000000 +199,chr22,10772960,UNK,T,,G,,-1.00000000,,,,,,,45.96000000,196.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.27777778,0.02702703,99.00000000,,-0.57000000,0.00000000,,0.19306931,254.00000000,11.23893805,0.20078740,0.01550388,4.39000000 +200,chr22,10773036,UNK,C,,T,,-1.00000000,,,,,,,44.44000000,243.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.07476636,0.00000000,95.00000000,,2.22000000,0.00000000,,0.10902256,298.00000000,13.18584071,0.10738255,0.00000000,4.00000000 +201,chr22,10773199,UNK,T,,C,,-1.00000000,,,,,,,44.06000000,208.00000000,ref,1.00000000,0.00000000,88.00000000,3.89380531,0.00000000,0.00000000,89.00000000,,-0.46000000,0.00000000,,0.03900709,286.00000000,12.65486726,0.01398601,0.00000000,4.67000000 +202,chr22,10773252,UNK,T,,A,,-1.00000000,,,,,,,42.77000000,193.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.00000000,0.00000000,90.00000000,,0.25000000,0.00000000,,0.05263158,269.00000000,11.90265487,0.00000000,0.00000000,4.58000000 +203,chr22,10773539,UNK,T,,C,,-1.00000000,,,,,,,54.57000000,117.00000000,ref,1.00000000,0.00000000,217.00000000,9.60176991,0.00000000,0.00000000,148.00000000,,0.31000000,0.00000000,,0.06101695,593.00000000,26.23893805,0.00505902,0.00000000,7.62000000 +204,chr22,10773601,UNK,C,,T,,-1.00000000,,,,,,,46.84000000,206.00000000,ref,1.00000000,0.00000000,142.00000000,6.28318584,0.00000000,0.00000000,114.00000000,,-0.49000000,0.00000000,,0.04694836,429.00000000,18.98230088,0.00466200,0.00000000,6.67000000 +205,chr22,10773658,UNK,G,,C,,-1.00000000,,,,,,,40.49000000,200.00000000,ref,1.00000000,0.00000000,84.00000000,3.71681416,0.00000000,0.00000000,88.00000000,,-0.04000000,0.00000000,,0.06976744,304.00000000,13.45132743,0.00986842,0.00000000,5.04000000 +206,chr22,10773874,UNK,G,,A,,-1.00000000,,,,,,,47.33000000,144.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,73.00000000,,0.49000000,0.00000000,,0.03313253,338.00000000,14.95575221,0.01775148,0.00000000,4.21000000 +207,chr22,10774306,UNK,C,,T,,-1.00000000,,,,,,,48.17000000,53.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,82.00000000,,-3.14000000,0.00000000,,0.16666667,134.00000000,5.92920354,0.01492537,0.00000000,4.43000000 +208,chr22,10775436,UNK,C,,T,,-1.00000000,,,,,,,54.52000000,49.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.04081633,0.00000000,92.00000000,,1.29000000,0.00000000,,0.03717472,273.00000000,12.07964602,0.01098901,0.00000000,4.12000000 +209,chr22,10775595,UNK,G,,A,,-1.00000000,,,,,,,52.17000000,72.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.02542373,0.00000000,102.00000000,,-0.51000000,0.00000000,,0.03691275,313.00000000,13.84955752,0.04153355,0.00000000,5.84000000 +210,chr22,10775976,UNK,A,,T,,-1.00000000,,,,,,,57.76000000,41.00000000,ref,1.00000000,0.00000000,162.00000000,7.16814159,0.02469136,0.00000000,111.00000000,,-1.81000000,0.00000000,,0.02576112,437.00000000,19.33628319,0.02288330,0.00000000,6.89000000 +211,chr22,10776530,UNK,C,,T,,-1.00000000,,,,,,,56.52000000,38.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.07339450,0.00000000,95.00000000,,-0.90000000,0.00000000,,0.05431310,330.00000000,14.60176991,0.05151515,0.00000000,4.03000000 +212,chr22,10776754,UNK,C,,A,,-1.00000000,,,,,,,54.23000000,72.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.03000000,0.00000000,93.00000000,,-1.75000000,0.00000000,,0.04316547,288.00000000,12.74336283,0.03472222,0.00000000,4.02000000 +213,chr22,10777037,UNK,T,,C,,-1.00000000,,,,,,,51.32000000,139.00000000,ref,1.00000000,0.00000000,121.00000000,5.35398230,0.01652893,0.00000000,103.00000000,,-0.49000000,0.00000000,,0.03571429,313.00000000,13.84955752,0.01597444,0.00000000,5.71000000 +214,chr22,10777125,UNK,C,,G,,-1.00000000,,,,,,,52.06000000,128.00000000,ref,1.00000000,0.00934579,107.00000000,4.73451327,0.00000000,0.00000000,61.00000000,,-1.57000000,0.00000000,,0.03658537,333.00000000,14.73451327,0.01501502,0.00000000,4.41000000 +215,chr22,10777231,UNK,G,,A,,-1.00000000,,,,,,,59.12000000,11.00000000,ref,1.00000000,0.00000000,160.00000000,7.07964602,0.00625000,0.00000000,122.00000000,,-0.23000000,0.00000000,,0.05582524,413.00000000,18.27433628,0.00242131,0.00000000,8.57000000 +216,chr22,10777953,UNK,G,,A,,-1.00000000,,,,,,,57.98000000,6.00000000,ref,1.00000000,0.00000000,116.00000000,5.13274336,0.08620690,0.00000000,71.00000000,,-0.01000000,0.00000000,,0.03072626,373.00000000,16.50442478,0.03753351,0.00000000,4.13000000 +217,chr22,10777999,UNK,G,,A,,-1.00000000,,,,,,,58.14000000,10.00000000,ref,1.00000000,0.00000000,113.00000000,5.00000000,0.02654867,0.00000000,100.00000000,,0.42000000,0.00000000,,0.03921569,375.00000000,16.59292035,0.04800000,0.00000000,4.21000000 +218,chr22,10778627,UNK,A,,C,,-1.00000000,,,,,,,56.79000000,8.00000000,ref,1.00000000,0.00000000,83.00000000,3.67256637,0.14457831,0.00000000,79.00000000,,-1.50000000,0.00000000,,0.04017857,262.00000000,11.59292035,0.14503817,0.00000000,4.30000000 +219,chr22,10779486,UNK,G,,T,,-1.00000000,,,,,,,54.48000000,76.00000000,ref,1.00000000,0.00000000,129.00000000,5.70796460,0.00000000,0.00000000,108.00000000,,0.58000000,0.00000000,,0.04278075,380.00000000,16.81415929,0.01578947,0.00000000,8.03000000 +220,chr22,10779557,UNK,T,,A,,-1.00000000,,,,,,,52.52000000,74.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.04687500,0.49206349,77.00000000,,-0.93000000,0.00000000,,0.09444444,190.00000000,8.40707965,0.05263158,0.51030928,3.96000000 +221,chr22,10779796,UNK,C,,T,,-1.00000000,,,,,,,59.76000000,5.00000000,ref,1.00000000,0.00000000,167.00000000,7.38938053,0.04191617,0.00000000,122.00000000,,2.04000000,0.00000000,,0.03764706,437.00000000,19.33628319,0.02745995,0.00000000,7.99000000 +222,chr22,10779963,UNK,T,,C,,-1.00000000,,,,,,,52.12000000,119.00000000,ref,1.00000000,0.00000000,127.00000000,5.61946903,0.01574803,0.00000000,59.00000000,,-0.25000000,0.00000000,,0.02465753,373.00000000,16.50442478,0.02144772,0.00000000,3.15000000 +223,chr22,10780626,UNK,A,,G,,-1.00000000,,,,,,,58.46000000,8.00000000,ref,1.00000000,0.00000000,209.00000000,9.24778761,0.00000000,0.00000000,144.00000000,,-1.54000000,0.00000000,,0.02968460,542.00000000,23.98230088,0.00553506,0.00000000,8.53000000 +224,chr22,10780643,UNK,A,,T,,-1.00000000,,,,,,,58.50000000,7.00000000,ref,1.00000000,0.00000000,205.00000000,9.07079646,0.00000000,0.00000000,92.00000000,,0.93000000,0.00000000,,0.02037037,545.00000000,24.11504425,0.00917431,0.00000000,4.60000000 +225,chr22,10780779,UNK,A,,G,,-1.00000000,,,,,,,58.56000000,22.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.00917431,0.00000000,61.00000000,,-0.70000000,0.00000000,,0.04105572,352.00000000,15.57522124,0.01988636,0.00000000,3.97000000 +226,chr22,10781151,UNK,T,,A,,-1.00000000,,,,,,,57.48000000,41.00000000,ref,1.00000000,0.00000000,110.00000000,4.86725664,0.04545455,0.00000000,58.00000000,,0.46000000,0.00000000,,0.02678571,346.00000000,15.30973451,0.02890173,0.00000000,3.68000000 +227,chr22,10781209,UNK,A,,G,,-1.00000000,,,,,,,56.75000000,46.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.04040404,0.00000000,93.00000000,,1.32000000,0.00000000,,0.03649635,284.00000000,12.56637168,0.03521127,0.00000000,4.20000000 +228,chr22,10781239,UNK,C,,T,,-1.00000000,,,,,,,58.38000000,22.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.04040404,0.00000000,68.00000000,,0.14000000,0.00000000,,0.03296703,285.00000000,12.61061947,0.04210526,0.00000000,4.27000000 +229,chr22,10781548,UNK,C,,T,,-1.00000000,,,,,,,56.37000000,35.00000000,ref,1.00000000,0.01851852,75.00000000,3.31858407,0.28000000,0.00000000,58.00000000,,0.02000000,0.00000000,,0.06756757,211.00000000,9.33628319,0.29383886,0.00000000,3.48000000 +230,chr22,10781725,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,134.00000000,5.92920354,0.01492537,0.00000000,110.00000000,,-1.32000000,0.00000000,,0.03559871,315.00000000,13.93805310,0.01904762,0.00000000,8.59000000 +231,chr22,10781774,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,128.00000000,5.66371681,0.00781250,0.00000000,107.00000000,,-1.02000000,0.00000000,,0.04885993,312.00000000,13.80530973,0.01282051,0.00000000,8.72000000 +232,chr22,10782123,UNK,G,,T,,-1.00000000,,,,,,,59.41000000,5.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.01666667,0.00000000,103.00000000,,-0.98000000,0.00000000,,0.03488372,357.00000000,15.79646018,0.03641457,0.00000000,7.17000000 +233,chr22,10782131,UNK,G,,A,,-1.00000000,,,,,,,59.42000000,5.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.00813008,0.00000000,105.00000000,,-1.20000000,0.00000000,,0.03801170,360.00000000,15.92920354,0.04444444,0.00000000,7.80000000 +234,chr22,10782763,UNK,C,,G,,-1.00000000,,,,,,,59.89000000,2.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02189781,0.00000000,111.00000000,,0.36000000,0.00000000,,0.03037975,405.00000000,17.92035398,0.02469136,0.00000000,8.58000000 +235,chr22,10783006,UNK,G,,A,,-1.00000000,,,,,,,58.49000000,5.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.16964286,0.00000000,92.00000000,,-1.02000000,0.00000000,,0.06250000,345.00000000,15.26548673,0.16231884,0.00000000,4.06000000 +236,chr22,10783174,UNK,C,,G,,-1.00000000,,,,,,,59.90000000,2.00000000,ref,1.00000000,0.00000000,143.00000000,6.32743363,0.00699301,0.00000000,114.00000000,,1.10000000,0.00000000,,0.03211009,441.00000000,19.51327434,0.01133787,0.00000000,8.93000000 +237,chr22,10783325,UNK,G,,A,,-1.00000000,,,,,,,56.44000000,38.00000000,ref,1.00000000,0.01075269,95.00000000,4.20353982,0.02105263,0.00000000,88.00000000,,0.60000000,0.00000000,,0.05405405,300.00000000,13.27433628,0.01000000,0.00000000,4.27000000 +238,chr22,10783386,UNK,C,,T,,-1.00000000,,,,,,,55.75000000,39.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,79.00000000,,-0.17000000,0.43000000,,0.03831418,264.00000000,11.68141593,0.01136364,0.00000000,3.86000000 +239,chr22,10783443,UNK,C,,G,,-1.00000000,,,,,,,56.79000000,40.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.01098901,0.00000000,81.00000000,,0.06000000,0.00000000,,0.03435115,263.00000000,11.63716814,0.00380228,0.00000000,4.41000000 +240,chr22,10783450,UNK,G,,A,,-1.00000000,,,,,,,56.51000000,44.00000000,ref,1.00000000,0.00000000,91.00000000,4.02654867,0.00000000,0.00000000,90.00000000,,-0.99000000,0.00000000,,0.03846154,261.00000000,11.54867257,0.00383142,0.00000000,4.76000000 +241,chr22,10783899,UNK,C,,G,,-1.00000000,,,,,,,50.34000000,122.00000000,ref,1.00000000,0.00000000,87.00000000,3.84955752,0.00000000,0.00000000,89.00000000,,-0.85000000,0.00000000,,0.04700855,237.00000000,10.48672566,0.01265823,0.00000000,4.66000000 +242,chr22,10783929,UNK,A,,G,,-1.00000000,,,,,,,49.19000000,120.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,-0.62000000,0.00000000,,0.05769231,213.00000000,9.42477876,0.02347418,0.00000000,4.14000000 +243,chr22,10783965,UNK,C,,T,,-1.00000000,,,,,,,48.78000000,110.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.55000000,0.00000000,,0.04255319,192.00000000,8.49557522,0.02083333,0.00000000,4.42000000 +244,chr22,10784237,UNK,G,,A,,-1.00000000,,,,,,,50.99000000,67.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-0.04000000,2.25000000,,0.05172414,178.00000000,7.87610619,0.01685393,0.00000000,3.31000000 +245,chr22,10784348,UNK,C,,T,,-1.00000000,,,,,,,56.52000000,22.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,1.04000000,0.00000000,,0.05072464,140.00000000,6.19469027,0.01428571,0.00000000,4.65000000 +246,chr22,10840390,UNK,T,,C,,-1.00000000,,,,,,,27.67000000,48.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,-0.70000000,0.00000000,,0.05376344,93.00000000,4.11504425,0.00000000,0.00000000,5.18000000 +247,chr22,10849590,UNK,C,,T,,-1.00000000,,,,,,,18.66000000,61.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-0.40000000,0.00000000,,0.37931034,29.00000000,1.28318584,0.00000000,0.00000000,3.60000000 +248,chr22,10851003,UNK,T,,C,,-1.00000000,,,,,,,38.51000000,29.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,68.00000000,,-1.30000000,0.00000000,,0.17857143,58.00000000,2.56637168,0.03448276,0.00000000,6.08000000 +249,chr22,10924895,UNK,G,,A,,-1.00000000,,,,,,,48.44000000,53.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.98000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,5.69000000 +250,chr22,10925869,UNK,C,,A,,-1.00000000,,,,,,,40.15000000,129.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-0.58000000,0.00000000,,0.10526316,77.00000000,3.40707965,0.01298701,0.00000000,5.37000000 +251,chr22,10925872,UNK,T,,C,,-1.00000000,,,,,,,39.98000000,126.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,-1.18000000,0.00000000,,0.13513514,74.00000000,3.27433628,0.00000000,0.00000000,5.67000000 +252,chr22,10926443,UNK,G,,A,,-1.00000000,,,,,,,47.71000000,124.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.12195122,166.00000000,7.34513274,0.01204819,0.00000000,4.74000000 +253,chr22,10926973,UNK,G,,A,,-1.00000000,,,,,,,49.14000000,104.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.88000000,0.00000000,,0.08974359,157.00000000,6.94690265,0.00636943,0.00000000,4.44000000 +254,chr22,10927415,UNK,C,,A,,-1.00000000,,,,,,,54.75000000,39.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,1.10000000,0.00000000,,0.10067114,152.00000000,6.72566372,0.01315789,0.00000000,4.24000000 +255,chr22,10928192,UNK,T,,C,,-1.00000000,,,,,,,55.82000000,25.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,64.00000000,,1.47000000,2.25000000,,0.05882353,115.00000000,5.08849558,0.11304348,0.00000000,3.15000000 +256,chr22,10928952,UNK,C,,T,,-1.00000000,,,,,,,54.51000000,42.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-1.08000000,0.00000000,,0.10416667,144.00000000,6.37168142,0.00000000,0.00000000,4.66000000 +257,chr22,10930855,UNK,C,,T,,-1.00000000,,,,,,,56.62000000,16.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.05000000,0.00000000,,0.08247423,97.00000000,4.29203540,0.00000000,0.00000000,4.87000000 +258,chr22,10930921,UNK,G,,C,,-1.00000000,,,,,,,51.72000000,37.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.10000000,0.00000000,,0.10975610,84.00000000,3.71681416,0.02380952,0.00000000,4.04000000 +259,chr22,10931180,UNK,C,,T,,-1.00000000,,,,,,,53.76000000,33.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.56000000,0.00000000,,0.07142857,98.00000000,4.33628319,0.00000000,0.00000000,4.94000000 +260,chr22,10931978,UNK,T,,C,,-1.00000000,,,,,,,59.02000000,6.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-1.32000000,0.00000000,,0.10569106,124.00000000,5.48672566,0.00806452,0.00000000,4.52000000 +261,chr22,10932119,UNK,T,,C,,-1.00000000,,,,,,,52.02000000,39.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-1.59000000,0.00000000,,0.05952381,85.00000000,3.76106195,0.00000000,0.00000000,5.25000000 +262,chr22,10933175,UNK,T,,A,,-1.00000000,,,,,,,57.69000000,14.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,72.00000000,,0.68000000,0.00000000,,0.06779661,120.00000000,5.30973451,0.01666667,0.00000000,4.35000000 +263,chr22,10933256,UNK,G,,C,,-1.00000000,,,,,,,58.18000000,11.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,75.00000000,,0.29000000,0.00000000,,0.15966387,120.00000000,5.30973451,0.00833333,0.00000000,4.97000000 +264,chr22,10933486,UNK,G,,T,,-1.00000000,,,,,,,58.41000000,8.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,-1.13000000,0.00000000,,0.13114754,123.00000000,5.44247788,0.00813008,0.00000000,4.84000000 +265,chr22,10933610,UNK,G,,A,,-1.00000000,,,,,,,57.30000000,16.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,1.13000000,0.00000000,,0.08800000,129.00000000,5.70796460,0.02325581,0.00000000,4.24000000 +266,chr22,10934988,UNK,A,,G,,-1.00000000,,,,,,,58.30000000,13.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-1.01000000,0.00000000,,0.11042945,165.00000000,7.30088496,0.01212121,0.00000000,4.94000000 +267,chr22,10935009,UNK,A,,G,,-1.00000000,,,,,,,57.31000000,23.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,0.17000000,0.00000000,,0.12568306,184.00000000,8.14159292,0.00543478,0.00000000,4.47000000 +268,chr22,10936543,UNK,G,,C,,-1.00000000,,,,,,,40.01000000,268.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.68000000,0.00000000,,0.09259259,169.00000000,7.47787611,0.03550296,0.00000000,4.42000000 +269,chr22,10936587,UNK,G,,A,,-1.00000000,,,,,,,42.67000000,219.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-0.35000000,0.00000000,,0.08333333,174.00000000,7.69911504,0.03448276,0.00000000,4.27000000 +270,chr22,10940416,UNK,G,,A,,-1.00000000,,,,,,,47.16000000,117.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,78.00000000,,0.66000000,0.00000000,,0.15172414,146.00000000,6.46017699,0.00684932,0.00000000,4.59000000 +271,chr22,10941812,UNK,A,,G,,-1.00000000,,,,,,,52.92000000,57.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,72.00000000,,-0.11000000,0.00000000,,0.07975460,166.00000000,7.34513274,0.01807229,0.00000000,4.22000000 +272,chr22,10943465,UNK,C,,T,,-1.00000000,,,,,,,56.09000000,25.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,,0.26000000,0.00000000,,0.09448819,128.00000000,5.66371681,0.00781250,0.00000000,4.43000000 +273,chr22,10943532,UNK,A,,T,,-1.00000000,,,,,,,51.64000000,64.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-0.29000000,0.00000000,,0.07407407,135.00000000,5.97345133,0.00000000,0.00000000,4.88000000 +274,chr22,10944100,UNK,C,,T,,-1.00000000,,,,,,,50.97000000,73.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,66.00000000,,0.95000000,2.75000000,,0.06081081,148.00000000,6.54867257,0.00000000,0.00000000,3.30000000 +275,chr22,10944101,UNK,A,,G,,-1.00000000,,,,,,,50.90000000,73.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,63.00000000,,0.76000000,1.56000000,,0.06164384,147.00000000,6.50442478,0.00000000,0.00000000,3.27000000 +276,chr22,10944123,UNK,C,,T,,-1.00000000,,,,,,,48.52000000,95.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,,-0.68000000,0.00000000,,0.10218978,138.00000000,6.10619469,0.00724638,0.00000000,4.59000000 +277,chr22,10945812,UNK,C,,A,,-1.00000000,,,,,,,51.72000000,68.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,79.00000000,,-0.97000000,0.00000000,,0.09285714,141.00000000,6.23893805,0.00709220,0.00000000,4.71000000 +278,chr22,10947205,UNK,A,,G,,-1.00000000,,,,,,,47.85000000,87.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.19000000,0.00000000,,0.09482759,116.00000000,5.13274336,0.00000000,0.00000000,4.91000000 +279,chr22,10947209,UNK,C,,T,,-1.00000000,,,,,,,48.99000000,77.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.70000000,0.00000000,,0.08547009,118.00000000,5.22123894,0.00847458,0.00000000,4.92000000 +280,chr22,10948560,UNK,C,,T,,-1.00000000,,,,,,,57.96000000,5.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,74.00000000,,-0.98000000,0.00000000,,0.04316547,141.00000000,6.23893805,0.01418440,0.00000000,4.47000000 +281,chr22,10949265,UNK,A,,C,,-1.00000000,,,,,,,58.11000000,13.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,79.00000000,,1.30000000,0.00000000,,0.12500000,162.00000000,7.16814159,0.00617284,0.00000000,4.42000000 +282,chr22,10951383,UNK,T,,C,,-1.00000000,,,,,,,55.70000000,28.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,-0.23000000,0.00000000,,0.09774436,136.00000000,6.01769912,0.00735294,0.00000000,4.25000000 +283,chr22,10951601,UNK,G,,T,,-1.00000000,,,,,,,58.87000000,6.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-1.52000000,0.00000000,,0.11564626,150.00000000,6.63716814,0.02000000,0.00000000,4.61000000 +284,chr22,10951650,UNK,A,,T,,-1.00000000,,,,,,,58.91000000,5.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,75.00000000,,1.19000000,0.00000000,,0.10791367,143.00000000,6.32743363,0.02797203,0.00000000,4.55000000 +285,chr22,10952050,UNK,A,,G,,-1.00000000,,,,,,,54.04000000,33.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,74.00000000,,1.19000000,0.00000000,,0.15277778,144.00000000,6.37168142,0.00000000,0.00000000,4.78000000 +286,chr22,10953186,UNK,G,,T,,-1.00000000,,,,,,,56.84000000,23.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-0.37000000,0.00000000,,0.08666667,152.00000000,6.72566372,0.00657895,0.00000000,4.69000000 +287,chr22,10954089,UNK,A,,T,,-1.00000000,,,,,,,53.99000000,44.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.07843137,156.00000000,6.90265487,0.01282051,0.00000000,4.63000000 +288,chr22,10955734,UNK,A,,G,,-1.00000000,,,,,,,58.87000000,8.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.13207547,0.00000000,70.00000000,,0.42000000,0.00000000,,0.11805556,153.00000000,6.76991150,0.05882353,0.00000000,4.26000000 +289,chr22,10956714,UNK,G,,A,,-1.00000000,,,,,,,56.83000000,15.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.22000000,0.00000000,,0.05844156,154.00000000,6.81415929,0.00000000,0.00000000,5.04000000 +290,chr22,10962127,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.62000000,0.00000000,,0.10447761,138.00000000,6.10619469,0.02173913,0.00000000,4.88000000 +291,chr22,10962142,UNK,C,,T,,-1.00000000,,,,,,,58.87000000,2.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,80.00000000,,0.09000000,0.00000000,,0.17266187,141.00000000,6.23893805,0.01418440,0.00000000,5.54000000 +292,chr22,10963915,UNK,C,,T,,-1.00000000,,,,,,,52.17000000,17.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,71.00000000,,2.31000000,0.00000000,,0.14400000,127.00000000,5.61946903,0.01574803,0.00000000,4.46000000 +293,chr22,10963918,UNK,T,,G,,-1.00000000,,,,,,,52.65000000,15.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,,2.40000000,0.00000000,,0.14173228,129.00000000,5.70796460,0.01550388,0.00000000,4.46000000 +294,chr22,10963919,UNK,C,,T,,-1.00000000,,,,,,,52.65000000,15.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,70.00000000,,2.44000000,0.00000000,,0.14062500,131.00000000,5.79646018,0.02290076,0.00000000,4.59000000 +295,chr22,10964074,UNK,A,,T,,-1.00000000,,,,,,,59.45000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.09868421,153.00000000,6.76991150,0.00653595,0.00000000,4.47000000 +296,chr22,10964426,UNK,T,,C,,-1.00000000,,,,,,,52.94000000,72.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,70.00000000,,-2.58000000,0.00000000,,0.07035176,202.00000000,8.93805310,0.00495050,0.00000000,4.46000000 +297,chr22,10964432,UNK,C,,T,,-1.00000000,,,,,,,52.37000000,76.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,73.00000000,,-3.31000000,0.00000000,,0.04687500,198.00000000,8.76106195,0.03030303,0.00000000,4.25000000 +298,chr22,10964447,UNK,C,,A,,-1.00000000,,,,,,,51.15000000,86.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,72.00000000,,-3.83000000,0.00000000,,0.10204082,197.00000000,8.71681416,0.00507614,0.00000000,4.33000000 +299,chr22,10964548,UNK,A,,C,,-1.00000000,,,,,,,50.60000000,73.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.00000000,0.00000000,81.00000000,,-1.01000000,0.00000000,,0.08074534,165.00000000,7.30088496,0.02424242,0.00000000,4.44000000 +300,chr22,10966111,UNK,A,,G,,-1.00000000,,,,,,,56.91000000,24.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,73.00000000,,1.73000000,0.00000000,,0.07947020,156.00000000,6.90265487,0.01923077,0.00000000,4.36000000 +301,chr22,10966309,UNK,A,,T,,-1.00000000,,,,,,,54.60000000,29.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,,-0.86000000,0.00000000,,0.14141414,99.00000000,4.38053097,0.00000000,0.00000000,5.88000000 +302,chr22,10966383,UNK,C,,A,,-1.00000000,,,,,,,58.46000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-0.05000000,0.00000000,,0.12857143,71.00000000,3.14159292,0.01408451,0.00000000,4.19000000 +303,chr22,11023082,UNK,C,,T,,-1.00000000,,,,,,,47.62000000,46.00000000,ref,1.00000000,0.00000000,202.00000000,8.93805310,0.01485149,0.00000000,99.00000000,,0.15000000,0.00000000,,0.02100162,624.00000000,27.61061947,0.00801282,0.00000000,4.08000000 +304,chr22,11023583,UNK,T,,C,,-1.00000000,,,,,,,26.25000000,271.00000000,ref,1.00000000,0.02083333,49.00000000,2.16814159,0.02040816,0.07547170,68.00000000,,0.88000000,0.00000000,,0.07936508,132.00000000,5.84070796,0.04545455,0.04347826,3.98000000 +305,chr22,11024175,UNK,G,,A,,-1.00000000,,,,,,,27.34000000,295.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,78.00000000,,1.65000000,0.00000000,,0.06918239,159.00000000,7.03539823,0.00000000,0.00000000,4.56000000 +306,chr22,11024376,UNK,C,,T,,-1.00000000,,,,,,,27.86000000,250.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.03000000,0.00000000,,0.06818182,90.00000000,3.98230088,0.02222222,0.00000000,4.72000000 +307,chr22,11025632,UNK,G,,A,,-1.00000000,,,,,,,48.46000000,96.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.07017544,0.00000000,73.00000000,,1.46000000,0.00000000,,0.07382550,156.00000000,6.90265487,0.03846154,0.00000000,4.07000000 +308,chr22,11025896,UNK,G,,A,,-1.00000000,,,,,,,40.74000000,202.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.07692308,0.00000000,77.00000000,,-0.03000000,0.00000000,,0.08433735,177.00000000,7.83185841,0.06214689,0.00000000,4.19000000 +309,chr22,11026348,UNK,T,,C,,-1.00000000,,,,,,,48.98000000,228.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.01438849,0.00000000,100.00000000,,1.18000000,0.00000000,,0.02631579,398.00000000,17.61061947,0.02763819,0.00000000,4.12000000 +310,chr22,11027126,UNK,G,,A,,-1.00000000,,,,,,,53.16000000,81.00000000,ref,1.00000000,0.00000000,123.00000000,5.44247788,0.01626016,0.00000000,105.00000000,,0.30000000,0.00000000,,0.05921053,309.00000000,13.67256637,0.01618123,0.00000000,7.05000000 +311,chr22,11027237,UNK,G,,T,,-1.00000000,,,,,,,55.35000000,38.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.01960784,0.00000000,95.00000000,,-1.46000000,0.00000000,,0.06000000,261.00000000,11.54867257,0.04214559,0.00000000,4.37000000 +312,chr22,11029762,UNK,G,,A,,-1.00000000,,,,,,,55.31000000,36.00000000,ref,1.00000000,0.00000000,136.00000000,6.01769912,0.00735294,0.00000000,111.00000000,,0.84000000,0.00000000,,0.04303797,402.00000000,17.78761062,0.01492537,0.00000000,7.64000000 +313,chr22,11029788,UNK,C,,A,,-1.00000000,,,,,,,53.65000000,51.00000000,ref,1.00000000,0.00000000,114.00000000,5.04424779,0.01754386,0.00000000,100.00000000,,0.87000000,0.00000000,,0.03468208,358.00000000,15.84070796,0.02513966,0.00000000,4.29000000 +314,chr22,11029879,UNK,G,,C,,-1.00000000,,,,,,,47.23000000,130.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.01219512,0.00000000,86.00000000,,-1.85000000,0.00000000,,0.03717472,272.00000000,12.03539823,0.01102941,0.00000000,4.52000000 +315,chr22,11030127,UNK,C,,T,,-1.00000000,,,,,,,53.75000000,67.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.01587302,0.00000000,105.00000000,,0.13000000,0.00000000,,0.03053435,395.00000000,17.47787611,0.00506329,0.00000000,7.43000000 +316,chr22,11030398,UNK,G,,A,,-1.00000000,,,,,,,54.08000000,99.00000000,ref,1.00000000,0.00000000,165.00000000,7.30088496,0.02424242,0.00000000,123.00000000,,0.07000000,0.00000000,,0.04640371,435.00000000,19.24778761,0.00919540,0.00000000,7.32000000 +317,chr22,11030432,UNK,A,,G,,-1.00000000,,,,,,,55.95000000,77.00000000,ref,1.00000000,0.00000000,183.00000000,8.09734513,0.01639344,0.00000000,132.00000000,,-0.51000000,0.00000000,,0.03586498,479.00000000,21.19469027,0.00835073,0.00000000,7.88000000 +318,chr22,11030618,UNK,T,,A,,-1.00000000,,,,,,,55.31000000,49.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.14814815,0.00000000,91.00000000,,0.41000000,0.00000000,,0.05223881,303.00000000,13.40707965,0.11551155,0.00000000,3.96000000 +319,chr22,11030807,UNK,C,,T,,-1.00000000,,,,,,,55.80000000,42.00000000,ref,1.00000000,0.00000000,119.00000000,5.26548673,0.05042017,0.00000000,61.00000000,,-1.27000000,0.00000000,,0.02797203,326.00000000,14.42477876,0.11656442,0.00000000,4.04000000 +320,chr22,11031059,UNK,C,,G,,-1.00000000,,,,,,,58.13000000,22.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.04347826,0.00000000,89.00000000,,-1.49000000,0.00000000,,0.05755396,289.00000000,12.78761062,0.03806228,0.00000000,4.31000000 +321,chr22,11031246,UNK,T,,C,,-1.00000000,,,,,,,54.43000000,39.00000000,ref,1.00000000,0.01449275,69.00000000,3.05309735,0.00000000,0.00000000,77.00000000,,-1.02000000,3.98000000,,0.04926108,206.00000000,9.11504425,0.01456311,0.00000000,3.49000000 +322,chr22,11031248,UNK,C,,T,,-1.00000000,,,,,,,54.11000000,41.00000000,ref,1.00000000,0.01470588,68.00000000,3.00884956,0.00000000,0.00000000,63.00000000,,-0.62000000,3.67000000,,0.04500000,203.00000000,8.98230088,0.01477833,0.00000000,3.58000000 +323,chr22,11032567,UNK,T,,A,,-1.00000000,,,,,,,53.29000000,63.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.06060606,0.00000000,78.00000000,,0.15000000,0.00000000,,0.06632653,206.00000000,9.11504425,0.04368932,0.00000000,4.17000000 +324,chr22,11033041,UNK,A,,C,,-1.00000000,,,,,,,46.49000000,186.00000000,ref,1.00000000,0.01298701,78.00000000,3.45132743,0.01282051,0.00000000,75.00000000,,0.76000000,0.00000000,,0.06896552,236.00000000,10.44247788,0.01271186,0.00000000,4.33000000 +325,chr22,11034417,UNK,C,,T,,-1.00000000,,,,,,,51.41000000,121.00000000,ref,1.00000000,0.00862069,118.00000000,5.22123894,0.01694915,0.00000000,86.00000000,,-0.08000000,0.00000000,,0.04529617,290.00000000,12.83185841,0.01034483,0.00000000,4.29000000 +326,chr22,11034784,UNK,C,,T,,-1.00000000,,,,,,,56.95000000,31.00000000,ref,1.00000000,0.00000000,194.00000000,8.58407080,0.00000000,0.00000000,109.00000000,,-0.47000000,0.00000000,,0.02400000,504.00000000,22.30088496,0.00793651,0.00000000,8.20000000 +327,chr22,11034964,UNK,C,,T,,-1.00000000,,,,,,,55.74000000,104.00000000,ref,1.00000000,0.00000000,165.00000000,7.30088496,0.00000000,0.00000000,125.00000000,,1.52000000,0.00000000,,0.03339882,512.00000000,22.65486726,0.00390625,0.00000000,8.41000000 +328,chr22,11035002,UNK,C,,T,,-1.00000000,,,,,,,55.71000000,96.00000000,ref,1.00000000,0.00000000,174.00000000,7.69911504,0.00574713,0.00000000,128.00000000,,-1.16000000,0.00000000,,0.03100775,521.00000000,23.05309735,0.00959693,0.00000000,7.42000000 +329,chr22,11035107,UNK,C,,T,,-1.00000000,,,,,,,58.63000000,20.00000000,ref,1.00000000,0.00555556,186.00000000,8.23008850,0.03225806,0.00000000,95.00000000,,-1.30000000,0.00000000,,0.04373757,520.00000000,23.00884956,0.02884615,0.00000000,4.10000000 +330,chr22,11035785,UNK,C,,A,,-1.00000000,,,,,,,53.08000000,91.00000000,ref,1.00000000,0.00000000,103.00000000,4.55752212,0.04854369,0.00000000,94.00000000,,-0.20000000,0.00000000,,0.06225681,271.00000000,11.99115044,0.05166052,0.00000000,4.05000000 +331,chr22,11036413,UNK,C,,T,,-1.00000000,,,,,,,56.53000000,39.00000000,ref,1.00000000,0.01234568,88.00000000,3.89380531,0.06818182,0.00000000,59.00000000,,-1.83000000,0.00000000,,0.04273504,245.00000000,10.84070796,0.04489796,0.00000000,3.38000000 +332,chr22,11036762,UNK,G,,A,,-1.00000000,,,,,,,56.22000000,29.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.05000000,0.00000000,78.00000000,,0.17000000,0.00000000,,0.04776119,345.00000000,15.26548673,0.02608696,0.00000000,4.14000000 +333,chr22,11036998,UNK,C,,T,,-1.00000000,,,,,,,57.99000000,25.00000000,ref,1.00000000,0.00000000,174.00000000,7.69911504,0.00574713,0.00000000,128.00000000,,2.00000000,0.00000000,,0.04250000,404.00000000,17.87610619,0.00990099,0.00000000,8.15000000 +334,chr22,11037133,UNK,C,,G,,-1.00000000,,,,,,,55.70000000,40.00000000,ref,1.00000000,0.00000000,155.00000000,6.85840708,0.03225806,0.00000000,117.00000000,,0.61000000,0.00000000,,0.04938272,422.00000000,18.67256637,0.04028436,0.00000000,7.62000000 +335,chr22,11037660,UNK,G,,A,,-1.00000000,,,,,,,51.66000000,79.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.11458333,0.00000000,72.00000000,,-0.65000000,4.57000000,,0.04089219,294.00000000,13.00884956,0.08503401,0.00000000,2.81000000 +336,chr22,11037902,UNK,C,,T,,-1.00000000,,,,,,,58.42000000,35.00000000,ref,1.00000000,0.00000000,163.00000000,7.21238938,0.08588957,0.00000000,96.00000000,,-1.27000000,0.00000000,,0.03652968,482.00000000,21.32743363,0.09128631,0.00000000,4.23000000 +337,chr22,11037905,UNK,G,,A,,-1.00000000,,,,,,,58.42000000,35.00000000,ref,1.00000000,0.00000000,166.00000000,7.34513274,0.08433735,0.00000000,119.00000000,,-1.52000000,0.00000000,,0.03488372,478.00000000,21.15044248,0.10041841,0.00000000,7.16000000 +338,chr22,11038030,UNK,G,,A,,-1.00000000,,,,,,,55.94000000,55.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.05839416,0.00000000,108.00000000,,-1.09000000,0.00000000,,0.04672897,339.00000000,15.00000000,0.04129794,0.00000000,7.07000000 +339,chr22,11038241,UNK,C,,T,,-1.00000000,,,,,,,50.07000000,65.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.01010101,0.00000000,94.00000000,,0.37000000,0.00000000,,0.03649635,279.00000000,12.34513274,0.01433692,0.00000000,4.20000000 +340,chr22,11038294,UNK,C,,T,,-1.00000000,,,,,,,53.61000000,28.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,94.00000000,,-0.99000000,0.00000000,,0.05357143,287.00000000,12.69911504,0.02439024,0.00000000,4.60000000 +341,chr22,11038417,UNK,G,,C,,-1.00000000,,,,,,,57.96000000,13.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00000000,0.00000000,103.00000000,,1.82000000,0.00000000,,0.07792208,314.00000000,13.89380531,0.01592357,0.00000000,7.98000000 +342,chr22,11038491,UNK,T,,C,,-1.00000000,,,,,,,56.60000000,30.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.01538462,0.00000000,108.00000000,,1.14000000,0.00000000,,0.05671642,341.00000000,15.08849558,0.01466276,0.00000000,8.37000000 +343,chr22,11038522,UNK,T,,C,,-1.00000000,,,,,,,55.78000000,35.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.02400000,0.00000000,105.00000000,,-0.03000000,0.00000000,,0.03351955,364.00000000,16.10619469,0.01648352,0.00000000,6.78000000 +344,chr22,11038570,UNK,T,,G,,-1.00000000,,,,,,,53.63000000,45.00000000,ref,1.00000000,0.00729927,140.00000000,6.19469027,0.01428571,0.00000000,108.00000000,,-0.12000000,0.00000000,,0.05154639,393.00000000,17.38938053,0.00763359,0.00000000,7.16000000 +345,chr22,11038585,UNK,C,,T,,-1.00000000,,,,,,,53.48000000,45.00000000,ref,1.00000000,0.00775194,134.00000000,5.92920354,0.02238806,0.00000000,105.00000000,,1.32000000,0.00000000,,0.02894737,387.00000000,17.12389381,0.01550388,0.00000000,6.27000000 +346,chr22,11038599,UNK,G,,C,,-1.00000000,,,,,,,53.37000000,42.00000000,ref,1.00000000,0.00000000,130.00000000,5.75221239,0.03846154,0.00000000,89.00000000,,2.06000000,0.00000000,,0.02762431,368.00000000,16.28318584,0.01630435,0.00000000,3.97000000 +347,chr22,11038857,UNK,G,,A,,-1.00000000,,,,,,,57.90000000,6.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.01123596,0.00000000,89.00000000,,2.25000000,0.00000000,,0.05371901,250.00000000,11.06194690,0.03200000,0.00000000,4.16000000 +348,chr22,11038950,UNK,A,,G,,-1.00000000,,,,,,,57.61000000,10.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.01481481,0.00000000,110.00000000,,-1.94000000,0.00000000,,0.02808989,366.00000000,16.19469027,0.02732240,0.00000000,7.60000000 +349,chr22,11039013,UNK,A,,T,,-1.00000000,,,,,,,56.40000000,50.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.00740741,0.00000000,110.00000000,,0.86000000,0.00000000,,0.02857143,388.00000000,17.16814159,0.00773196,0.00000000,8.19000000 +350,chr22,11039046,UNK,T,,C,,-1.00000000,,,,,,,56.66000000,53.00000000,ref,1.00000000,0.00000000,117.00000000,5.17699115,0.04273504,0.00000000,75.00000000,,0.77000000,1.09000000,,0.02747253,373.00000000,16.50442478,0.02144772,0.00000000,2.94000000 +351,chr22,11039261,UNK,G,,A,,-1.00000000,,,,,,,55.31000000,39.00000000,ref,1.00000000,0.01075269,94.00000000,4.15929204,0.01063830,0.00000000,82.00000000,,0.47000000,0.00000000,,0.11023622,259.00000000,11.46017699,0.01930502,0.00000000,4.16000000 +352,chr22,11039519,UNK,G,,T,,-1.00000000,,,,,,,55.37000000,34.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.05000000,0.00000000,84.00000000,,0.45000000,0.00000000,,0.06896552,212.00000000,9.38053097,0.04245283,0.00000000,4.09000000 +353,chr22,11039578,UNK,G,,T,,-1.00000000,,,,,,,53.94000000,48.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.10389610,0.00000000,81.00000000,,-0.41000000,0.00000000,,0.05294118,183.00000000,8.09734513,0.07103825,0.00000000,4.11000000 +354,chr22,11039656,UNK,T,,C,,-1.00000000,,,,,,,49.81000000,103.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.15789474,0.00000000,78.00000000,,-0.57000000,0.00000000,,0.05405405,204.00000000,9.02654867,0.08823529,0.00000000,4.36000000 +355,chr22,11040277,UNK,G,,A,,-1.00000000,,,,,,,49.11000000,189.00000000,ref,1.00000000,0.00806452,127.00000000,5.61946903,0.02362205,0.00000000,69.00000000,,-0.52000000,0.00000000,,0.04359673,370.00000000,16.37168142,0.00810811,0.00000000,4.28000000 +356,chr22,11040466,UNK,A,,T,,-1.00000000,,,,,,,46.98000000,196.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,70.00000000,,-0.76000000,12.38000000,,0.03212851,252.00000000,11.15044248,0.00793651,0.00000000,3.44000000 +357,chr22,11040873,UNK,G,,A,,-1.00000000,,,,,,,51.01000000,63.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.21153846,0.00000000,68.00000000,,2.37000000,0.00000000,,0.07017544,144.00000000,6.37168142,0.20833333,0.00000000,4.09000000 +358,chr22,11041041,UNK,G,,C,,-1.00000000,,,,,,,56.81000000,23.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,-0.87000000,3.99000000,,0.04635762,166.00000000,7.34513274,0.09036145,0.00000000,3.00000000 +359,chr22,11042146,UNK,A,,T,,-1.00000000,,,,,,,56.41000000,50.00000000,ref,1.00000000,0.00000000,139.00000000,6.15044248,0.00719424,0.00000000,112.00000000,,-0.78000000,0.00000000,,0.03386005,445.00000000,19.69026549,0.00449438,0.00000000,7.97000000 +360,chr22,11042152,UNK,C,,T,,-1.00000000,,,,,,,56.43000000,49.00000000,ref,1.00000000,0.00746269,134.00000000,5.92920354,0.00000000,0.00000000,93.00000000,,0.14000000,0.00000000,,0.02974828,439.00000000,19.42477876,0.00455581,0.00000000,4.23000000 +361,chr22,11042294,UNK,G,,A,,-1.00000000,,,,,,,54.20000000,56.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.01851852,0.00000000,98.00000000,,0.78000000,0.00000000,,0.03133903,354.00000000,15.66371681,0.00564972,0.00000000,4.10000000 +362,chr22,11042300,UNK,C,,T,,-1.00000000,,,,,,,54.08000000,56.00000000,ref,1.00000000,0.00000000,108.00000000,4.77876106,0.01851852,0.00000000,98.00000000,,-0.44000000,0.00000000,,0.04249292,355.00000000,15.70796460,0.00563380,0.00000000,4.19000000 +363,chr22,11043522,UNK,A,,C,,-1.00000000,,,,,,,54.70000000,96.00000000,ref,1.00000000,0.00000000,184.00000000,8.14159292,0.00543478,0.00000000,133.00000000,,-0.58000000,0.00000000,,0.03418803,475.00000000,21.01769912,0.01263158,0.00000000,6.93000000 +364,chr22,11044321,UNK,C,,A,,-1.00000000,,,,,,,34.09000000,386.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.01020408,0.00000000,88.00000000,,0.69000000,0.00000000,,0.03802281,266.00000000,11.76991150,0.00751880,0.00000000,4.53000000 +365,chr22,11045199,UNK,A,,G,,-1.00000000,,,,,,,31.56000000,302.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,94.00000000,,0.96000000,0.00000000,,0.03937008,256.00000000,11.32743363,0.00390625,0.00000000,4.44000000 +366,chr22,11045223,UNK,C,,A,,-1.00000000,,,,,,,31.25000000,260.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,60.00000000,,0.23000000,0.00000000,,0.04739336,213.00000000,9.42477876,0.00938967,0.00000000,4.72000000 +367,chr22,11046802,UNK,C,,T,,-1.00000000,,,,,,,38.42000000,130.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-0.57000000,2.57000000,,0.06194690,114.00000000,5.04424779,0.00877193,0.00000000,4.14000000 +368,chr22,11047453,UNK,C,,T,,-1.00000000,,,,,,,48.64000000,79.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.78000000,0.00000000,,0.04310345,236.00000000,10.44247788,0.01271186,0.00000000,4.80000000 +369,chr22,11047458,UNK,C,,T,,-1.00000000,,,,,,,49.13000000,73.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,80.00000000,,-0.34000000,0.00000000,,0.04641350,240.00000000,10.61946903,0.01250000,0.00000000,4.84000000 +370,chr22,11047837,UNK,A,,T,,-1.00000000,,,,,,,44.93000000,90.00000000,ref,1.00000000,0.01754386,57.00000000,2.52212389,0.00000000,0.00000000,66.00000000,,-0.65000000,0.00000000,,0.05154639,195.00000000,8.62831858,0.00000000,0.00000000,5.11000000 +371,chr22,11048270,UNK,C,,T,,-1.00000000,,,,,,,37.62000000,121.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.12195122,0.00000000,66.00000000,,1.42000000,0.00000000,,0.11320755,114.00000000,5.04424779,0.07017544,0.00000000,4.41000000 +372,chr22,11048487,UNK,C,,T,,-1.00000000,,,,,,,40.05000000,129.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,74.00000000,,-0.46000000,0.00000000,,0.14685315,145.00000000,6.41592920,0.01379310,0.00000000,4.72000000 +373,chr22,11049100,UNK,T,,C,,-1.00000000,,,,,,,45.95000000,157.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.09574468,0.00000000,88.00000000,,2.05000000,0.00000000,,0.05462185,261.00000000,11.54867257,0.08429119,0.00000000,4.07000000 +374,chr22,11049572,UNK,G,,A,,-1.00000000,,,,,,,45.08000000,84.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.07407407,0.00000000,72.00000000,,-1.27000000,3.42000000,,0.04938272,170.00000000,7.52212389,0.04117647,0.00000000,3.00000000 +375,chr22,11049723,UNK,A,,T,,-1.00000000,,,,,,,54.23000000,41.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.02564103,0.00000000,62.00000000,,0.62000000,0.00000000,,0.04455446,208.00000000,9.20353982,0.01923077,0.00000000,4.06000000 +376,chr22,11049748,UNK,A,,G,,-1.00000000,,,,,,,52.76000000,37.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.21000000,0.41000000,,0.04624277,175.00000000,7.74336283,0.01142857,0.00000000,3.97000000 +377,chr22,11049752,UNK,A,,G,,-1.00000000,,,,,,,52.30000000,38.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,71.00000000,,-0.95000000,0.20000000,,0.04678363,173.00000000,7.65486726,0.01156069,0.00000000,4.15000000 +378,chr22,11050791,UNK,T,,A,,-1.00000000,,,,,,,36.25000000,266.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,67.00000000,,1.38000000,0.00000000,,0.03550296,178.00000000,7.87610619,0.04494382,0.00000000,4.27000000 +379,chr22,11050941,UNK,A,,G,,-1.00000000,,,,,,,36.49000000,260.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,77.00000000,,-1.36000000,0.00000000,,0.08176101,166.00000000,7.34513274,0.04216867,0.00000000,4.45000000 +380,chr22,11051820,UNK,G,,A,,-1.00000000,,,,,,,36.84000000,239.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.00000000,0.00000000,62.00000000,,-0.60000000,2.86000000,,0.04000000,201.00000000,8.89380531,0.00497512,0.00000000,3.40000000 +381,chr22,11052252,UNK,C,,T,,-1.00000000,,,,,,,41.57000000,216.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.08602151,0.00000000,88.00000000,,1.37000000,0.00000000,,0.06153846,273.00000000,12.07964602,0.04761905,0.00000000,4.18000000 +382,chr22,11052308,UNK,C,,T,,-1.00000000,,,,,,,39.87000000,182.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.00000000,0.00000000,70.00000000,,0.72000000,0.00000000,,0.03396226,266.00000000,11.76991150,0.00375940,0.00000000,4.52000000 +383,chr22,11052360,UNK,C,,T,,-1.00000000,,,,,,,35.83000000,141.00000000,ref,1.00000000,0.00000000,69.00000000,3.05309735,0.00000000,0.00000000,81.00000000,,0.05000000,0.00000000,,0.06185567,198.00000000,8.76106195,0.02020202,0.00000000,4.46000000 +384,chr22,11052524,UNK,C,,T,,-1.00000000,,,,,,,44.41000000,56.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.04545455,0.00000000,68.00000000,,-2.38000000,0.00000000,,0.08029197,139.00000000,6.15044248,0.00719424,0.00000000,4.49000000 +385,chr22,11052743,UNK,T,,C,,-1.00000000,,,,,,,38.87000000,181.00000000,ref,1.00000000,0.00000000,101.00000000,4.46902655,0.01980198,0.00000000,94.00000000,,1.47000000,0.00000000,,0.04150943,267.00000000,11.81415929,0.00749064,0.00000000,4.31000000 +386,chr22,11053704,UNK,G,,A,,-1.00000000,,,,,,,46.16000000,201.00000000,ref,1.00000000,0.00000000,118.00000000,5.22123894,0.00000000,0.00000000,103.00000000,,-0.58000000,0.00000000,,0.04095563,296.00000000,13.09734513,0.00675676,0.00000000,6.80000000 +387,chr22,11053779,UNK,G,,T,,-1.00000000,,,,,,,49.38000000,123.00000000,ref,1.00000000,0.00000000,126.00000000,5.57522124,0.01587302,0.00000000,106.00000000,,0.48000000,0.00000000,,0.05119454,299.00000000,13.23008850,0.02006689,0.00000000,7.17000000 +388,chr22,11053899,UNK,T,,A,,-1.00000000,,,,,,,46.72000000,139.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,84.00000000,,1.98000000,0.00000000,,0.05797101,208.00000000,9.20353982,0.00480769,0.00000000,4.33000000 +389,chr22,11053924,UNK,T,,C,,-1.00000000,,,,,,,46.37000000,135.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,61.00000000,,-0.16000000,0.00000000,,0.03846154,209.00000000,9.24778761,0.00478469,0.00000000,4.35000000 +390,chr22,11054103,UNK,T,,C,,-1.00000000,,,,,,,45.75000000,174.00000000,ref,1.00000000,0.00000000,95.00000000,4.20353982,0.02105263,0.00000000,92.00000000,,1.22000000,0.00000000,,0.05394191,243.00000000,10.75221239,0.00823045,0.00000000,4.13000000 +391,chr22,11054992,UNK,T,,C,,-1.00000000,,,,,,,45.48000000,74.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,-1.16000000,0.00000000,,0.06250000,162.00000000,7.16814159,0.01234568,0.00000000,4.46000000 +392,chr22,11054996,UNK,G,,T,,-1.00000000,,,,,,,45.76000000,73.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,-1.36000000,0.00000000,,0.06875000,162.00000000,7.16814159,0.01234568,0.00000000,4.45000000 +393,chr22,11055092,UNK,G,,A,,-1.00000000,,,,,,,52.14000000,35.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.06000000,0.00000000,71.00000000,,-2.00000000,0.00000000,,0.08450704,149.00000000,6.59292035,0.04697987,0.00000000,4.21000000 +394,chr22,11055485,UNK,C,,T,,-1.00000000,,,,,,,55.12000000,26.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.13235294,0.00000000,76.00000000,,-0.99000000,0.00000000,,0.06726457,241.00000000,10.66371681,0.07468880,0.00000000,4.11000000 +395,chr22,11055761,UNK,G,,T,,-1.00000000,,,,,,,58.02000000,47.00000000,ref,1.00000000,0.00000000,189.00000000,8.36283186,0.02116402,0.00000000,133.00000000,,-0.18000000,0.00000000,,0.06130268,530.00000000,23.45132743,0.01509434,0.00000000,7.36000000 +396,chr22,11056177,UNK,C,,T,,-1.00000000,,,,,,,56.94000000,35.00000000,ref,1.00000000,0.00000000,164.00000000,7.25663717,0.01829268,0.00000000,123.00000000,,1.25000000,0.00000000,,0.04339250,518.00000000,22.92035398,0.01930502,0.00000000,8.24000000 +397,chr22,11056427,UNK,G,,T,,-1.00000000,,,,,,,57.62000000,40.00000000,ref,1.00000000,0.00000000,137.00000000,6.06194690,0.02919708,0.00000000,110.00000000,,0.02000000,0.00000000,,0.07591623,389.00000000,17.21238938,0.01799486,0.00000000,7.64000000 +398,chr22,11056481,UNK,G,,A,,-1.00000000,,,,,,,58.61000000,27.00000000,ref,1.00000000,0.00694444,148.00000000,6.54867257,0.02702703,0.00000000,73.00000000,,1.45000000,0.00000000,,0.02813299,401.00000000,17.74336283,0.01745636,0.00000000,4.29000000 +399,chr22,11056810,UNK,A,,G,,-1.00000000,,,,,,,57.15000000,58.00000000,ref,1.00000000,0.00000000,154.00000000,6.81415929,0.01948052,0.00000000,118.00000000,,1.97000000,0.00000000,,0.05773672,442.00000000,19.55752212,0.00904977,0.00000000,8.03000000 +400,chr22,11056969,UNK,C,,T,,-1.00000000,,,,,,,58.26000000,26.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,-0.56000000,0.00000000,,0.06501548,327.00000000,14.46902655,0.01223242,0.00000000,4.38000000 +401,chr22,11056986,UNK,G,,A,,-1.00000000,,,,,,,58.00000000,30.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.01030928,0.00000000,93.00000000,,0.01000000,0.00000000,,0.05246914,326.00000000,14.42477876,0.00306748,0.00000000,4.35000000 +402,chr22,11057039,UNK,T,,A,,-1.00000000,,,,,,,57.99000000,31.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.03225806,0.00000000,90.00000000,,0.22000000,0.00000000,,0.05671642,339.00000000,15.00000000,0.01179941,0.00000000,4.26000000 +403,chr22,11057058,UNK,G,,A,,-1.00000000,,,,,,,58.18000000,29.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.02061856,0.00000000,93.00000000,,-0.83000000,0.00000000,,0.03428571,352.00000000,15.57522124,0.00000000,0.00000000,4.86000000 +404,chr22,11057109,UNK,C,,T,,-1.00000000,,,,,,,57.03000000,47.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.03061224,0.00000000,93.00000000,,-1.53000000,0.00000000,,0.03746398,350.00000000,15.48672566,0.00571429,0.00000000,4.38000000 +405,chr22,11057168,UNK,C,,G,,-1.00000000,,,,,,,57.74000000,40.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.04098361,0.00000000,103.00000000,,-1.17000000,0.00000000,,0.05555556,421.00000000,18.62831858,0.01662708,0.00000000,6.77000000 +406,chr22,11057309,UNK,C,,A,,-1.00000000,,,,,,,57.01000000,33.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.02941176,0.00000000,94.00000000,,0.79000000,0.00000000,,0.04923077,334.00000000,14.77876106,0.02694611,0.00000000,4.15000000 +407,chr22,11057381,UNK,G,,A,,-1.00000000,,,,,,,53.72000000,71.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.01298701,0.00000000,84.00000000,,0.96000000,0.00000000,,0.07203390,245.00000000,10.84070796,0.03673469,0.00000000,4.22000000 +408,chr22,11057451,UNK,C,,T,,-1.00000000,,,,,,,55.44000000,55.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.02702703,0.00000000,82.00000000,,1.02000000,0.00000000,,0.04150943,269.00000000,11.90265487,0.01486989,0.00000000,4.18000000 +409,chr22,11057692,UNK,C,,T,,-1.00000000,,,,,,,52.55000000,57.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.10869565,0.00000000,68.00000000,,-0.56000000,0.00000000,,0.07100592,176.00000000,7.78761062,0.03977273,0.00000000,4.31000000 +410,chr22,11057860,UNK,A,,T,,-1.00000000,,,,,,,54.15000000,46.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.50000000,0.00000000,65.00000000,,0.44000000,0.00000000,,0.20202020,156.00000000,6.90265487,0.36538462,0.00000000,4.76000000 +411,chr22,11058039,UNK,C,,T,,-1.00000000,,,,,,,53.76000000,49.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,72.00000000,,-2.75000000,0.00000000,,0.03680982,167.00000000,7.38938053,0.02395210,0.00000000,4.27000000 +412,chr22,11058342,UNK,C,,T,,-1.00000000,,,,,,,51.45000000,46.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.22500000,0.00000000,66.00000000,,1.17000000,0.00000000,,0.14130435,124.00000000,5.48672566,0.25806452,0.00000000,4.66000000 +413,chr22,11058640,UNK,C,,T,,-1.00000000,,,,,,,55.15000000,45.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,-1.59000000,0.00000000,,0.09130435,235.00000000,10.39823009,0.02127660,0.00000000,4.35000000 +414,chr22,11058837,UNK,G,,T,,-1.00000000,,,,,,,52.87000000,23.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,,0.31000000,0.00000000,,0.09890110,96.00000000,4.24778761,0.05208333,0.00000000,4.46000000 +415,chr22,11059168,UNK,C,,T,,-1.00000000,,,,,,,51.87000000,56.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.00000000,0.00000000,85.00000000,,-0.69000000,0.00000000,,0.04545455,245.00000000,10.84070796,0.01224490,0.00000000,4.73000000 +416,chr22,11059194,UNK,G,,A,,-1.00000000,,,,,,,51.98000000,47.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,-1.22000000,0.00000000,,0.08225108,233.00000000,10.30973451,0.00858369,0.00000000,4.31000000 +417,chr22,11059367,UNK,C,,A,,-1.00000000,,,,,,,58.73000000,13.00000000,ref,1.00000000,0.00000000,97.00000000,4.29203540,0.00000000,0.00000000,93.00000000,,-0.66000000,0.00000000,,0.04135338,269.00000000,11.90265487,0.01115242,0.00000000,4.67000000 +418,chr22,11059377,UNK,C,,T,,-1.00000000,,,,,,,58.87000000,9.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.00000000,0.00000000,92.00000000,,0.30000000,0.00000000,,0.04214559,264.00000000,11.68141593,0.01136364,0.00000000,4.68000000 +419,chr22,11059390,UNK,G,,A,,-1.00000000,,,,,,,58.89000000,8.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.00000000,0.00000000,94.00000000,,-0.42000000,0.00000000,,0.04814815,272.00000000,12.03539823,0.00735294,0.00000000,4.58000000 +420,chr22,11059852,UNK,G,,C,,-1.00000000,,,,,,,53.14000000,22.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-1.66000000,0.00000000,,0.09803922,208.00000000,9.20353982,0.01442308,0.00000000,4.76000000 +421,chr22,11059935,UNK,A,,T,,-1.00000000,,,,,,,52.84000000,38.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.20454545,81.00000000,,1.43000000,0.00000000,,0.06422018,219.00000000,9.69026549,0.00456621,0.12749004,4.17000000 +422,chr22,11060003,UNK,T,,C,,-1.00000000,,,,,,,53.92000000,42.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,81.00000000,,1.13000000,0.00000000,,0.07870370,217.00000000,9.60176991,0.00460829,0.00000000,4.36000000 +423,chr22,11060125,UNK,A,,T,,-1.00000000,,,,,,,53.03000000,45.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.00000000,0.00000000,84.00000000,,-1.54000000,0.00000000,,0.04326923,210.00000000,9.29203540,0.00952381,0.00000000,4.73000000 +424,chr22,11060151,UNK,A,,G,,-1.00000000,,,,,,,54.17000000,35.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-1.13000000,0.00000000,,0.05687204,217.00000000,9.60176991,0.02764977,0.00000000,4.34000000 +425,chr22,11060153,UNK,A,,T,,-1.00000000,,,,,,,54.26000000,35.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.00000000,0.00000000,85.00000000,,-0.86000000,0.00000000,,0.05660377,218.00000000,9.64601770,0.02752294,0.00000000,4.39000000 +426,chr22,11060202,UNK,A,,T,,-1.00000000,,,,,,,57.92000000,9.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00943396,0.00000000,97.00000000,,0.30000000,0.00000000,,0.09132420,220.00000000,9.73451327,0.00454545,0.06779661,4.28000000 +427,chr22,11060571,UNK,A,,G,,-1.00000000,,,,,,,50.48000000,90.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.00000000,0.00000000,93.00000000,,0.98000000,0.00000000,,0.06439394,264.00000000,11.68141593,0.00000000,0.00000000,4.35000000 +428,chr22,11060657,UNK,C,,T,,-1.00000000,,,,,,,54.27000000,74.00000000,ref,1.00000000,0.00000000,125.00000000,5.53097345,0.01600000,0.00000000,105.00000000,,0.61000000,12.11000000,,0.03287671,372.00000000,16.46017699,0.01612903,0.00000000,3.95000000 +429,chr22,11060931,UNK,C,,T,,-1.00000000,,,,,,,52.03000000,78.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,2.15000000,0.00000000,,0.03787879,269.00000000,11.90265487,0.01486989,0.00000000,4.18000000 +430,chr22,11061155,UNK,A,,G,,-1.00000000,,,,,,,56.54000000,60.00000000,ref,1.00000000,0.00000000,170.00000000,7.52212389,0.00588235,0.00000000,126.00000000,,-1.23000000,0.00000000,,0.03539823,459.00000000,20.30973451,0.01307190,0.00000000,8.28000000 +431,chr22,11061291,UNK,G,,A,,-1.00000000,,,,,,,57.04000000,35.00000000,ref,1.00000000,0.00000000,162.00000000,7.16814159,0.01234568,0.00000000,122.00000000,,0.28000000,0.00000000,,0.03243243,378.00000000,16.72566372,0.02116402,0.00000000,8.19000000 +432,chr22,11062043,UNK,C,,T,,-1.00000000,,,,,,,47.21000000,211.00000000,ref,1.00000000,0.00000000,133.00000000,5.88495575,0.00000000,0.00000000,110.00000000,,0.63000000,0.00000000,,0.04909561,389.00000000,17.21238938,0.00514139,0.00000000,7.87000000 +433,chr22,11062138,UNK,G,,A,,-1.00000000,,,,,,,49.10000000,126.00000000,ref,1.00000000,0.00000000,140.00000000,6.19469027,0.00000000,0.00000000,113.00000000,,0.61000000,0.00000000,,0.03448276,378.00000000,16.72566372,0.00264550,0.00000000,7.40000000 +434,chr22,11062373,UNK,A,,C,,-1.00000000,,,,,,,48.66000000,195.00000000,ref,1.00000000,0.00000000,128.00000000,5.66371681,0.00781250,0.00000000,107.00000000,,-0.61000000,0.00000000,,0.04054054,372.00000000,16.46017699,0.00537634,0.00000000,6.78000000 +435,chr22,11062503,UNK,G,,A,,-1.00000000,,,,,,,49.21000000,84.00000000,ref,1.00000000,0.00000000,111.00000000,4.91150442,0.00000000,0.00000000,100.00000000,,-0.87000000,0.00000000,,0.03548387,313.00000000,13.84955752,0.00319489,0.00000000,4.49000000 +436,chr22,11062763,UNK,G,,A,,-1.00000000,,,,,,,55.26000000,52.00000000,ref,1.00000000,0.00000000,120.00000000,5.30973451,0.02500000,0.00000000,103.00000000,,0.48000000,0.00000000,,0.05142857,356.00000000,15.75221239,0.01685393,0.00000000,6.59000000 +437,chr22,11062963,UNK,C,,T,,-1.00000000,,,,,,,48.33000000,86.00000000,ref,1.00000000,0.00000000,109.00000000,4.82300885,0.00917431,0.00000000,99.00000000,,0.25000000,0.00000000,,0.05000000,302.00000000,13.36283186,0.00662252,0.00000000,4.15000000 +438,chr22,11063400,UNK,T,,C,,-1.00000000,,,,,,,51.36000000,80.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.01265823,0.00000000,85.00000000,,0.01000000,0.00000000,,0.04918033,248.00000000,10.97345133,0.01209677,0.00000000,4.37000000 +439,chr22,11063692,UNK,A,,T,,-1.00000000,,,,,,,50.90000000,117.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.02803738,0.00000000,96.00000000,,0.13000000,0.00000000,,0.03416149,323.00000000,14.29203540,0.00309598,0.00000000,4.05000000 +440,chr22,11063761,UNK,A,,T,,-1.00000000,,,,,,,48.81000000,226.00000000,ref,1.00000000,0.00000000,115.00000000,5.08849558,0.00000000,0.00000000,78.00000000,,-0.67000000,0.00000000,,0.02932551,345.00000000,15.26548673,0.01159420,0.00000000,4.64000000 +441,chr22,11064235,UNK,G,,A,,-1.00000000,,,,,,,43.17000000,259.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.04411765,0.00000000,79.00000000,,0.73000000,0.00000000,,0.06046512,219.00000000,9.69026549,0.01826484,0.00000000,4.32000000 +442,chr22,11064908,UNK,G,,C,,-1.00000000,,,,,,,50.46000000,62.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,68.00000000,,0.41000000,0.00000000,,0.03954802,185.00000000,8.18584071,0.04324324,0.00000000,4.06000000 +443,chr22,11065052,UNK,T,,G,,-1.00000000,,,,,,,53.97000000,28.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,1.62000000,0.00000000,,0.08870968,134.00000000,5.92920354,0.06716418,0.00000000,4.31000000 +444,chr22,11065257,UNK,C,,A,,-1.00000000,,,,,,,53.75000000,48.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.12765957,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.07189542,183.00000000,8.09734513,0.16393443,0.00000000,4.43000000 +445,chr22,11066065,UNK,C,,A,,-1.00000000,,,,,,,54.48000000,71.00000000,ref,1.00000000,0.00000000,93.00000000,4.11504425,0.00000000,0.00000000,91.00000000,,-1.11000000,6.93000000,,0.02807018,290.00000000,12.83185841,0.01724138,0.00000000,3.20000000 +446,chr22,11066399,UNK,G,,A,,-1.00000000,,,,,,,54.34000000,47.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.01351351,0.00000000,83.00000000,,-0.20000000,0.00000000,,0.03543307,263.00000000,11.63716814,0.03041825,0.00000000,4.16000000 +447,chr22,11066406,UNK,G,,A,,-1.00000000,,,,,,,54.47000000,43.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.02631579,0.00000000,83.00000000,,0.87000000,0.00000000,,0.05158730,257.00000000,11.37168142,0.01945525,0.00000000,4.27000000 +448,chr22,11066443,UNK,C,,T,,-1.00000000,,,,,,,56.57000000,22.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.05063291,0.00000000,83.00000000,,-1.12000000,0.00000000,,0.04255319,247.00000000,10.92920354,0.04453441,0.00000000,4.19000000 +449,chr22,11066463,UNK,G,,A,,-1.00000000,,,,,,,57.63000000,15.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.16304348,0.00000000,84.00000000,,-0.12000000,0.00000000,,0.03913043,261.00000000,11.54867257,0.11877395,0.00000000,4.15000000 +450,chr22,11066669,UNK,G,,A,,-1.00000000,,,,,,,57.94000000,34.00000000,ref,1.00000000,0.00000000,141.00000000,6.23893805,0.07801418,0.00000000,109.00000000,,-0.77000000,0.00000000,,0.04594595,388.00000000,17.16814159,0.04639175,0.00000000,7.36000000 +451,chr22,11066704,UNK,G,,A,,-1.00000000,,,,,,,57.51000000,17.00000000,ref,1.00000000,0.00000000,122.00000000,5.39823009,0.03278689,0.00000000,75.00000000,,0.60000000,0.00000000,,0.02416918,339.00000000,15.00000000,0.02064897,0.00000000,4.13000000 +452,chr22,11067170,UNK,T,,A,,-1.00000000,,,,,,,59.56000000,3.00000000,ref,1.00000000,0.00000000,78.00000000,3.45132743,0.12820513,0.00000000,80.00000000,,-1.86000000,0.00000000,,0.05309735,252.00000000,11.15044248,0.08333333,0.00000000,4.12000000 +453,chr22,11067594,UNK,C,,G,,-1.00000000,,,,,,,51.84000000,140.00000000,ref,1.00000000,0.00000000,102.00000000,4.51327434,0.04901961,0.00000000,94.00000000,,0.12000000,0.00000000,,0.05154639,310.00000000,13.71681416,0.06129032,0.00000000,4.01000000 +454,chr22,11067630,UNK,G,,T,,-1.00000000,,,,,,,52.38000000,131.00000000,ref,1.00000000,0.00980392,110.00000000,4.86725664,0.07272727,0.00000000,78.00000000,,2.35000000,0.00000000,,0.03333333,316.00000000,13.98230088,0.05063291,0.00000000,4.12000000 +455,chr22,11067808,UNK,G,,A,,-1.00000000,,,,,,,54.43000000,74.00000000,ref,1.00000000,0.00000000,107.00000000,4.73451327,0.02803738,0.00000000,97.00000000,,1.32000000,0.00000000,,0.05230769,328.00000000,14.51327434,0.00914634,0.00000000,4.18000000 +456,chr22,11067921,UNK,C,,T,,-1.00000000,,,,,,,51.08000000,133.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.02173913,0.00000000,90.00000000,,0.35000000,0.00000000,,0.05970149,278.00000000,12.30088496,0.03597122,0.00000000,4.10000000 +457,chr22,11068107,UNK,T,,C,,-1.00000000,,,,,,,54.23000000,115.00000000,ref,1.00000000,0.00000000,135.00000000,5.97345133,0.02222222,0.00000000,109.00000000,,-0.93000000,0.00000000,,0.03532609,377.00000000,16.68141593,0.02387268,0.00000000,6.67000000 +458,chr22,11068220,UNK,C,,T,,-1.00000000,,,,,,,53.21000000,84.00000000,ref,1.00000000,0.00000000,89.00000000,3.93805310,0.03370787,0.00000000,89.00000000,,0.80000000,0.00000000,,0.04296875,268.00000000,11.85840708,0.04477612,0.00000000,3.97000000 +459,chr22,11068277,UNK,G,,A,,-1.00000000,,,,,,,49.81000000,100.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,0.36000000,0.00000000,,0.04568528,203.00000000,8.98230088,0.02955665,0.00000000,4.40000000 +460,chr22,11068381,UNK,G,,C,,-1.00000000,,,,,,,53.71000000,62.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.01369863,0.00000000,82.00000000,,-1.04000000,0.00000000,,0.06167401,231.00000000,10.22123894,0.01731602,0.00000000,4.49000000 +461,chr22,11211611,UNK,A,,G,,-1.00000000,,,,,,,56.31000000,4.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,88.00000000,,2.34000000,0.00000000,,0.29870130,80.00000000,3.53982301,0.03750000,0.00000000,5.44000000 +462,chr22,11212130,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.45000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,7.39000000 +463,chr22,11212240,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,69.00000000,,0.07000000,0.00000000,,0.16666667,60.00000000,2.65486726,0.00000000,0.00000000,5.25000000 +464,chr22,11217672,UNK,G,,T,,-1.00000000,,,,,,,57.68000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,70.00000000,,-0.25000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,5.86000000 +465,chr22,11219527,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,,-0.80000000,0.00000000,,0.35897436,80.00000000,3.53982301,0.01250000,0.00000000,4.49000000 +466,chr22,11245758,UNK,G,,C,,-1.00000000,,,,,,,47.53000000,38.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,-1.94000000,0.00000000,,0.27906977,43.00000000,1.90265487,0.00000000,0.00000000,4.64000000 +467,chr22,11252890,UNK,G,,T,,-1.00000000,,,,,,,55.35000000,3.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,58.00000000,,-0.17000000,0.38000000,,0.28260870,46.00000000,2.03539823,0.00000000,0.00000000,4.44000000 +468,chr22,11253469,UNK,G,,T,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,60.00000000,,-0.16000000,2.60000000,,0.11666667,63.00000000,2.78761062,0.04761905,0.00000000,3.52000000 +469,chr22,11253680,UNK,C,,T,,-1.00000000,,,,,,,51.59000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,57.00000000,,-0.55000000,0.00000000,,0.13333333,47.00000000,2.07964602,0.04255319,0.00000000,2.85000000 +470,chr22,11260133,UNK,C,,T,,-1.00000000,,,,,,,28.56000000,33.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,7.00000000,,0.10000000,0.00000000,,0.36363636,22.00000000,0.97345133,0.00000000,0.00000000,3.77000000 +471,chr22,11284558,UNK,A,,G,,-1.00000000,,,,,,,53.74000000,16.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,56.00000000,,0.05000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,2.81000000 +472,chr22,11285755,UNK,G,,A,,-1.00000000,,,,,,,57.30000000,7.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,1.14000000,0.00000000,,0.07792208,157.00000000,6.94690265,0.00636943,0.00000000,4.52000000 +473,chr22,11286064,UNK,T,,A,,-1.00000000,,,,,,,57.74000000,12.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.67000000,0.00000000,,0.07299270,138.00000000,6.10619469,0.00724638,0.00000000,4.62000000 +474,chr22,11286066,UNK,T,,C,,-1.00000000,,,,,,,58.04000000,10.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,71.00000000,,-0.88000000,0.00000000,,0.07352941,138.00000000,6.10619469,0.00724638,0.00000000,4.60000000 +475,chr22,11287704,UNK,C,,T,,-1.00000000,,,,,,,59.76000000,2.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,1.44000000,0.00000000,,0.08522727,178.00000000,7.87610619,0.01123596,0.00000000,4.66000000 +476,chr22,11288215,UNK,G,,A,,-1.00000000,,,,,,,57.52000000,17.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.05000000,0.00000000,75.00000000,,0.46000000,0.00000000,,0.07462687,137.00000000,6.06194690,0.01459854,0.00000000,4.42000000 +477,chr22,11288543,UNK,G,,A,,-1.00000000,,,,,,,59.06000000,6.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,0.52000000,0.00000000,,0.11450382,133.00000000,5.88495575,0.01503759,0.00000000,4.62000000 +478,chr22,11290091,UNK,A,,G,,-1.00000000,,,,,,,54.69000000,30.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,67.00000000,,-0.51000000,0.00000000,,0.14285714,122.00000000,5.39823009,0.02459016,0.00000000,5.51000000 +479,chr22,11292383,UNK,T,,C,,-1.00000000,,,,,,,50.12000000,58.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,,-0.12000000,0.00000000,,0.13684211,96.00000000,4.24778761,0.01041667,0.00000000,5.75000000 +480,chr22,11294083,UNK,G,,A,,-1.00000000,,,,,,,58.36000000,9.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-1.63000000,0.00000000,,0.08695652,116.00000000,5.13274336,0.00862069,0.00000000,5.24000000 +481,chr22,11296572,UNK,T,,A,,-1.00000000,,,,,,,41.02000000,79.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,69.00000000,,0.32000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.16000000 +482,chr22,11296606,UNK,T,,A,,-1.00000000,,,,,,,42.10000000,78.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,1.46000000,0.00000000,,0.14893617,95.00000000,4.20353982,0.01052632,0.00000000,5.46000000 +483,chr22,11297222,UNK,A,,T,,-1.00000000,,,,,,,51.91000000,66.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.43000000,0.00000000,,0.07407407,138.00000000,6.10619469,0.02173913,0.00000000,4.46000000 +484,chr22,11299917,UNK,G,,A,,-1.00000000,,,,,,,59.61000000,3.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.93000000,0.00000000,,0.10967742,158.00000000,6.99115044,0.01898734,0.00000000,4.54000000 +485,chr22,11300047,UNK,C,,T,,-1.00000000,,,,,,,58.96000000,7.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.54000000,0.00000000,,0.10144928,140.00000000,6.19469027,0.01428571,0.00000000,4.52000000 +486,chr22,11305320,UNK,T,,C,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.04000000,0.00000000,,0.11851852,137.00000000,6.06194690,0.01459854,0.00000000,5.27000000 +487,chr22,11309096,UNK,G,,A,,-1.00000000,,,,,,,59.75000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,68.00000000,,0.97000000,0.00000000,,0.14285714,81.00000000,3.58407080,0.04938272,0.00000000,5.29000000 +488,chr22,11314264,UNK,T,,A,,-1.00000000,,,,,,,58.50000000,10.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,0.67000000,0.00000000,,0.11764706,156.00000000,6.90265487,0.00641026,0.00000000,4.38000000 +489,chr22,11319296,UNK,G,,A,,-1.00000000,,,,,,,49.77000000,70.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,63.00000000,,0.62000000,0.03000000,,0.06603774,108.00000000,4.77876106,0.01851852,0.00000000,3.99000000 +490,chr22,11323340,UNK,A,,T,,-1.00000000,,,,,,,50.40000000,32.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-2.30000000,0.00000000,,0.10784314,105.00000000,4.64601770,0.00952381,0.00000000,5.38000000 +491,chr22,11323725,UNK,G,,A,,-1.00000000,,,,,,,59.26000000,5.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,0.87000000,0.00000000,,0.09154930,144.00000000,6.37168142,0.00694444,0.00000000,4.42000000 +492,chr22,11325906,UNK,C,,T,,-1.00000000,,,,,,,59.55000000,3.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.55000000,0.00000000,,0.12413793,147.00000000,6.50442478,0.00000000,0.00000000,4.93000000 +493,chr22,11326096,UNK,G,,A,,-1.00000000,,,,,,,59.83000000,1.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,75.00000000,,0.13000000,0.00000000,,0.10389610,155.00000000,6.85840708,0.00645161,0.00000000,4.26000000 +494,chr22,11326494,UNK,C,,T,,-1.00000000,,,,,,,58.73000000,7.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.01408451,0.00000000,81.00000000,,-0.77000000,0.00000000,,0.12972973,190.00000000,8.40707965,0.01578947,0.00000000,4.46000000 +495,chr22,11328606,UNK,G,,C,,-1.00000000,,,,,,,56.55000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,-0.50000000,0.00000000,,0.09523810,127.00000000,5.61946903,0.00787402,0.00000000,4.99000000 +496,chr22,11330555,UNK,C,,T,,-1.00000000,,,,,,,48.45000000,96.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-1.00000000,0.00000000,,0.10317460,127.00000000,5.61946903,0.00787402,0.00000000,4.44000000 +497,chr22,11331923,UNK,C,,T,,-1.00000000,,,,,,,52.04000000,57.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.03921569,0.00000000,72.00000000,,-0.25000000,0.00000000,,0.10344828,118.00000000,5.22123894,0.01694915,0.00000000,4.23000000 +498,chr22,11334340,UNK,G,,A,,-1.00000000,,,,,,,49.52000000,81.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.54000000,0.00000000,,0.08527132,129.00000000,5.70796460,0.00000000,0.00000000,4.55000000 +499,chr22,11334448,UNK,G,,A,,-1.00000000,,,,,,,49.83000000,54.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.14000000,0.00000000,,0.11627907,87.00000000,3.84955752,0.01149425,0.00000000,5.36000000 +500,chr22,11334701,UNK,G,,A,,-1.00000000,,,,,,,44.17000000,60.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,0.66000000,0.00000000,,0.12244898,49.00000000,2.16814159,0.00000000,0.00000000,2.88000000 +501,chr22,11336934,UNK,C,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.01562500,0.00000000,85.00000000,,-1.72000000,0.00000000,,0.16101695,119.00000000,5.26548673,0.00840336,0.00000000,4.73000000 +502,chr22,11339207,UNK,A,,G,,-1.00000000,,,,,,,50.92000000,89.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,0.38000000,0.00000000,,0.12138728,180.00000000,7.96460177,0.03888889,0.00000000,4.08000000 +503,chr22,11339998,UNK,G,,C,,-1.00000000,,,,,,,54.67000000,37.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-1.54000000,0.00000000,,0.10666667,151.00000000,6.68141593,0.00662252,0.00000000,4.73000000 +504,chr22,11340321,UNK,G,,A,,-1.00000000,,,,,,,44.06000000,172.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-0.06000000,0.00000000,,0.11842105,154.00000000,6.81415929,0.01298701,0.00000000,4.79000000 +505,chr22,11340940,UNK,A,,C,,-1.00000000,,,,,,,49.15000000,84.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.45000000,0.00000000,,0.11409396,150.00000000,6.63716814,0.00666667,0.00000000,4.43000000 +506,chr22,11341016,UNK,T,,C,,-1.00000000,,,,,,,49.77000000,90.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.62000000,0.00000000,,0.12025316,158.00000000,6.99115044,0.00000000,0.00000000,4.56000000 +507,chr22,11341750,UNK,A,,T,,-1.00000000,,,,,,,50.83000000,82.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-1.62000000,0.00000000,,0.10638298,147.00000000,6.50442478,0.02040816,0.00000000,4.22000000 +508,chr22,11342195,UNK,C,,A,,-1.00000000,,,,,,,56.06000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,-0.50000000,0.00000000,,0.09219858,141.00000000,6.23893805,0.00000000,0.00000000,5.19000000 +509,chr22,11343222,UNK,A,,G,,-1.00000000,,,,,,,58.11000000,13.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,1.07000000,0.00000000,,0.12500000,153.00000000,6.76991150,0.00653595,0.00000000,4.96000000 +510,chr22,11344153,UNK,A,,G,,-1.00000000,,,,,,,49.24000000,60.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.98000000,0.00000000,,0.07777778,90.00000000,3.98230088,0.00000000,0.00000000,4.54000000 +511,chr22,11346273,UNK,G,,A,,-1.00000000,,,,,,,57.05000000,19.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,0.15000000,0.00000000,,0.08000000,126.00000000,5.57522124,0.00793651,0.00000000,4.32000000 +512,chr22,11349696,UNK,C,,T,,-1.00000000,,,,,,,54.72000000,34.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,68.00000000,,-0.42000000,0.00000000,,0.09448819,130.00000000,5.75221239,0.02307692,0.00000000,4.78000000 +513,chr22,11349984,UNK,G,,A,,-1.00000000,,,,,,,51.02000000,54.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,64.00000000,,1.75000000,0.00000000,,0.08163265,105.00000000,4.64601770,0.06666667,0.00000000,4.48000000 +514,chr22,11351225,UNK,A,,G,,-1.00000000,,,,,,,48.40000000,110.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,0.49000000,0.00000000,,0.06756757,152.00000000,6.72566372,0.02631579,0.00000000,4.49000000 +515,chr22,11352449,UNK,C,,A,,-1.00000000,,,,,,,51.68000000,56.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,77.00000000,,-1.02000000,0.00000000,,0.13103448,147.00000000,6.50442478,0.01360544,0.00000000,4.76000000 +516,chr22,11352931,UNK,C,,T,,-1.00000000,,,,,,,51.25000000,74.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,77.00000000,,0.77000000,0.00000000,,0.13750000,164.00000000,7.25663717,0.02439024,0.00000000,4.35000000 +517,chr22,11353473,UNK,G,,A,,-1.00000000,,,,,,,57.66000000,17.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,73.00000000,,0.63000000,0.00000000,,0.10738255,151.00000000,6.68141593,0.00000000,0.00000000,4.38000000 +518,chr22,11353666,UNK,T,,G,,-1.00000000,,,,,,,50.82000000,78.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.05769231,0.00000000,72.00000000,,-0.37000000,0.00000000,,0.10563380,146.00000000,6.46017699,0.02739726,0.00000000,4.39000000 +519,chr22,11356454,UNK,A,,T,,-1.00000000,,,,,,,58.03000000,10.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.06250000,0.00000000,70.00000000,,0.96000000,0.00000000,,0.08620690,121.00000000,5.35398230,0.04132231,0.00000000,4.26000000 +520,chr22,11356846,UNK,T,,C,,-1.00000000,,,,,,,53.69000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,1.35000000,0.00000000,,0.13000000,101.00000000,4.46902655,0.00990099,0.00000000,4.73000000 +521,chr22,11356847,UNK,G,,A,,-1.00000000,,,,,,,53.65000000,35.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,1.01000000,0.00000000,,0.13265306,100.00000000,4.42477876,0.01000000,0.00000000,4.89000000 +522,chr22,11357093,UNK,G,,A,,-1.00000000,,,,,,,40.80000000,156.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,66.00000000,,0.60000000,3.19000000,,0.06382979,96.00000000,4.24778761,0.02083333,0.00000000,3.54000000 +523,chr22,11358023,UNK,A,,G,,-1.00000000,,,,,,,59.51000000,4.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,-0.93000000,0.00000000,,0.05988024,169.00000000,7.47787611,0.00591716,0.00000000,4.84000000 +524,chr22,11358030,UNK,T,,C,,-1.00000000,,,,,,,59.50000000,4.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.01428571,0.00000000,81.00000000,,-0.68000000,0.00000000,,0.05487805,165.00000000,7.30088496,0.00606061,0.00000000,4.43000000 +525,chr22,11358081,UNK,T,,C,,-1.00000000,,,,,,,59.36000000,5.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.01315789,0.00000000,83.00000000,,0.11000000,0.00000000,,0.06711409,151.00000000,6.68141593,0.00662252,0.00000000,4.42000000 +526,chr22,11359729,UNK,G,,A,,-1.00000000,,,,,,,48.19000000,62.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,74.00000000,,-1.07000000,0.00000000,,0.14166667,121.00000000,5.35398230,0.00826446,0.00000000,5.07000000 +527,chr22,11360386,UNK,A,,T,,-1.00000000,,,,,,,47.22000000,65.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,63.00000000,,0.81000000,0.00000000,,0.07865169,89.00000000,3.93805310,0.00000000,0.00000000,4.53000000 +528,chr22,11360571,UNK,C,,A,,-1.00000000,,,,,,,56.92000000,15.00000000,ref,1.00000000,0.02631579,38.00000000,1.68141593,0.00000000,0.00000000,60.00000000,,0.83000000,0.00000000,,0.14736842,96.00000000,4.24778761,0.01041667,0.00000000,5.21000000 +529,chr22,11361352,UNK,C,,T,,-1.00000000,,,,,,,58.31000000,9.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,74.00000000,,0.06000000,0.00000000,,0.17460317,128.00000000,5.66371681,0.01562500,0.00000000,5.87000000 +530,chr22,11361695,UNK,T,,G,,-1.00000000,,,,,,,59.71000000,2.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,0.04000000,0.00000000,,0.13157895,152.00000000,6.72566372,0.00000000,0.00000000,4.71000000 +531,chr22,11362370,UNK,C,,T,,-1.00000000,,,,,,,55.41000000,33.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,74.00000000,,0.39000000,0.00000000,,0.13669065,140.00000000,6.19469027,0.00714286,0.00000000,4.28000000 +532,chr22,11362680,UNK,T,,C,,-1.00000000,,,,,,,57.87000000,13.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,84.00000000,,0.95000000,0.00000000,,0.16981132,160.00000000,7.07964602,0.00625000,0.00000000,4.79000000 +533,chr22,11362772,UNK,G,,A,,-1.00000000,,,,,,,55.54000000,27.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,70.00000000,,-0.88000000,0.00000000,,0.11643836,147.00000000,6.50442478,0.00680272,0.00000000,4.39000000 +534,chr22,11363627,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,5.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,,-1.28000000,0.00000000,,0.11594203,140.00000000,6.19469027,0.00714286,0.00000000,4.32000000 +535,chr22,11365336,UNK,G,,A,,-1.00000000,,,,,,,56.29000000,2.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,76.00000000,,0.80000000,0.00000000,,0.13071895,158.00000000,6.99115044,0.02531646,0.00000000,4.42000000 +536,chr22,11367852,UNK,T,,A,,-1.00000000,,,,,,,59.34000000,5.00000000,ref,1.00000000,0.01818182,57.00000000,2.52212389,0.01754386,0.00000000,71.00000000,,-0.29000000,0.00000000,,0.12269939,165.00000000,7.30088496,0.00606061,0.00000000,4.29000000 +537,chr22,11373740,UNK,A,,T,,-1.00000000,,,,,,,59.17000000,5.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,68.00000000,,0.92000000,0.00000000,,0.12000000,138.00000000,6.10619469,0.09420290,0.00000000,4.39000000 +538,chr22,11375315,UNK,A,,T,,-1.00000000,,,,,,,59.34000000,4.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,-0.89000000,0.00000000,,0.11594203,140.00000000,6.19469027,0.01428571,0.00000000,4.35000000 +539,chr22,11375669,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,0.40000000,0.00000000,,0.08219178,147.00000000,6.50442478,0.00680272,0.00000000,4.78000000 +540,chr22,11376773,UNK,C,,T,,-1.00000000,,,,,,,56.12000000,31.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,0.63000000,0.00000000,,0.09554140,158.00000000,6.99115044,0.00632911,0.00000000,4.49000000 +541,chr22,11441800,UNK,A,,G,,-1.00000000,,,,,,,54.54000000,8.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,14.00000000,,-0.68000000,0.00000000,,0.48000000,27.00000000,1.19469027,0.07407407,0.00000000,3.94000000 +542,chr22,11446692,UNK,T,,A,,-1.00000000,,,,,,,50.04000000,14.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,6.00000000,,0.28000000,0.00000000,,0.47619048,22.00000000,0.97345133,0.04545455,0.00000000,3.95000000 +543,chr22,11466863,UNK,C,,A,,-1.00000000,,,,,,,49.87000000,11.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,6.00000000,,-0.89000000,0.00000000,,0.47826087,23.00000000,1.01769912,0.00000000,0.00000000,3.72000000 +544,chr22,11491704,UNK,C,,T,,-1.00000000,,,,,,,50.65000000,3.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,23.00000000,,0.26000000,0.00000000,,0.35897436,40.00000000,1.76991150,0.02500000,0.00000000,3.68000000 +545,chr22,11495656,UNK,C,,T,,-1.00000000,,,,,,,43.92000000,15.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,25.00000000,,1.20000000,0.00000000,,0.40909091,23.00000000,1.01769912,0.04347826,0.00000000,3.83000000 +546,chr22,11547945,UNK,G,,C,,-1.00000000,,,,,,,57.41000000,18.00000000,ref,1.00000000,0.02083333,49.00000000,2.16814159,0.02040816,0.00000000,68.00000000,,-0.33000000,0.00000000,,0.12781955,135.00000000,5.97345133,0.01481481,0.00000000,4.36000000 +547,chr22,11550038,UNK,C,,T,,-1.00000000,,,,,,,56.83000000,16.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-0.56000000,0.00000000,,0.07476636,110.00000000,4.86725664,0.01818182,0.00000000,5.13000000 +548,chr22,11550502,UNK,G,,A,,-1.00000000,,,,,,,51.90000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,0.51000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,4.62000000 +549,chr22,11551841,UNK,A,,G,,-1.00000000,,,,,,,48.99000000,85.00000000,ref,1.00000000,0.02380952,42.00000000,1.85840708,0.00000000,0.00000000,65.00000000,,-0.99000000,0.00000000,,0.05384615,133.00000000,5.88495575,0.01503759,0.00000000,4.97000000 +550,chr22,11552235,UNK,A,,G,,-1.00000000,,,,,,,57.51000000,16.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,-0.01000000,0.00000000,,0.07586207,146.00000000,6.46017699,0.00684932,0.00000000,4.72000000 +551,chr22,11560391,UNK,G,,A,,-1.00000000,,,,,,,39.48000000,42.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.84000000,0.04000000,,0.08064516,63.00000000,2.78761062,0.01587302,0.00000000,4.30000000 +552,chr22,11566682,UNK,G,,T,,-1.00000000,,,,,,,47.03000000,118.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,-1.11000000,0.00000000,,0.10400000,127.00000000,5.61946903,0.01574803,0.00000000,4.32000000 +553,chr22,11572558,UNK,T,,C,,-1.00000000,,,,,,,58.03000000,14.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,1.64000000,0.00000000,,0.07692308,146.00000000,6.46017699,0.01369863,0.00000000,4.38000000 +554,chr22,11573437,UNK,G,,T,,-1.00000000,,,,,,,58.68000000,8.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,-1.24000000,0.00000000,,0.09090909,135.00000000,5.97345133,0.01481481,0.00000000,4.29000000 +555,chr22,11574213,UNK,G,,A,,-1.00000000,,,,,,,59.30000000,4.00000000,ref,1.00000000,0.00000000,64.00000000,2.83185841,0.00000000,0.00000000,78.00000000,,-0.74000000,0.00000000,,0.09150327,155.00000000,6.85840708,0.01290323,0.00000000,4.66000000 +556,chr22,11574273,UNK,C,,G,,-1.00000000,,,,,,,59.22000000,4.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,1.05000000,0.00000000,,0.08955224,137.00000000,6.06194690,0.02189781,0.00000000,4.52000000 +557,chr22,11574466,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.04918033,0.00000000,75.00000000,,-0.44000000,0.00000000,,0.11976048,175.00000000,7.74336283,0.03428571,0.00000000,4.28000000 +558,chr22,11577011,UNK,C,,T,,-1.00000000,,,,,,,57.90000000,14.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.02857143,0.00000000,81.00000000,,0.43000000,0.00000000,,0.13245033,157.00000000,6.94690265,0.03184713,0.00000000,4.44000000 +559,chr22,11578032,UNK,T,,A,,-1.00000000,,,,,,,55.13000000,35.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,61.00000000,,0.98000000,0.00000000,,0.05035971,141.00000000,6.23893805,0.00000000,0.00000000,4.37000000 +560,chr22,11580389,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,77.00000000,,-1.15000000,0.00000000,,0.14814815,163.00000000,7.21238938,0.00000000,0.00000000,4.76000000 +561,chr22,11581530,UNK,T,,C,,-1.00000000,,,,,,,42.63000000,104.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.47000000,0.00000000,,0.09722222,74.00000000,3.27433628,0.02702703,0.00000000,4.45000000 +562,chr22,11583509,UNK,A,,G,,-1.00000000,,,,,,,55.06000000,31.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,67.00000000,,0.40000000,0.00000000,,0.09448819,130.00000000,5.75221239,0.01538462,0.00000000,4.78000000 +563,chr22,11583567,UNK,G,,A,,-1.00000000,,,,,,,55.57000000,32.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,76.00000000,,0.07000000,0.00000000,,0.12500000,137.00000000,6.06194690,0.00729927,0.00000000,4.14000000 +564,chr22,11583978,UNK,C,,T,,-1.00000000,,,,,,,56.24000000,30.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,77.00000000,,-0.52000000,0.00000000,,0.13375796,159.00000000,7.03539823,0.01257862,0.00000000,4.74000000 +565,chr22,11584411,UNK,T,,C,,-1.00000000,,,,,,,47.50000000,78.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-0.68000000,0.00000000,,0.13186813,93.00000000,4.11504425,0.01075269,0.00000000,5.79000000 +566,chr22,11584833,UNK,G,,T,,-1.00000000,,,,,,,51.56000000,49.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-2.29000000,0.00000000,,0.09375000,98.00000000,4.33628319,0.02040816,0.00000000,4.74000000 +567,chr22,11592205,UNK,A,,C,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.01886792,54.00000000,2.38938053,0.01851852,0.00000000,64.00000000,,-0.36000000,0.00000000,,0.11278195,135.00000000,5.97345133,0.01481481,0.00000000,4.09000000 +568,chr22,11592272,UNK,G,,A,,-1.00000000,,,,,,,58.67000000,8.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,73.00000000,,-0.83000000,0.00000000,,0.12800000,125.00000000,5.53097345,0.00000000,0.00000000,4.93000000 +569,chr22,11593289,UNK,G,,C,,-1.00000000,,,,,,,56.59000000,20.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.69000000,0.00000000,,0.06363636,110.00000000,4.86725664,0.00000000,0.00000000,4.91000000 +570,chr22,11594045,UNK,C,,T,,-1.00000000,,,,,,,58.82000000,8.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,73.00000000,,-0.43000000,0.00000000,,0.14285714,150.00000000,6.63716814,0.02000000,0.00000000,4.56000000 +571,chr22,11594172,UNK,T,,C,,-1.00000000,,,,,,,59.19000000,6.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,0.23000000,0.00000000,,0.11464968,160.00000000,7.07964602,0.01250000,0.00000000,4.39000000 +572,chr22,11596107,UNK,T,,C,,-1.00000000,,,,,,,57.89000000,11.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.00000000,0.00000000,76.00000000,,-0.41000000,0.00000000,,0.07741935,157.00000000,6.94690265,0.01273885,0.00000000,4.67000000 +573,chr22,11597443,UNK,G,,T,,-1.00000000,,,,,,,58.00000000,11.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.04166667,0.00000000,70.00000000,,0.61000000,0.00000000,,0.08333333,107.00000000,4.73451327,0.10280374,0.00000000,4.51000000 +574,chr22,11598582,UNK,G,,A,,-1.00000000,,,,,,,59.73000000,2.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,76.00000000,,-0.72000000,0.00000000,,0.06622517,160.00000000,7.07964602,0.05000000,0.00000000,4.18000000 +575,chr22,11598665,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,1.86000000,0.00000000,,0.06617647,138.00000000,6.10619469,0.01449275,0.00000000,4.83000000 +576,chr22,11598809,UNK,G,,A,,-1.00000000,,,,,,,59.68000000,2.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-0.17000000,0.00000000,,0.12195122,126.00000000,5.57522124,0.01587302,0.00000000,4.22000000 +577,chr22,11600165,UNK,G,,A,,-1.00000000,,,,,,,58.81000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-0.41000000,0.00000000,,0.12295082,129.00000000,5.70796460,0.05426357,0.00000000,4.84000000 +578,chr22,11602719,UNK,G,,A,,-1.00000000,,,,,,,58.00000000,10.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,-1.72000000,0.00000000,,0.10062893,159.00000000,7.03539823,0.00000000,0.00000000,4.57000000 +579,chr22,11603486,UNK,A,,G,,-1.00000000,,,,,,,57.73000000,13.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-1.39000000,0.00000000,,0.11188811,147.00000000,6.50442478,0.02721088,0.00000000,4.43000000 +580,chr22,11603813,UNK,C,,T,,-1.00000000,,,,,,,59.37000000,4.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-0.48000000,0.00000000,,0.06250000,128.00000000,5.66371681,0.00000000,0.00000000,4.89000000 +581,chr22,11606207,UNK,G,,A,,-1.00000000,,,,,,,59.12000000,6.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,2.32000000,0.00000000,,0.10489510,144.00000000,6.37168142,0.00694444,0.00000000,4.24000000 +582,chr22,11607351,UNK,G,,A,,-1.00000000,,,,,,,58.88000000,7.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,75.00000000,,-0.12000000,0.00000000,,0.16176471,137.00000000,6.06194690,0.00729927,0.00000000,5.32000000 +583,chr22,11608990,UNK,A,,C,,-1.00000000,,,,,,,56.78000000,16.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,65.00000000,,0.03000000,0.00000000,,0.06611570,123.00000000,5.44247788,0.01626016,0.00000000,4.93000000 +584,chr22,11609306,UNK,T,,C,,-1.00000000,,,,,,,57.27000000,16.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.10000000,0.00000000,,0.08035714,112.00000000,4.95575221,0.00000000,0.00000000,4.58000000 +585,chr22,11610157,UNK,G,,C,,-1.00000000,,,,,,,54.10000000,46.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,70.00000000,,0.26000000,0.00000000,,0.07284768,153.00000000,6.76991150,0.01307190,0.00000000,4.35000000 +586,chr22,11610236,UNK,G,,A,,-1.00000000,,,,,,,55.28000000,36.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,-0.03000000,0.00000000,,0.08843537,150.00000000,6.63716814,0.01333333,0.00000000,4.41000000 +587,chr22,11612389,UNK,T,,A,,-1.00000000,,,,,,,56.72000000,14.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.26000000,66.00000000,,0.54000000,0.00000000,,0.11764706,90.00000000,3.98230088,0.04444444,0.15887850,4.49000000 +588,chr22,11613447,UNK,T,,G,,-1.00000000,,,,,,,58.77000000,3.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,78.00000000,,-0.31000000,0.00000000,,0.14482759,148.00000000,6.54867257,0.02027027,0.00000000,4.46000000 +589,chr22,11618098,UNK,G,,A,,-1.00000000,,,,,,,59.83000000,1.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.04081633,0.00000000,71.00000000,,-1.13000000,0.00000000,,0.10596026,153.00000000,6.76991150,0.01307190,0.00000000,4.56000000 +590,chr22,11618309,UNK,G,,C,,-1.00000000,,,,,,,59.63000000,3.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.03703704,0.00000000,73.00000000,,-0.27000000,0.00000000,,0.12359551,180.00000000,7.96460177,0.01111111,0.00000000,4.35000000 +591,chr22,11621243,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.05454545,0.00000000,73.00000000,,0.83000000,0.00000000,,0.07874016,131.00000000,5.79646018,0.03053435,0.00000000,4.36000000 +592,chr22,11621418,UNK,C,,T,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.03773585,0.00000000,73.00000000,,-1.50000000,0.00000000,,0.09774436,133.00000000,5.88495575,0.00000000,0.00000000,4.92000000 +593,chr22,11622336,UNK,T,,C,,-1.00000000,,,,,,,58.94000000,5.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.05660377,0.00000000,65.00000000,,1.24000000,0.00000000,,0.13157895,156.00000000,6.90265487,0.01923077,0.00000000,4.46000000 +594,chr22,11623345,UNK,A,,T,,-1.00000000,,,,,,,57.41000000,22.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,79.00000000,,1.23000000,0.00000000,,0.07647059,171.00000000,7.56637168,0.00000000,0.00000000,4.47000000 +595,chr22,11625121,UNK,G,,T,,-1.00000000,,,,,,,59.57000000,3.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,-0.79000000,0.00000000,,0.08219178,148.00000000,6.54867257,0.01351351,0.00000000,4.81000000 +596,chr22,11628169,UNK,C,,T,,-1.00000000,,,,,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,75.00000000,,1.46000000,0.00000000,,0.13664596,164.00000000,7.25663717,0.01219512,0.00000000,5.02000000 +597,chr22,11628290,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,75.00000000,,-2.88000000,0.00000000,,0.12258065,162.00000000,7.16814159,0.03703704,0.00000000,4.53000000 +598,chr22,11628430,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,75.00000000,,0.83000000,0.00000000,,0.12258065,158.00000000,6.99115044,0.01898734,0.00000000,4.64000000 +599,chr22,11629135,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,0.28000000,0.00000000,,0.07534247,147.00000000,6.50442478,0.00680272,0.00000000,4.69000000 +600,chr22,11629284,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.54000000,0.00000000,,0.10204082,148.00000000,6.54867257,0.00675676,0.00000000,4.55000000 +601,chr22,11629495,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,68.00000000,,0.22000000,0.00000000,,0.09022556,135.00000000,5.97345133,0.01481481,0.00000000,4.54000000 +602,chr22,11630240,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,,-0.41000000,0.00000000,,0.11956522,188.00000000,8.31858407,0.01595745,0.00000000,4.17000000 +603,chr22,11630250,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,0.08000000,0.00000000,,0.12021858,184.00000000,8.14159292,0.00543478,0.00000000,4.65000000 +604,chr22,11695103,UNK,G,,T,,-1.00000000,,,,,,,20.77000000,80.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,0.53000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.25000000 +605,chr22,11786977,UNK,T,,G,,-1.00000000,,,,,,,43.31000000,20.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,1.50000000,0.21000000,,0.33333333,18.00000000,0.79646018,0.00000000,0.00000000,2.78000000 +606,chr22,11787480,UNK,G,,A,,-1.00000000,,,,,,,57.45000000,3.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,-0.74000000,0.00000000,,0.50000000,26.00000000,1.15044248,0.00000000,0.00000000,3.62000000 +607,chr22,11818949,UNK,G,,T,,-1.00000000,,,,,,,54.85000000,12.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,55.00000000,,-0.15000000,0.00000000,,0.29729730,40.00000000,1.76991150,0.07500000,0.00000000,2.99000000 +608,chr22,11874918,UNK,C,,T,,-1.00000000,,,,,,,35.19000000,21.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,7.00000000,,-3.06000000,0.00000000,,0.42424242,33.00000000,1.46017699,0.00000000,0.00000000,3.42000000 +609,chr22,11886244,UNK,C,,T,,-1.00000000,,,,,,,39.00000000,18.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,19.00000000,,2.47000000,0.00000000,,0.30769231,26.00000000,1.15044248,0.00000000,0.00000000,2.75000000 +610,chr22,11900826,UNK,G,,A,,-1.00000000,,,,,,,43.97000000,20.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,15.00000000,,-0.29000000,0.00000000,,0.41666667,36.00000000,1.59292035,0.00000000,0.00000000,3.72000000 +611,chr22,11924293,UNK,G,,T,,-1.00000000,,,,,,,21.51000000,131.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,9.00000000,,0.44000000,0.00000000,,0.46666667,31.00000000,1.37168142,0.03225806,0.00000000,3.95000000 +612,chr22,11925062,UNK,A,,G,,-1.00000000,,,,,,,28.22000000,129.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,12.00000000,,2.10000000,0.00000000,,0.33333333,33.00000000,1.46017699,0.00000000,0.00000000,3.45000000 +613,chr22,11928010,UNK,T,,A,,-1.00000000,,,,,,,37.71000000,95.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.61000000,0.00000000,,0.08080808,99.00000000,4.38053097,0.00000000,0.00000000,5.29000000 +614,chr22,11928012,UNK,C,,G,,-1.00000000,,,,,,,37.51000000,95.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,0.89000000,0.00000000,,0.07142857,98.00000000,4.33628319,0.00000000,0.00000000,4.75000000 +615,chr22,11928079,UNK,G,,T,,-1.00000000,,,,,,,40.41000000,65.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.88000000,2.15000000,,0.10924370,119.00000000,5.26548673,0.00000000,0.00000000,4.29000000 +616,chr22,11928354,UNK,G,,A,,-1.00000000,,,,,,,40.31000000,110.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.36000000,0.00000000,,0.37962963,111.00000000,4.91150442,0.02702703,0.00000000,7.07000000 +617,chr22,11928355,UNK,C,,T,,-1.00000000,,,,,,,40.22000000,111.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.23000000,0.00000000,,0.38317757,110.00000000,4.86725664,0.02727273,0.00000000,7.07000000 +618,chr22,11928523,UNK,A,,G,,-1.00000000,,,,,,,39.37000000,172.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,3.19000000,0.00000000,,0.12972973,188.00000000,8.31858407,0.00531915,0.00000000,4.69000000 +619,chr22,11928639,UNK,G,,C,,-1.00000000,,,,,,,35.28000000,150.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,1.49000000,0.00000000,,0.04255319,142.00000000,6.28318584,0.00704225,0.00000000,4.72000000 +620,chr22,11928721,UNK,G,,T,,-1.00000000,,,,,,,32.41000000,181.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.69000000,0.00000000,,0.11818182,115.00000000,5.08849558,0.04347826,0.00000000,5.08000000 +621,chr22,11928724,UNK,G,,A,,-1.00000000,,,,,,,32.56000000,181.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.50000000,0.00000000,,0.11711712,116.00000000,5.13274336,0.04310345,0.00000000,5.07000000 +622,chr22,11928766,UNK,T,,C,,-1.00000000,,,,,,,33.13000000,217.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.50000000,14.97000000,,0.14062500,129.00000000,5.70796460,0.00775194,0.00000000,4.24000000 +623,chr22,11928825,UNK,A,,C,,-1.00000000,,,,,,,35.05000000,183.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,1.06000000,5.73000000,,0.07142857,127.00000000,5.61946903,0.00787402,0.00000000,3.80000000 +624,chr22,11928856,UNK,C,,G,,-1.00000000,,,,,,,34.96000000,156.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.22000000,3.52000000,,0.06730769,106.00000000,4.69026549,0.01886792,0.00000000,3.68000000 +625,chr22,11928947,UNK,C,,T,,-1.00000000,,,,,,,34.08000000,97.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-1.54000000,0.00000000,,0.17045455,90.00000000,3.98230088,0.01111111,0.00000000,6.67000000 +626,chr22,11930246,UNK,T,,C,,-1.00000000,,,,,,,28.47000000,196.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,57.00000000,,-0.14000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,2.87000000 +627,chr22,11938821,UNK,G,,A,,-1.00000000,,,,,,,42.84000000,30.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,15.00000000,,1.43000000,0.00000000,,0.33333333,33.00000000,1.46017699,0.00000000,0.00000000,3.38000000 +628,chr22,11942840,UNK,T,,C,,-1.00000000,,,,,,,52.10000000,18.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,18.00000000,,0.79000000,0.00000000,,0.35294118,54.00000000,2.38938053,0.05555556,0.00000000,3.64000000 +629,chr22,11943184,UNK,A,,T,,-1.00000000,,,,,,,45.82000000,47.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,19.00000000,,0.34000000,0.00000000,,0.41666667,61.00000000,2.69911504,0.00000000,0.00000000,3.75000000 +630,chr22,11943227,UNK,A,,C,,-1.00000000,,,,,,,42.58000000,50.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,26.00000000,,0.99000000,0.00000000,,0.31250000,48.00000000,2.12389381,0.00000000,0.00000000,3.04000000 +631,chr22,11943694,UNK,A,,G,,-1.00000000,,,,,,,49.10000000,22.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.68000000,0.00000000,,0.44736842,40.00000000,1.76991150,0.05000000,0.00000000,3.00000000 +632,chr22,11943739,UNK,C,,T,,-1.00000000,,,,,,,53.12000000,17.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,5.00000000,,0.56000000,0.00000000,,0.46296296,54.00000000,2.38938053,0.00000000,0.00000000,3.70000000 +633,chr22,11943742,UNK,G,,T,,-1.00000000,,,,,,,53.12000000,17.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.10000000,0.00000000,8.00000000,,0.32000000,0.00000000,,0.45283019,53.00000000,2.34513274,0.00000000,0.00000000,3.70000000 +634,chr22,11949999,UNK,C,,A,,-1.00000000,,,,,,,43.05000000,36.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,25.00000000,,0.28000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,3.08000000 +635,chr22,11951431,UNK,T,,C,,-1.00000000,,,,,,,36.99000000,53.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,0.08000000,0.00000000,,0.40000000,26.00000000,1.15044248,0.03846154,0.00000000,3.86000000 +636,chr22,11952256,UNK,G,,A,,-1.00000000,,,,,,,52.50000000,13.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.00000000,22.00000000,,-2.53000000,0.00000000,,0.33333333,42.00000000,1.85840708,0.00000000,0.00000000,3.38000000 +637,chr22,11964147,UNK,G,,A,,-1.00000000,,,,,,,50.91000000,14.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,0.09000000,0.00000000,,0.60714286,28.00000000,1.23893805,0.00000000,0.00000000,3.69000000 +638,chr22,12037690,UNK,T,,C,,-1.00000000,,,,,,,37.49000000,145.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.62000000,0.00000000,,0.06306306,113.00000000,5.00000000,0.00000000,0.00000000,5.27000000 +639,chr22,12090879,UNK,G,,T,,-1.00000000,,,,,,,17.82000000,56.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.71000000,0.00000000,,0.57142857,7.00000000,0.30973451,0.00000000,0.00000000,3.77000000 +640,chr22,12111513,UNK,C,,A,,-1.00000000,,,,,,,42.04000000,24.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,1.09000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.54000000 +641,chr22,12155798,UNK,A,,G,,-1.00000000,,,,,,,36.59000000,103.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.82000000,0.00000000,,0.06666667,77.00000000,3.40707965,0.02597403,0.00000000,3.90000000 +642,chr22,12165757,UNK,T,,C,,-1.00000000,,,,,,,36.38000000,43.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,5.00000000,,-2.17000000,0.00000000,,0.37500000,16.00000000,0.70796460,0.00000000,0.00000000,3.22000000 +643,chr22,12184957,UNK,G,,A,,-1.00000000,,,,,,,21.50000000,78.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,9.00000000,,-1.29000000,0.00000000,,0.33333333,10.00000000,0.44247788,0.10000000,0.00000000,3.71000000 +644,chr22,12190800,UNK,C,,T,,-1.00000000,,,,,,,53.49000000,58.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,0.59000000,0.00000000,,0.07821229,182.00000000,8.05309735,0.01098901,0.00000000,4.62000000 +645,chr22,12190873,UNK,T,,C,,-1.00000000,,,,,,,53.19000000,62.00000000,ref,1.00000000,0.00000000,77.00000000,3.40707965,0.00000000,0.00000000,84.00000000,,-0.10000000,0.00000000,,0.08287293,185.00000000,8.18584071,0.02162162,0.00000000,4.36000000 +646,chr22,12191023,UNK,C,,T,,-1.00000000,,,,,,,47.27000000,76.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,2.45000000,0.00000000,,0.10852713,129.00000000,5.70796460,0.00000000,0.00000000,4.51000000 +647,chr22,12191117,UNK,G,,C,,-1.00000000,,,,,,,48.90000000,81.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,64.00000000,,0.57000000,0.00000000,,0.03676471,137.00000000,6.06194690,0.00729927,0.00000000,4.62000000 +648,chr22,12191222,UNK,C,,T,,-1.00000000,,,,,,,56.73000000,24.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.00000000,0.00000000,82.00000000,,-1.14000000,0.00000000,,0.05116279,216.00000000,9.55752212,0.00462963,0.00000000,4.71000000 +649,chr22,12191323,UNK,A,,G,,-1.00000000,,,,,,,58.37000000,13.00000000,ref,1.00000000,0.01052632,97.00000000,4.29203540,0.02061856,0.00000000,89.00000000,,2.07000000,0.00000000,,0.04529617,289.00000000,12.78761062,0.00346021,0.00000000,4.23000000 +650,chr22,12191337,UNK,G,,A,,-1.00000000,,,,,,,58.58000000,14.00000000,ref,1.00000000,0.00000000,92.00000000,4.07079646,0.01086957,0.00000000,91.00000000,,-0.38000000,0.00000000,,0.05369128,299.00000000,13.23008850,0.00334448,0.00000000,4.40000000 +651,chr22,12191396,UNK,G,,A,,-1.00000000,,,,,,,53.30000000,52.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,0.26000000,0.00000000,,0.10407240,221.00000000,9.77876106,0.00000000,0.00000000,4.39000000 +652,chr22,12191934,UNK,G,,T,,-1.00000000,,,,,,,38.44000000,185.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,-0.82000000,0.00000000,,0.08928571,114.00000000,5.04424779,0.01754386,0.00000000,4.90000000 +653,chr22,12192408,UNK,C,,G,,-1.00000000,,,,,,,46.51000000,84.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.85000000,0.00000000,,0.08490566,106.00000000,4.69026549,0.00000000,0.00000000,4.51000000 +654,chr22,12192561,UNK,C,,T,,-1.00000000,,,,,,,51.74000000,55.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-2.38000000,0.00000000,,0.11515152,165.00000000,7.30088496,0.00000000,0.00000000,4.69000000 +655,chr22,12192659,UNK,T,,C,,-1.00000000,,,,,,,51.99000000,85.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,80.00000000,,1.21000000,0.00000000,,0.12272727,222.00000000,9.82300885,0.00900901,0.00000000,4.63000000 +656,chr22,12192751,UNK,G,,A,,-1.00000000,,,,,,,53.04000000,67.00000000,ref,1.00000000,0.01388889,73.00000000,3.23008850,0.01369863,0.00000000,78.00000000,,0.95000000,0.00000000,,0.05084746,180.00000000,7.96460177,0.01666667,0.00000000,4.29000000 +657,chr22,12192979,UNK,C,,A,,-1.00000000,,,,,,,49.75000000,107.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.01470588,0.00000000,80.00000000,,-1.24000000,0.00000000,,0.05780347,178.00000000,7.87610619,0.02247191,0.00000000,4.34000000 +658,chr22,12193115,UNK,C,,T,,-1.00000000,,,,,,,57.52000000,32.00000000,ref,1.00000000,0.00000000,112.00000000,4.95575221,0.00000000,0.00000000,100.00000000,,-2.35000000,0.00000000,,0.05384615,260.00000000,11.50442478,0.00000000,0.00000000,4.73000000 +659,chr22,12193391,UNK,T,,G,,-1.00000000,,,,,,,41.95000000,158.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.06542056,108.00000000,4.77876106,0.00925926,0.00000000,4.59000000 +660,chr22,12193593,UNK,A,,G,,-1.00000000,,,,,,,43.81000000,126.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-0.40000000,3.62000000,,0.07894737,117.00000000,5.17699115,0.02564103,0.00000000,3.75000000 +661,chr22,12194041,UNK,A,,T,,-1.00000000,,,,,,,45.64000000,74.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,,-4.86000000,0.00000000,,0.15957447,95.00000000,4.20353982,0.01052632,0.00000000,4.29000000 +662,chr22,12194185,UNK,T,,A,,-1.00000000,,,,,,,43.50000000,126.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-1.01000000,0.00000000,,0.05511811,128.00000000,5.66371681,0.00781250,0.00775194,4.57000000 +663,chr22,12197539,UNK,C,,T,,-1.00000000,,,,,,,36.36000000,144.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.12000000,2.79000000,,0.09836066,62.00000000,2.74336283,0.01612903,0.00000000,3.50000000 +664,chr22,12198602,UNK,G,,A,,-1.00000000,,,,,,,39.07000000,132.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,0.92000000,2.43000000,,0.16000000,75.00000000,3.31858407,0.00000000,0.00000000,3.77000000 +665,chr22,12198947,UNK,T,,C,,-1.00000000,,,,,,,47.80000000,98.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,0.79000000,0.00000000,,0.08000000,126.00000000,5.57522124,0.00793651,0.00000000,4.60000000 +666,chr22,12201764,UNK,C,,T,,-1.00000000,,,,,,,48.62000000,61.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.88000000,0.00000000,,0.11340206,97.00000000,4.29203540,0.00000000,0.00000000,4.86000000 +667,chr22,12202165,UNK,C,,T,,-1.00000000,,,,,,,55.15000000,25.00000000,ref,1.00000000,0.00000000,71.00000000,3.14159292,0.00000000,0.00000000,82.00000000,,-1.65000000,0.00000000,,0.05464481,184.00000000,8.14159292,0.00543478,0.00000000,4.75000000 +668,chr22,12202218,UNK,G,,T,,-1.00000000,,,,,,,55.64000000,32.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,110.00000000,,2.94000000,0.00000000,,0.19170984,195.00000000,8.62831858,0.00512821,0.00000000,9.02000000 +669,chr22,12202576,UNK,A,,C,,-1.00000000,,,,,,,44.91000000,86.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,68.00000000,,1.20000000,4.12000000,,0.05600000,126.00000000,5.57522124,0.00793651,0.00000000,3.42000000 +670,chr22,12202590,UNK,T,,C,,-1.00000000,,,,,,,44.89000000,88.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.09000000,3.94000000,,0.04958678,121.00000000,5.35398230,0.00000000,0.00000000,3.75000000 +671,chr22,12205064,UNK,A,,G,,-1.00000000,,,,,,,49.37000000,61.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,0.76000000,0.00000000,,0.08219178,147.00000000,6.50442478,0.00000000,0.00000000,4.29000000 +672,chr22,12205136,UNK,A,,T,,-1.00000000,,,,,,,50.39000000,44.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-0.66000000,0.00000000,,0.08208955,134.00000000,5.92920354,0.00000000,0.00000000,4.89000000 +673,chr22,12205542,UNK,A,,G,,-1.00000000,,,,,,,55.73000000,33.00000000,ref,1.00000000,0.00000000,99.00000000,4.38053097,0.01010101,0.00000000,94.00000000,,0.75000000,0.00000000,,0.08333333,206.00000000,9.11504425,0.00970874,0.00000000,4.28000000 +674,chr22,12205558,UNK,G,,A,,-1.00000000,,,,,,,54.96000000,36.00000000,ref,1.00000000,0.00000000,100.00000000,4.42477876,0.01000000,0.00000000,93.00000000,,0.31000000,0.00000000,,0.07772021,195.00000000,8.62831858,0.01025641,0.00000000,4.24000000 +675,chr22,12205570,UNK,A,,G,,-1.00000000,,,,,,,54.08000000,41.00000000,ref,1.00000000,0.00000000,98.00000000,4.33628319,0.02040816,0.00000000,93.00000000,,1.31000000,0.00000000,,0.04519774,180.00000000,7.96460177,0.00555556,0.00000000,4.17000000 +676,chr22,12205671,UNK,G,,T,,-1.00000000,,,,,,,51.90000000,36.00000000,ref,1.00000000,0.01369863,73.00000000,3.23008850,0.00000000,0.00000000,73.00000000,,-0.81000000,0.00000000,,0.05333333,154.00000000,6.81415929,0.01948052,0.00000000,4.65000000 +677,chr22,12205707,UNK,A,,T,,-1.00000000,,,,,,,51.88000000,32.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,-0.07000000,0.00000000,,0.04347826,141.00000000,6.23893805,0.01418440,0.00000000,4.50000000 +678,chr22,12205808,UNK,A,,G,,-1.00000000,,,,,,,51.79000000,26.00000000,ref,1.00000000,0.01724138,59.00000000,2.61061947,0.00000000,0.00000000,66.00000000,,0.68000000,0.00000000,,0.05298013,157.00000000,6.94690265,0.00636943,0.00000000,4.33000000 +679,chr22,12205849,UNK,A,,T,,-1.00000000,,,,,,,52.61000000,27.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.03174603,0.00000000,77.00000000,,3.25000000,0.00000000,,0.11176471,173.00000000,7.65486726,0.01734104,0.00000000,4.07000000 +680,chr22,12205876,UNK,C,,T,,-1.00000000,,,,,,,53.37000000,28.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.00000000,0.00000000,80.00000000,,2.61000000,0.00000000,,0.08284024,174.00000000,7.69911504,0.02873563,0.00000000,4.58000000 +681,chr22,12205902,UNK,A,,C,,-1.00000000,,,,,,,53.80000000,31.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,2.44000000,0.00000000,,0.06626506,172.00000000,7.61061947,0.03488372,0.00000000,4.43000000 +682,chr22,12205931,UNK,T,,C,,-1.00000000,,,,,,,53.69000000,35.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.02500000,0.00000000,58.00000000,,1.57000000,0.00000000,,0.04848485,167.00000000,7.38938053,0.01197605,0.00000000,3.39000000 +683,chr22,12206342,UNK,T,,C,,-1.00000000,,,,,,,48.93000000,42.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,69.00000000,,-1.30000000,0.00000000,,0.05769231,105.00000000,4.64601770,0.00000000,0.00000000,4.45000000 +684,chr22,12206707,UNK,G,,T,,-1.00000000,,,,,,,46.30000000,70.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,,0.06000000,0.00000000,,0.06818182,88.00000000,3.89380531,0.00000000,0.00000000,4.54000000 +685,chr22,12206854,UNK,C,,T,,-1.00000000,,,,,,,48.59000000,53.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.62000000,0.00000000,,0.11818182,110.00000000,4.86725664,0.00000000,0.00000000,5.54000000 +686,chr22,12207014,UNK,G,,C,,-1.00000000,,,,,,,55.97000000,10.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,66.00000000,,2.33000000,0.00000000,,0.05555556,112.00000000,4.95575221,0.03571429,0.00000000,4.59000000 +687,chr22,12207315,UNK,G,,T,,-1.00000000,,,,,,,50.42000000,63.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.51000000,0.00000000,,0.12162162,148.00000000,6.54867257,0.00000000,0.00000000,4.51000000 +688,chr22,12208227,UNK,T,,C,,-1.00000000,,,,,,,53.78000000,52.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,90.00000000,,1.40000000,0.00000000,,0.18181818,166.00000000,7.34513274,0.00602410,0.00000000,4.42000000 +689,chr22,12208295,UNK,T,,C,,-1.00000000,,,,,,,55.04000000,47.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,85.00000000,,0.05000000,0.00000000,,0.15053763,188.00000000,8.31858407,0.01063830,0.00000000,4.46000000 +690,chr22,12208302,UNK,A,,C,,-1.00000000,,,,,,,54.86000000,48.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-1.07000000,0.00000000,,0.08333333,183.00000000,8.09734513,0.01639344,0.00000000,4.29000000 +691,chr22,12208311,UNK,T,,C,,-1.00000000,,,,,,,54.11000000,54.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.03225806,0.00000000,77.00000000,,-0.97000000,0.00000000,,0.06250000,178.00000000,7.87610619,0.01123596,0.00000000,3.88000000 +692,chr22,12209146,UNK,C,,T,,-1.00000000,,,,,,,42.51000000,83.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,58.00000000,,-0.69000000,0.00000000,,0.09230769,66.00000000,2.92035398,0.01515152,0.00000000,3.91000000 +693,chr22,12211088,UNK,G,,C,,-1.00000000,,,,,,,42.94000000,51.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.79000000,0.00000000,,0.10416667,48.00000000,2.12389381,0.00000000,0.00000000,4.87000000 +694,chr22,12211450,UNK,C,,T,,-1.00000000,,,,,,,40.99000000,69.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,0.84000000,0.00000000,,0.12000000,50.00000000,2.21238938,0.00000000,0.00000000,4.90000000 +695,chr22,12211638,UNK,G,,A,,-1.00000000,,,,,,,43.27000000,73.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-1.29000000,5.75000000,,0.11764706,68.00000000,3.00884956,0.00000000,0.00000000,4.69000000 +696,chr22,12212313,UNK,A,,C,,-1.00000000,,,,,,,41.79000000,84.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,2.66000000,0.00000000,,0.10714286,58.00000000,2.56637168,0.03448276,0.00000000,4.56000000 +697,chr22,12212646,UNK,T,,A,,-1.00000000,,,,,,,45.23000000,62.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,58.00000000,,-0.84000000,0.00000000,,0.06666667,76.00000000,3.36283186,0.01315789,0.00000000,3.54000000 +698,chr22,12212707,UNK,G,,T,,-1.00000000,,,,,,,40.54000000,76.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,1.38000000,0.00000000,,0.12307692,66.00000000,2.92035398,0.01515152,0.00000000,4.86000000 +699,chr22,12277136,UNK,T,,A,,-1.00000000,,,,,,,27.87000000,78.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,0.87000000,0.25000000,,0.11111111,45.00000000,1.99115044,0.00000000,0.00000000,4.01000000 +700,chr22,12278260,UNK,T,,C,,-1.00000000,,,,,,,48.20000000,30.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,,0.00000000,0.00000000,,0.20895522,68.00000000,3.00884956,0.01470588,0.00000000,5.95000000 +701,chr22,12280181,UNK,G,,A,,-1.00000000,,,,,,,43.99000000,79.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,0.06000000,0.00000000,,0.13513514,75.00000000,3.31858407,0.01333333,0.00000000,5.09000000 +702,chr22,12283107,UNK,C,,T,,-1.00000000,,,,,,,32.33000000,60.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.41000000,0.00000000,,0.10000000,40.00000000,1.76991150,0.00000000,0.00000000,2.78000000 +703,chr22,12284831,UNK,T,,C,,-1.00000000,,,,,,,37.29000000,87.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,-0.80000000,0.00000000,,0.08139535,87.00000000,3.84955752,0.01149425,0.00000000,5.21000000 +704,chr22,12284976,UNK,T,,C,,-1.00000000,,,,,,,31.71000000,136.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,67.00000000,,-1.39000000,0.00000000,,0.17187500,64.00000000,2.83185841,0.00000000,0.00000000,6.30000000 +705,chr22,12292584,UNK,C,,T,,-1.00000000,,,,,,,31.29000000,102.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,,-0.11000000,0.00000000,,0.20000000,90.00000000,3.98230088,0.00000000,0.00000000,6.35000000 +706,chr22,12292687,UNK,C,,T,,-1.00000000,,,,,,,31.80000000,85.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,60.00000000,,2.60000000,5.10000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,3.39000000 +707,chr22,12295546,UNK,A,,G,,-1.00000000,,,,,,,33.70000000,99.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,1.28000000,2.56000000,,0.08163265,98.00000000,4.33628319,0.00000000,0.00000000,3.80000000 +708,chr22,12295691,UNK,G,,A,,-1.00000000,,,,,,,33.74000000,196.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.88000000,0.00000000,,0.04424779,115.00000000,5.08849558,0.00869565,0.00000000,4.96000000 +709,chr22,12296536,UNK,T,,A,,-1.00000000,,,,,,,23.34000000,59.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.00000000,0.00000000,14.00000000,,-1.40000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.07000000 +710,chr22,12296556,UNK,A,,G,,-1.00000000,,,,,,,23.11000000,63.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,11.00000000,,-0.35000000,0.00000000,,0.31578947,20.00000000,0.88495575,0.05000000,0.00000000,3.12000000 +711,chr22,12298910,UNK,G,,A,,-1.00000000,,,,,,,37.54000000,86.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,0.21000000,0.00000000,,0.26000000,50.00000000,2.21238938,0.00000000,0.00000000,6.53000000 +712,chr22,12305180,UNK,C,,T,,-1.00000000,,,,,,,26.48000000,109.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,-0.51000000,0.00000000,,0.18604651,43.00000000,1.90265487,0.00000000,0.00000000,6.93000000 +713,chr22,12306073,UNK,C,,A,,-1.00000000,,,,,,,24.03000000,300.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,1.79000000,0.00000000,,0.07843137,103.00000000,4.55752212,0.00000000,0.00000000,4.62000000 +714,chr22,12306248,UNK,A,,T,,-1.00000000,,,,,,,32.57000000,202.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,60.00000000,,1.32000000,0.00000000,,0.05172414,175.00000000,7.74336283,0.00571429,0.00000000,4.27000000 +715,chr22,12306747,UNK,G,,A,,-1.00000000,,,,,,,28.01000000,179.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,,1.56000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,4.57000000 +716,chr22,12307205,UNK,A,,C,,-1.00000000,,,,,,,41.56000000,28.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-2.28000000,0.00000000,,0.05208333,96.00000000,4.24778761,0.00000000,0.00000000,4.52000000 +717,chr22,12308066,UNK,G,,A,,-1.00000000,,,,,,,33.00000000,337.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,68.00000000,,2.11000000,0.00000000,,0.09756098,130.00000000,5.75221239,0.04615385,0.00000000,4.27000000 +718,chr22,12309147,UNK,G,,A,,-1.00000000,,,,,,,37.31000000,119.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-1.24000000,0.00000000,,0.07894737,114.00000000,5.04424779,0.00000000,0.00000000,5.30000000 +719,chr22,12310378,UNK,A,,G,,-1.00000000,,,,,,,27.36000000,138.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,62.00000000,,-1.91000000,0.37000000,,0.07216495,98.00000000,4.33628319,0.00000000,0.00000000,4.01000000 +720,chr22,12312420,UNK,C,,T,,-1.00000000,,,,,,,27.39000000,212.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.13000000,0.00000000,,0.12371134,98.00000000,4.33628319,0.01020408,0.00000000,5.30000000 +721,chr22,12313607,UNK,T,,C,,-1.00000000,,,,,,,30.14000000,125.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-0.37000000,0.00000000,,0.07317073,82.00000000,3.62831858,0.00000000,0.00000000,5.47000000 +722,chr22,12322090,UNK,G,,C,,-1.00000000,,,,,,,29.15000000,210.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,1.01000000,0.00000000,,0.17142857,70.00000000,3.09734513,0.00000000,0.00000000,6.02000000 +723,chr22,12322467,UNK,G,,A,,-1.00000000,,,,,,,34.39000000,97.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.45000000,0.00000000,,0.07058824,87.00000000,3.84955752,0.02298851,0.00000000,4.00000000 +724,chr22,12328231,UNK,T,,C,,-1.00000000,,,,,,,31.79000000,134.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,61.00000000,,-0.77000000,1.73000000,,0.07500000,85.00000000,3.76106195,0.05882353,0.00000000,3.23000000 +725,chr22,12333729,UNK,C,,A,,-1.00000000,,,,,,,37.46000000,41.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,,0.12000000,0.00000000,,0.18032787,61.00000000,2.69911504,0.00000000,0.00000000,4.59000000 +726,chr22,12338443,UNK,A,,G,,-1.00000000,,,,,,,24.97000000,120.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-1.14000000,0.00000000,,0.11111111,46.00000000,2.03539823,0.02173913,0.00000000,2.81000000 +727,chr22,12340011,UNK,C,,A,,-1.00000000,,,,,,,44.62000000,57.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.66000000,0.00000000,,0.13194444,144.00000000,6.37168142,0.00000000,0.00000000,4.99000000 +728,chr22,12340069,UNK,C,,T,,-1.00000000,,,,,,,38.65000000,84.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.02000000,0.00000000,,0.07826087,115.00000000,5.08849558,0.00000000,0.00000000,4.53000000 +729,chr22,12340339,UNK,G,,C,,-1.00000000,,,,,,,35.07000000,75.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,0.34000000,2.57000000,,0.07500000,80.00000000,3.53982301,0.00000000,0.00000000,3.49000000 +730,chr22,12340468,UNK,C,,A,,-1.00000000,,,,,,,35.38000000,68.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.29000000,0.00000000,,0.07594937,79.00000000,3.49557522,0.00000000,0.00000000,4.05000000 +731,chr22,12340807,UNK,G,,A,,-1.00000000,,,,,,,40.28000000,116.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.93000000,0.00000000,,0.08080808,101.00000000,4.46902655,0.01980198,0.00000000,5.00000000 +732,chr22,12340829,UNK,C,,A,,-1.00000000,,,,,,,41.15000000,99.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.00000000,0.00000000,,0.09090909,99.00000000,4.38053097,0.00000000,0.00000000,5.20000000 +733,chr22,12341604,UNK,A,,G,,-1.00000000,,,,,,,43.33000000,62.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,0.64000000,0.00000000,,0.13432836,67.00000000,2.96460177,0.00000000,0.00000000,5.04000000 +734,chr22,12342025,UNK,G,,A,,-1.00000000,,,,,,,39.23000000,63.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,61.00000000,,0.92000000,0.00000000,,0.26190476,44.00000000,1.94690265,0.04545455,0.00000000,6.38000000 +735,chr22,12343593,UNK,G,,A,,-1.00000000,,,,,,,37.94000000,93.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.12000000,0.00000000,,0.08474576,60.00000000,2.65486726,0.01666667,0.00000000,4.03000000 +736,chr22,12346825,UNK,C,,A,,-1.00000000,,,,,,,44.77000000,42.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.70000000,0.00000000,,0.10112360,90.00000000,3.98230088,0.01111111,0.00000000,5.36000000 +737,chr22,12350088,UNK,C,,T,,-1.00000000,,,,,,,43.11000000,155.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-1.28000000,0.00000000,,0.07526882,189.00000000,8.36283186,0.01058201,0.00000000,4.77000000 +738,chr22,12350098,UNK,A,,C,,-1.00000000,,,,,,,42.88000000,147.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.90000000,0.00000000,,0.04188482,193.00000000,8.53982301,0.00518135,0.00000000,4.65000000 +739,chr22,12351530,UNK,A,,T,,-1.00000000,,,,,,,30.27000000,180.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,61.00000000,,1.42000000,12.16000000,,0.07407407,82.00000000,3.62831858,0.01219512,0.00000000,3.91000000 +740,chr22,12352788,UNK,C,,T,,-1.00000000,,,,,,,39.61000000,69.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-1.25000000,0.00000000,,0.04861111,145.00000000,6.41592920,0.00689655,0.00000000,4.24000000 +741,chr22,12354322,UNK,G,,A,,-1.00000000,,,,,,,30.94000000,155.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,0.01000000,0.00000000,,0.06870229,131.00000000,5.79646018,0.00000000,0.00000000,4.75000000 +742,chr22,12355061,UNK,G,,T,,-1.00000000,,,,,,,33.65000000,111.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,68.00000000,,0.02000000,0.00000000,,0.07627119,118.00000000,5.22123894,0.00000000,0.00000000,4.96000000 +743,chr22,12355795,UNK,T,,C,,-1.00000000,,,,,,,37.05000000,206.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-0.85000000,0.00000000,,0.06060606,132.00000000,5.84070796,0.00000000,0.00000000,4.78000000 +744,chr22,12355910,UNK,G,,C,,-1.00000000,,,,,,,46.22000000,102.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,1.06000000,0.00000000,,0.04060914,197.00000000,8.71681416,0.00000000,0.00000000,4.40000000 +745,chr22,12356181,UNK,G,,T,,-1.00000000,,,,,,,28.96000000,204.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.44000000,0.00000000,,0.09876543,82.00000000,3.62831858,0.01219512,0.00000000,4.97000000 +746,chr22,12356352,UNK,G,,C,,-1.00000000,,,,,,,32.40000000,111.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,65.00000000,,0.76000000,0.00000000,,0.11702128,94.00000000,4.15929204,0.00000000,0.00000000,4.79000000 +747,chr22,12359727,UNK,A,,G,,-1.00000000,,,,,,,36.87000000,55.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.04000000,0.00000000,71.00000000,,0.89000000,0.00000000,,0.04895105,144.00000000,6.37168142,0.00694444,0.00000000,4.27000000 +748,chr22,12361548,UNK,A,,G,,-1.00000000,,,,,,,33.44000000,63.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.19000000,0.00000000,,0.06382979,95.00000000,4.20353982,0.01052632,0.00000000,5.34000000 +749,chr22,12362651,UNK,T,,A,,-1.00000000,,,,,,,50.41000000,70.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,-0.17000000,5.93000000,,0.06451613,125.00000000,5.53097345,0.00800000,0.00000000,3.56000000 +750,chr22,12362706,UNK,C,,A,,-1.00000000,,,,,,,46.43000000,77.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.02000000,3.99000000,,0.07954545,89.00000000,3.93805310,0.01123596,0.00000000,4.27000000 +751,chr22,12362736,UNK,A,,T,,-1.00000000,,,,,,,40.39000000,94.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,58.00000000,,-0.18000000,4.20000000,,0.06578947,76.00000000,3.36283186,0.00000000,0.00000000,3.41000000 +752,chr22,12365721,UNK,G,,A,,-1.00000000,,,,,,,40.80000000,79.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.48000000,0.00000000,,0.10169492,59.00000000,2.61061947,0.00000000,0.00000000,2.79000000 +753,chr22,12368831,UNK,A,,G,,-1.00000000,,,,,,,30.24000000,191.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,,1.67000000,0.00000000,,0.12087912,95.00000000,4.20353982,0.03157895,0.00000000,4.77000000 +754,chr22,12368887,UNK,G,,A,,-1.00000000,,,,,,,34.20000000,187.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.02000000,0.00000000,,0.04800000,125.00000000,5.53097345,0.00000000,0.00000000,5.30000000 +755,chr22,12370288,UNK,G,,A,,-1.00000000,,,,,,,40.21000000,167.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,64.00000000,,0.66000000,0.00000000,,0.14035088,121.00000000,5.35398230,0.05785124,0.06201550,4.71000000 +756,chr22,12370521,UNK,T,,G,,-1.00000000,,,,,,,58.36000000,4.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,57.00000000,,0.03000000,0.00000000,,0.06451613,64.00000000,2.83185841,0.03125000,0.00000000,3.14000000 +757,chr22,12370581,UNK,T,,C,,-1.00000000,,,,,,,57.81000000,7.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-0.15000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.77000000 +758,chr22,12370642,UNK,C,,T,,-1.00000000,,,,,,,58.69000000,5.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.38000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,4.88000000 +759,chr22,12370649,UNK,T,,A,,-1.00000000,,,,,,,58.53000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,59.00000000,,0.66000000,0.00000000,,0.10465116,88.00000000,3.89380531,0.01136364,0.00000000,3.81000000 +760,chr22,12370677,UNK,C,,T,,-1.00000000,,,,,,,55.17000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,63.00000000,,-2.00000000,0.00000000,,0.24096386,93.00000000,4.11504425,0.10752688,0.00000000,5.77000000 +761,chr22,12370713,UNK,T,,G,,-1.00000000,,,,,,,57.12000000,14.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.55102041,0.00000000,58.00000000,,0.99000000,0.00000000,,0.07865169,144.00000000,6.37168142,0.37500000,0.00000000,3.53000000 +762,chr22,12370797,UNK,C,,T,,-1.00000000,,,,,,,52.97000000,71.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.43000000,0.00000000,,0.05445545,203.00000000,8.98230088,0.00492611,0.00000000,4.43000000 +763,chr22,12372131,UNK,G,,A,,-1.00000000,,,,,,,40.24000000,87.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,0.14000000,0.00000000,,0.05333333,150.00000000,6.63716814,0.00000000,0.00000000,4.66000000 +764,chr22,12373646,UNK,C,,T,,-1.00000000,,,,,,,31.23000000,194.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.73000000,0.00000000,,0.06481481,109.00000000,4.82300885,0.00917431,0.00000000,4.72000000 +765,chr22,12374311,UNK,C,,T,,-1.00000000,,,,,,,37.94000000,134.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,0.49000000,0.00000000,,0.07291667,97.00000000,4.29203540,0.01030928,0.00000000,4.70000000 +766,chr22,12375197,UNK,A,,T,,-1.00000000,,,,,,,55.38000000,24.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,74.00000000,,0.91000000,0.00000000,,0.13043478,116.00000000,5.13274336,0.00862069,0.00000000,4.51000000 +767,chr22,12376032,UNK,C,,T,,-1.00000000,,,,,,,45.38000000,77.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,0.06000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.77000000 +768,chr22,12376204,UNK,G,,C,,-1.00000000,,,,,,,49.08000000,45.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.13000000,0.00000000,,0.07352941,68.00000000,3.00884956,0.00000000,0.00000000,4.02000000 +769,chr22,12380460,UNK,T,,C,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.01724138,0.00000000,80.00000000,,0.85000000,0.00000000,,0.15333333,151.00000000,6.68141593,0.00662252,0.00000000,4.73000000 +770,chr22,12381843,UNK,G,,T,,-1.00000000,,,,,,,54.68000000,29.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.04347826,0.00000000,69.00000000,,-0.07000000,0.00000000,,0.07526882,94.00000000,4.15929204,0.01063830,0.00000000,4.62000000 +771,chr22,12383779,UNK,C,,G,,-1.00000000,,,,,,,55.28000000,23.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,75.00000000,,0.71000000,0.00000000,,0.16260163,124.00000000,5.48672566,0.00806452,0.00000000,4.66000000 +772,chr22,12384568,UNK,C,,T,,-1.00000000,,,,,,,58.74000000,8.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,72.00000000,,0.16000000,0.00000000,,0.13669065,140.00000000,6.19469027,0.00000000,0.00000000,5.01000000 +773,chr22,12385317,UNK,A,,C,,-1.00000000,,,,,,,54.91000000,26.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.58000000,0.00000000,,0.12121212,132.00000000,5.84070796,0.00000000,0.00000000,4.64000000 +774,chr22,12386609,UNK,A,,C,,-1.00000000,,,,,,,50.71000000,64.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.11000000,0.00000000,,0.09917355,121.00000000,5.35398230,0.00000000,0.00000000,5.28000000 +775,chr22,12390133,UNK,G,,T,,-1.00000000,,,,,,,51.51000000,46.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,72.00000000,,0.25000000,0.00000000,,0.16304348,92.00000000,4.07079646,0.00000000,0.00000000,5.27000000 +776,chr22,12390378,UNK,A,,T,,-1.00000000,,,,,,,46.13000000,110.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-0.73000000,0.00000000,,0.08333333,121.00000000,5.35398230,0.00826446,0.00000000,5.39000000 +777,chr22,12391530,UNK,A,,G,,-1.00000000,,,,,,,58.08000000,12.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,,0.12000000,0.00000000,,0.13669065,139.00000000,6.15044248,0.00000000,0.00000000,5.32000000 +778,chr22,12393826,UNK,A,,G,,-1.00000000,,,,,,,59.54000000,3.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,74.00000000,,2.05000000,0.00000000,,0.10948905,138.00000000,6.10619469,0.00000000,0.00000000,4.60000000 +779,chr22,12395998,UNK,C,,T,,-1.00000000,,,,,,,57.69000000,16.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.01538462,0.00000000,80.00000000,,0.17000000,0.00000000,,0.14285714,135.00000000,5.97345133,0.01481481,0.00000000,4.48000000 +780,chr22,12397047,UNK,C,,A,,-1.00000000,,,,,,,57.40000000,18.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,72.00000000,,-1.17000000,0.00000000,,0.09420290,139.00000000,6.15044248,0.00719424,0.00000000,4.82000000 +781,chr22,12397500,UNK,A,,G,,-1.00000000,,,,,,,59.05000000,4.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,69.00000000,,-0.96000000,0.00000000,,0.10344828,148.00000000,6.54867257,0.02027027,0.00000000,4.64000000 +782,chr22,12398822,UNK,G,,A,,-1.00000000,,,,,,,55.28000000,20.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.19000000,0.00000000,,0.07692308,131.00000000,5.79646018,0.00000000,0.00000000,4.94000000 +783,chr22,12399124,UNK,G,,T,,-1.00000000,,,,,,,53.55000000,20.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,,-0.28000000,0.00000000,,0.08333333,121.00000000,5.35398230,0.00826446,0.00000000,4.97000000 +784,chr22,12399358,UNK,G,,A,,-1.00000000,,,,,,,54.42000000,37.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-0.77000000,0.00000000,,0.08661417,128.00000000,5.66371681,0.00781250,0.00000000,4.56000000 +785,chr22,12402171,UNK,G,,A,,-1.00000000,,,,,,,57.45000000,19.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,1.40000000,0.00000000,,0.11801242,161.00000000,7.12389381,0.00000000,0.00000000,4.60000000 +786,chr22,12402289,UNK,G,,A,,-1.00000000,,,,,,,58.18000000,13.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,-0.47000000,0.00000000,,0.09090909,155.00000000,6.85840708,0.00645161,0.00000000,4.55000000 +787,chr22,12402402,UNK,G,,A,,-1.00000000,,,,,,,56.34000000,26.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.01785714,0.00000000,74.00000000,,-0.28000000,0.00000000,,0.08275862,145.00000000,6.41592920,0.00000000,0.00000000,4.66000000 +788,chr22,12403160,UNK,G,,T,,-1.00000000,,,,,,,52.19000000,58.00000000,ref,1.00000000,0.01851852,55.00000000,2.43362832,0.01818182,0.00000000,70.00000000,,1.81000000,0.00000000,,0.08870968,127.00000000,5.61946903,0.02362205,0.00000000,4.21000000 +789,chr22,12403453,UNK,G,,T,,-1.00000000,,,,,,,55.40000000,32.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,70.00000000,,0.64000000,0.00000000,,0.09923664,135.00000000,5.97345133,0.02962963,0.00000000,4.24000000 +790,chr22,12404045,UNK,G,,A,,-1.00000000,,,,,,,54.55000000,42.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.01666667,0.00000000,76.00000000,,1.78000000,0.00000000,,0.10294118,137.00000000,6.06194690,0.00729927,0.00000000,4.19000000 +791,chr22,12407643,UNK,G,,A,,-1.00000000,,,,,,,57.99000000,13.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,67.00000000,,0.75000000,0.00000000,,0.12328767,147.00000000,6.50442478,0.00680272,0.00000000,4.58000000 +792,chr22,12408343,UNK,C,,T,,-1.00000000,,,,,,,55.52000000,26.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,72.00000000,,0.47000000,0.00000000,,0.07017544,116.00000000,5.13274336,0.01724138,0.00000000,4.26000000 +793,chr22,12410475,UNK,A,,T,,-1.00000000,,,,,,,56.99000000,19.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,82.00000000,,-1.21000000,0.00000000,,0.16911765,136.00000000,6.01769912,0.00000000,0.00000000,5.66000000 +794,chr22,12413560,UNK,C,,T,,-1.00000000,,,,,,,47.59000000,55.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,0.10000000,0.00000000,,0.14285714,100.00000000,4.42477876,0.01000000,0.00000000,5.65000000 +795,chr22,12421917,UNK,T,,C,,-1.00000000,,,,,,,54.91000000,26.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,74.00000000,,-1.83000000,0.00000000,,0.13392857,116.00000000,5.13274336,0.01724138,0.00000000,4.94000000 +796,chr22,12421942,UNK,T,,C,,-1.00000000,,,,,,,55.14000000,28.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.01818182,0.00000000,74.00000000,,-1.84000000,0.00000000,,0.11475410,131.00000000,5.79646018,0.06870229,0.00000000,4.08000000 +797,chr22,12422463,UNK,G,,A,,-1.00000000,,,,,,,56.59000000,28.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,72.00000000,,1.37000000,0.00000000,,0.05917160,171.00000000,7.56637168,0.01169591,0.00000000,4.31000000 +798,chr22,12422685,UNK,G,,A,,-1.00000000,,,,,,,58.08000000,11.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,69.00000000,,-0.03000000,0.00000000,,0.14388489,140.00000000,6.19469027,0.00714286,0.00000000,5.42000000 +799,chr22,12426285,UNK,G,,A,,-1.00000000,,,,,,,49.59000000,71.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,75.00000000,,-0.18000000,0.00000000,,0.16528926,121.00000000,5.35398230,0.00000000,0.00000000,6.16000000 +800,chr22,12430644,UNK,C,,T,,-1.00000000,,,,,,,36.31000000,193.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.46000000,10.46000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,4.00000000 +801,chr22,12430687,UNK,C,,T,,-1.00000000,,,,,,,38.99000000,148.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,59.00000000,,1.43000000,10.54000000,,0.07142857,85.00000000,3.76106195,0.01176471,0.00000000,3.56000000 +802,chr22,12430888,UNK,G,,T,,-1.00000000,,,,,,,45.16000000,87.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,,-0.51000000,0.00000000,,0.13953488,129.00000000,5.70796460,0.00000000,0.00000000,6.20000000 +803,chr22,12432207,UNK,C,,T,,-1.00000000,,,,,,,51.33000000,32.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,,-0.80000000,0.00000000,,0.10000000,74.00000000,3.27433628,0.02702703,0.00000000,5.13000000 +804,chr22,12435678,UNK,C,,A,,-1.00000000,,,,,,,57.65000000,11.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,73.00000000,,0.90000000,0.00000000,,0.15833333,122.00000000,5.39823009,0.01639344,0.00000000,4.76000000 +805,chr22,12436475,UNK,G,,T,,-1.00000000,,,,,,,53.92000000,40.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,-0.68000000,0.00000000,,0.09523810,126.00000000,5.57522124,0.00000000,0.00000000,4.80000000 +806,chr22,12489382,UNK,T,,A,,-1.00000000,,,,,,,55.88000000,31.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.00943396,0.00000000,97.00000000,,-0.89000000,0.00000000,,0.04411765,276.00000000,12.21238938,0.01086957,0.00000000,4.32000000 +807,chr22,12489597,UNK,G,,A,,-1.00000000,,,,,,,56.92000000,25.00000000,ref,1.00000000,0.01030928,98.00000000,4.33628319,0.01020408,0.00000000,90.00000000,,-1.59000000,0.00000000,,0.03448276,261.00000000,11.54867257,0.00000000,0.00000000,4.78000000 +808,chr22,12490220,UNK,G,,A,,-1.00000000,,,,,,,55.79000000,31.00000000,ref,1.00000000,0.00917431,110.00000000,4.86725664,0.00909091,0.00000000,95.00000000,,-1.32000000,15.74000000,,0.03611111,362.00000000,16.01769912,0.00552486,0.00000000,3.13000000 +809,chr22,12490526,UNK,G,,T,,-1.00000000,,,,,,,40.74000000,105.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.00000000,0.00000000,75.00000000,,-1.61000000,0.00000000,,0.05161290,157.00000000,6.94690265,0.01273885,0.00000000,4.77000000 +810,chr22,12490937,UNK,A,,T,,-1.00000000,,,,,,,35.78000000,134.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.43000000,0.00000000,,0.05035971,140.00000000,6.19469027,0.00714286,0.00000000,4.37000000 +811,chr22,12493532,UNK,G,,T,,-1.00000000,,,,,,,28.63000000,128.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,31.00000000,,-0.03000000,0.00000000,,0.32432432,39.00000000,1.72566372,0.05128205,0.00000000,3.60000000 +812,chr22,12500203,UNK,A,,T,,-1.00000000,,,,,,,33.78000000,123.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,2.63000000,0.00000000,,0.07228916,83.00000000,3.67256637,0.00000000,0.00000000,4.64000000 +813,chr22,12504312,UNK,G,,A,,-1.00000000,,,,,,,29.47000000,110.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.31000000,0.00000000,,0.07500000,85.00000000,3.76106195,0.05882353,0.00000000,4.77000000 +814,chr22,12504818,UNK,C,,T,,-1.00000000,,,,,,,52.78000000,111.00000000,ref,1.00000000,0.00000000,106.00000000,4.69026549,0.02830189,0.00000000,96.00000000,,0.98000000,0.00000000,,0.08928571,289.00000000,12.78761062,0.03114187,0.00000000,4.06000000 +815,chr22,12504863,UNK,T,,C,,-1.00000000,,,,,,,55.00000000,77.00000000,ref,1.00000000,0.00917431,112.00000000,4.95575221,0.02678571,0.00000000,89.00000000,,-1.43000000,0.00000000,,0.03300330,305.00000000,13.49557522,0.00327869,0.00000000,4.22000000 +816,chr22,12504897,UNK,G,,A,,-1.00000000,,,,,,,54.41000000,49.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.01041667,0.00000000,93.00000000,,-0.46000000,0.00000000,,0.07037037,270.00000000,11.94690265,0.00000000,0.00000000,4.52000000 +817,chr22,12504900,UNK,T,,A,,-1.00000000,,,,,,,54.44000000,46.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.01063830,0.00000000,92.00000000,,-0.09000000,0.00000000,,0.04942966,265.00000000,11.72566372,0.00000000,0.00000000,4.65000000 +818,chr22,12504954,UNK,A,,G,,-1.00000000,,,,,,,46.88000000,57.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.01694915,0.00000000,75.00000000,,1.13000000,0.00000000,,0.04395604,183.00000000,8.09734513,0.00546448,0.00000000,4.17000000 +819,chr22,12505017,UNK,A,,G,,-1.00000000,,,,,,,40.14000000,75.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,-0.25000000,2.78000000,,0.05303030,133.00000000,5.88495575,0.00751880,0.00000000,3.76000000 +820,chr22,12511494,UNK,A,,G,,-1.00000000,,,,,,,40.05000000,74.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.71000000,0.00000000,,0.08441558,156.00000000,6.90265487,0.00641026,0.00000000,4.60000000 +821,chr22,12513412,UNK,T,,C,,-1.00000000,,,,,,,38.81000000,117.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.48000000,0.00000000,,0.10000000,90.00000000,3.98230088,0.00000000,0.00000000,5.01000000 +822,chr22,12516877,UNK,G,,T,,-1.00000000,,,,,,,51.49000000,33.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.55000000,0.00000000,,0.05263158,115.00000000,5.08849558,0.00869565,0.00000000,4.57000000 +823,chr22,12517082,UNK,G,,A,,-1.00000000,,,,,,,42.14000000,66.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,1.04000000,0.00000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,4.90000000 +824,chr22,12517287,UNK,G,,T,,-1.00000000,,,,,,,43.12000000,50.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.99000000,0.00000000,,0.06329114,79.00000000,3.49557522,0.00000000,0.00000000,5.12000000 +825,chr22,12517449,UNK,A,,C,,-1.00000000,,,,,,,42.81000000,59.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.27000000,0.00000000,,0.07526882,95.00000000,4.20353982,0.01052632,0.00000000,5.10000000 +826,chr22,12517721,UNK,A,,G,,-1.00000000,,,,,,,39.45000000,24.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,,0.23000000,0.00000000,,0.14814815,82.00000000,3.62831858,0.01219512,0.00000000,5.49000000 +827,chr22,12517730,UNK,T,,G,,-1.00000000,,,,,,,39.19000000,27.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.72000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.08000000 +828,chr22,12518173,UNK,T,,C,,-1.00000000,,,,,,,38.02000000,56.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,0.05000000,0.00000000,,0.09900990,101.00000000,4.46902655,0.00000000,0.00000000,4.20000000 +829,chr22,12518407,UNK,T,,C,,-1.00000000,,,,,,,28.24000000,63.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.12000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,2.76000000 +830,chr22,12518614,UNK,A,,G,,-1.00000000,,,,,,,42.44000000,47.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.40000000,0.00000000,,0.04800000,125.00000000,5.53097345,0.00000000,0.00000000,5.34000000 +831,chr22,12518620,UNK,C,,T,,-1.00000000,,,,,,,42.75000000,46.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-1.20000000,0.00000000,,0.04687500,128.00000000,5.66371681,0.00000000,0.00000000,5.31000000 +832,chr22,12518637,UNK,T,,A,,-1.00000000,,,,,,,42.06000000,44.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-1.43000000,0.00000000,,0.05833333,120.00000000,5.30973451,0.00000000,0.00000000,5.41000000 +833,chr22,12518690,UNK,T,,C,,-1.00000000,,,,,,,37.56000000,52.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.98000000,0.00000000,,0.08433735,84.00000000,3.71681416,0.01190476,0.00000000,4.79000000 +834,chr22,12521874,UNK,T,,C,,-1.00000000,,,,,,,54.58000000,30.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.54000000,0.00000000,,0.05217391,116.00000000,5.13274336,0.00000000,0.00000000,4.73000000 +835,chr22,12521952,UNK,A,,G,,-1.00000000,,,,,,,52.52000000,28.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-1.39000000,0.00000000,,0.05504587,109.00000000,4.82300885,0.00000000,0.00000000,5.27000000 +836,chr22,12521976,UNK,C,,G,,-1.00000000,,,,,,,51.30000000,31.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.95000000,0.00000000,,0.05042017,121.00000000,5.35398230,0.00000000,0.00000000,5.32000000 +837,chr22,12525241,UNK,G,,T,,-1.00000000,,,,,,,44.45000000,45.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,62.00000000,,-0.79000000,0.00000000,,0.04761905,105.00000000,4.64601770,0.00000000,0.00000000,5.11000000 +838,chr22,12528393,UNK,A,,C,,-1.00000000,,,,,,,27.79000000,144.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-0.62000000,0.00000000,,0.07017544,116.00000000,5.13274336,0.01724138,0.00000000,4.95000000 +839,chr22,12541173,UNK,G,,C,,-1.00000000,,,,,,,40.76000000,71.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,1.05000000,0.00000000,,0.04878049,123.00000000,5.44247788,0.00000000,0.00000000,4.68000000 +840,chr22,12541845,UNK,C,,T,,-1.00000000,,,,,,,29.67000000,77.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,0.56000000,0.00000000,,0.07142857,71.00000000,3.14159292,0.01408451,0.00000000,3.94000000 +841,chr22,12549084,UNK,A,,G,,-1.00000000,,,,,,,45.63000000,98.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,77.00000000,,0.47000000,0.00000000,,0.03636364,166.00000000,7.34513274,0.00602410,0.00000000,4.41000000 +842,chr22,12553544,UNK,G,,T,,-1.00000000,,,,,,,38.38000000,103.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,,0.24000000,0.00000000,,0.08045977,178.00000000,7.87610619,0.01685393,0.00000000,4.39000000 +843,chr22,12553958,UNK,C,,T,,-1.00000000,,,,,,,33.36000000,190.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,69.00000000,,0.38000000,0.00000000,,0.09027778,144.00000000,6.37168142,0.00000000,0.00000000,4.64000000 +844,chr22,12554078,UNK,G,,A,,-1.00000000,,,,,,,33.42000000,139.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.05000000,0.00000000,,0.04724409,127.00000000,5.61946903,0.00000000,0.00000000,5.53000000 +845,chr22,12556752,UNK,C,,G,,-1.00000000,,,,,,,48.70000000,29.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,2.12000000,0.00000000,,0.09836066,65.00000000,2.87610619,0.04615385,0.02985075,2.90000000 +846,chr22,12557578,UNK,T,,G,,-1.00000000,,,,,,,43.49000000,104.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,64.00000000,,1.25000000,4.08000000,,0.04494382,179.00000000,7.92035398,0.00558659,0.00000000,3.72000000 +847,chr22,12557627,UNK,T,,C,,-1.00000000,,,,,,,42.29000000,182.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-2.19000000,0.00000000,,0.05235602,192.00000000,8.49557522,0.00520833,0.00000000,4.65000000 +848,chr22,12568012,UNK,G,,T,,-1.00000000,,,,,,,46.35000000,50.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,1.43000000,0.00000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,4.46000000 +849,chr22,12568014,UNK,T,,G,,-1.00000000,,,,,,,46.45000000,49.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,1.47000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,4.46000000 +850,chr22,12569057,UNK,C,,A,,-1.00000000,,,,,,,35.43000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,,-0.07000000,0.00000000,,0.10204082,51.00000000,2.25663717,0.03921569,0.00000000,2.79000000 +851,chr22,12569058,UNK,A,,C,,-1.00000000,,,,,,,35.30000000,43.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,56.00000000,,0.10000000,0.00000000,,0.10638298,49.00000000,2.16814159,0.04081633,0.00000000,2.85000000 +852,chr22,12583254,UNK,T,,G,,-1.00000000,,,,,,,40.21000000,80.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,60.00000000,,-0.62000000,2.47000000,,0.06779661,62.00000000,2.74336283,0.03225806,0.00000000,3.37000000 +853,chr22,12583268,UNK,C,,T,,-1.00000000,,,,,,,42.79000000,69.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,64.00000000,,-0.16000000,0.56000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,4.06000000 +854,chr22,12585264,UNK,G,,A,,-1.00000000,,,,,,,24.82000000,196.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-0.31000000,0.54000000,,0.12500000,49.00000000,2.16814159,0.02040816,0.00000000,3.68000000 +855,chr22,12585296,UNK,T,,C,,-1.00000000,,,,,,,24.88000000,210.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,2.16000000,0.00000000,,0.12000000,54.00000000,2.38938053,0.05555556,0.00000000,2.95000000 +856,chr22,12588144,UNK,T,,C,,-1.00000000,,,,,,,34.17000000,82.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.22000000,4.39000000,,0.10112360,89.00000000,3.93805310,0.00000000,0.00000000,4.38000000 +857,chr22,12588361,UNK,A,,T,,-1.00000000,,,,,,,27.41000000,107.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,1.44000000,0.00000000,,0.16000000,52.00000000,2.30088496,0.03846154,0.00000000,2.77000000 +858,chr22,12588371,UNK,C,,T,,-1.00000000,,,,,,,29.18000000,104.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,61.00000000,,1.78000000,0.00000000,,0.14285714,58.00000000,2.56637168,0.03448276,0.00000000,4.50000000 +859,chr22,12590483,UNK,A,,T,,-1.00000000,,,,,,,56.01000000,31.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.05000000,0.00000000,,0.06060606,168.00000000,7.43362832,0.01190476,0.00000000,4.31000000 +860,chr22,12590906,UNK,C,,G,,-1.00000000,,,,,,,57.66000000,14.00000000,ref,1.00000000,0.00000000,67.00000000,2.96460177,0.01492537,0.00000000,79.00000000,,-0.24000000,0.00000000,,0.06666667,155.00000000,6.85840708,0.02580645,0.00000000,4.19000000 +861,chr22,12593609,UNK,A,,T,,-1.00000000,,,,,,,47.15000000,164.00000000,ref,1.00000000,0.01162791,86.00000000,3.80530973,0.00000000,0.00000000,85.00000000,,1.80000000,0.00000000,,0.06796117,210.00000000,9.29203540,0.01428571,0.00000000,4.54000000 +862,chr22,12594185,UNK,T,,A,,-1.00000000,,,,,,,45.55000000,116.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.03278689,0.00000000,76.00000000,,-1.06000000,0.00000000,,0.07857143,144.00000000,6.37168142,0.02777778,0.00000000,4.38000000 +863,chr22,12597131,UNK,A,,C,,-1.00000000,,,,,,,44.51000000,202.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.02439024,0.00000000,86.00000000,,1.79000000,0.00000000,,0.09813084,217.00000000,9.60176991,0.00921659,0.00000000,4.34000000 +864,chr22,12598404,UNK,T,,C,,-1.00000000,,,,,,,52.57000000,50.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,-0.35000000,0.00000000,,0.11111111,156.00000000,6.90265487,0.01923077,0.00000000,4.54000000 +865,chr22,12600168,UNK,T,,C,,-1.00000000,,,,,,,53.71000000,39.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,63.00000000,,3.07000000,0.00000000,,0.05468750,130.00000000,5.75221239,0.01538462,0.00000000,4.35000000 +866,chr22,12607873,UNK,C,,T,,-1.00000000,,,,,,,54.11000000,51.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.01515152,0.00000000,79.00000000,,-0.51000000,0.00000000,,0.10526316,154.00000000,6.81415929,0.01298701,0.00000000,4.45000000 +867,chr22,12608682,UNK,A,,T,,-1.00000000,,,,,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,0.46000000,0.00000000,,0.07438017,122.00000000,5.39823009,0.00819672,0.00000000,4.62000000 +868,chr22,12609499,UNK,G,,A,,-1.00000000,,,,,,,47.52000000,107.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,0.90000000,0.00000000,,0.07746479,144.00000000,6.37168142,0.01388889,0.00000000,4.58000000 +869,chr22,12614723,UNK,T,,G,,-1.00000000,,,,,,,59.32000000,4.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,71.00000000,,-0.24000000,0.00000000,,0.05833333,124.00000000,5.48672566,0.03225806,0.00000000,4.39000000 +870,chr22,12624159,UNK,T,,A,,-1.00000000,,,,,,,59.60000000,3.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,75.00000000,,0.18000000,0.00000000,,0.14457831,171.00000000,7.56637168,0.02923977,0.00000000,4.48000000 +871,chr22,12624454,UNK,C,,T,,-1.00000000,,,,,,,59.87000000,1.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-1.33000000,0.00000000,,0.10179641,167.00000000,7.38938053,0.00000000,0.00000000,4.96000000 +872,chr22,12625037,UNK,G,,A,,-1.00000000,,,,,,,57.06000000,18.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.05882353,0.00000000,73.00000000,,0.24000000,0.00000000,,0.14035088,119.00000000,5.26548673,0.04201681,0.00000000,4.41000000 +873,chr22,12625260,UNK,G,,A,,-1.00000000,,,,,,,54.77000000,27.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,0.73000000,0.00000000,,0.06349206,127.00000000,5.61946903,0.00787402,0.00000000,4.33000000 +874,chr22,12627958,UNK,A,,G,,-1.00000000,,,,,,,52.05000000,47.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,0.87000000,0.00000000,,0.10489510,144.00000000,6.37168142,0.00694444,0.00000000,4.33000000 +875,chr22,12628853,UNK,C,,A,,-1.00000000,,,,,,,54.37000000,38.00000000,ref,1.00000000,0.00000000,85.00000000,3.76106195,0.01176471,0.00000000,88.00000000,,-0.77000000,0.00000000,,0.04545455,227.00000000,10.04424779,0.03083700,0.00000000,4.18000000 +876,chr22,12632406,UNK,C,,G,,-1.00000000,,,,,,,54.64000000,35.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,1.54000000,0.00000000,,0.04878049,125.00000000,5.53097345,0.01600000,0.00000000,4.52000000 +877,chr22,12632573,UNK,T,,G,,-1.00000000,,,,,,,57.36000000,18.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.02040816,0.00000000,71.00000000,,0.25000000,0.00000000,,0.08029197,140.00000000,6.19469027,0.02142857,0.00000000,4.27000000 +878,chr22,12633600,UNK,C,,T,,-1.00000000,,,,,,,55.87000000,29.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,73.00000000,,1.38000000,0.00000000,,0.08955224,135.00000000,5.97345133,0.00740741,0.00000000,4.44000000 +879,chr22,12635566,UNK,A,,C,,-1.00000000,,,,,,,52.69000000,55.00000000,ref,1.00000000,0.00000000,56.00000000,2.47787611,0.07142857,0.00000000,73.00000000,,-2.33000000,0.00000000,,0.11538462,141.00000000,6.23893805,0.07801418,0.00000000,4.19000000 +880,chr22,12636590,UNK,G,,T,,-1.00000000,,,,,,,46.88000000,127.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,75.00000000,,0.17000000,0.00000000,,0.14482759,149.00000000,6.59292035,0.02013423,0.00000000,4.37000000 +881,chr22,12638111,UNK,G,,A,,-1.00000000,,,,,,,53.72000000,41.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,75.00000000,,-1.18000000,0.00000000,,0.09027778,144.00000000,6.37168142,0.00000000,0.00000000,5.01000000 +882,chr22,12638586,UNK,G,,A,,-1.00000000,,,,,,,58.25000000,10.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.02380952,0.00000000,68.00000000,,-0.93000000,0.00000000,,0.09322034,120.00000000,5.30973451,0.01666667,0.00000000,4.89000000 +883,chr22,12694871,UNK,C,,G,,-1.00000000,,,,,,,40.35000000,165.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,66.00000000,,1.56000000,0.67000000,,0.07000000,101.00000000,4.46902655,0.00990099,0.00000000,3.69000000 +884,chr22,12700847,UNK,G,,C,,-1.00000000,,,,,,,53.56000000,37.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,71.00000000,,-1.59000000,0.00000000,,0.13402062,103.00000000,4.55752212,0.05825243,0.00000000,4.36000000 +885,chr22,12702071,UNK,A,,C,,-1.00000000,,,,,,,44.27000000,77.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.28000000,0.00000000,,0.09836066,61.00000000,2.69911504,0.00000000,0.00000000,5.14000000 +886,chr22,12702461,UNK,C,,G,,-1.00000000,,,,,,,55.96000000,29.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,60.00000000,,0.45000000,6.05000000,,0.03875969,130.00000000,5.75221239,0.00769231,0.00000000,3.50000000 +887,chr22,12703728,UNK,A,,C,,-1.00000000,,,,,,,51.02000000,62.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.05769231,0.00000000,72.00000000,,0.75000000,0.00000000,,0.05000000,123.00000000,5.44247788,0.02439024,0.00000000,4.16000000 +888,chr22,12703788,UNK,A,,G,,-1.00000000,,,,,,,51.63000000,61.00000000,ref,1.00000000,0.01886792,53.00000000,2.34513274,0.00000000,0.00000000,70.00000000,,0.73000000,0.00000000,,0.06428571,140.00000000,6.19469027,0.00000000,0.00000000,4.48000000 +889,chr22,12707828,UNK,T,,C,,-1.00000000,,,,,,,46.92000000,104.00000000,ref,1.00000000,0.00000000,61.00000000,2.69911504,0.00000000,0.00000000,77.00000000,,0.11000000,0.00000000,,0.06722689,121.00000000,5.35398230,0.01652893,0.00000000,4.43000000 +890,chr22,12709709,UNK,C,,T,,-1.00000000,,,,,,,54.19000000,19.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,70.00000000,,-0.48000000,0.00000000,,0.10476190,106.00000000,4.69026549,0.00943396,0.00000000,4.85000000 +891,chr22,12721790,UNK,C,,A,,-1.00000000,,,,,,,39.25000000,114.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,2.21000000,1.98000000,,0.09090909,66.00000000,2.92035398,0.00000000,0.00000000,3.45000000 +892,chr22,12722082,UNK,A,,G,,-1.00000000,,,,,,,41.72000000,102.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.78000000,0.00000000,,0.10144928,70.00000000,3.09734513,0.00000000,0.00000000,4.89000000 +893,chr22,12722105,UNK,G,,A,,-1.00000000,,,,,,,40.07000000,109.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,-0.16000000,0.00000000,,0.14705882,69.00000000,3.05309735,0.01449275,0.00000000,5.93000000 +894,chr22,12722185,UNK,T,,G,,-1.00000000,,,,,,,45.35000000,62.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.09000000,0.00000000,,0.12307692,69.00000000,3.05309735,0.04347826,0.00000000,4.60000000 +895,chr22,12722493,UNK,C,,T,,-1.00000000,,,,,,,43.14000000,81.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-3.08000000,1.31000000,,0.07812500,64.00000000,2.83185841,0.00000000,0.00000000,3.67000000 +896,chr22,12725122,UNK,A,,C,,-1.00000000,,,,,,,50.23000000,35.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,28.00000000,,-0.82000000,0.00000000,,0.37333333,75.00000000,3.31858407,0.00000000,0.00000000,3.57000000 +897,chr22,12725303,UNK,A,,C,,-1.00000000,,,,,,,51.40000000,28.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,55.00000000,,-0.77000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,3.06000000 +898,chr22,12725385,UNK,C,,G,,-1.00000000,,,,,,,55.36000000,8.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,,-0.03000000,0.00000000,,0.13235294,71.00000000,3.14159292,0.04225352,0.00000000,5.24000000 +899,chr22,12782390,UNK,G,,A,,-1.00000000,,,,,,,20.51000000,104.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.95000000,0.00000000,,0.42105263,19.00000000,0.84070796,0.00000000,0.00000000,3.00000000 +900,chr22,12783858,UNK,G,,A,,-1.00000000,,,,,,,37.84000000,52.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,8.00000000,,-1.95000000,0.00000000,,0.66666667,28.00000000,1.23893805,0.03571429,0.00000000,3.92000000 +901,chr22,12790005,UNK,G,,A,,-1.00000000,,,,,,,46.69000000,25.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,19.00000000,,-1.14000000,0.00000000,,0.40000000,26.00000000,1.15044248,0.03846154,0.00000000,3.77000000 +902,chr22,12801469,UNK,G,,A,,-1.00000000,,,,,,,43.39000000,72.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-1.22000000,0.00000000,,0.13114754,61.00000000,2.69911504,0.00000000,0.00000000,5.85000000 +903,chr22,12878128,UNK,G,,A,,-1.00000000,,,,,,,13.82000000,180.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.24000000,0.00000000,,0.47058824,17.00000000,0.75221239,0.00000000,0.00000000,3.00000000 +904,chr22,15173656,UNK,C,,T,,-1.00000000,,,,,,,36.76000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,,-0.73000000,0.00000000,,0.16666667,73.00000000,3.23008850,0.01369863,0.00000000,2.99000000 +905,chr22,15242235,UNK,A,,G,,-1.00000000,,,,,,,43.37000000,14.00000000,ref,1.00000000,0.00000000,1.00000000,0.04424779,0.00000000,0.00000000,3.00000000,,-1.06000000,0.00000000,,0.92000000,26.00000000,1.15044248,0.00000000,0.00000000,3.00000000 +906,chr22,15254828,UNK,G,,A,,-1.00000000,,,,,,,26.60000000,29.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,40.00000000,,0.60000000,0.00000000,,0.20833333,25.00000000,1.10619469,0.04000000,0.00000000,2.80000000 +907,chr22,15313464,UNK,C,,T,,-1.00000000,,,,,,,45.94000000,29.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,71.00000000,,-0.51000000,0.00000000,,0.16842105,96.00000000,4.24778761,0.01041667,0.00000000,6.56000000 +908,chr22,15315914,UNK,T,,C,,-1.00000000,,,,,,,54.78000000,6.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-1.91000000,0.00000000,,0.10000000,51.00000000,2.25663717,0.00000000,0.00000000,5.37000000 +909,chr22,15367036,UNK,G,,A,,-1.00000000,,,,,,,25.44000000,13.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,0.00000000,0.00000000,,0.46666667,15.00000000,0.66371681,0.00000000,0.00000000,3.00000000 +910,chr22,15381123,UNK,T,,C,,-1.00000000,,,,,,,38.61000000,2.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,12.00000000,,-1.13000000,0.00000000,,0.32142857,28.00000000,1.23893805,0.00000000,0.00000000,3.36000000 +911,chr22,15435739,UNK,T,,C,,-1.00000000,,,,,,,29.27000000,18.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,6.00000000,,-2.49000000,0.00000000,,0.39130435,23.00000000,1.01769912,0.00000000,0.00000000,3.36000000 +912,chr22,15438176,UNK,T,,G,,-1.00000000,,,,,,,54.96000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,64.00000000,,-1.45000000,0.00000000,,0.13924051,79.00000000,3.49557522,0.00000000,0.00000000,5.83000000 +913,chr22,15531982,UNK,G,,C,,-1.00000000,,,,,,,32.08000000,79.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-1.21000000,0.00000000,,0.07792208,77.00000000,3.40707965,0.00000000,0.00000000,5.27000000 +914,chr22,15543001,UNK,G,,A,,-1.00000000,,,,,,,58.22000000,8.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.01388889,0.00000000,82.00000000,,0.86000000,0.00000000,,0.11409396,151.00000000,6.68141593,0.01324503,0.00000000,4.37000000 +915,chr22,15550120,UNK,A,,G,,-1.00000000,,,,,,,28.12000000,37.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,-1.12000000,0.00000000,,0.14864865,74.00000000,3.27433628,0.00000000,0.00000000,6.11000000 +916,chr22,15552826,UNK,C,,T,,-1.00000000,,,,,,,44.08000000,36.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.00000000,0.00000000,73.00000000,,1.40000000,0.00000000,,0.12030075,133.00000000,5.88495575,0.00000000,0.00000000,4.67000000 +917,chr22,15553080,UNK,T,,C,,-1.00000000,,,,,,,40.88000000,42.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-0.81000000,0.00000000,,0.06250000,82.00000000,3.62831858,0.02439024,0.00000000,4.82000000 +918,chr22,15553928,UNK,G,,A,,-1.00000000,,,,,,,34.98000000,87.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.73000000,0.00000000,,0.06557377,124.00000000,5.48672566,0.01612903,0.00000000,4.48000000 +919,chr22,15557710,UNK,A,,G,,-1.00000000,,,,,,,40.52000000,47.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,68.00000000,,-0.52000000,0.00000000,,0.06603774,106.00000000,4.69026549,0.00000000,0.00000000,4.93000000 +920,chr22,15565712,UNK,C,,T,,-1.00000000,,,,,,,38.74000000,66.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.00000000,0.00000000,78.00000000,,-0.39000000,0.00000000,,0.05806452,155.00000000,6.85840708,0.00000000,0.00000000,5.20000000 +921,chr22,15565727,UNK,G,,A,,-1.00000000,,,,,,,39.24000000,57.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,77.00000000,,1.15000000,0.00000000,,0.05555556,163.00000000,7.21238938,0.00613497,0.00000000,4.52000000 +922,chr22,15574223,UNK,C,,A,,-1.00000000,,,,,,,38.83000000,71.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,2.76000000,2.36000000,,0.06250000,80.00000000,3.53982301,0.00000000,0.00000000,3.82000000 +923,chr22,15578571,UNK,C,,T,,-1.00000000,,,,,,,35.04000000,55.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,1.84000000,0.00000000,,0.06315789,95.00000000,4.20353982,0.00000000,0.00000000,4.91000000 +924,chr22,15579692,UNK,A,,C,,-1.00000000,,,,,,,32.12000000,43.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,2.20000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,4.75000000 +925,chr22,15580626,UNK,A,,G,,-1.00000000,,,,,,,38.44000000,79.00000000,ref,1.00000000,0.01369863,74.00000000,3.27433628,0.01351351,0.00000000,79.00000000,,-1.72000000,0.00000000,,0.07096774,155.00000000,6.85840708,0.00000000,0.00000000,4.64000000 +926,chr22,15598933,UNK,A,,G,,-1.00000000,,,,,,,29.35000000,62.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.39000000,0.00000000,,0.11764706,68.00000000,3.00884956,0.00000000,0.00000000,4.03000000 +927,chr22,15599768,UNK,C,,T,,-1.00000000,,,,,,,37.30000000,37.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,2.31000000,0.00000000,,0.10344828,89.00000000,3.93805310,0.02247191,0.00000000,4.82000000 +928,chr22,15600147,UNK,C,,T,,-1.00000000,,,,,,,45.93000000,56.00000000,ref,1.00000000,0.00000000,60.00000000,2.65486726,0.00000000,0.00000000,92.00000000,,-0.41000000,0.00000000,,0.16931217,189.00000000,8.36283186,0.00000000,0.00000000,5.19000000 +929,chr22,15609294,UNK,A,,T,,-1.00000000,,,,,,,31.11000000,60.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,1.96000000,0.00000000,,0.16250000,80.00000000,3.53982301,0.00000000,0.00000000,5.33000000 +930,chr22,15609476,UNK,C,,T,,-1.00000000,,,,,,,48.35000000,17.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,3.38000000,0.00000000,,0.11000000,100.00000000,4.42477876,0.00000000,0.00000000,4.25000000 +931,chr22,15611699,UNK,G,,A,,-1.00000000,,,,,,,37.80000000,43.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,,-1.99000000,0.00000000,,0.25609756,82.00000000,3.62831858,0.00000000,0.00000000,6.60000000 +932,chr22,15613019,UNK,T,,C,,-1.00000000,,,,,,,55.03000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-2.65000000,0.00000000,,0.09900990,102.00000000,4.51327434,0.00980392,0.00000000,5.17000000 +933,chr22,15613473,UNK,A,,G,,-1.00000000,,,,,,,49.41000000,26.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,82.00000000,,1.23000000,0.00000000,,0.23655914,93.00000000,4.11504425,0.00000000,0.00000000,6.07000000 +934,chr22,15614002,UNK,G,,A,,-1.00000000,,,,,,,47.23000000,24.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-2.10000000,0.00000000,,0.09638554,84.00000000,3.71681416,0.01190476,0.00000000,5.57000000 +935,chr22,15615027,UNK,T,,G,,-1.00000000,,,,,,,44.68000000,35.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,70.00000000,,-1.68000000,7.09000000,,0.18461538,65.00000000,2.87610619,0.00000000,0.00000000,4.74000000 +936,chr22,15617425,UNK,A,,C,,-1.00000000,,,,,,,51.71000000,12.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-1.18000000,0.00000000,,0.10416667,97.00000000,4.29203540,0.01030928,0.00000000,5.15000000 +937,chr22,15617912,UNK,A,,G,,-1.00000000,,,,,,,41.29000000,44.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,63.00000000,,0.92000000,0.00000000,,0.14084507,71.00000000,3.14159292,0.00000000,0.00000000,5.08000000 +938,chr22,15624548,UNK,T,,C,,-1.00000000,,,,,,,39.98000000,29.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,,1.51000000,0.00000000,,0.18681319,92.00000000,4.07079646,0.01086957,0.00000000,6.43000000 +939,chr22,15626386,UNK,C,,T,,-1.00000000,,,,,,,56.63000000,25.00000000,ref,1.00000000,0.00000000,59.00000000,2.61061947,0.03389831,0.00000000,85.00000000,,-0.50000000,0.00000000,,0.16176471,210.00000000,9.29203540,0.02380952,0.00000000,4.75000000 +940,chr22,15626463,UNK,C,,T,,-1.00000000,,,,,,,57.11000000,27.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,72.00000000,,-0.33000000,0.00000000,,0.04854369,208.00000000,9.20353982,0.00480769,0.00000000,4.39000000 +941,chr22,15628709,UNK,G,,A,,-1.00000000,,,,,,,53.88000000,38.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,82.00000000,,-1.25000000,0.00000000,,0.07389163,207.00000000,9.15929204,0.00483092,0.00000000,4.46000000 +942,chr22,15628909,UNK,T,,G,,-1.00000000,,,,,,,48.33000000,26.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.03846154,0.00000000,72.00000000,,0.92000000,5.93000000,,0.06134969,164.00000000,7.25663717,0.00609756,0.00000000,3.32000000 +943,chr22,15628964,UNK,C,,A,,-1.00000000,,,,,,,48.24000000,31.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,73.00000000,,-0.77000000,0.00000000,,0.05208333,192.00000000,8.49557522,0.00000000,0.00000000,4.71000000 +944,chr22,15630202,UNK,G,,A,,-1.00000000,,,,,,,45.63000000,66.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,70.00000000,,-1.63000000,1.51000000,,0.04316547,141.00000000,6.23893805,0.00709220,0.00000000,3.66000000 +945,chr22,15630520,UNK,C,,T,,-1.00000000,,,,,,,53.07000000,40.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.01333333,0.00000000,83.00000000,,-0.75000000,0.00000000,,0.12264151,214.00000000,9.46902655,0.00934579,0.00000000,4.29000000 +946,chr22,15630573,UNK,C,,T,,-1.00000000,,,,,,,47.48000000,96.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.00000000,0.00000000,79.00000000,,0.76000000,2.09000000,,0.03240741,219.00000000,9.69026549,0.01369863,0.00000000,3.45000000 +947,chr22,15630629,UNK,C,,T,,-1.00000000,,,,,,,45.45000000,139.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,-1.23000000,0.00000000,,0.13488372,219.00000000,9.69026549,0.01369863,0.00000000,4.96000000 +948,chr22,15630971,UNK,G,,A,,-1.00000000,,,,,,,45.60000000,30.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,71.00000000,,0.02000000,0.00000000,,0.10828025,157.00000000,6.94690265,0.00000000,0.00000000,4.49000000 +949,chr22,15631483,UNK,T,,C,,-1.00000000,,,,,,,57.27000000,13.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,99.00000000,,-0.12000000,0.00000000,,0.18918919,186.00000000,8.23008850,0.00000000,0.00000000,5.56000000 +950,chr22,15631580,UNK,T,,A,,-1.00000000,,,,,,,59.69000000,2.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.00000000,0.00000000,85.00000000,,-0.13000000,0.00000000,,0.07981221,215.00000000,9.51327434,0.00000000,0.00000000,4.96000000 +951,chr22,15631918,UNK,A,,G,,-1.00000000,,,,,,,58.20000000,4.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,81.00000000,,0.47000000,0.00000000,,0.19277108,168.00000000,7.43362832,0.00595238,0.00000000,5.23000000 +952,chr22,15632260,UNK,T,,G,,-1.00000000,,,,,,,52.63000000,16.00000000,ref,1.00000000,0.00000000,72.00000000,3.18584071,0.00000000,0.00000000,88.00000000,,0.67000000,0.00000000,,0.15168539,180.00000000,7.96460177,0.01111111,0.00000000,4.90000000 +953,chr22,15633538,UNK,T,,G,,-1.00000000,,,,,,,55.65000000,17.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,63.00000000,,0.20000000,0.00000000,,0.11666667,180.00000000,7.96460177,0.00000000,0.00000000,4.43000000 +954,chr22,15633946,UNK,A,,G,,-1.00000000,,,,,,,54.48000000,14.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.88000000,0.00000000,,0.08602151,94.00000000,4.15929204,0.01063830,0.00000000,4.99000000 +955,chr22,15634107,UNK,T,,C,,-1.00000000,,,,,,,58.51000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-2.35000000,0.00000000,,0.10000000,90.00000000,3.98230088,0.00000000,0.00000000,5.50000000 +956,chr22,15634165,UNK,C,,T,,-1.00000000,,,,,,,56.01000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.56000000,0.00000000,,0.09000000,100.00000000,4.42477876,0.00000000,0.00000000,5.76000000 +957,chr22,15634214,UNK,A,,G,,-1.00000000,,,,,,,52.01000000,13.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,1.39000000,0.00000000,,0.09000000,102.00000000,4.51327434,0.00980392,0.00000000,4.97000000 +958,chr22,15635104,UNK,C,,A,,-1.00000000,,,,,,,37.97000000,78.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.00000000,0.00000000,73.00000000,,-0.44000000,0.00000000,,0.08633094,141.00000000,6.23893805,0.01418440,0.00000000,4.62000000 +959,chr22,15635355,UNK,C,,T,,-1.00000000,,,,,,,34.10000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-0.36000000,0.00000000,,0.07142857,86.00000000,3.80530973,0.01162791,0.00000000,5.09000000 +960,chr22,15640729,UNK,C,,T,,-1.00000000,,,,,,,39.31000000,40.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.89000000,0.00000000,,0.12068966,117.00000000,5.17699115,0.00854701,0.00000000,5.36000000 +961,chr22,15646691,UNK,C,,G,,-1.00000000,,,,,,,35.94000000,55.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.01886792,0.00000000,62.00000000,,0.96000000,0.00000000,,0.04687500,128.00000000,5.66371681,0.00000000,0.00000000,4.23000000 +962,chr22,15655412,UNK,C,,T,,-1.00000000,,,,,,,12.11000000,93.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,5.00000000,,0.34000000,0.00000000,,0.33333333,12.00000000,0.53097345,0.00000000,0.00000000,3.53000000 +963,chr22,15659457,UNK,C,,T,,-1.00000000,,,,,,,28.04000000,58.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,1.35000000,2.03000000,,0.09333333,75.00000000,3.31858407,0.00000000,0.00000000,3.86000000 +964,chr22,15662729,UNK,G,,A,,-1.00000000,,,,,,,34.46000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,,-0.96000000,0.00000000,,0.14754098,61.00000000,2.69911504,0.00000000,0.00000000,4.38000000 +965,chr22,15675075,UNK,C,,G,,-1.00000000,,,,,,,31.11000000,45.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,,-0.76000000,0.00000000,,0.16666667,48.00000000,2.12389381,0.00000000,0.00000000,5.91000000 +966,chr22,15675381,UNK,A,,G,,-1.00000000,,,,,,,36.73000000,78.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,,1.54000000,6.25000000,,0.14634146,86.00000000,3.80530973,0.04651163,0.00000000,3.74000000 +967,chr22,15675678,UNK,G,,A,,-1.00000000,,,,,,,34.43000000,58.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,2.19000000,0.00000000,,0.13207547,54.00000000,2.38938053,0.01851852,0.00000000,4.86000000 +968,chr22,15675886,UNK,T,,G,,-1.00000000,,,,,,,27.03000000,114.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,,-1.66000000,0.00000000,,0.18518519,54.00000000,2.38938053,0.00000000,0.00000000,5.92000000 +969,chr22,15678375,UNK,G,,A,,-1.00000000,,,,,,,38.42000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,2.05000000,0.00000000,,0.10666667,75.00000000,3.31858407,0.00000000,0.00000000,4.72000000 +970,chr22,15681117,UNK,T,,C,,-1.00000000,,,,,,,41.58000000,88.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,2.28000000,0.00000000,,0.10344828,90.00000000,3.98230088,0.03333333,0.00000000,4.23000000 +971,chr22,15681383,UNK,T,,C,,-1.00000000,,,,,,,31.61000000,62.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.59000000,0.00000000,,0.21126761,73.00000000,3.23008850,0.01369863,0.00000000,5.90000000 +972,chr22,15682040,UNK,C,,G,,-1.00000000,,,,,,,21.54000000,65.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,60.00000000,,-1.69000000,0.00000000,,0.15517241,59.00000000,2.61061947,0.01694915,0.00000000,5.77000000 +973,chr22,15682988,UNK,G,,A,,-1.00000000,,,,,,,26.13000000,58.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,,2.64000000,0.00000000,,0.16216216,74.00000000,3.27433628,0.00000000,0.00000000,5.03000000 +974,chr22,15683831,UNK,G,,A,,-1.00000000,,,,,,,28.41000000,92.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,69.00000000,,-0.08000000,0.00000000,,0.10924370,123.00000000,5.44247788,0.02439024,0.00000000,4.37000000 +975,chr22,15683836,UNK,T,,C,,-1.00000000,,,,,,,28.63000000,92.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,69.00000000,,0.73000000,0.00000000,,0.10655738,126.00000000,5.57522124,0.02380952,0.00000000,4.31000000 +976,chr22,15683921,UNK,T,,C,,-1.00000000,,,,,,,26.89000000,59.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,67.00000000,,-0.61000000,0.00000000,,0.15625000,64.00000000,2.83185841,0.00000000,0.00000000,5.91000000 +977,chr22,15685799,UNK,A,,G,,-1.00000000,,,,,,,36.02000000,63.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,-0.84000000,3.37000000,,0.11666667,61.00000000,2.69911504,0.01639344,0.00000000,3.52000000 +978,chr22,15686059,UNK,C,,G,,-1.00000000,,,,,,,36.97000000,53.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,65.00000000,,-1.06000000,0.00000000,,0.13414634,82.00000000,3.62831858,0.00000000,0.00000000,5.66000000 +979,chr22,15686551,UNK,A,,G,,-1.00000000,,,,,,,30.79000000,64.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,65.00000000,,1.60000000,1.77000000,,0.27906977,46.00000000,2.03539823,0.06521739,0.00000000,4.42000000 +980,chr22,15687222,UNK,C,,T,,-1.00000000,,,,,,,40.19000000,40.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,0.60000000,0.00000000,,0.12820513,78.00000000,3.45132743,0.00000000,0.00000000,5.02000000 +981,chr22,15687259,UNK,C,,T,,-1.00000000,,,,,,,41.02000000,41.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,68.00000000,,1.54000000,0.00000000,,0.14942529,87.00000000,3.84955752,0.00000000,0.00000000,5.20000000 +982,chr22,15687322,UNK,C,,T,,-1.00000000,,,,,,,41.38000000,41.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.15000000,0.00000000,,0.12087912,91.00000000,4.02654867,0.00000000,0.00000000,4.95000000 +983,chr22,15687389,UNK,G,,A,,-1.00000000,,,,,,,37.59000000,48.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,1.66000000,0.00000000,,0.09375000,64.00000000,2.83185841,0.00000000,0.00000000,4.43000000 +984,chr22,15687864,UNK,T,,C,,-1.00000000,,,,,,,57.34000000,9.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,71.00000000,,0.35000000,0.00000000,,0.05154639,100.00000000,4.42477876,0.03000000,0.00000000,4.52000000 +985,chr22,15687869,UNK,C,,T,,-1.00000000,,,,,,,57.10000000,10.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.02222222,0.00000000,68.00000000,,0.98000000,0.00000000,,0.05102041,101.00000000,4.46902655,0.01980198,0.00000000,4.31000000 +986,chr22,15687911,UNK,G,,T,,-1.00000000,,,,,,,56.72000000,9.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,61.00000000,,0.96000000,0.00000000,,0.05617978,91.00000000,4.02654867,0.02197802,0.00000000,4.83000000 +987,chr22,15688154,UNK,T,,G,,-1.00000000,,,,,,,49.61000000,35.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.11111111,0.00000000,79.00000000,,-2.53000000,0.00000000,,0.18987342,82.00000000,3.62831858,0.03658537,0.00000000,4.94000000 +988,chr22,15688259,UNK,T,,C,,-1.00000000,,,,,,,55.65000000,8.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.86000000,0.00000000,,0.06382979,98.00000000,4.33628319,0.03061224,0.00000000,4.35000000 +989,chr22,15688290,UNK,A,,G,,-1.00000000,,,,,,,56.75000000,6.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,89.00000000,,1.49000000,0.00000000,,0.24175824,92.00000000,4.07079646,0.00000000,0.00000000,5.53000000 +990,chr22,15688733,UNK,T,,C,,-1.00000000,,,,,,,45.57000000,35.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,61.00000000,,-1.80000000,0.00000000,,0.12328767,81.00000000,3.58407080,0.08641975,0.00000000,4.96000000 +991,chr22,15688736,UNK,C,,T,,-1.00000000,,,,,,,45.29000000,35.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-2.33000000,0.00000000,,0.12857143,77.00000000,3.40707965,0.09090909,0.00000000,4.91000000 +992,chr22,15688755,UNK,T,,G,,-1.00000000,,,,,,,43.46000000,38.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-1.56000000,0.00000000,,0.19047619,71.00000000,3.14159292,0.08450704,0.00000000,6.45000000 +993,chr22,15688985,UNK,A,,G,,-1.00000000,,,,,,,46.44000000,42.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,65.00000000,,0.09000000,4.60000000,,0.14444444,92.00000000,4.07079646,0.01086957,0.00000000,4.02000000 +994,chr22,15689030,UNK,T,,C,,-1.00000000,,,,,,,45.44000000,54.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,64.00000000,,0.37000000,0.00000000,,0.15000000,102.00000000,4.51327434,0.00980392,0.00000000,5.06000000 +995,chr22,15689224,UNK,A,,C,,-1.00000000,,,,,,,52.15000000,13.00000000,ref,1.00000000,0.04545455,24.00000000,1.06194690,0.08333333,0.00000000,9.00000000,,-0.82000000,0.00000000,,0.36986301,77.00000000,3.40707965,0.05194805,0.00000000,3.41000000 +996,chr22,15689247,UNK,A,,C,,-1.00000000,,,,,,,50.10000000,24.00000000,ref,1.00000000,0.04000000,27.00000000,1.19469027,0.07407407,0.00000000,63.00000000,,1.27000000,0.00000000,,0.26388889,75.00000000,3.31858407,0.04000000,0.00000000,5.30000000 +997,chr22,15689259,UNK,A,,T,,-1.00000000,,,,,,,49.38000000,32.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,63.00000000,,0.56000000,0.00000000,,0.10810811,79.00000000,3.49557522,0.05063291,0.00000000,4.47000000 +998,chr22,15689393,UNK,C,,T,,-1.00000000,,,,,,,51.26000000,75.00000000,ref,1.00000000,0.00000000,79.00000000,3.49557522,0.05063291,0.00000000,61.00000000,,-0.58000000,0.00000000,,0.04137931,155.00000000,6.85840708,0.06451613,0.00000000,4.20000000 +999,chr22,15689526,UNK,G,,T,,-1.00000000,,,,,,,52.43000000,36.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.05263158,0.00000000,74.00000000,,-0.98000000,0.00000000,,0.12727273,170.00000000,7.52212389,0.02941176,0.00000000,4.26000000 +1000,chr22,15689763,UNK,A,,G,,-1.00000000,,,,,,,51.55000000,41.00000000,ref,1.00000000,0.00000000,52.00000000,2.30088496,0.01923077,0.00000000,96.00000000,,0.40000000,0.00000000,,0.20869565,127.00000000,5.61946903,0.07874016,0.00000000,4.64000000 +1001,chr22,15691121,UNK,A,,G,,-1.00000000,,,,,,,49.66000000,18.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,70.00000000,,3.21000000,0.00000000,,0.13861386,101.00000000,4.46902655,0.00000000,0.00000000,4.89000000 +1002,chr22,15691498,UNK,C,,G,,-1.00000000,,,,,,,55.34000000,11.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.26666667,0.00000000,65.00000000,,-0.04000000,0.00000000,,0.12500000,104.00000000,4.60176991,0.23076923,0.00000000,4.39000000 +1003,chr22,15691521,UNK,G,,C,,-1.00000000,,,,,,,53.76000000,13.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.14634146,0.00000000,66.00000000,,-0.76000000,0.00000000,,0.12857143,91.00000000,4.02654867,0.23076923,0.00000000,4.74000000 +1004,chr22,15691554,UNK,T,,C,,-1.00000000,,,,,,,49.85000000,20.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,-2.00000000,0.00000000,,0.11627907,90.00000000,3.98230088,0.03333333,0.00000000,5.41000000 +1005,chr22,15691724,UNK,T,,C,,-1.00000000,,,,,,,45.48000000,33.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,67.00000000,,-0.99000000,0.00000000,,0.10389610,80.00000000,3.53982301,0.02500000,0.00000000,4.94000000 +1006,chr22,15691966,UNK,C,,T,,-1.00000000,,,,,,,51.75000000,41.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.05882353,0.00000000,70.00000000,,0.82000000,0.00000000,,0.10416667,96.00000000,4.24778761,0.00000000,0.00000000,4.33000000 +1007,chr22,15692207,UNK,A,,G,,-1.00000000,,,,,,,46.05000000,25.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,-2.04000000,0.00000000,,0.14000000,50.00000000,2.21238938,0.00000000,0.00000000,4.44000000 +1008,chr22,15692274,UNK,T,,G,,-1.00000000,,,,,,,45.47000000,29.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,,-0.46000000,0.00000000,,0.18965517,58.00000000,2.56637168,0.00000000,0.00000000,6.61000000 +1009,chr22,15698813,UNK,T,,C,,-1.00000000,,,,,,,37.94000000,46.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,0.08000000,0.00000000,,0.09219858,143.00000000,6.32743363,0.01398601,0.00000000,4.57000000 +1010,chr22,15699861,UNK,A,,G,,-1.00000000,,,,,,,38.61000000,44.00000000,ref,1.00000000,0.02272727,46.00000000,2.03539823,0.00000000,0.00000000,60.00000000,,0.96000000,0.00000000,,0.07865169,98.00000000,4.33628319,0.08163265,0.00000000,4.40000000 +1011,chr22,15700111,UNK,G,,A,,-1.00000000,,,,,,,31.09000000,85.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,,-0.24000000,0.00000000,,0.15555556,92.00000000,4.07079646,0.01086957,0.00000000,5.79000000 +1012,chr22,15705820,UNK,T,,C,,-1.00000000,,,,,,,25.34000000,66.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.41000000,0.00000000,,0.21153846,53.00000000,2.34513274,0.00000000,0.00000000,2.84000000 +1013,chr22,15706082,UNK,A,,G,,-1.00000000,,,,,,,28.66000000,96.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.09000000,0.00000000,,0.11538462,104.00000000,4.60176991,0.00000000,0.00000000,4.88000000 +1014,chr22,15710271,UNK,G,,A,,-1.00000000,,,,,,,38.58000000,48.00000000,ref,1.00000000,0.00000000,70.00000000,3.09734513,0.00000000,0.00000000,114.00000000,,1.19000000,0.00000000,,0.20111732,181.00000000,8.00884956,0.00552486,0.00000000,9.24000000 +1015,chr22,15710527,UNK,C,,T,,-1.00000000,,,,,,,41.88000000,57.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,82.00000000,,-0.51000000,0.00000000,,0.15757576,166.00000000,7.34513274,0.00602410,0.00000000,4.99000000 +1016,chr22,15711741,UNK,T,,C,,-1.00000000,,,,,,,31.61000000,44.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,44.00000000,,-1.13000000,0.00000000,,0.35632184,87.00000000,3.84955752,0.00000000,0.00000000,3.93000000 +1017,chr22,15713484,UNK,T,,A,,-1.00000000,,,,,,,38.68000000,78.00000000,ref,1.00000000,0.00000000,66.00000000,2.92035398,0.00000000,0.00000000,88.00000000,,-0.14000000,0.00000000,,0.16312057,143.00000000,6.32743363,0.00000000,0.00000000,5.58000000 +1018,chr22,15714151,UNK,G,,A,,-1.00000000,,,,,,,41.76000000,42.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.04255319,0.00000000,71.00000000,,0.68000000,6.51000000,,0.12745098,102.00000000,4.51327434,0.00000000,0.00000000,3.73000000 +1019,chr22,15718951,UNK,A,,G,,-1.00000000,,,,,,,27.90000000,65.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,64.00000000,,1.96000000,0.00000000,,0.12048193,84.00000000,3.71681416,0.01190476,0.00000000,4.75000000 +1020,chr22,15718985,UNK,A,,C,,-1.00000000,,,,,,,28.45000000,60.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,74.00000000,,0.34000000,2.43000000,,0.17857143,86.00000000,3.80530973,0.02325581,0.00000000,4.11000000 +1021,chr22,15719409,UNK,A,,G,,-1.00000000,,,,,,,29.47000000,56.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,,0.35000000,0.00000000,,0.17543860,114.00000000,5.04424779,0.00000000,0.00000000,5.90000000 +1022,chr22,15719417,UNK,T,,G,,-1.00000000,,,,,,,28.60000000,55.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,0.45000000,0.00000000,,0.16326531,98.00000000,4.33628319,0.00000000,0.00000000,5.67000000 +1023,chr22,15721705,UNK,C,,T,,-1.00000000,,,,,,,32.81000000,65.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,1.43000000,0.99000000,,0.08333333,109.00000000,4.82300885,0.00917431,0.00000000,3.74000000 +1024,chr22,15730051,UNK,C,,G,,-1.00000000,,,,,,,40.01000000,33.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,68.00000000,,1.84000000,2.03000000,,0.09782609,93.00000000,4.11504425,0.01075269,0.00000000,3.84000000 +1025,chr22,15734687,UNK,C,,A,,-1.00000000,,,,,,,37.00000000,64.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,67.00000000,,0.97000000,0.00000000,,0.19753086,83.00000000,3.67256637,0.02409639,0.00000000,6.23000000 +1026,chr22,15738454,UNK,C,,T,,-1.00000000,,,,,,,40.79000000,78.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.27000000,0.00000000,,0.10101010,100.00000000,4.42477876,0.00000000,0.00000000,5.24000000 +1027,chr22,15738750,UNK,C,,T,,-1.00000000,,,,,,,29.08000000,74.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-1.00000000,0.00000000,,0.11538462,79.00000000,3.49557522,0.01265823,0.00000000,5.00000000 +1028,chr22,15740408,UNK,G,,C,,-1.00000000,,,,,,,38.39000000,50.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.00000000,0.00000000,74.00000000,,-0.10000000,0.00000000,,0.05185185,135.00000000,5.97345133,0.00000000,0.00000000,5.06000000 +1029,chr22,15740437,UNK,A,,G,,-1.00000000,,,,,,,36.74000000,50.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-1.58000000,0.00000000,,0.08823529,103.00000000,4.55752212,0.00970874,0.00000000,5.36000000 +1030,chr22,15740682,UNK,C,,T,,-1.00000000,,,,,,,39.20000000,25.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,2.39000000,0.00000000,,0.11363636,88.00000000,3.89380531,0.00000000,0.00000000,4.88000000 +1031,chr22,15745364,UNK,T,,C,,-1.00000000,,,,,,,31.86000000,42.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,0.04000000,0.00000000,,0.08860759,79.00000000,3.49557522,0.00000000,0.00000000,4.08000000 +1032,chr22,15746296,UNK,C,,T,,-1.00000000,,,,,,,50.20000000,34.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,-0.37000000,0.00000000,,0.06666667,107.00000000,4.73451327,0.01869159,0.00000000,4.79000000 +1033,chr22,15747068,UNK,C,,T,,-1.00000000,,,,,,,42.31000000,22.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.66000000,0.00000000,,0.05128205,118.00000000,5.22123894,0.00847458,0.00000000,5.09000000 +1034,chr22,15747433,UNK,C,,G,,-1.00000000,,,,,,,32.76000000,31.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.38000000,0.00000000,,0.08641975,81.00000000,3.58407080,0.00000000,0.00000000,4.65000000 +1035,chr22,15747438,UNK,T,,G,,-1.00000000,,,,,,,32.24000000,31.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-1.00000000,0.00000000,,0.10256410,78.00000000,3.45132743,0.00000000,0.00000000,5.08000000 +1036,chr22,15747881,UNK,A,,G,,-1.00000000,,,,,,,36.34000000,18.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.18000000,0.00000000,,0.12500000,89.00000000,3.93805310,0.01123596,0.00000000,5.14000000 +1037,chr22,15749619,UNK,G,,T,,-1.00000000,,,,,,,55.48000000,22.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,74.00000000,,-0.53000000,0.00000000,,0.11538462,182.00000000,8.05309735,0.00000000,0.00000000,4.69000000 +1038,chr22,15749693,UNK,G,,A,,-1.00000000,,,,,,,54.97000000,17.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.00000000,0.00000000,,0.05625000,161.00000000,7.12389381,0.00621118,0.00000000,4.25000000 +1039,chr22,15749754,UNK,G,,A,,-1.00000000,,,,,,,51.97000000,35.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,-1.22000000,0.00000000,,0.10000000,174.00000000,7.69911504,0.02298851,0.00000000,4.32000000 +1040,chr22,15749780,UNK,A,,G,,-1.00000000,,,,,,,52.24000000,36.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.02000000,0.00000000,71.00000000,,-0.49000000,0.00000000,,0.03846154,186.00000000,8.23008850,0.02150538,0.00000000,4.24000000 +1041,chr22,15749799,UNK,C,,G,,-1.00000000,,,,,,,53.43000000,30.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.01851852,0.00000000,73.00000000,,-0.22000000,0.00000000,,0.05978261,186.00000000,8.23008850,0.01075269,0.00000000,4.41000000 +1042,chr22,15749911,UNK,A,,G,,-1.00000000,,,,,,,51.24000000,52.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,68.00000000,,-0.38000000,0.00000000,,0.09523810,151.00000000,6.68141593,0.02649007,0.00000000,4.94000000 +1043,chr22,15749986,UNK,A,,G,,-1.00000000,,,,,,,44.69000000,80.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,1.73000000,0.00000000,,0.10810811,121.00000000,5.35398230,0.08264463,0.00000000,4.09000000 +1044,chr22,15750118,UNK,G,,C,,-1.00000000,,,,,,,49.62000000,60.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,67.00000000,,-0.49000000,3.08000000,,0.09649123,117.00000000,5.17699115,0.02564103,0.00000000,3.47000000 +1045,chr22,15755488,UNK,G,,A,,-1.00000000,,,,,,,38.23000000,26.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,1.16000000,0.00000000,,0.10256410,118.00000000,5.22123894,0.00847458,0.00000000,4.67000000 +1046,chr22,15757827,UNK,A,,G,,-1.00000000,,,,,,,45.12000000,33.00000000,ref,1.00000000,0.00000000,51.00000000,2.25663717,0.01960784,0.00000000,72.00000000,,0.04000000,0.00000000,,0.11666667,180.00000000,7.96460177,0.00000000,0.00000000,4.32000000 +1047,chr22,15758331,UNK,T,,G,,-1.00000000,,,,,,,36.15000000,45.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,,-2.55000000,0.00000000,,0.13846154,69.00000000,3.05309735,0.05797101,0.00000000,5.74000000 +1048,chr22,15759009,UNK,T,,A,,-1.00000000,,,,,,,49.44000000,32.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,-0.45000000,0.00000000,,0.04666667,150.00000000,6.63716814,0.00000000,0.00000000,5.42000000 +1049,chr22,15761005,UNK,G,,A,,-1.00000000,,,,,,,36.00000000,57.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.60000000,0.00000000,,0.12264151,106.00000000,4.69026549,0.00000000,0.00000000,5.46000000 +1050,chr22,15761580,UNK,C,,T,,-1.00000000,,,,,,,43.31000000,33.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,87.00000000,,-1.20000000,0.00000000,,0.21656051,157.00000000,6.94690265,0.00000000,0.00000000,6.68000000 +1051,chr22,15761892,UNK,C,,T,,-1.00000000,,,,,,,38.26000000,38.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.46000000,1.94000000,,0.08737864,104.00000000,4.60176991,0.00961538,0.00000000,3.29000000 +1052,chr22,15763787,UNK,T,,A,,-1.00000000,,,,,,,38.44000000,46.00000000,ref,1.00000000,0.00000000,82.00000000,3.62831858,0.01219512,0.00000000,86.00000000,,-0.80000000,0.00000000,,0.04245283,212.00000000,9.38053097,0.00000000,0.00000000,4.88000000 +1053,chr22,15764390,UNK,T,,A,,-1.00000000,,,,,,,36.43000000,47.00000000,ref,1.00000000,0.00000000,65.00000000,2.87610619,0.03076923,0.00000000,79.00000000,,0.11000000,0.00000000,,0.13750000,162.00000000,7.16814159,0.01234568,0.00000000,4.74000000 +1054,chr22,15764435,UNK,G,,T,,-1.00000000,,,,,,,40.50000000,47.00000000,ref,1.00000000,0.00000000,81.00000000,3.58407080,0.02469136,0.00000000,85.00000000,,-1.08000000,0.00000000,,0.04464286,225.00000000,9.95575221,0.00444444,0.00000000,4.41000000 +1055,chr22,15764726,UNK,T,,C,,-1.00000000,,,,,,,38.28000000,98.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.03448276,0.00000000,65.00000000,,0.76000000,9.96000000,,0.04761905,173.00000000,7.65486726,0.01156069,0.00000000,3.51000000 +1056,chr22,15765231,UNK,G,,A,,-1.00000000,,,,,,,27.89000000,24.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,18.00000000,,-0.97000000,0.00000000,,0.33333333,30.00000000,1.32743363,0.00000000,0.00000000,3.50000000 +1057,chr22,15769196,UNK,G,,A,,-1.00000000,,,,,,,43.27000000,24.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.44000000,3.10000000,,0.06896552,87.00000000,3.84955752,0.00000000,0.00000000,3.61000000 +1058,chr22,15771595,UNK,G,,A,,-1.00000000,,,,,,,48.37000000,24.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,,-0.48000000,0.00000000,,0.15909091,89.00000000,3.93805310,0.00000000,0.00000000,5.92000000 +1059,chr22,15773139,UNK,G,,C,,-1.00000000,,,,,,,44.24000000,20.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-0.72000000,0.00000000,,0.07964602,115.00000000,5.08849558,0.00869565,0.00000000,4.09000000 +1060,chr22,15773359,UNK,C,,T,,-1.00000000,,,,,,,43.20000000,54.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.62000000,0.00000000,,0.16981132,108.00000000,4.77876106,0.01851852,0.00000000,5.69000000 +1061,chr22,15773361,UNK,A,,G,,-1.00000000,,,,,,,42.65000000,59.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.79000000,0.00000000,,0.17142857,107.00000000,4.73451327,0.00934579,0.00000000,6.09000000 +1062,chr22,15773493,UNK,C,,T,,-1.00000000,,,,,,,36.51000000,35.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,0.25000000,0.00000000,,0.12328767,73.00000000,3.23008850,0.00000000,0.00000000,4.86000000 +1063,chr22,15776069,UNK,G,,A,,-1.00000000,,,,,,,45.78000000,30.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,66.00000000,,-1.02000000,0.00000000,,0.13761468,111.00000000,4.91150442,0.01801802,0.00000000,5.38000000 +1064,chr22,15785585,UNK,C,,G,,-1.00000000,,,,,,,52.08000000,47.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.01754386,0.00000000,75.00000000,,-0.04000000,0.00000000,,0.07391304,232.00000000,10.26548673,0.00862069,0.00000000,4.28000000 +1065,chr22,15785904,UNK,A,,G,,-1.00000000,,,,,,,55.36000000,31.00000000,ref,1.00000000,0.00000000,80.00000000,3.53982301,0.01250000,0.00000000,85.00000000,,-0.45000000,0.00000000,,0.05923345,290.00000000,12.83185841,0.00689655,0.00000000,4.35000000 +1066,chr22,15787908,UNK,C,,A,,-1.00000000,,,,,,,45.96000000,75.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.01587302,0.00000000,78.00000000,,0.38000000,0.00000000,,0.06790123,164.00000000,7.25663717,0.01219512,0.00000000,4.32000000 +1067,chr22,15787997,UNK,C,,T,,-1.00000000,,,,,,,42.71000000,76.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,0.77000000,0.00000000,,0.05095541,158.00000000,6.99115044,0.00632911,0.00000000,4.45000000 +1068,chr22,15795706,UNK,G,,C,,-1.00000000,,,,,,,26.78000000,118.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,0.26000000,0.00000000,,0.08536585,83.00000000,3.67256637,0.01204819,0.00000000,4.76000000 +1069,chr22,15803480,UNK,A,,T,,-1.00000000,,,,,,,36.19000000,84.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,,-1.09000000,0.00000000,,0.10810811,111.00000000,4.91150442,0.00000000,0.00000000,5.37000000 +1070,chr22,15803759,UNK,A,,G,,-1.00000000,,,,,,,24.42000000,72.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,58.00000000,,0.40000000,0.00000000,,0.09615385,53.00000000,2.34513274,0.01886792,0.00000000,3.93000000 +1071,chr22,15804516,UNK,G,,A,,-1.00000000,,,,,,,32.75000000,56.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,60.00000000,,1.11000000,0.00000000,,0.10937500,67.00000000,2.96460177,0.04477612,0.00000000,4.54000000 +1072,chr22,15810989,UNK,C,,A,,-1.00000000,,,,,,,28.81000000,78.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,0.73000000,0.00000000,,0.12121212,69.00000000,3.05309735,0.04347826,0.00000000,4.64000000 +1073,chr22,15815547,UNK,T,,C,,-1.00000000,,,,,,,19.28000000,97.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.56000000,0.00000000,,0.16129032,31.00000000,1.37168142,0.00000000,0.00000000,2.83000000 +1074,chr22,15817495,UNK,A,,C,,-1.00000000,,,,,,,36.78000000,73.00000000,ref,1.00000000,0.03333333,30.00000000,1.32743363,0.00000000,0.00000000,73.00000000,,-1.80000000,0.00000000,,0.24000000,100.00000000,4.42477876,0.00000000,0.00000000,6.58000000 +1075,chr22,15820136,UNK,G,,C,,-1.00000000,,,,,,,29.65000000,86.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.00000000,0.00000000,31.00000000,,2.47000000,0.00000000,,0.34666667,76.00000000,3.36283186,0.01315789,0.00000000,3.73000000 +1076,chr22,15825678,UNK,A,,C,,-1.00000000,,,,,,,49.76000000,48.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.85000000,0.00000000,,0.11194030,134.00000000,5.92920354,0.00000000,0.00000000,4.86000000 +1077,chr22,15826181,UNK,G,,A,,-1.00000000,,,,,,,38.36000000,51.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,63.00000000,,0.48000000,0.00000000,,0.12903226,94.00000000,4.15929204,0.01063830,0.00000000,5.15000000 +1078,chr22,15826825,UNK,G,,A,,-1.00000000,,,,,,,30.36000000,49.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,0.37000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.01041667,0.00000000,6.47000000 +1079,chr22,15827212,UNK,A,,T,,-1.00000000,,,,,,,40.55000000,41.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,1.16000000,0.00000000,,0.07801418,141.00000000,6.23893805,0.00000000,0.00000000,5.05000000 +1080,chr22,15827616,UNK,T,,C,,-1.00000000,,,,,,,46.87000000,28.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,1.45000000,4.15000000,,0.06481481,109.00000000,4.82300885,0.00917431,0.00000000,3.95000000 +1081,chr22,15828000,UNK,G,,A,,-1.00000000,,,,,,,53.00000000,19.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-0.54000000,0.00000000,,0.04800000,127.00000000,5.61946903,0.01574803,0.00000000,5.11000000 +1082,chr22,15829641,UNK,T,,C,,-1.00000000,,,,,,,44.48000000,76.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,71.00000000,,1.12000000,0.00000000,,0.17266187,142.00000000,6.28318584,0.02112676,0.00000000,5.21000000 +1083,chr22,15832451,UNK,C,,G,,-1.00000000,,,,,,,45.82000000,49.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,82.00000000,,-1.84000000,0.00000000,,0.25581395,130.00000000,5.75221239,0.00769231,0.00000000,6.15000000 +1084,chr22,15832482,UNK,T,,G,,-1.00000000,,,,,,,46.23000000,45.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,79.00000000,,0.66000000,0.00000000,,0.25196850,128.00000000,5.66371681,0.00781250,0.00000000,5.84000000 +1085,chr22,15834750,UNK,C,,A,,-1.00000000,,,,,,,44.17000000,47.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,0.39000000,0.00000000,,0.09042553,190.00000000,8.40707965,0.01052632,0.00000000,4.76000000 +1086,chr22,15835026,UNK,A,,C,,-1.00000000,,,,,,,39.10000000,36.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,78.00000000,,0.82000000,0.00000000,,0.21698113,106.00000000,4.69026549,0.00000000,0.00000000,5.55000000 +1087,chr22,15835216,UNK,A,,C,,-1.00000000,,,,,,,45.10000000,34.00000000,ref,1.00000000,0.00000000,75.00000000,3.31858407,0.00000000,0.00000000,83.00000000,,-0.08000000,0.00000000,,0.04932735,225.00000000,9.95575221,0.00888889,0.00000000,4.56000000 +1088,chr22,15835961,UNK,C,,T,,-1.00000000,,,,,,,54.46000000,20.00000000,ref,1.00000000,0.00000000,90.00000000,3.98230088,0.01111111,0.00000000,90.00000000,,-0.31000000,0.00000000,,0.13229572,260.00000000,11.50442478,0.00769231,0.00000000,4.29000000 +1089,chr22,15837946,UNK,C,,T,,-1.00000000,,,,,,,36.36000000,118.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,60.00000000,,-0.59000000,1.40000000,,0.06122449,102.00000000,4.51327434,0.03921569,0.00000000,3.40000000 +1090,chr22,15837947,UNK,T,,C,,-1.00000000,,,,,,,35.99000000,118.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.04878049,65.00000000,,-1.13000000,0.00000000,,0.06315789,100.00000000,4.42477876,0.04000000,0.01960784,4.55000000 +1091,chr22,15841154,UNK,A,,G,,-1.00000000,,,,,,,54.52000000,32.00000000,ref,1.00000000,0.00000000,96.00000000,4.24778761,0.03125000,0.00000000,91.00000000,,2.30000000,0.00000000,,0.04508197,249.00000000,11.01769912,0.02008032,0.00000000,4.03000000 +1092,chr22,15841848,UNK,G,,A,,-1.00000000,,,,,,,44.69000000,40.00000000,ref,1.00000000,0.00000000,53.00000000,2.34513274,0.00000000,0.00000000,85.00000000,,-0.37000000,0.00000000,,0.16568047,169.00000000,7.47787611,0.00000000,0.00000000,5.34000000 +1093,chr22,15845585,UNK,T,,C,,-1.00000000,,,,,,,28.10000000,63.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,1.30000000,0.00000000,,0.06060606,99.00000000,4.38053097,0.00000000,0.00000000,4.61000000 +1094,chr22,15845991,UNK,C,,T,,-1.00000000,,,,,,,34.94000000,57.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-3.18000000,0.00000000,,0.05405405,112.00000000,4.95575221,0.00892857,0.00000000,4.96000000 +1095,chr22,15854439,UNK,T,,G,,-1.00000000,,,,,,,39.98000000,66.00000000,ref,1.00000000,0.00000000,62.00000000,2.74336283,0.00000000,0.00000000,78.00000000,,2.86000000,0.00000000,,0.06666667,139.00000000,6.15044248,0.02158273,0.00000000,4.48000000 +1096,chr22,15856110,UNK,A,,G,,-1.00000000,,,,,,,22.99000000,69.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,0.19000000,0.00000000,,0.17142857,75.00000000,3.31858407,0.05333333,0.00000000,5.84000000 +1097,chr22,15859828,UNK,G,,T,,-1.00000000,,,,,,,23.65000000,90.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,,2.36000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,4.49000000 +1098,chr22,15861907,UNK,C,,A,,-1.00000000,,,,,,,51.12000000,60.00000000,ref,1.00000000,0.00000000,94.00000000,4.15929204,0.02127660,0.00000000,91.00000000,,0.33000000,5.55000000,,0.04067797,298.00000000,13.18584071,0.01006711,0.00000000,3.05000000 +1099,chr22,15862081,UNK,C,,A,,-1.00000000,,,,,,,53.91000000,30.00000000,ref,1.00000000,0.00000000,76.00000000,3.36283186,0.00000000,0.00000000,89.00000000,,-0.16000000,0.00000000,,0.15116279,260.00000000,11.50442478,0.00769231,0.00000000,4.65000000 +1100,chr22,15862202,UNK,G,,A,,-1.00000000,,,,,,,57.58000000,18.00000000,ref,1.00000000,0.00000000,83.00000000,3.67256637,0.00000000,0.00000000,87.00000000,,3.74000000,0.00000000,,0.06949807,261.00000000,11.54867257,0.00766284,0.00000000,4.37000000 +1101,chr22,15863020,UNK,C,,T,,-1.00000000,,,,,,,44.40000000,54.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,69.00000000,,0.50000000,0.00000000,,0.07194245,154.00000000,6.81415929,0.09740260,0.00000000,4.24000000 +1102,chr22,15863050,UNK,T,,A,,-1.00000000,,,,,,,48.04000000,39.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.11627907,0.06521739,67.00000000,,1.99000000,0.00000000,,0.09322034,129.00000000,5.70796460,0.08527132,0.11034483,4.29000000 +1103,chr22,15863468,UNK,A,,G,,-1.00000000,,,,,,,49.15000000,38.00000000,ref,1.00000000,0.00000000,68.00000000,3.00884956,0.00000000,0.00000000,95.00000000,,0.96000000,0.00000000,,0.16931217,190.00000000,8.40707965,0.00526316,0.00000000,4.72000000 +1104,chr22,15863626,UNK,C,,T,,-1.00000000,,,,,,,42.79000000,67.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.00000000,78.00000000,,0.74000000,0.00000000,,0.20312500,130.00000000,5.75221239,0.01538462,0.00000000,5.11000000 +1105,chr22,15864591,UNK,A,,T,,-1.00000000,,,,,,,21.55000000,57.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,4.00000000,,0.86000000,1.16000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,2.82000000 +1106,chr22,15865013,UNK,T,,C,,-1.00000000,,,,,,,32.67000000,59.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,64.00000000,,-1.47000000,0.00000000,,0.06666667,91.00000000,4.02654867,0.01098901,0.00000000,5.23000000 +1107,chr22,15865035,UNK,A,,T,,-1.00000000,,,,,,,33.14000000,55.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-1.07000000,0.00000000,,0.07142857,100.00000000,4.42477876,0.02000000,0.00000000,4.88000000 +1108,chr22,15871594,UNK,T,,G,,-1.00000000,,,,,,,35.30000000,35.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.23000000,1.72000000,,0.09523810,106.00000000,4.69026549,0.00943396,0.00000000,4.08000000 +1109,chr22,15871632,UNK,T,,C,,-1.00000000,,,,,,,38.87000000,33.00000000,ref,1.00000000,0.00000000,54.00000000,2.38938053,0.00000000,0.00000000,74.00000000,,0.41000000,0.00000000,,0.05555556,128.00000000,5.66371681,0.00781250,0.00000000,4.55000000 +1110,chr22,15872732,UNK,G,,A,,-1.00000000,,,,,,,28.05000000,80.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,3.32000000,0.00000000,,0.13541667,97.00000000,4.29203540,0.01030928,0.00000000,2.96000000 +1111,chr22,15874061,UNK,T,,C,,-1.00000000,,,,,,,32.71000000,75.00000000,ref,1.00000000,0.00000000,58.00000000,2.56637168,0.00000000,0.00000000,76.00000000,,-1.00000000,0.00000000,,0.06329114,158.00000000,6.99115044,0.00000000,0.00000000,4.61000000 +1112,chr22,15874158,UNK,C,,A,,-1.00000000,,,,,,,36.25000000,61.00000000,ref,1.00000000,0.00000000,73.00000000,3.23008850,0.00000000,0.00000000,83.00000000,,-1.17000000,0.00000000,,0.05581395,215.00000000,9.51327434,0.00000000,0.00000000,5.02000000 +1113,chr22,15874184,UNK,C,,T,,-1.00000000,,,,,,,33.00000000,70.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,72.00000000,,0.84000000,0.00000000,,0.12025316,158.00000000,6.99115044,0.00000000,0.00000000,4.45000000 +1114,chr22,15876183,UNK,G,,A,,-1.00000000,,,,,,,29.88000000,98.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,67.00000000,,-0.19000000,0.00000000,,0.12903226,93.00000000,4.11504425,0.00000000,0.00000000,5.51000000 +1115,chr22,15880429,UNK,T,,C,,-1.00000000,,,,,,,39.41000000,25.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,-1.11000000,0.00000000,,0.10909091,57.00000000,2.52212389,0.03508772,0.00000000,4.99000000 +1116,chr22,15890135,UNK,A,,G,,-1.00000000,,,,,,,22.13000000,71.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,6.00000000,,-1.13000000,0.00000000,,0.33333333,27.00000000,1.19469027,0.00000000,0.00000000,3.44000000 +1117,chr22,15900711,UNK,C,,T,,-1.00000000,,,,,,,21.08000000,63.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.29411765,22.00000000,,-1.00000000,0.00000000,,0.36111111,36.00000000,1.59292035,0.00000000,0.20000000,3.43000000 +1118,chr22,15908583,UNK,G,,A,,-1.00000000,,,,,,,42.08000000,35.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,44.00000000,,-1.84000000,0.00000000,,0.33333333,67.00000000,2.96460177,0.01492537,0.00000000,3.95000000 +1119,chr22,15911090,UNK,A,,G,,-1.00000000,,,,,,,31.23000000,91.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,0.48000000,0.00000000,,0.15384615,52.00000000,2.30088496,0.00000000,0.00000000,5.40000000 +1120,chr22,15911973,UNK,A,,G,,-1.00000000,,,,,,,32.77000000,47.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,1.54000000,0.00000000,,0.18867925,54.00000000,2.38938053,0.00000000,0.00000000,5.51000000 +1121,chr22,15949015,UNK,A,,G,,-1.00000000,,,,,,,36.74000000,30.00000000,ref,1.00000000,0.00000000,1.00000000,0.04424779,0.00000000,0.00000000,3.00000000,,-0.76000000,0.00000000,,0.93750000,16.00000000,0.70796460,0.00000000,0.00000000,3.00000000 +1122,chr22,16056671,UNK,T,,A,,-1.00000000,,,,,,,58.66000000,7.00000000,ref,1.00000000,0.00000000,55.00000000,2.43362832,0.16363636,0.00000000,70.00000000,,-1.44000000,0.00000000,,0.04724409,168.00000000,7.43362832,0.24404762,0.00000000,4.35000000 +1123,chr22,16129926,UNK,A,,G,,-1.00000000,,,,,,,58.20000000,5.00000000,ref,1.00000000,0.03846154,26.00000000,1.15044248,0.00000000,0.00000000,11.00000000,,-0.36000000,0.00000000,,0.50000000,63.00000000,2.78761062,0.11111111,0.00000000,3.37000000 +1124,chr22,16157870,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,,-0.44000000,0.00000000,,0.42857143,59.00000000,2.61061947,0.05084746,0.00000000,6.22000000 +1125,chr22,16157871,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,,-0.04000000,0.00000000,,0.41379310,61.00000000,2.69911504,0.04918033,0.00000000,7.50000000 +1126,chr22,16184368,UNK,A,,C,,-1.00000000,,,,,,,51.02000000,28.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,35.00000000,,1.91000000,0.00000000,,0.39215686,51.00000000,2.25663717,0.00000000,0.00000000,3.41000000 +1127,chr22,16184370,UNK,T,,C,,-1.00000000,,,,,,,50.92000000,28.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,39.00000000,,-2.42000000,0.00000000,,0.40816327,49.00000000,2.16814159,0.00000000,0.00000000,3.50000000 +1128,chr22,16184390,UNK,C,,G,,-1.00000000,,,,,,,51.38000000,28.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,51.00000000,,1.22000000,0.00000000,,0.41666667,50.00000000,2.21238938,0.04000000,0.00000000,4.35000000 +1129,chr22,16184424,UNK,T,,C,,-1.00000000,,,,,,,50.94000000,31.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,76.00000000,,-0.71000000,0.00000000,,0.25581395,51.00000000,2.25663717,0.11764706,0.00000000,6.44000000 +1130,chr22,16184464,UNK,G,,A,,-1.00000000,,,,,,,53.40000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,24.00000000,,-0.47000000,0.00000000,,0.35849057,54.00000000,2.38938053,0.01851852,0.00000000,3.10000000 +1131,chr22,16207970,UNK,T,,C,,-1.00000000,,,,,,,58.38000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,69.00000000,,0.73000000,0.00000000,,0.38805970,69.00000000,3.05309735,0.02898551,0.00000000,7.84000000 +1132,chr22,16208000,UNK,A,,T,,-1.00000000,,,,,,,58.17000000,2.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,1.18000000,0.00000000,,0.38666667,77.00000000,3.40707965,0.01298701,0.00000000,8.10000000 +1133,chr22,16234136,UNK,G,,C,,-1.00000000,,,,,,,58.88000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,62.00000000,,-2.10000000,0.00000000,,0.09523810,60.00000000,2.65486726,0.30000000,0.00000000,4.56000000 +1134,chr22,16234143,UNK,G,,T,,-1.00000000,,,,,,,58.32000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,65.00000000,,-2.98000000,0.00000000,,0.13636364,62.00000000,2.74336283,0.29032258,0.00000000,5.33000000 +1135,chr22,16251190,UNK,T,,A,,-1.00000000,,,,,,,56.82000000,10.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,0.34000000,0.00000000,,0.36363636,59.00000000,2.61061947,0.05084746,0.00000000,7.34000000 +1136,chr22,16251200,UNK,T,,C,,-1.00000000,,,,,,,56.86000000,10.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,58.00000000,,1.60000000,0.00000000,,0.09756098,60.00000000,2.65486726,0.31666667,0.00000000,3.68000000 +1137,chr22,16251214,UNK,T,,C,,-1.00000000,,,,,,,56.89000000,10.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,,-0.70000000,0.00000000,,0.38333333,63.00000000,2.78761062,0.04761905,0.00000000,4.33000000 +1138,chr22,16251215,UNK,G,,T,,-1.00000000,,,,,,,56.98000000,10.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,59.00000000,,-0.64000000,0.00000000,,0.35483871,65.00000000,2.87610619,0.04615385,0.00000000,6.19000000 +1139,chr22,16270844,UNK,G,,A,,-1.00000000,,,,,,,58.14000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,,-1.01000000,0.00000000,,0.34920635,65.00000000,2.87610619,0.03076923,0.00000000,8.22000000 +1140,chr22,16270847,UNK,G,,C,,-1.00000000,,,,,,,58.12000000,5.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,83.00000000,,-0.79000000,0.00000000,,0.34920635,64.00000000,2.83185841,0.01562500,0.00000000,8.15000000 +1141,chr22,16345129,UNK,G,,A,,-1.00000000,,,,,,,39.81000000,20.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-2.08000000,0.00000000,,0.52380952,23.00000000,1.01769912,0.08695652,0.00000000,3.00000000 +1142,chr22,16345154,UNK,T,,C,,-1.00000000,,,,,,,44.67000000,19.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,12.00000000,,-0.83000000,0.00000000,,0.55555556,28.00000000,1.23893805,0.03571429,0.00000000,3.91000000 +1143,chr22,16350941,UNK,G,,A,,-1.00000000,,,,,,,18.73000000,81.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.53000000,0.00000000,,0.50000000,6.00000000,0.26548673,0.00000000,0.00000000,3.67000000 +1144,chr22,16354427,UNK,G,,A,,-1.00000000,,,,,,,30.25000000,14.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.38000000,0.00000000,,0.41666667,12.00000000,0.53097345,0.00000000,0.00000000,3.47000000 +1145,chr22,16354465,UNK,A,,T,,-1.00000000,,,,,,,28.32000000,18.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-1.89000000,0.00000000,,0.36363636,11.00000000,0.48672566,0.00000000,0.00000000,3.23000000 +1146,chr22,16361136,UNK,G,,A,,-1.00000000,,,,,,,26.63000000,65.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,6.00000000,,0.37000000,0.00000000,,0.38461538,14.00000000,0.61946903,0.07142857,0.00000000,3.83000000 +1147,chr22,16362588,UNK,T,,C,,-1.00000000,,,,,,,30.37000000,5.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,0.77000000,1.00000000,,0.25000000,9.00000000,0.39823009,0.00000000,0.00000000,2.78000000 +1148,chr22,16381395,UNK,T,,G,,-1.00000000,,,,,,,22.17000000,16.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.73000000,0.00000000,,0.54545455,11.00000000,0.48672566,0.00000000,0.00000000,3.00000000 +1149,chr22,16386789,UNK,C,,T,,-1.00000000,,,,,,,57.86000000,4.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.15384615,0.00000000,14.00000000,,-0.72000000,0.00000000,,0.54545455,40.00000000,1.76991150,0.17500000,0.00000000,3.81000000 +1150,chr22,16407695,UNK,C,,T,,-1.00000000,,,,,,,47.21000000,62.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,61.00000000,,0.25000000,0.00000000,,0.05319149,94.00000000,4.15929204,0.00000000,0.00000000,4.57000000 +1151,chr22,16409545,UNK,T,,C,,-1.00000000,,,,,,,53.50000000,29.00000000,ref,1.00000000,0.00000000,57.00000000,2.52212389,0.00000000,0.00000000,69.00000000,,3.20000000,0.00000000,,0.04166667,120.00000000,5.30973451,0.00000000,0.00000000,3.28000000 +1152,chr22,16413470,UNK,C,,T,,-1.00000000,,,,,,,51.53000000,36.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,16.00000000,,1.03000000,0.00000000,,0.42647059,70.00000000,3.09734513,0.02857143,0.00000000,3.08000000 +1153,chr22,16417585,UNK,T,,C,,-1.00000000,,,,,,,52.49000000,12.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,0.88000000,0.00000000,,0.13043478,71.00000000,3.14159292,0.02816901,0.00000000,4.57000000 +1154,chr22,16418209,UNK,A,,T,,-1.00000000,,,,,,,53.44000000,51.00000000,ref,1.00000000,0.00000000,63.00000000,2.78761062,0.39682540,0.00000000,101.00000000,,2.08000000,0.00000000,,0.39175258,143.00000000,6.32743363,0.32167832,0.00000000,6.10000000 +1155,chr22,16420298,UNK,A,,G,,-1.00000000,,,,,,,49.35000000,50.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,93.00000000,,-0.10000000,0.00000000,,0.23529412,121.00000000,5.35398230,0.01652893,0.00000000,5.49000000 +1156,chr22,16420322,UNK,C,,G,,-1.00000000,,,,,,,49.03000000,48.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,92.00000000,,-1.86000000,0.00000000,,0.25423729,121.00000000,5.35398230,0.02479339,0.00000000,6.00000000 +1157,chr22,16420858,UNK,G,,A,,-1.00000000,,,,,,,53.76000000,21.00000000,ref,1.00000000,0.00000000,50.00000000,2.21238938,0.00000000,0.00000000,72.00000000,,0.61000000,0.00000000,,0.05479452,149.00000000,6.59292035,0.01342282,0.00000000,4.62000000 +1158,chr22,16457052,UNK,G,,T,,-1.00000000,,,,,,,52.48000000,39.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,59.00000000,,2.85000000,0.00000000,,0.09433962,107.00000000,4.73451327,0.00934579,0.00000000,3.93000000 +1159,chr22,16457235,UNK,G,,A,,-1.00000000,,,,,,,55.50000000,16.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,64.00000000,,-1.43000000,0.00000000,,0.05263158,115.00000000,5.08849558,0.00869565,0.00000000,5.00000000 +1160,chr22,16473885,UNK,T,,G,,-1.00000000,,,,,,,40.52000000,84.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.59000000,0.00000000,,0.09589041,74.00000000,3.27433628,0.01351351,0.00000000,4.92000000 +1161,chr22,16569887,UNK,T,,A,,-1.00000000,,,,,,,57.58000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,65.00000000,,-1.40000000,0.00000000,,0.28571429,57.00000000,2.52212389,0.01754386,0.00000000,6.25000000 +1162,chr22,16886058,UNK,C,,T,,-1.00000000,,,,,,,40.07000000,49.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,26.00000000,,-0.60000000,0.00000000,,0.32000000,28.00000000,1.23893805,0.03571429,0.00000000,3.67000000 +1163,chr22,16897517,UNK,A,,T,,-1.00000000,,,,,,,44.49000000,67.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,,-2.05000000,0.00000000,,0.43939394,66.00000000,2.92035398,0.00000000,0.00000000,4.01000000 +1164,chr22,16911571,UNK,T,,C,,-1.00000000,,,,,,,45.47000000,51.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,,-1.30000000,7.55000000,,0.22916667,49.00000000,2.16814159,0.02040816,0.00000000,4.37000000 +1165,chr22,16911594,UNK,C,,T,,-1.00000000,,,,,,,45.42000000,52.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,58.00000000,,0.71000000,7.70000000,,0.22448980,49.00000000,2.16814159,0.00000000,0.00000000,3.56000000 +1166,chr22,16911632,UNK,G,,A,,-1.00000000,,,,,,,45.28000000,59.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,61.00000000,,1.77000000,0.00000000,,0.17543860,58.00000000,2.56637168,0.01724138,0.00000000,5.61000000 +1167,chr22,16911753,UNK,G,,T,,-1.00000000,,,,,,,51.20000000,47.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,-2.71000000,0.00000000,,0.12820513,82.00000000,3.62831858,0.04878049,0.01204819,5.08000000 +1168,chr22,16911912,UNK,A,,G,,-1.00000000,,,,,,,50.38000000,42.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.65000000,2.78000000,,0.07142857,73.00000000,3.23008850,0.04109589,0.00000000,3.17000000 +1169,chr22,17094693,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.50000000,0.00000000,3.00000000,,-0.22000000,0.00000000,,0.33333333,25.00000000,1.10619469,0.16000000,0.03846154,3.00000000 +1170,chr22,17253675,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.03846154,64.00000000,,-1.37000000,0.00000000,,0.23188406,77.00000000,3.40707965,0.10389610,0.00000000,5.56000000 +1171,chr22,17327028,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,,-1.36000000,0.00000000,,0.12307692,67.00000000,2.96460177,0.02985075,0.00000000,5.02000000 +1172,chr22,17327032,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,-0.86000000,0.00000000,,0.10447761,69.00000000,3.05309735,0.02898551,0.00000000,4.94000000 +1173,chr22,17422721,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,67.00000000,,0.77000000,0.00000000,,0.16250000,84.00000000,3.71681416,0.03571429,0.00000000,5.24000000 +1174,chr22,17469610,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.60000000,20.00000000,,0.87000000,0.00000000,,0.36538462,57.00000000,2.52212389,0.08771930,0.32142857,3.75000000 +1175,chr22,17519297,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,67.00000000,,0.37000000,0.00000000,,0.19354839,74.00000000,3.27433628,0.16216216,0.00000000,5.67000000 +1176,chr22,17564877,UNK,C,,T,,-1.00000000,,,,,,,59.22000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.10526316,0.00000000,41.00000000,,-1.09000000,0.00000000,,0.33333333,53.00000000,2.34513274,0.09433962,0.00000000,4.13000000 +1177,chr22,17616045,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,66.00000000,,0.43000000,0.00000000,,0.15555556,47.00000000,2.07964602,0.02127660,0.00000000,5.34000000 +1178,chr22,17629818,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,74.00000000,,0.46000000,0.00000000,,0.18518519,87.00000000,3.84955752,0.06896552,0.01136364,5.76000000 +1179,chr22,17722382,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,59.00000000,,-0.35000000,0.00000000,,0.13114754,66.00000000,2.92035398,0.07575758,0.00000000,4.36000000 +1180,chr22,17722421,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.16666667,0.00000000,57.00000000,,-0.28000000,0.00000000,,0.26388889,76.00000000,3.36283186,0.05263158,0.01298701,3.13000000 +1181,chr22,17733015,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.39024390,70.00000000,,2.02000000,0.00000000,,0.26000000,52.00000000,2.30088496,0.01923077,0.30666667,6.01000000 +1182,chr22,17866613,UNK,C,,T,,-1.00000000,,,,,,,59.82000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.23000000,0.00000000,,0.12328767,76.00000000,3.36283186,0.03947368,0.00000000,5.11000000 +1183,chr22,17957726,UNK,A,,G,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,72.00000000,,-0.02000000,0.00000000,,0.18461538,71.00000000,3.14159292,0.08450704,0.00000000,5.87000000 +1184,chr22,17976559,UNK,G,,A,,-1.00000000,,,,,,,59.44000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.14285714,0.00000000,65.00000000,,0.67000000,0.00000000,,0.18181818,58.00000000,2.56637168,0.05172414,0.00000000,5.31000000 +1185,chr22,17985123,UNK,C,,G,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,,-1.37000000,0.00000000,,0.26027397,74.00000000,3.27433628,0.01351351,0.00000000,6.57000000 +1186,chr22,17985124,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,78.00000000,,-1.64000000,0.00000000,,0.26027397,75.00000000,3.31858407,0.01333333,0.00000000,6.60000000 +1187,chr22,17985125,UNK,G,,C,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,77.00000000,,-1.10000000,0.00000000,,0.25333333,76.00000000,3.36283186,0.01315789,0.00000000,6.66000000 +1188,chr22,18184837,UNK,C,,A,,-1.00000000,,,,,,,36.67000000,16.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,62.00000000,,0.45000000,0.42000000,,0.11904762,42.00000000,1.85840708,0.00000000,0.00000000,4.15000000 +1189,chr22,18184920,UNK,T,,C,,-1.00000000,,,,,,,43.55000000,21.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,72.00000000,,-1.57000000,0.00000000,,0.20000000,57.00000000,2.52212389,0.03508772,0.00000000,6.23000000 +1190,chr22,18186371,UNK,G,,C,,-1.00000000,,,,,,,57.23000000,6.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,61.00000000,,1.00000000,0.00000000,,0.09333333,78.00000000,3.45132743,0.03846154,0.00000000,4.26000000 +1191,chr22,18187539,UNK,G,,A,,-1.00000000,,,,,,,41.58000000,23.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,61.00000000,,0.03000000,2.23000000,,0.15151515,33.00000000,1.46017699,0.00000000,0.00000000,4.55000000 +1192,chr22,18504406,UNK,G,,C,,-1.00000000,,,,,,,29.40000000,10.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.00000000,3.00000000,,-1.37000000,0.00000000,,0.41176471,18.00000000,0.79646018,0.05555556,0.00000000,3.00000000 +1193,chr22,18727756,UNK,C,,T,,-1.00000000,,,,,,,32.80000000,46.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,1.45000000,0.00000000,,0.10869565,46.00000000,2.03539823,0.00000000,0.00000000,4.52000000 +1194,chr22,18727816,UNK,T,,C,,-1.00000000,,,,,,,40.27000000,52.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.37000000,0.00000000,,0.10588235,85.00000000,3.76106195,0.00000000,0.00000000,5.66000000 +1195,chr22,18727820,UNK,G,,C,,-1.00000000,,,,,,,41.23000000,50.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,2.18000000,0.00000000,,0.12359551,89.00000000,3.93805310,0.00000000,0.00000000,4.86000000 +1196,chr22,18727874,UNK,A,,G,,-1.00000000,,,,,,,42.12000000,53.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,61.00000000,,-0.03000000,2.78000000,,0.04761905,105.00000000,4.64601770,0.00000000,0.00000000,3.95000000 +1197,chr22,18727966,UNK,T,,C,,-1.00000000,,,,,,,31.98000000,64.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,-0.80000000,0.00000000,,0.19672131,62.00000000,2.74336283,0.01612903,0.00000000,6.91000000 +1198,chr22,18727967,UNK,C,,T,,-1.00000000,,,,,,,31.45000000,65.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.60000000,0.00000000,,0.20338983,60.00000000,2.65486726,0.01666667,0.00000000,6.91000000 +1199,chr22,18728438,UNK,A,,T,,-1.00000000,,,,,,,39.44000000,36.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.11111111,0.00000000,10.00000000,,1.43000000,0.00000000,,0.36111111,38.00000000,1.68141593,0.05263158,0.00000000,3.82000000 +1200,chr22,18731000,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,11.00000000,,-0.95000000,0.00000000,,0.51851852,29.00000000,1.28318584,0.06896552,0.03333333,3.91000000 +1201,chr22,18731491,UNK,G,,A,,-1.00000000,,,,,,,55.68000000,4.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,-0.13000000,0.00000000,,0.34615385,28.00000000,1.23893805,0.07142857,0.00000000,3.00000000 +1202,chr22,18731501,UNK,A,,C,,-1.00000000,,,,,,,56.40000000,4.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.12000000,0.00000000,,0.32142857,30.00000000,1.32743363,0.06666667,0.00000000,3.00000000 +1203,chr22,18732985,UNK,G,,A,,-1.00000000,,,,,,,55.42000000,4.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,-0.84000000,0.00000000,,0.32000000,25.00000000,1.10619469,0.00000000,0.00000000,3.00000000 +1204,chr22,18733923,UNK,T,,A,,-1.00000000,,,,,,,31.15000000,49.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,1.52000000,0.84000000,,0.37500000,16.00000000,0.70796460,0.00000000,0.00000000,2.85000000 +1205,chr22,18735703,UNK,G,,A,,-1.00000000,,,,,,,27.25000000,93.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,70.00000000,,1.06000000,0.00000000,,0.06451613,125.00000000,5.53097345,0.00000000,0.00000000,4.70000000 +1206,chr22,18739975,UNK,T,,C,,-1.00000000,,,,,,,54.88000000,6.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,15.00000000,,-0.87000000,0.00000000,,0.37142857,35.00000000,1.54867257,0.00000000,0.00000000,3.60000000 +1207,chr22,18740297,UNK,C,,G,,-1.00000000,,,,,,,58.99000000,2.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,44.00000000,,1.82000000,0.00000000,,0.35897436,39.00000000,1.72566372,0.00000000,0.00000000,3.94000000 +1208,chr22,18741008,UNK,A,,G,,-1.00000000,,,,,,,51.86000000,7.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,,0.15000000,0.00000000,,0.33333333,21.00000000,0.92920354,0.00000000,0.00000000,3.59000000 +1209,chr22,18775780,UNK,A,,G,,-1.00000000,,,,,,,23.88000000,31.00000000,ref,1.00000000,0.00000000,5.00000000,0.22123894,0.00000000,0.00000000,3.00000000,,1.03000000,0.00000000,,0.35714286,28.00000000,1.23893805,0.00000000,0.00000000,3.00000000 +1210,chr22,18851208,UNK,G,,T,,-1.00000000,,,,,,,14.94000000,40.00000000,ref,1.00000000,0.00000000,3.00000000,0.13274336,0.00000000,0.00000000,4.00000000,,0.00000000,0.00000000,,1.00000000,3.00000000,0.13274336,0.00000000,0.00000000,3.60000000 +1211,chr22,18892010,UNK,G,,A,,-1.00000000,,,,,,,49.89000000,11.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,14.00000000,,-1.11000000,0.00000000,,0.29629630,31.00000000,1.37168142,0.09677419,0.00000000,3.29000000 +1212,chr22,19024531,UNK,T,,G,,-1.00000000,,,,,,,55.08000000,4.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,54.00000000,,1.05000000,0.00000000,,0.26415094,54.00000000,2.38938053,0.01851852,0.00000000,2.82000000 +1213,chr22,19026796,UNK,G,,A,,-1.00000000,,,,,,,42.52000000,25.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.00000000,4.00000000,,-0.44000000,1.84000000,,0.45161290,31.00000000,1.37168142,0.00000000,0.00000000,2.91000000 +1214,chr22,19027050,UNK,C,,T,,-1.00000000,,,,,,,54.19000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,59.00000000,,2.52000000,0.00000000,,0.32692308,55.00000000,2.43362832,0.01818182,0.00000000,6.31000000 +1215,chr22,19027066,UNK,A,,G,,-1.00000000,,,,,,,55.45000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-1.40000000,0.00000000,,0.13793103,58.00000000,2.56637168,0.00000000,0.00000000,5.88000000 +1216,chr22,19027067,UNK,C,,T,,-1.00000000,,,,,,,55.80000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,-1.28000000,0.00000000,,0.13559322,59.00000000,2.61061947,0.00000000,0.00000000,5.88000000 +1217,chr22,19027077,UNK,C,,T,,-1.00000000,,,,,,,56.39000000,5.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.94000000,0.00000000,,0.10526316,57.00000000,2.52212389,0.00000000,0.00000000,4.63000000 +1218,chr22,19027100,UNK,C,,T,,-1.00000000,,,,,,,58.19000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,,-0.58000000,0.00000000,,0.18333333,62.00000000,2.74336283,0.03225806,0.00000000,6.05000000 +1219,chr22,19062759,UNK,A,,G,,-1.00000000,,,,,,,57.86000000,7.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.04000000,63.00000000,,0.51000000,0.00000000,,0.17187500,67.00000000,2.96460177,0.04477612,0.00000000,5.44000000 +1220,chr22,19062779,UNK,A,,T,,-1.00000000,,,,,,,58.13000000,7.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,65.00000000,,-0.28000000,0.00000000,,0.15151515,76.00000000,3.36283186,0.10526316,0.00000000,5.89000000 +1221,chr22,19072890,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,68.00000000,,0.36000000,0.00000000,,0.22619048,85.00000000,3.76106195,0.01176471,0.00000000,6.91000000 +1222,chr22,19072899,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,0.37000000,0.00000000,,0.20238095,85.00000000,3.76106195,0.01176471,0.00000000,6.89000000 +1223,chr22,19082064,UNK,G,,T,,-1.00000000,,,,,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,71.00000000,,0.61000000,0.00000000,,0.18840580,76.00000000,3.36283186,0.09210526,0.00000000,5.58000000 +1224,chr22,19082067,UNK,T,,G,,-1.00000000,,,,,,,59.17000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,,-0.07000000,0.00000000,,0.19402985,75.00000000,3.31858407,0.10666667,0.00000000,6.29000000 +1225,chr22,19096597,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,0.15000000,0.00000000,,0.13265306,105.00000000,4.64601770,0.06666667,0.00000000,4.79000000 +1226,chr22,19096598,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,67.00000000,,1.65000000,0.00000000,,0.36082474,105.00000000,4.64601770,0.07619048,0.00000000,8.15000000 +1227,chr22,19096604,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,63.00000000,,1.34000000,0.00000000,,0.33695652,101.00000000,4.46902655,0.08910891,0.00000000,7.63000000 +1228,chr22,19096626,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,73.00000000,,1.24000000,0.00000000,,0.18279570,102.00000000,4.51327434,0.08823529,0.00000000,5.97000000 +1229,chr22,19096633,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,75.00000000,,1.53000000,0.00000000,,0.18478261,99.00000000,4.38053097,0.07070707,0.00000000,6.37000000 +1230,chr22,19096895,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,73.00000000,,1.77000000,0.00000000,,0.18918919,75.00000000,3.31858407,0.01333333,0.02597403,5.89000000 +1231,chr22,19096898,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,,-0.07000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.37000000 +1232,chr22,19111860,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02173913,48.00000000,2.12389381,0.04166667,0.00000000,74.00000000,,1.39000000,0.00000000,,0.20000000,67.00000000,2.96460177,0.02985075,0.24719101,5.32000000 +1233,chr22,19114152,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05128205,40.00000000,1.76991150,0.02500000,0.00000000,76.00000000,,-1.94000000,0.00000000,,0.23469388,112.00000000,4.95575221,0.12500000,0.00000000,5.91000000 +1234,chr22,19122240,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,26.00000000,1.15044248,0.00000000,0.00000000,49.00000000,,0.15000000,0.00000000,,0.38181818,58.00000000,2.56637168,0.05172414,0.14705882,3.98000000 +1235,chr22,19122251,UNK,A,,G,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,54.00000000,,0.29000000,0.00000000,,0.47761194,71.00000000,3.14159292,0.05633803,0.00000000,4.32000000 +1236,chr22,19230090,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04761905,33.00000000,1.46017699,0.36363636,0.00000000,12.00000000,,-3.94000000,0.00000000,,0.35294118,88.00000000,3.89380531,0.22727273,0.00000000,3.09000000 +1237,chr22,19230094,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.77142857,0.00000000,6.00000000,,-5.74000000,0.00000000,,0.53333333,88.00000000,3.89380531,0.47727273,0.00000000,3.18000000 +1238,chr22,20333511,UNK,A,,T,,-1.00000000,,,,,,,48.53000000,32.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,62.00000000,,-1.24000000,0.00000000,,0.11235955,90.00000000,3.98230088,0.01111111,0.00000000,5.10000000 +1239,chr22,20334056,UNK,G,,A,,-1.00000000,,,,,,,37.96000000,30.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,1.55000000,0.00000000,,0.29230769,65.00000000,2.87610619,0.00000000,0.00000000,6.03000000 +1240,chr22,20338634,UNK,A,,G,,-1.00000000,,,,,,,55.22000000,52.00000000,ref,1.00000000,0.00000000,74.00000000,3.27433628,0.00000000,0.00000000,83.00000000,,-2.67000000,10.58000000,,0.04405286,229.00000000,10.13274336,0.00436681,0.00000000,3.15000000 +1241,chr22,20342199,UNK,A,,G,,-1.00000000,,,,,,,41.86000000,61.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.72000000,0.00000000,,0.06060606,135.00000000,5.97345133,0.01481481,0.00000000,5.05000000 +1242,chr22,20354938,UNK,G,,A,,-1.00000000,,,,,,,40.08000000,46.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.14285714,0.48148148,20.00000000,,0.65000000,0.00000000,,0.38095238,25.00000000,1.10619469,0.16000000,0.47916667,3.70000000 +1243,chr22,20596974,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,80.00000000,,0.73000000,0.00000000,,0.22222222,63.00000000,2.78761062,0.00000000,0.00000000,6.43000000 +1244,chr22,20684271,UNK,T,,C,,-1.00000000,,,,,,,46.53000000,30.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,62.00000000,,0.47000000,0.50000000,,0.06849315,78.00000000,3.45132743,0.05128205,0.00000000,3.41000000 +1245,chr22,20695038,UNK,T,,A,,-1.00000000,,,,,,,47.57000000,17.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,-1.04000000,0.00000000,,0.07317073,86.00000000,3.80530973,0.02325581,0.00000000,4.88000000 +1246,chr22,21077621,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,58.00000000,,-0.57000000,0.00000000,,0.15873016,74.00000000,3.27433628,0.13513514,0.00000000,4.68000000 +1247,chr22,21122990,UNK,T,,C,,-1.00000000,,,,,,,32.03000000,42.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.53000000,0.00000000,,0.10638298,48.00000000,2.12389381,0.00000000,0.00000000,5.23000000 +1248,chr22,21123062,UNK,C,,T,,-1.00000000,,,,,,,31.87000000,25.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,61.00000000,,0.92000000,0.00000000,,0.11764706,51.00000000,2.25663717,0.00000000,0.00000000,5.12000000 +1249,chr22,21131954,UNK,T,,C,,-1.00000000,,,,,,,20.85000000,59.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,10.00000000,,0.84000000,0.00000000,,0.33333333,18.00000000,0.79646018,0.00000000,0.00000000,3.61000000 +1250,chr22,21148236,UNK,G,,A,,-1.00000000,,,,,,,33.92000000,15.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-1.73000000,0.00000000,,0.42105263,20.00000000,0.88495575,0.05000000,0.00000000,3.00000000 +1251,chr22,21157678,UNK,G,,A,,-1.00000000,,,,,,,34.92000000,27.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,0.39000000,0.00000000,,0.46428571,30.00000000,1.32743363,0.06666667,0.00000000,3.87000000 +1252,chr22,21158186,UNK,A,,G,,-1.00000000,,,,,,,34.98000000,23.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.50000000,0.00000000,,0.07216495,97.00000000,4.29203540,0.00000000,0.00000000,4.73000000 +1253,chr22,21164481,UNK,C,,A,,-1.00000000,,,,,,,43.69000000,36.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-0.31000000,0.77000000,,0.09090909,44.00000000,1.94690265,0.00000000,0.00000000,2.79000000 +1254,chr22,21191155,UNK,C,,T,,-1.00000000,,,,,,,22.18000000,43.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,-0.87000000,0.00000000,,0.47058824,17.00000000,0.75221239,0.00000000,0.00000000,3.57000000 +1255,chr22,21194719,UNK,T,,C,,-1.00000000,,,,,,,35.66000000,17.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,22.00000000,,-0.15000000,0.00000000,,0.33333333,24.00000000,1.06194690,0.00000000,0.00000000,3.52000000 +1256,chr22,21227948,UNK,G,,A,,-1.00000000,,,,,,,39.56000000,46.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.18181818,0.00000000,15.00000000,,-0.90000000,0.00000000,,0.32000000,28.00000000,1.23893805,0.10714286,0.00000000,3.11000000 +1257,chr22,21229104,UNK,C,,T,,-1.00000000,,,,,,,24.64000000,25.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,5.00000000,,-0.75000000,0.00000000,,0.41379310,29.00000000,1.28318584,0.00000000,0.00000000,3.67000000 +1258,chr22,21247740,UNK,G,,A,,-1.00000000,,,,,,,8.76000000,50.00000000,ref,1.00000000,0.00000000,3.00000000,0.13274336,0.00000000,0.00000000,3.00000000,,0.00000000,0.00000000,,1.00000000,2.00000000,0.08849558,0.00000000,0.00000000,3.00000000 +1259,chr22,21275585,UNK,A,,G,,-1.00000000,,,,,,,30.94000000,67.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,,0.32000000,0.00000000,,0.23255814,88.00000000,3.89380531,0.01136364,0.00000000,6.18000000 +1260,chr22,21278309,UNK,G,,A,,-1.00000000,,,,,,,21.24000000,21.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,7.00000000,,-1.01000000,0.00000000,,0.45833333,26.00000000,1.15044248,0.07692308,0.00000000,4.00000000 +1261,chr22,21281249,UNK,C,,G,,-1.00000000,,,,,,,46.85000000,13.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,8.00000000,,-1.54000000,0.84000000,,0.41666667,13.00000000,0.57522124,0.07692308,0.00000000,2.80000000 +1262,chr22,21281300,UNK,A,,G,,-1.00000000,,,,,,,51.93000000,6.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,4.00000000,,0.60000000,0.16000000,,0.35294118,18.00000000,0.79646018,0.05555556,0.00000000,2.84000000 +1263,chr22,21317433,UNK,A,,T,,-1.00000000,,,,,,,36.33000000,31.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,79.00000000,,3.40000000,0.00000000,,0.26315789,39.00000000,1.72566372,0.02564103,0.00000000,5.62000000 +1264,chr22,21321992,UNK,T,,C,,-1.00000000,,,,,,,16.21000000,52.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,-1.32000000,0.00000000,,0.38461538,13.00000000,0.57522124,0.00000000,0.00000000,3.41000000 +1265,chr22,21327720,UNK,C,,G,,-1.00000000,,,,,,,52.78000000,11.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.14285714,0.00000000,23.00000000,,-2.73000000,0.00000000,,0.34285714,38.00000000,1.68141593,0.07894737,0.00000000,3.56000000 +1266,chr22,21327862,UNK,T,,C,,-1.00000000,,,,,,,53.57000000,14.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.00000000,0.00000000,40.00000000,,0.97000000,0.00000000,,0.59090909,33.00000000,1.46017699,0.33333333,0.34000000,3.88000000 +1267,chr22,21327886,UNK,A,,G,,-1.00000000,,,,,,,57.17000000,8.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,49.00000000,,-0.66000000,0.00000000,,0.35294118,62.00000000,2.74336283,0.17741935,0.00000000,4.44000000 +1268,chr22,21328222,UNK,A,,G,,-1.00000000,,,,,,,45.85000000,26.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,32.00000000,,2.20000000,0.00000000,,0.35000000,41.00000000,1.81415929,0.02439024,0.00000000,3.54000000 +1269,chr22,21328669,UNK,A,,T,,-1.00000000,,,,,,,51.03000000,15.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.00000000,26.00000000,,1.17000000,0.00000000,,0.34545455,57.00000000,2.52212389,0.03508772,0.00000000,3.61000000 +1270,chr22,21656416,UNK,G,,A,,-1.00000000,,,,,,,59.14000000,1.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.27272727,0.47619048,9.00000000,,0.98000000,0.00000000,,0.37500000,23.00000000,1.01769912,0.30434783,0.62295082,3.67000000 +1271,chr22,21749185,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,61.00000000,,1.08000000,8.55000000,,0.19607843,57.00000000,2.52212389,0.10526316,0.00000000,3.99000000 +1272,chr22,21931990,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,67.00000000,,-0.34000000,0.00000000,,0.15384615,70.00000000,3.09734513,0.07142857,0.00000000,5.57000000 +1273,chr22,21983402,UNK,A,,T,,-1.00000000,,,,,,,58.99000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,78.00000000,,-2.16000000,0.00000000,,0.21875000,81.00000000,3.58407080,0.20987654,0.00000000,5.86000000 +1274,chr22,22031126,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.50000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.01470588,0.00000000,4.96000000 +1275,chr22,22031229,UNK,A,,G,,-1.00000000,,,,,,,59.55000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,63.00000000,,-0.41000000,0.00000000,,0.09890110,94.00000000,4.15929204,0.03191489,0.00000000,4.73000000 +1276,chr22,22031262,UNK,G,,A,,-1.00000000,,,,,,,59.31000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.19000000,3.73000000,,0.07954545,91.00000000,4.02654867,0.03296703,0.00000000,3.53000000 +1277,chr22,22031343,UNK,G,,C,,-1.00000000,,,,,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,62.00000000,,-0.01000000,2.68000000,,0.07142857,72.00000000,3.18584071,0.02777778,0.00000000,3.74000000 +1278,chr22,22031383,UNK,C,,T,,-1.00000000,,,,,,,59.21000000,3.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,0.66000000,3.10000000,,0.06493506,77.00000000,3.40707965,0.00000000,0.00000000,3.92000000 +1279,chr22,22061344,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,76.00000000,,1.42000000,0.00000000,,0.20000000,71.00000000,3.14159292,0.00000000,0.00000000,5.82000000 +1280,chr22,22073149,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,63.00000000,,-0.38000000,0.00000000,,0.37704918,62.00000000,2.74336283,0.01612903,0.00000000,7.65000000 +1281,chr22,22075631,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,73.00000000,,0.81000000,0.00000000,,0.17391304,69.00000000,3.05309735,0.00000000,0.00000000,6.04000000 +1282,chr22,22078936,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,79.00000000,,-0.17000000,0.00000000,,0.23636364,58.00000000,2.56637168,0.05172414,0.00000000,5.99000000 +1283,chr22,22078957,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,78.00000000,,0.13000000,0.00000000,,0.21666667,60.00000000,2.65486726,0.00000000,0.00000000,6.43000000 +1284,chr22,22079263,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,85.00000000,,1.19000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.43000000 +1285,chr22,22079442,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,69.00000000,,0.29000000,0.00000000,,0.16216216,78.00000000,3.45132743,0.03846154,0.00000000,5.37000000 +1286,chr22,22081861,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,75.00000000,,1.18000000,0.00000000,,0.19444444,73.00000000,3.23008850,0.01369863,0.00000000,5.89000000 +1287,chr22,22082453,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,60.00000000,,1.79000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.08000000 +1288,chr22,22083639,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,1.09000000,0.00000000,,0.13924051,81.00000000,3.58407080,0.02469136,0.00000000,5.45000000 +1289,chr22,22090271,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.02083333,0.00000000,70.00000000,,-0.47000000,0.00000000,,0.06944444,75.00000000,3.31858407,0.04000000,0.00000000,4.56000000 +1290,chr22,22102878,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.05882353,0.00000000,64.00000000,,-0.83000000,4.08000000,,0.09523810,86.00000000,3.80530973,0.02325581,0.00000000,3.46000000 +1291,chr22,22104139,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,0.66000000,0.00000000,,0.09589041,73.00000000,3.23008850,0.00000000,0.00000000,4.97000000 +1292,chr22,22105020,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,57.00000000,,-0.12000000,0.00000000,,0.08695652,72.00000000,3.18584071,0.02777778,0.00000000,3.03000000 +1293,chr22,22109386,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,-0.83000000,2.75000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,4.61000000 +1294,chr22,22132434,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02857143,36.00000000,1.59292035,0.02777778,0.00000000,62.00000000,,0.13000000,0.00000000,,0.07246377,72.00000000,3.18584071,0.04166667,0.00000000,4.71000000 +1295,chr22,22136050,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.00000000,0.00000000,69.00000000,,0.71000000,0.00000000,,0.05882353,85.00000000,3.76106195,0.00000000,0.00000000,4.95000000 +1296,chr22,22138211,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,48.00000000,2.12389381,0.00000000,0.00000000,71.00000000,,1.83000000,0.00000000,,0.09756098,82.00000000,3.62831858,0.00000000,0.00000000,4.88000000 +1297,chr22,22138378,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-0.15000000,0.00000000,,0.08219178,75.00000000,3.31858407,0.02666667,0.00000000,5.57000000 +1298,chr22,22140390,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,68.00000000,,0.25000000,0.00000000,,0.12643678,87.00000000,3.84955752,0.00000000,0.00000000,5.31000000 +1299,chr22,22140471,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.09000000,0.00000000,,0.08045977,87.00000000,3.84955752,0.00000000,0.00000000,5.28000000 +1300,chr22,22140566,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.79000000,0.00000000,,0.11111111,72.00000000,3.18584071,0.00000000,0.00000000,5.14000000 +1301,chr22,22140597,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,0.25000000,0.00000000,,0.08450704,73.00000000,3.23008850,0.02739726,0.00000000,4.88000000 +1302,chr22,22140741,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-1.34000000,0.00000000,,0.11363636,89.00000000,3.93805310,0.00000000,0.00000000,5.32000000 +1303,chr22,22142092,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-0.27000000,0.00000000,,0.06024096,85.00000000,3.76106195,0.01176471,0.00000000,5.30000000 +1304,chr22,22143268,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.24000000,2.77000000,,0.06578947,76.00000000,3.36283186,0.00000000,0.00000000,4.61000000 +1305,chr22,22143618,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,1.28000000,0.00000000,,0.12500000,73.00000000,3.23008850,0.00000000,0.00000000,5.47000000 +1306,chr22,22143955,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.45000000,0.00000000,,0.07352941,69.00000000,3.05309735,0.01449275,0.00000000,5.38000000 +1307,chr22,22144690,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.18000000,0.00000000,,0.10101010,99.00000000,4.38053097,0.00000000,0.00000000,5.01000000 +1308,chr22,22145001,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-0.70000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,5.74000000 +1309,chr22,22150929,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,69.00000000,,0.26000000,0.00000000,,0.12500000,72.00000000,3.18584071,0.00000000,0.00000000,5.13000000 +1310,chr22,22151146,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,69.00000000,,-0.36000000,0.00000000,,0.09876543,81.00000000,3.58407080,0.00000000,0.00000000,5.29000000 +1311,chr22,22151181,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,-0.63000000,0.00000000,,0.10714286,85.00000000,3.76106195,0.01176471,0.00000000,5.70000000 +1312,chr22,22151977,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.94000000,0.00000000,,0.08108108,74.00000000,3.27433628,0.00000000,0.00000000,5.14000000 +1313,chr22,22152176,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.36000000,3.10000000,,0.07042254,72.00000000,3.18584071,0.00000000,0.00000000,4.67000000 +1314,chr22,22154322,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,0.56000000,0.00000000,,0.12162162,76.00000000,3.36283186,0.01315789,0.00000000,5.30000000 +1315,chr22,22156654,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,60.00000000,,0.77000000,0.00000000,,0.08988764,89.00000000,3.93805310,0.00000000,0.00000000,4.84000000 +1316,chr22,22158530,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,0.16000000,0.00000000,,0.10447761,67.00000000,2.96460177,0.00000000,0.00000000,4.95000000 +1317,chr22,22158722,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,68.00000000,,0.74000000,0.00000000,,0.12658228,80.00000000,3.53982301,0.01250000,0.00000000,5.19000000 +1318,chr22,22158743,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,71.00000000,,1.37000000,0.00000000,,0.15000000,80.00000000,3.53982301,0.00000000,0.00000000,5.41000000 +1319,chr22,22158838,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,65.00000000,,0.32000000,0.00000000,,0.09523810,67.00000000,2.96460177,0.05970149,0.00000000,4.79000000 +1320,chr22,22163086,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,0.56000000,0.00000000,,0.08571429,70.00000000,3.09734513,0.00000000,0.00000000,4.89000000 +1321,chr22,22166665,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,73.00000000,,-1.01000000,0.00000000,,0.28787879,69.00000000,3.05309735,0.04347826,0.00000000,5.91000000 +1322,chr22,22166765,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,76.00000000,,0.29000000,0.00000000,,0.26562500,66.00000000,2.92035398,0.03030303,0.00000000,5.80000000 +1323,chr22,22170474,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,83.00000000,,-0.19000000,0.00000000,,0.26829268,84.00000000,3.71681416,0.02380952,0.00000000,6.33000000 +1324,chr22,22171214,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,,0.58000000,0.00000000,,0.20588235,68.00000000,3.00884956,0.00000000,0.00000000,6.39000000 +1325,chr22,22173445,UNK,T,,C,,-1.00000000,,,,,,,55.71000000,16.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,,0.77000000,0.00000000,,0.16176471,68.00000000,3.00884956,0.00000000,0.00000000,5.26000000 +1326,chr22,22173535,UNK,G,,A,,-1.00000000,,,,,,,53.09000000,23.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,,-0.15000000,0.00000000,,0.16363636,55.00000000,2.43362832,0.00000000,0.00000000,5.88000000 +1327,chr22,22175116,UNK,G,,C,,-1.00000000,,,,,,,57.15000000,9.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,68.00000000,,-0.61000000,0.00000000,,0.14583333,50.00000000,2.21238938,0.04000000,0.00000000,5.36000000 +1328,chr22,22175337,UNK,T,,C,,-1.00000000,,,,,,,57.90000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,,0.71000000,2.20000000,,0.15789474,59.00000000,2.61061947,0.03389831,0.00000000,3.53000000 +1329,chr22,22175338,UNK,G,,A,,-1.00000000,,,,,,,57.88000000,7.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,68.00000000,,0.83000000,2.21000000,,0.16071429,58.00000000,2.56637168,0.03448276,0.00000000,3.56000000 +1330,chr22,22177186,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,0.98000000,0.00000000,,0.25454545,56.00000000,2.47787611,0.01785714,0.00000000,6.37000000 +1331,chr22,22177442,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,70.00000000,,0.57000000,0.00000000,,0.20000000,73.00000000,3.23008850,0.04109589,0.00000000,6.30000000 +1332,chr22,22178837,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,77.00000000,,-0.96000000,0.00000000,,0.21212121,66.00000000,2.92035398,0.00000000,0.00000000,6.97000000 +1333,chr22,22178864,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,70.00000000,,-1.60000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.04411765,6.26000000 +1334,chr22,22179031,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,90.00000000,,1.73000000,0.00000000,,0.22988506,88.00000000,3.89380531,0.01136364,0.00000000,6.38000000 +1335,chr22,22179233,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,,-0.09000000,0.00000000,,0.25373134,70.00000000,3.09734513,0.04285714,0.00000000,6.28000000 +1336,chr22,22180136,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,83.00000000,,0.74000000,0.00000000,,0.24675325,78.00000000,3.45132743,0.01282051,0.00000000,6.58000000 +1337,chr22,22180158,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,79.00000000,,-0.04000000,0.00000000,,0.22666667,75.00000000,3.31858407,0.00000000,0.00000000,6.98000000 +1338,chr22,22180475,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,-1.82000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +1339,chr22,22180477,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,-1.60000000,0.00000000,,0.20967742,63.00000000,2.78761062,0.01587302,0.00000000,6.29000000 +1340,chr22,22180598,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,62.00000000,,-1.01000000,0.00000000,,0.31818182,90.00000000,3.98230088,0.02222222,0.00000000,7.26000000 +1341,chr22,22196729,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,,0.26000000,0.00000000,,0.25806452,65.00000000,2.87610619,0.03076923,0.00000000,6.44000000 +1342,chr22,22196753,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,,0.22000000,0.00000000,,0.26229508,64.00000000,2.83185841,0.04687500,0.00000000,6.50000000 +1343,chr22,22200764,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,78.00000000,,-1.26000000,0.00000000,,0.19277108,84.00000000,3.71681416,0.01190476,0.00000000,6.05000000 +1344,chr22,22225429,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,,0.06000000,0.00000000,,0.15909091,44.00000000,1.94690265,0.00000000,0.00000000,5.80000000 +1345,chr22,22230928,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-0.22000000,0.00000000,,0.09259259,57.00000000,2.52212389,0.05263158,0.00000000,4.82000000 +1346,chr22,22234610,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,,-0.49000000,0.00000000,,0.12765957,48.00000000,2.12389381,0.02083333,0.00000000,2.79000000 +1347,chr22,22236173,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,1.08000000,0.00000000,,0.10000000,60.00000000,2.65486726,0.00000000,0.00000000,5.05000000 +1348,chr22,22236776,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.12500000,0.00000000,56.00000000,,-0.13000000,0.00000000,,0.07462687,73.00000000,3.23008850,0.08219178,0.00000000,2.90000000 +1349,chr22,22237175,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.18181818,0.00000000,60.00000000,,-0.48000000,0.00000000,,0.06410256,93.00000000,4.11504425,0.16129032,0.00000000,4.45000000 +1350,chr22,22239558,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.49000000,0.00000000,,0.10000000,70.00000000,3.09734513,0.00000000,0.00000000,5.44000000 +1351,chr22,22254901,UNK,A,,G,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,72.00000000,,-0.98000000,0.00000000,,0.18333333,61.00000000,2.69911504,0.01639344,0.00000000,6.16000000 +1352,chr22,22258320,UNK,G,,A,,-1.00000000,,,,,,,55.82000000,11.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,0.42000000,0.00000000,,0.17073171,54.00000000,2.38938053,0.24074074,0.00000000,2.78000000 +1353,chr22,22266496,UNK,G,,A,,-1.00000000,,,,,,,50.14000000,34.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,67.00000000,,0.05000000,5.45000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,3.98000000 +1354,chr22,22266555,UNK,C,,G,,-1.00000000,,,,,,,50.84000000,34.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.02000000,5.40000000,,0.09210526,76.00000000,3.36283186,0.00000000,0.00000000,4.08000000 +1355,chr22,22272753,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,73.00000000,,-1.49000000,0.00000000,,0.21428571,71.00000000,3.14159292,0.00000000,0.00000000,6.72000000 +1356,chr22,22285107,UNK,T,,C,,-1.00000000,,,,,,,58.55000000,5.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.00000000,0.00000000,,0.09230769,68.00000000,3.00884956,0.04411765,0.00000000,4.67000000 +1357,chr22,22292204,UNK,C,,G,,-1.00000000,,,,,,,59.04000000,4.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.51000000,0.00000000,,0.08536585,84.00000000,3.71681416,0.02380952,0.00000000,4.87000000 +1358,chr22,22292460,UNK,T,,C,,-1.00000000,,,,,,,55.46000000,15.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,64.00000000,,-0.32000000,0.00000000,,0.12280702,58.00000000,2.56637168,0.00000000,0.00000000,5.77000000 +1359,chr22,22294740,UNK,T,,C,,-1.00000000,,,,,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,63.00000000,,-0.69000000,0.00000000,,0.06849315,76.00000000,3.36283186,0.00000000,0.00000000,5.21000000 +1360,chr22,22300733,UNK,G,,C,,-1.00000000,,,,,,,58.64000000,5.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.18666667,77.00000000,3.40707965,0.01298701,0.00000000,6.14000000 +1361,chr22,22312309,UNK,T,,G,,-1.00000000,,,,,,,58.97000000,3.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,,-0.90000000,0.00000000,,0.07692308,66.00000000,2.92035398,0.01515152,0.00000000,4.49000000 +1362,chr22,22315656,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,66.00000000,,0.10000000,0.00000000,,0.10810811,75.00000000,3.31858407,0.00000000,0.00000000,4.87000000 +1363,chr22,22315748,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,62.00000000,,0.96000000,0.00000000,,0.06493506,79.00000000,3.49557522,0.02531646,0.00000000,4.88000000 +1364,chr22,22320933,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.22000000,0.00000000,,0.08955224,67.00000000,2.96460177,0.00000000,0.00000000,5.40000000 +1365,chr22,22320936,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,-0.15000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.38000000 +1366,chr22,22326667,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,93.00000000,,-2.20000000,0.00000000,,0.31746032,66.00000000,2.92035398,0.04545455,0.00000000,7.08000000 +1367,chr22,22327028,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,68.00000000,,-1.08000000,0.00000000,,0.16438356,74.00000000,3.27433628,0.01351351,0.00000000,5.83000000 +1368,chr22,22327407,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,0.41000000,0.00000000,,0.09589041,73.00000000,3.23008850,0.00000000,0.00000000,4.99000000 +1369,chr22,22339540,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,85.00000000,,1.50000000,0.00000000,,0.25000000,74.00000000,3.27433628,0.08108108,0.00000000,5.78000000 +1370,chr22,22342662,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.13888889,0.00000000,63.00000000,,-0.55000000,0.00000000,,0.08000000,78.00000000,3.45132743,0.03846154,0.00000000,4.77000000 +1371,chr22,22347417,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,88.00000000,,-0.05000000,0.00000000,,0.26470588,68.00000000,3.00884956,0.00000000,0.00000000,6.33000000 +1372,chr22,22366082,UNK,A,,C,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,69.00000000,,-0.39000000,0.00000000,,0.16049383,81.00000000,3.58407080,0.00000000,0.00000000,6.30000000 +1373,chr22,22366837,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,0.89000000,0.00000000,,0.07142857,73.00000000,3.23008850,0.04109589,0.00000000,4.71000000 +1374,chr22,22372731,UNK,G,,T,,-1.00000000,,,,,,,59.28000000,1.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.10256410,0.00000000,83.00000000,,0.34000000,0.00000000,,0.24137931,67.00000000,2.96460177,0.13432836,0.00000000,5.51000000 +1375,chr22,22372843,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,81.00000000,,-0.46000000,0.00000000,,0.20000000,75.00000000,3.31858407,0.00000000,0.00000000,6.72000000 +1376,chr22,22374096,UNK,T,,C,,-1.00000000,,,,,,,59.28000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,65.00000000,,0.33000000,0.00000000,,0.06097561,83.00000000,3.67256637,0.01204819,0.00000000,4.80000000 +1377,chr22,22374360,UNK,T,,C,,-1.00000000,,,,,,,59.35000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,68.00000000,,-0.82000000,0.00000000,,0.16666667,61.00000000,2.69911504,0.01639344,0.00000000,5.55000000 +1378,chr22,22374510,UNK,A,,G,,-1.00000000,,,,,,,58.40000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.97000000,0.00000000,,0.07575758,67.00000000,2.96460177,0.01492537,0.00000000,4.62000000 +1379,chr22,22384099,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,89.00000000,,0.44000000,0.00000000,,0.29687500,65.00000000,2.87610619,0.00000000,0.00000000,5.98000000 +1380,chr22,22384223,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,-0.89000000,0.00000000,,0.06493506,77.00000000,3.40707965,0.00000000,0.00000000,5.66000000 +1381,chr22,22387024,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,-0.46000000,0.00000000,,0.10526316,58.00000000,2.56637168,0.01724138,0.00000000,5.08000000 +1382,chr22,22393720,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.90000000,0.00000000,,0.08450704,72.00000000,3.18584071,0.01388889,0.00000000,5.20000000 +1383,chr22,22399328,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.34000000,0.00000000,,0.08196721,63.00000000,2.78761062,0.03174603,0.00000000,4.21000000 +1384,chr22,22513191,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.02325581,0.00000000,58.00000000,,-1.39000000,0.00000000,,0.06451613,62.00000000,2.74336283,0.00000000,0.00000000,3.46000000 +1385,chr22,22513693,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,62.00000000,,-0.22000000,3.27000000,,0.07246377,72.00000000,3.18584071,0.01388889,0.00000000,3.81000000 +1386,chr22,22514799,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-0.67000000,0.00000000,,0.06896552,87.00000000,3.84955752,0.00000000,0.00000000,5.57000000 +1387,chr22,22514885,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,-0.54000000,0.00000000,,0.08695652,71.00000000,3.14159292,0.02816901,0.00000000,4.71000000 +1388,chr22,22514894,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,62.00000000,,-0.72000000,0.00000000,,0.09589041,75.00000000,3.31858407,0.02666667,0.00000000,4.79000000 +1389,chr22,22515214,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,64.00000000,,-0.22000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,5.02000000 +1390,chr22,22515221,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.81000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,4.97000000 +1391,chr22,22515224,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,-0.81000000,0.00000000,,0.08860759,82.00000000,3.62831858,0.03658537,0.00000000,4.97000000 +1392,chr22,22515325,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.42000000,0.00000000,,0.07042254,71.00000000,3.14159292,0.00000000,0.00000000,5.45000000 +1393,chr22,22515418,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,69.00000000,,-0.86000000,0.00000000,,0.13698630,74.00000000,3.27433628,0.01351351,0.00000000,5.72000000 +1394,chr22,22544766,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.05263158,0.00000000,35.00000000,,-0.02000000,0.00000000,,0.55555556,36.00000000,1.59292035,0.00000000,0.00000000,4.10000000 +1395,chr22,22544893,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,,0.75000000,0.00000000,,0.37777778,48.00000000,2.12389381,0.06250000,0.00000000,3.89000000 +1396,chr22,22548659,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,58.00000000,,0.53000000,0.00000000,,0.09090909,57.00000000,2.52212389,0.03508772,0.00000000,3.79000000 +1397,chr22,22550027,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,71.00000000,,-0.37000000,0.00000000,,0.18840580,71.00000000,3.14159292,0.01408451,0.00000000,6.40000000 +1398,chr22,22552544,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,68.00000000,,1.66000000,0.00000000,,0.05952381,88.00000000,3.89380531,0.04545455,0.00000000,4.57000000 +1399,chr22,22556943,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,60.00000000,,-0.56000000,0.00000000,,0.09459459,74.00000000,3.27433628,0.00000000,0.00000000,5.22000000 +1400,chr22,22556994,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,0.86000000,0.00000000,,0.11538462,78.00000000,3.45132743,0.00000000,0.00000000,4.88000000 +1401,chr22,22564042,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,1.56000000,0.00000000,,0.08219178,75.00000000,3.31858407,0.02666667,0.00000000,4.92000000 +1402,chr22,22566871,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,62.00000000,,1.06000000,0.00000000,,0.15686275,51.00000000,2.25663717,0.00000000,0.00000000,5.89000000 +1403,chr22,22573069,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,86.00000000,,0.40000000,0.00000000,,0.30434783,69.00000000,3.05309735,0.00000000,0.00000000,5.92000000 +1404,chr22,22582123,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,-0.44000000,0.00000000,,0.09859155,72.00000000,3.18584071,0.00000000,0.00000000,5.46000000 +1405,chr22,22582931,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,0.80000000,0.00000000,,0.10344828,58.00000000,2.56637168,0.00000000,0.00000000,4.88000000 +1406,chr22,22583942,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,64.00000000,,0.75000000,0.00000000,,0.07142857,71.00000000,3.14159292,0.01408451,0.00000000,4.95000000 +1407,chr22,22584229,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,68.00000000,,0.34000000,0.00000000,,0.08823529,69.00000000,3.05309735,0.01449275,0.00000000,5.01000000 +1408,chr22,22584873,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,1.72000000,0.00000000,,0.08823529,69.00000000,3.05309735,0.01449275,0.00000000,4.97000000 +1409,chr22,22585562,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,-0.61000000,0.00000000,,0.11267606,73.00000000,3.23008850,0.02739726,0.00000000,4.85000000 +1410,chr22,22586227,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.98000000,0.00000000,,0.10606061,66.00000000,2.92035398,0.00000000,0.00000000,5.14000000 +1411,chr22,22586383,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,1.43000000,0.00000000,,0.09433962,54.00000000,2.38938053,0.01851852,0.00000000,4.73000000 +1412,chr22,22586584,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,0.95000000,0.00000000,,0.09459459,74.00000000,3.27433628,0.00000000,0.00000000,4.82000000 +1413,chr22,22586995,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,-1.11000000,0.00000000,,0.08823529,68.00000000,3.00884956,0.00000000,0.00000000,5.54000000 +1414,chr22,22587551,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-0.41000000,0.00000000,,0.13698630,79.00000000,3.49557522,0.07594937,0.00000000,5.07000000 +1415,chr22,22587749,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,65.00000000,,-1.29000000,0.00000000,,0.16071429,56.00000000,2.47787611,0.00000000,0.00000000,5.87000000 +1416,chr22,22588914,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,66.00000000,,1.41000000,0.00000000,,0.13725490,53.00000000,2.34513274,0.03773585,0.00000000,5.27000000 +1417,chr22,22589012,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,73.00000000,,-1.65000000,0.00000000,,0.22727273,46.00000000,2.03539823,0.04347826,0.00000000,6.20000000 +1418,chr22,22589306,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,66.00000000,,-1.39000000,0.00000000,,0.13333333,45.00000000,1.99115044,0.00000000,0.22413793,5.62000000 +1419,chr22,22589310,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,,-3.63000000,0.00000000,,0.21818182,55.00000000,2.43362832,0.00000000,0.00000000,6.09000000 +1420,chr22,22589389,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.14814815,0.00000000,60.00000000,,0.62000000,3.31000000,,0.13461538,55.00000000,2.43362832,0.05454545,0.00000000,3.33000000 +1421,chr22,22592684,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,43.00000000,1.90265487,0.04651163,0.00000000,99.00000000,,-0.04000000,0.00000000,,0.30136986,75.00000000,3.31858407,0.02666667,0.00000000,5.24000000 +1422,chr22,22592758,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,98.00000000,,-0.12000000,0.00000000,,0.32000000,76.00000000,3.36283186,0.01315789,0.00000000,8.09000000 +1423,chr22,22595580,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,66.00000000,,-0.23000000,0.00000000,,0.30000000,81.00000000,3.58407080,0.01234568,0.00000000,7.00000000 +1424,chr22,22595599,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,72.00000000,,-1.36000000,0.00000000,,0.28915663,83.00000000,3.67256637,0.00000000,0.00000000,6.82000000 +1425,chr22,22596996,UNK,T,,G,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,63.00000000,,-1.01000000,0.00000000,,0.30555556,77.00000000,3.40707965,0.05194805,0.00000000,6.83000000 +1426,chr22,22597138,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.05128205,0.00000000,93.00000000,,0.63000000,0.00000000,,0.29487179,80.00000000,3.53982301,0.02500000,0.00000000,5.60000000 +1427,chr22,22597255,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,93.00000000,,-1.54000000,0.00000000,,0.30985915,74.00000000,3.27433628,0.04054054,0.00000000,6.13000000 +1428,chr22,22597433,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,71.00000000,,-0.33000000,0.00000000,,0.37096774,62.00000000,2.74336283,0.00000000,0.00000000,8.89000000 +1429,chr22,22598992,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-1.08000000,0.00000000,,0.09230769,65.00000000,2.87610619,0.00000000,0.00000000,5.18000000 +1430,chr22,22599689,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.00000000,0.00000000,105.00000000,,-0.23000000,0.00000000,,0.31250000,82.00000000,3.62831858,0.01219512,0.00000000,12.94000000 +1431,chr22,22600250,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,56.00000000,,1.39000000,0.00000000,,0.33823529,70.00000000,3.09734513,0.02857143,0.00000000,3.99000000 +1432,chr22,22601030,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,,1.07000000,0.00000000,,0.36781609,90.00000000,3.98230088,0.03333333,0.00000000,13.06000000 +1433,chr22,22601278,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,87.00000000,,0.46000000,0.00000000,,0.31944444,72.00000000,3.18584071,0.00000000,0.00000000,7.10000000 +1434,chr22,22601312,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,93.00000000,,0.11000000,0.00000000,,0.26666667,77.00000000,3.40707965,0.02597403,0.00000000,5.55000000 +1435,chr22,22601683,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,83.00000000,,0.01000000,0.00000000,,0.35937500,67.00000000,2.96460177,0.04477612,0.00000000,8.08000000 +1436,chr22,22602885,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,91.00000000,,-0.53000000,0.00000000,,0.29629630,83.00000000,3.67256637,0.01204819,0.00000000,6.11000000 +1437,chr22,22604686,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,43.00000000,,0.83000000,0.00000000,,0.31250000,64.00000000,2.83185841,0.00000000,0.00000000,3.06000000 +1438,chr22,22606031,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,86.00000000,,0.29000000,0.00000000,,0.25000000,82.00000000,3.62831858,0.01219512,0.00000000,6.49000000 +1439,chr22,22608579,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,96.00000000,,1.02000000,0.00000000,,0.30882353,69.00000000,3.05309735,0.01449275,0.00000000,5.88000000 +1440,chr22,22608720,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,89.00000000,,-0.43000000,0.00000000,,0.22619048,84.00000000,3.71681416,0.00000000,0.00000000,6.46000000 +1441,chr22,22609137,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,87.00000000,,-0.03000000,0.00000000,,0.40000000,86.00000000,3.80530973,0.01162791,0.00000000,8.60000000 +1442,chr22,22609364,UNK,T,,C,,-1.00000000,,,,,,,59.37000000,1.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,0.39000000,0.00000000,,0.31250000,70.00000000,3.09734513,0.05714286,0.00000000,6.83000000 +1443,chr22,22609769,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,84.00000000,,0.46000000,0.00000000,,0.37500000,82.00000000,3.62831858,0.01219512,0.00000000,8.35000000 +1444,chr22,22610004,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,103.00000000,,-1.47000000,0.00000000,,0.35937500,67.00000000,2.96460177,0.01492537,0.00000000,13.86000000 +1445,chr22,22611156,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,101.00000000,,-2.18000000,0.00000000,,0.29113924,81.00000000,3.58407080,0.02469136,0.00000000,6.24000000 +1446,chr22,22611174,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,107.00000000,,-2.13000000,0.00000000,,0.31168831,78.00000000,3.45132743,0.01282051,0.00000000,11.32000000 +1447,chr22,22611337,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,85.00000000,,0.71000000,0.00000000,,0.28571429,71.00000000,3.14159292,0.00000000,0.00000000,6.33000000 +1448,chr22,22612826,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,85.00000000,,0.63000000,0.00000000,,0.40000000,55.00000000,2.43362832,0.00000000,0.00000000,8.52000000 +1449,chr22,22613047,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,89.00000000,,-0.37000000,0.00000000,,0.25396825,64.00000000,2.83185841,0.01562500,0.00000000,6.34000000 +1450,chr22,22615040,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.06521739,0.00000000,89.00000000,,1.17000000,0.00000000,,0.23188406,73.00000000,3.23008850,0.05479452,0.00000000,5.27000000 +1451,chr22,22615660,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,100.00000000,,-2.08000000,0.00000000,,0.32258065,63.00000000,2.78761062,0.00000000,0.00000000,8.94000000 +1452,chr22,22615956,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,87.00000000,,1.34000000,0.00000000,,0.37142857,71.00000000,3.14159292,0.01408451,0.00000000,8.21000000 +1453,chr22,22616047,UNK,C,,T,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,68.00000000,,-0.34000000,0.00000000,,0.42857143,50.00000000,2.21238938,0.02000000,0.00000000,8.15000000 +1454,chr22,22616398,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.32000000,0.00000000,,0.21428571,56.00000000,2.47787611,0.00000000,0.00000000,6.32000000 +1455,chr22,22616837,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,81.00000000,,0.40000000,0.00000000,,0.28985507,69.00000000,3.05309735,0.00000000,0.00000000,5.94000000 +1456,chr22,22617747,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,92.00000000,,-2.05000000,0.00000000,,0.26086957,70.00000000,3.09734513,0.01428571,0.00000000,6.05000000 +1457,chr22,22617789,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,97.00000000,,-1.38000000,0.00000000,,0.31343284,68.00000000,3.00884956,0.01470588,0.00000000,7.01000000 +1458,chr22,22617803,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,99.00000000,,-0.72000000,0.00000000,,0.35937500,64.00000000,2.83185841,0.00000000,0.00000000,8.93000000 +1459,chr22,22618476,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,88.00000000,,-0.62000000,0.00000000,,0.27118644,59.00000000,2.61061947,0.00000000,0.00000000,6.66000000 +1460,chr22,22619283,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,86.00000000,,-0.24000000,0.00000000,,0.27848101,79.00000000,3.49557522,0.00000000,0.00000000,6.70000000 +1461,chr22,22620595,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-1.89000000,0.00000000,,0.10958904,76.00000000,3.36283186,0.01315789,0.00000000,5.89000000 +1462,chr22,22621051,UNK,C,,T,,-1.00000000,,,,,,,55.67000000,8.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,69.00000000,,0.60000000,0.00000000,,0.16981132,53.00000000,2.34513274,0.00000000,0.00000000,5.76000000 +1463,chr22,22622116,UNK,T,,C,,-1.00000000,,,,,,,57.29000000,9.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,77.00000000,,-1.46000000,0.00000000,,0.21818182,58.00000000,2.56637168,0.05172414,0.00000000,5.88000000 +1464,chr22,22623750,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,76.00000000,,-0.63000000,0.00000000,,0.30645161,64.00000000,2.83185841,0.01562500,0.00000000,6.87000000 +1465,chr22,22624117,UNK,A,,G,,-1.00000000,,,,,,,57.95000000,4.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,74.00000000,,-0.61000000,0.00000000,,0.22448980,50.00000000,2.21238938,0.02000000,0.00000000,6.20000000 +1466,chr22,22626569,UNK,G,,T,,-1.00000000,,,,,,,57.40000000,7.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,48.00000000,,0.99000000,0.00000000,,0.36842105,59.00000000,2.61061947,0.03389831,0.00000000,4.28000000 +1467,chr22,22626966,UNK,C,,T,,-1.00000000,,,,,,,57.69000000,6.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-1.56000000,0.00000000,,0.35384615,65.00000000,2.87610619,0.00000000,0.00000000,6.85000000 +1468,chr22,22627117,UNK,G,,A,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.19354839,0.00000000,42.00000000,,0.63000000,0.00000000,,0.42000000,62.00000000,2.74336283,0.19354839,0.00000000,4.05000000 +1469,chr22,22627350,UNK,T,,C,,-1.00000000,,,,,,,57.32000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,56.00000000,,-1.44000000,0.00000000,,0.26530612,52.00000000,2.30088496,0.05769231,0.00000000,2.96000000 +1470,chr22,22627351,UNK,G,,T,,-1.00000000,,,,,,,57.32000000,4.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,67.00000000,,-1.54000000,0.00000000,,0.28000000,52.00000000,2.30088496,0.03846154,0.00000000,5.97000000 +1471,chr22,22627387,UNK,G,,C,,-1.00000000,,,,,,,57.40000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,68.00000000,,-1.85000000,0.00000000,,0.34000000,56.00000000,2.47787611,0.10714286,0.00000000,7.77000000 +1472,chr22,22627888,UNK,G,,A,,-1.00000000,,,,,,,55.99000000,4.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,66.00000000,,0.19000000,0.00000000,,0.36842105,58.00000000,2.56637168,0.00000000,0.00000000,7.74000000 +1473,chr22,22628115,UNK,G,,C,,-1.00000000,,,,,,,46.14000000,19.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.30000000,0.00000000,,0.19512195,41.00000000,1.81415929,0.00000000,0.00000000,7.00000000 +1474,chr22,22629471,UNK,T,,A,,-1.00000000,,,,,,,59.29000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.00000000,0.00000000,104.00000000,,1.18000000,0.00000000,,0.40259740,77.00000000,3.40707965,0.00000000,0.00000000,15.39000000 +1475,chr22,22629660,UNK,A,,G,,-1.00000000,,,,,,,49.48000000,30.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,53.00000000,,0.60000000,0.00000000,,0.40000000,50.00000000,2.21238938,0.00000000,0.00000000,4.36000000 +1476,chr22,22629925,UNK,A,,G,,-1.00000000,,,,,,,57.71000000,3.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,91.00000000,,0.10000000,0.00000000,,0.26086957,69.00000000,3.05309735,0.00000000,0.00000000,6.09000000 +1477,chr22,22630104,UNK,G,,A,,-1.00000000,,,,,,,46.04000000,37.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,54.00000000,,-0.98000000,0.00000000,,0.31818182,45.00000000,1.99115044,0.02222222,0.00000000,3.85000000 +1478,chr22,22630632,UNK,A,,G,,-1.00000000,,,,,,,55.86000000,10.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,69.00000000,,-1.14000000,0.00000000,,0.15942029,71.00000000,3.14159292,0.02816901,0.00000000,5.58000000 +1479,chr22,22630913,UNK,A,,G,,-1.00000000,,,,,,,53.14000000,15.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,62.00000000,,-1.03000000,0.00000000,,0.10909091,55.00000000,2.43362832,0.00000000,0.00000000,5.14000000 +1480,chr22,22630997,UNK,A,,G,,-1.00000000,,,,,,,55.84000000,9.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,62.00000000,,-0.73000000,0.00000000,,0.17647059,54.00000000,2.38938053,0.01851852,0.00000000,5.81000000 +1481,chr22,22632837,UNK,A,,C,,-1.00000000,,,,,,,47.63000000,23.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,,0.93000000,2.04000000,,0.08196721,61.00000000,2.69911504,0.00000000,0.00000000,3.38000000 +1482,chr22,22632864,UNK,A,,G,,-1.00000000,,,,,,,48.44000000,22.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,67.00000000,,0.85000000,0.00000000,,0.13846154,65.00000000,2.87610619,0.00000000,0.00000000,5.16000000 +1483,chr22,22632886,UNK,T,,C,,-1.00000000,,,,,,,49.72000000,25.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,-0.19000000,0.00000000,,0.10769231,66.00000000,2.92035398,0.01515152,0.00000000,5.29000000 +1484,chr22,22633078,UNK,A,,G,,-1.00000000,,,,,,,38.48000000,30.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,-0.35000000,0.00000000,,0.12500000,43.00000000,1.90265487,0.06976744,0.00000000,2.95000000 +1485,chr22,22633183,UNK,T,,C,,-1.00000000,,,,,,,48.48000000,21.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-2.66000000,0.00000000,,0.16393443,64.00000000,2.83185841,0.03125000,0.00000000,6.42000000 +1486,chr22,22633455,UNK,G,,T,,-1.00000000,,,,,,,55.55000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-0.14000000,0.00000000,,0.17241379,60.00000000,2.65486726,0.03333333,0.00000000,6.31000000 +1487,chr22,22633460,UNK,G,,A,,-1.00000000,,,,,,,55.97000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,-0.04000000,0.00000000,,0.16949153,61.00000000,2.69911504,0.03278689,0.00000000,6.27000000 +1488,chr22,22633461,UNK,C,,T,,-1.00000000,,,,,,,56.01000000,8.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,64.00000000,,0.06000000,0.00000000,,0.16666667,62.00000000,2.74336283,0.03225806,0.00000000,5.45000000 +1489,chr22,22634061,UNK,A,,C,,-1.00000000,,,,,,,51.10000000,20.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,61.00000000,,1.33000000,0.00000000,,0.24074074,55.00000000,2.43362832,0.01818182,0.00000000,5.30000000 +1490,chr22,22634245,UNK,G,,C,,-1.00000000,,,,,,,54.62000000,12.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.04878049,0.00000000,72.00000000,,1.27000000,0.00000000,,0.16666667,51.00000000,2.25663717,0.05882353,0.00000000,4.71000000 +1491,chr22,22634396,UNK,T,,C,,-1.00000000,,,,,,,50.20000000,13.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,59.00000000,,-1.46000000,2.58000000,,0.09259259,55.00000000,2.43362832,0.01818182,0.00000000,3.18000000 +1492,chr22,22635431,UNK,C,,A,,-1.00000000,,,,,,,52.44000000,16.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,66.00000000,,1.76000000,0.00000000,,0.16326531,50.00000000,2.21238938,0.02000000,0.00000000,4.82000000 +1493,chr22,22635621,UNK,A,,G,,-1.00000000,,,,,,,58.63000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,72.00000000,,-0.37000000,0.00000000,,0.23437500,64.00000000,2.83185841,0.00000000,0.00000000,6.80000000 +1494,chr22,22635763,UNK,A,,G,,-1.00000000,,,,,,,48.92000000,19.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,62.00000000,,1.48000000,0.00000000,,0.13636364,46.00000000,2.03539823,0.00000000,0.00000000,5.98000000 +1495,chr22,22636145,UNK,G,,A,,-1.00000000,,,,,,,45.34000000,15.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,53.00000000,,1.39000000,0.00000000,,0.21875000,33.00000000,1.46017699,0.03030303,0.00000000,2.81000000 +1496,chr22,22636800,UNK,A,,G,,-1.00000000,,,,,,,53.89000000,16.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,58.00000000,,0.96000000,0.00000000,,0.07547170,54.00000000,2.38938053,0.01851852,0.00000000,3.67000000 +1497,chr22,22646441,UNK,G,,A,,-1.00000000,,,,,,,49.15000000,18.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,56.00000000,,-1.68000000,0.00000000,,0.27083333,50.00000000,2.21238938,0.04000000,0.00000000,3.14000000 +1498,chr22,22648787,UNK,T,,G,,-1.00000000,,,,,,,57.44000000,6.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,74.00000000,,0.86000000,0.00000000,,0.22388060,71.00000000,3.14159292,0.05633803,0.00000000,5.58000000 +1499,chr22,22651005,UNK,T,,C,,-1.00000000,,,,,,,56.35000000,6.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,,-0.45000000,0.00000000,,0.30508475,59.00000000,2.61061947,0.00000000,0.00000000,5.08000000 +1500,chr22,22652521,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.29166667,0.00000000,33.00000000,,0.23000000,0.00000000,,0.32432432,57.00000000,2.52212389,0.33333333,0.00000000,3.56000000 +1501,chr22,22656140,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.04444444,0.00000000,62.00000000,,-1.11000000,0.00000000,,0.08333333,73.00000000,3.23008850,0.01369863,0.00000000,4.32000000 +1502,chr22,22656163,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,1.10000000,0.00000000,,0.08450704,74.00000000,3.27433628,0.02702703,0.00000000,4.78000000 +1503,chr22,22658171,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,63.00000000,,0.44000000,0.00000000,,0.10447761,68.00000000,3.00884956,0.00000000,0.00000000,4.72000000 +1504,chr22,22658211,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,62.00000000,,1.10000000,0.00000000,,0.09459459,76.00000000,3.36283186,0.02631579,0.00000000,4.81000000 +1505,chr22,22658220,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,63.00000000,,0.82000000,0.00000000,,0.08000000,78.00000000,3.45132743,0.03846154,0.00000000,4.77000000 +1506,chr22,22658283,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,-0.48000000,0.00000000,,0.07462687,68.00000000,3.00884956,0.01470588,0.00000000,5.63000000 +1507,chr22,22658395,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,60.00000000,,-1.15000000,1.93000000,,0.06557377,61.00000000,2.69911504,0.00000000,0.00000000,4.36000000 +1508,chr22,22658422,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,59.00000000,,-1.26000000,0.00000000,,0.06153846,65.00000000,2.87610619,0.00000000,0.00000000,4.24000000 +1509,chr22,22660915,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.28000000,0.00000000,,0.08333333,73.00000000,3.23008850,0.01369863,0.00000000,5.04000000 +1510,chr22,22668906,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,65.00000000,,-1.28000000,2.57000000,,0.07462687,67.00000000,2.96460177,0.00000000,0.00000000,3.95000000 +1511,chr22,22669132,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.05000000,0.00000000,,0.08000000,76.00000000,3.36283186,0.01315789,0.00000000,5.13000000 +1512,chr22,22670177,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.02173913,0.00000000,58.00000000,,-1.11000000,0.00000000,,0.05714286,71.00000000,3.14159292,0.01408451,0.00000000,3.34000000 +1513,chr22,22670537,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,,-0.79000000,0.00000000,,0.10937500,64.00000000,2.83185841,0.00000000,0.00000000,5.44000000 +1514,chr22,22670592,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,64.00000000,,0.23000000,0.00000000,,0.13636364,66.00000000,2.92035398,0.00000000,0.00000000,5.39000000 +1515,chr22,22671013,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.02564103,0.00000000,67.00000000,,0.82000000,0.00000000,,0.08974359,79.00000000,3.49557522,0.00000000,0.00000000,4.90000000 +1516,chr22,22671339,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,63.00000000,,-0.95000000,0.00000000,,0.06024096,86.00000000,3.80530973,0.03488372,0.00000000,4.84000000 +1517,chr22,22671379,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,0.01000000,0.00000000,,0.08860759,80.00000000,3.53982301,0.01250000,0.00000000,5.29000000 +1518,chr22,22672600,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.05000000,0.00000000,,0.09411765,86.00000000,3.80530973,0.00000000,0.00000000,5.10000000 +1519,chr22,22672692,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,1.00000000,0.00000000,,0.07042254,73.00000000,3.23008850,0.02739726,0.00000000,4.10000000 +1520,chr22,22672832,UNK,A,,G,,-1.00000000,,,,,,,59.78000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,65.00000000,,0.78000000,0.00000000,,0.09756098,82.00000000,3.62831858,0.00000000,0.00000000,5.06000000 +1521,chr22,22673154,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,-1.10000000,0.00000000,,0.07594937,82.00000000,3.62831858,0.02439024,0.00000000,5.24000000 +1522,chr22,22673188,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,67.00000000,,0.29000000,0.00000000,,0.08641975,81.00000000,3.58407080,0.00000000,0.00000000,5.10000000 +1523,chr22,22673806,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.01960784,51.00000000,2.25663717,0.00000000,0.00000000,63.00000000,,1.39000000,0.00000000,,0.07954545,91.00000000,4.02654867,0.02197802,0.00000000,4.60000000 +1524,chr22,22677074,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.04761905,0.00000000,68.00000000,,-0.86000000,0.00000000,,0.09836066,62.00000000,2.74336283,0.00000000,0.00000000,5.38000000 +1525,chr22,22679554,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,59.00000000,,-0.13000000,0.00000000,,0.08450704,74.00000000,3.27433628,0.04054054,0.00000000,4.24000000 +1526,chr22,22679769,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,67.00000000,,0.59000000,0.00000000,,0.09589041,76.00000000,3.36283186,0.03947368,0.00000000,4.74000000 +1527,chr22,22683141,UNK,G,,A,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,,-1.07000000,0.00000000,,0.06666667,60.00000000,2.65486726,0.00000000,0.00000000,3.86000000 +1528,chr22,22685174,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,91.00000000,,0.64000000,0.00000000,,0.25396825,63.00000000,2.78761062,0.00000000,0.00000000,6.32000000 +1529,chr22,22685224,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.47000000,0.00000000,,0.08333333,72.00000000,3.18584071,0.00000000,0.00000000,4.95000000 +1530,chr22,22685539,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,0.86000000,0.00000000,,0.09375000,66.00000000,2.92035398,0.03030303,0.00000000,4.93000000 +1531,chr22,22685830,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,65.00000000,,0.77000000,0.00000000,,0.15384615,52.00000000,2.30088496,0.00000000,0.00000000,5.48000000 +1532,chr22,22687124,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,61.00000000,,-0.26000000,0.00000000,,0.12698413,66.00000000,2.92035398,0.04545455,0.00000000,4.95000000 +1533,chr22,22689172,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,59.00000000,,-1.02000000,0.00000000,,0.07017544,58.00000000,2.56637168,0.01724138,0.00000000,3.98000000 +1534,chr22,22689944,UNK,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,46.00000000,2.03539823,0.00000000,0.00000000,96.00000000,,-2.08000000,0.00000000,,0.24719101,91.00000000,4.02654867,0.01098901,0.00000000,6.20000000 +1535,chr22,22698244,UNK,G,,C,,-1.00000000,,,,,,,59.21000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,64.00000000,,0.30000000,0.00000000,,0.08928571,58.00000000,2.56637168,0.03448276,0.00000000,4.61000000 +1536,chr22,22698280,UNK,G,,C,,-1.00000000,,,,,,,58.37000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,59.00000000,,1.25000000,0.00000000,,0.10000000,52.00000000,2.30088496,0.03846154,0.00000000,4.04000000 +1537,chr22,22698337,UNK,C,,T,,-1.00000000,,,,,,,57.58000000,5.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,61.00000000,,-1.31000000,2.22000000,,0.08771930,59.00000000,2.61061947,0.01694915,0.00000000,3.95000000 +1538,chr22,22703853,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,1.64000000,0.00000000,,0.12500000,50.00000000,2.21238938,0.04000000,0.00000000,4.70000000 +1539,chr22,22728844,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,37.00000000,,-1.49000000,0.00000000,,0.26315789,38.00000000,1.68141593,0.00000000,0.00000000,2.79000000 +1540,chr22,22766944,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.04347826,23.00000000,1.01769912,0.00000000,0.00000000,12.00000000,,-0.16000000,0.00000000,,0.34090909,44.00000000,1.94690265,0.00000000,0.00000000,3.22000000 +1541,chr22,22769528,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,40.00000000,,-1.12000000,0.00000000,,0.31250000,32.00000000,1.41592920,0.00000000,0.00000000,2.81000000 +1542,chr22,22785620,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,-0.07000000,0.00000000,,0.14814815,28.00000000,1.23893805,0.03571429,0.00000000,2.94000000 +1543,chr22,22788606,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,1.48000000,0.00000000,,0.09523810,42.00000000,1.85840708,0.00000000,0.00000000,4.81000000 +1544,chr22,22790421,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.62000000,0.00000000,,0.19230769,27.00000000,1.19469027,0.03703704,0.00000000,3.02000000 +1545,chr22,22793099,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,41.00000000,,-0.19000000,0.00000000,,0.21951220,41.00000000,1.81415929,0.00000000,0.00000000,2.89000000 +1546,chr22,22796993,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,0.36000000,0.00000000,,0.21052632,38.00000000,1.68141593,0.00000000,0.00000000,6.80000000 +1547,chr22,22811561,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.07142857,0.00000000,36.00000000,,-0.06000000,0.00000000,,0.15789474,41.00000000,1.81415929,0.07317073,0.00000000,2.80000000 +1548,chr22,22815519,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.01000000,0.00000000,,0.23913043,46.00000000,2.03539823,0.00000000,0.00000000,7.12000000 +1549,chr22,22823529,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,0.68000000,0.00000000,,0.17142857,36.00000000,1.59292035,0.02777778,0.00000000,2.81000000 +1550,chr22,22836377,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,0.58000000,0.00000000,,0.12195122,41.00000000,1.81415929,0.00000000,0.00000000,2.78000000 +1551,chr22,22846595,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,1.42000000,0.00000000,,0.24489796,49.00000000,2.16814159,0.00000000,0.00000000,6.85000000 +1552,chr22,22868525,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,57.00000000,,0.41000000,0.00000000,,0.12244898,50.00000000,2.21238938,0.02000000,0.00000000,2.78000000 +1553,chr22,22905387,UNK,A,,C,,-1.00000000,,,,,,,46.91000000,33.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,59.00000000,,-0.42000000,2.04000000,,0.07352941,69.00000000,3.05309735,0.01449275,0.00000000,3.31000000 +1554,chr22,22905403,UNK,G,,C,,-1.00000000,,,,,,,46.37000000,33.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.61000000,2.05000000,,0.07352941,72.00000000,3.18584071,0.02777778,0.00000000,2.99000000 +1555,chr22,23180617,UNK,G,,C,,-1.00000000,,,,,,,59.34000000,2.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.06250000,0.00000000,42.00000000,,-0.44000000,0.00000000,,0.27941176,73.00000000,3.23008850,0.06849315,0.00000000,2.81000000 +1556,chr22,23307898,UNK,T,,A,,-1.00000000,,,,,,,46.92000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,,-1.70000000,0.00000000,,0.21739130,46.00000000,2.03539823,0.00000000,0.00000000,6.70000000 +1557,chr22,23316050,UNK,A,,G,,-1.00000000,,,,,,,58.33000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,70.00000000,,-0.65000000,4.95000000,,0.13580247,82.00000000,3.62831858,0.01219512,0.00000000,4.72000000 +1558,chr22,23316139,UNK,A,,G,,-1.00000000,,,,,,,57.57000000,4.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,60.00000000,,0.81000000,2.69000000,,0.12121212,69.00000000,3.05309735,0.01449275,0.00000000,4.09000000 +1559,chr22,23316970,UNK,C,,G,,-1.00000000,,,,,,,53.58000000,10.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,-1.09000000,0.00000000,,0.16279070,44.00000000,1.94690265,0.02272727,0.00000000,5.93000000 +1560,chr22,23326907,UNK,C,,A,,-1.00000000,,,,,,,31.17000000,14.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,1.33000000,0.00000000,,0.72222222,19.00000000,0.84070796,0.05263158,0.00000000,3.00000000 +1561,chr22,23326919,UNK,G,,C,,-1.00000000,,,,,,,31.19000000,13.00000000,ref,1.00000000,0.00000000,4.00000000,0.17699115,0.00000000,0.00000000,3.00000000,,0.52000000,0.00000000,,0.73333333,15.00000000,0.66371681,0.00000000,0.00000000,3.00000000 +1562,chr22,23327177,UNK,T,,G,,-1.00000000,,,,,,,40.01000000,15.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.09090909,0.00000000,14.00000000,,0.38000000,0.00000000,,0.63636364,16.00000000,0.70796460,0.31250000,0.00000000,3.97000000 +1563,chr22,23329534,UNK,G,,A,,-1.00000000,,,,,,,52.28000000,12.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,82.00000000,,2.04000000,0.00000000,,0.24615385,65.00000000,2.87610619,0.00000000,0.00000000,5.86000000 +1564,chr22,23329550,UNK,A,,G,,-1.00000000,,,,,,,53.45000000,11.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,82.00000000,,2.27000000,0.00000000,,0.23076923,65.00000000,2.87610619,0.00000000,0.00000000,5.56000000 +1565,chr22,23331019,UNK,T,,G,,-1.00000000,,,,,,,58.07000000,6.00000000,ref,1.00000000,0.03703704,29.00000000,1.28318584,0.06896552,0.00000000,59.00000000,,-2.27000000,0.00000000,,0.12820513,72.00000000,3.18584071,0.45833333,0.00000000,3.85000000 +1566,chr22,23340630,UNK,C,,T,,-1.00000000,,,,,,,59.77000000,1.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,65.00000000,,-2.76000000,0.00000000,,0.11702128,96.00000000,4.24778761,0.02083333,0.00000000,5.12000000 +1567,chr22,23340684,UNK,T,,G,,-1.00000000,,,,,,,59.24000000,2.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,72.00000000,,0.80000000,0.00000000,,0.16279070,87.00000000,3.84955752,0.01149425,0.00000000,5.07000000 +1568,chr22,23430281,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,71.00000000,,0.77000000,0.00000000,,0.14179104,135.00000000,5.97345133,0.00740741,0.00000000,4.89000000 +1569,chr22,23454109,UNK,T,,A,,-1.00000000,,,,,,,58.90000000,2.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.30769231,0.00000000,16.00000000,,0.88000000,0.00000000,,0.32258065,39.00000000,1.72566372,0.15384615,0.00000000,4.08000000 +1570,chr22,23477652,UNK,T,,C,,-1.00000000,,,,,,,57.59000000,5.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,63.00000000,,0.17000000,0.00000000,,0.24561404,58.00000000,2.56637168,0.01724138,0.20547945,6.14000000 +1571,chr22,23477653,UNK,T,,C,,-1.00000000,,,,,,,57.33000000,7.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,60.00000000,,-1.41000000,0.00000000,,0.16176471,71.00000000,3.14159292,0.04225352,0.00000000,6.19000000 +1572,chr22,23486223,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,,0.27000000,0.00000000,,0.47674419,90.00000000,3.98230088,0.04444444,0.00000000,7.58000000 +1573,chr22,23597148,UNK,C,,A,,-1.00000000,,,,,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,63.00000000,,-1.20000000,0.00000000,,0.11764706,69.00000000,3.05309735,0.01449275,0.00000000,4.92000000 +1574,chr22,23597150,UNK,G,,T,,-1.00000000,,,,,,,58.51000000,4.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,-0.35000000,0.00000000,,0.11940299,69.00000000,3.05309735,0.01449275,0.00000000,4.95000000 +1575,chr22,23641085,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,66.00000000,,-1.82000000,1.52000000,,0.14285714,92.00000000,4.07079646,0.00000000,0.00000000,5.13000000 +1576,chr22,23674016,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,1.68000000,0.00000000,,0.17857143,85.00000000,3.76106195,0.01176471,0.00000000,6.52000000 +1577,chr22,23950174,UNK,C,,G,,-1.00000000,,,,,,,45.74000000,74.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,66.00000000,,0.20000000,1.37000000,,0.06976744,87.00000000,3.84955752,0.01149425,0.00000000,3.80000000 +1578,chr22,23950176,UNK,T,,G,,-1.00000000,,,,,,,45.69000000,73.00000000,ref,1.00000000,0.00000000,44.00000000,1.94690265,0.02272727,0.00000000,67.00000000,,0.42000000,1.28000000,,0.07142857,85.00000000,3.76106195,0.01176471,0.00000000,3.80000000 +1579,chr22,23982353,UNK,G,,C,,-1.00000000,,,,,,,27.33000000,60.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.00000000,4.00000000,,1.16000000,0.00000000,,0.62500000,17.00000000,0.75221239,0.00000000,0.00000000,3.62000000 +1580,chr22,24069766,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02702703,37.00000000,1.63716814,0.00000000,0.00000000,68.00000000,,0.08000000,0.00000000,,0.16049383,85.00000000,3.76106195,0.02352941,0.00000000,6.14000000 +1581,chr22,24094842,UNK,A,,G,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,67.00000000,,-0.90000000,0.00000000,,0.17105263,80.00000000,3.53982301,0.05000000,0.00000000,5.84000000 +1582,chr22,24208585,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,72.00000000,,-0.52000000,0.00000000,,0.22727273,67.00000000,2.96460177,0.00000000,0.00000000,6.46000000 +1583,chr22,24249569,UNK,T,,C,,-1.00000000,,,,,,,57.38000000,5.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,60.00000000,,1.70000000,0.00000000,,0.10958904,73.00000000,3.23008850,0.00000000,0.00000000,5.21000000 +1584,chr22,24260505,UNK,C,,T,,-1.00000000,,,,,,,46.27000000,25.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-0.84000000,0.00000000,,0.07692308,81.00000000,3.58407080,0.01234568,0.00000000,4.38000000 +1585,chr22,24277946,UNK,C,,T,,-1.00000000,,,,,,,57.77000000,5.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.19000000,0.00000000,,0.06122449,98.00000000,4.33628319,0.00000000,0.00000000,5.11000000 +1586,chr22,24278291,UNK,T,,G,,-1.00000000,,,,,,,53.55000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,0.75000000,4.98000000,,0.05940594,105.00000000,4.64601770,0.02857143,0.00000000,3.47000000 +1587,chr22,24278302,UNK,A,,C,,-1.00000000,,,,,,,53.62000000,22.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,58.00000000,,-0.12000000,4.99000000,,0.04901961,105.00000000,4.64601770,0.02857143,0.00000000,3.09000000 +1588,chr22,24296884,UNK,C,,T,,-1.00000000,,,,,,,51.34000000,38.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,65.00000000,,-0.67000000,0.00000000,,0.13888889,111.00000000,4.91150442,0.02702703,0.00000000,5.64000000 +1589,chr22,24296972,UNK,A,,G,,-1.00000000,,,,,,,49.92000000,25.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,60.00000000,,1.53000000,4.90000000,,0.06818182,91.00000000,4.02654867,0.03296703,0.00000000,3.20000000 +1590,chr22,24597663,UNK,A,,C,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,78.00000000,,-0.08000000,0.00000000,,0.24000000,78.00000000,3.45132743,0.02564103,0.00000000,6.07000000 +1591,chr22,24605296,UNK,T,,C,,-1.00000000,,,,,,,44.89000000,4.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.16666667,0.00000000,4.00000000,,0.85000000,0.00000000,,0.31250000,17.00000000,0.75221239,0.05882353,0.00000000,2.95000000 +1592,chr22,24605670,UNK,T,,A,,-1.00000000,,,,,,,47.88000000,5.00000000,ref,1.00000000,0.00000000,16.00000000,0.70796460,0.00000000,0.00000000,34.00000000,,-0.70000000,0.00000000,,0.35483871,31.00000000,1.37168142,0.00000000,0.00000000,3.78000000 +1593,chr22,24671369,UNK,G,,A,,-1.00000000,,,,,,,36.08000000,45.00000000,ref,1.00000000,0.00000000,10.00000000,0.44247788,0.00000000,0.00000000,13.00000000,,-0.38000000,0.00000000,,0.41379310,29.00000000,1.28318584,0.00000000,0.00000000,3.65000000 +1594,chr22,24671465,UNK,T,,C,,-1.00000000,,,,,,,38.30000000,46.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,23.00000000,,0.09000000,0.33000000,,0.42857143,32.00000000,1.41592920,0.09375000,0.00000000,2.85000000 +1595,chr22,24674444,UNK,A,,G,,-1.00000000,,,,,,,50.99000000,16.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.11538462,0.00000000,60.00000000,,2.65000000,0.00000000,,0.34426230,64.00000000,2.83185841,0.04687500,0.00000000,7.22000000 +1596,chr22,24674501,UNK,C,,T,,-1.00000000,,,,,,,49.14000000,23.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,69.00000000,,1.88000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.01000000 +1597,chr22,24674902,UNK,G,,T,,-1.00000000,,,,,,,57.32000000,2.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,72.00000000,,-1.66000000,0.00000000,,0.15384615,92.00000000,4.07079646,0.01086957,0.00000000,5.63000000 +1598,chr22,24757637,UNK,C,,T,,-1.00000000,,,,,,,54.32000000,14.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,58.00000000,,-1.29000000,0.00000000,,0.14035088,60.00000000,2.65486726,0.05000000,0.00000000,4.48000000 +1599,chr22,24970742,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,0.62000000,0.00000000,,0.10975610,91.00000000,4.02654867,0.09890110,0.00000000,4.77000000 +1600,chr22,24970747,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,67.00000000,,0.06000000,0.00000000,,0.14772727,92.00000000,4.07079646,0.04347826,0.00000000,5.38000000 +1601,chr22,24973401,UNK,T,,G,,-1.00000000,,,,,,,59.36000000,2.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.50000000,0.00000000,9.00000000,,-2.25000000,0.00000000,,0.43137255,74.00000000,3.27433628,0.31081081,0.00000000,3.62000000 +1602,chr22,25001241,UNK,G,,A,,-1.00000000,,,,,,,58.97000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,70.00000000,,-1.58000000,0.00000000,,0.23529412,69.00000000,3.05309735,0.01449275,0.00000000,6.61000000 +1603,chr22,25046316,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,66.00000000,,0.00000000,0.00000000,,0.19298246,59.00000000,2.61061947,0.03389831,0.00000000,6.25000000 +1604,chr22,25179201,UNK,G,,T,,-1.00000000,,,,,,,56.52000000,16.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,58.00000000,,0.95000000,4.68000000,,0.05263158,99.00000000,4.38053097,0.04040404,0.00000000,2.87000000 +1605,chr22,25302227,UNK,C,,T,,-1.00000000,,,,,,,55.98000000,9.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,60.00000000,,2.00000000,0.00000000,,0.26562500,65.00000000,2.87610619,0.01538462,0.00000000,6.44000000 +1606,chr22,25304216,UNK,C,,T,,-1.00000000,,,,,,,55.57000000,11.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,91.00000000,,-0.09000000,0.00000000,,0.41379310,66.00000000,2.92035398,0.12121212,0.00000000,7.82000000 +1607,chr22,25304241,UNK,C,,T,,-1.00000000,,,,,,,56.23000000,10.00000000,ref,1.00000000,0.03846154,28.00000000,1.23893805,0.07142857,0.00000000,23.00000000,,0.52000000,0.00000000,,0.37735849,63.00000000,2.78761062,0.15873016,0.00000000,3.44000000 +1608,chr22,25304263,UNK,A,,G,,-1.00000000,,,,,,,57.92000000,6.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,75.00000000,,1.08000000,0.00000000,,0.25000000,70.00000000,3.09734513,0.07142857,0.00000000,5.60000000 +1609,chr22,25308975,UNK,T,,C,,-1.00000000,,,,,,,59.66000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,80.00000000,,-1.09000000,0.00000000,,0.29761905,84.00000000,3.71681416,0.00000000,0.00000000,6.85000000 +1610,chr22,25315066,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,60.00000000,,2.46000000,0.00000000,,0.39062500,69.00000000,3.05309735,0.07246377,0.00000000,7.59000000 +1611,chr22,25322753,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,94.00000000,,0.99000000,0.00000000,,0.38888889,80.00000000,3.53982301,0.10000000,0.00000000,7.89000000 +1612,chr22,25322755,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,95.00000000,,1.27000000,0.00000000,,0.39726027,81.00000000,3.58407080,0.08641975,0.00000000,7.88000000 +1613,chr22,25323397,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02439024,42.00000000,1.85840708,0.02380952,0.00000000,88.00000000,,-0.66000000,0.00000000,,0.41176471,87.00000000,3.84955752,0.02298851,0.00000000,7.50000000 +1614,chr22,25434688,UNK,G,,A,,-1.00000000,,,,,,,57.24000000,7.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.02439024,0.00000000,94.00000000,,-0.90000000,0.00000000,,0.27397260,74.00000000,3.27433628,0.01351351,0.00000000,5.87000000 +1615,chr22,25439715,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.34782609,0.00000000,25.00000000,,-0.23000000,0.00000000,,0.43750000,57.00000000,2.52212389,0.43859649,0.00000000,3.80000000 +1616,chr22,25446837,UNK,A,,C,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.30303030,0.00000000,57.00000000,,-0.48000000,0.00000000,,0.35849057,75.00000000,3.31858407,0.29333333,0.00000000,4.87000000 +1617,chr22,25446856,UNK,G,,A,,-1.00000000,,,,,,,59.75000000,1.00000000,ref,1.00000000,0.02857143,38.00000000,1.68141593,0.07894737,0.00000000,77.00000000,,-0.31000000,0.00000000,,0.41095890,83.00000000,3.67256637,0.12048193,0.00000000,8.24000000 +1618,chr22,25470258,UNK,G,,A,,-1.00000000,,,,,,,52.42000000,19.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,,-1.30000000,0.00000000,,0.53448276,60.00000000,2.65486726,0.03333333,0.00000000,4.14000000 +1619,chr22,25499768,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.10000000,0.00000000,62.00000000,,2.16000000,0.00000000,,0.11594203,85.00000000,3.76106195,0.17647059,0.00000000,4.47000000 +1620,chr22,25521694,UNK,C,,T,,-1.00000000,,,,,,,59.97000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-0.69000000,0.00000000,,0.06976744,88.00000000,3.89380531,0.01136364,0.00000000,5.27000000 +1621,chr22,25521716,UNK,A,,G,,-1.00000000,,,,,,,59.96000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,-1.73000000,0.00000000,,0.06578947,78.00000000,3.45132743,0.02564103,0.00000000,4.78000000 +1622,chr22,25524176,UNK,T,,C,,-1.00000000,,,,,,,56.75000000,6.00000000,ref,1.00000000,0.00000000,49.00000000,2.16814159,0.00000000,0.00000000,67.00000000,,-1.78000000,0.00000000,,0.09756098,83.00000000,3.67256637,0.01204819,0.00000000,4.90000000 +1623,chr22,25524314,UNK,C,,T,,-1.00000000,,,,,,,50.20000000,27.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.05000000,0.00000000,54.00000000,,0.40000000,0.00000000,,0.22641509,55.00000000,2.43362832,0.03636364,0.00000000,2.78000000 +1624,chr22,25531160,UNK,A,,G,,-1.00000000,,,,,,,59.23000000,3.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,77.00000000,,0.83000000,0.00000000,,0.20731707,83.00000000,3.67256637,0.01204819,0.00000000,5.82000000 +1625,chr22,25606040,UNK,C,,G,,-1.00000000,,,,,,,48.11000000,29.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,55.00000000,,0.07000000,0.00000000,,0.08474576,61.00000000,2.69911504,0.03278689,0.00000000,2.98000000 +1626,chr22,25606327,UNK,A,,G,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,65.00000000,,2.62000000,0.00000000,,0.13043478,92.00000000,4.07079646,0.00000000,0.00000000,5.05000000 +1627,chr22,25606873,UNK,A,,C,,-1.00000000,,,,,,,59.46000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,-1.34000000,0.00000000,,0.08421053,96.00000000,4.24778761,0.01041667,0.00000000,5.42000000 +1628,chr22,25606946,UNK,C,,T,,-1.00000000,,,,,,,58.73000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,67.00000000,,-0.01000000,0.00000000,,0.15238095,106.00000000,4.69026549,0.00000000,0.00000000,6.17000000 +1629,chr22,25620008,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,9.00000000,0.39823009,0.22222222,0.43750000,9.00000000,,0.57000000,0.00000000,,0.32142857,32.00000000,1.41592920,0.09375000,0.25581395,3.68000000 +1630,chr22,25859081,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,49.00000000,2.16814159,0.02040816,0.00000000,95.00000000,,0.61000000,0.00000000,,0.27173913,94.00000000,4.15929204,0.01063830,0.00000000,5.48000000 +1631,chr22,26219272,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,53.00000000,,-0.23000000,0.00000000,,0.47619048,83.00000000,3.67256637,0.22891566,0.00000000,4.40000000 +1632,chr22,26240110,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,40.00000000,,2.02000000,0.00000000,,0.32812500,66.00000000,2.92035398,0.03030303,0.00000000,3.77000000 +1633,chr22,26387750,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,76.00000000,,-1.04000000,0.00000000,,0.18965517,61.00000000,2.69911504,0.04918033,0.00000000,6.25000000 +1634,chr22,26387751,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,85.00000000,,-1.14000000,0.00000000,,0.23636364,60.00000000,2.65486726,0.05000000,0.00000000,6.30000000 +1635,chr22,26581054,UNK,G,,A,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,56.00000000,,-2.05000000,0.00000000,,0.09090909,79.00000000,3.49557522,0.02531646,0.00000000,2.86000000 +1636,chr22,26603139,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,85.00000000,,0.65000000,0.00000000,,0.25000000,87.00000000,3.84955752,0.12643678,0.00000000,5.70000000 +1637,chr22,26627361,UNK,T,,C,,-1.00000000,,,,,,,59.16000000,1.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.55555556,0.35714286,3.00000000,,-0.41000000,0.00000000,,0.41666667,24.00000000,1.06194690,0.50000000,0.47826087,3.00000000 +1638,chr22,26648559,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,78.00000000,,-1.18000000,0.00000000,,0.28301887,54.00000000,2.38938053,0.01851852,0.27027027,5.88000000 +1639,chr22,26691815,UNK,T,,C,,-1.00000000,,,,,,,58.79000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,64.00000000,,0.33000000,0.00000000,,0.17460317,71.00000000,3.14159292,0.11267606,0.00000000,5.21000000 +1640,chr22,26792241,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,73.00000000,,0.70000000,0.00000000,,0.30909091,64.00000000,2.83185841,0.14062500,0.00000000,6.17000000 +1641,chr22,26792258,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,49.00000000,,-1.06000000,0.00000000,,0.40983607,65.00000000,2.87610619,0.06153846,0.00000000,4.33000000 +1642,chr22,26840864,UNK,A,,G,,-1.00000000,,,,,,,59.18000000,2.00000000,ref,1.00000000,0.05000000,22.00000000,0.97345133,0.09090909,0.00000000,26.00000000,,0.55000000,0.00000000,,0.40000000,79.00000000,3.49557522,0.11392405,0.00000000,3.84000000 +1643,chr22,26876466,UNK,T,,G,,-1.00000000,,,,,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,74.00000000,,-1.03000000,0.00000000,,0.20312500,71.00000000,3.14159292,0.09859155,0.29000000,5.88000000 +1644,chr22,26876472,UNK,T,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.17142857,0.00000000,78.00000000,,0.30000000,0.00000000,,0.24742268,101.00000000,4.46902655,0.03960396,0.00000000,5.59000000 +1645,chr22,26905689,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04000000,28.00000000,1.23893805,0.10714286,0.00000000,56.00000000,,0.15000000,0.00000000,,0.19753086,91.00000000,4.02654867,0.10989011,0.00000000,2.82000000 +1646,chr22,26905690,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,68.00000000,,0.15000000,0.00000000,,0.19753086,90.00000000,3.98230088,0.10000000,0.01098901,5.67000000 +1647,chr22,27343658,UNK,C,,G,,-1.00000000,,,,,,,59.78000000,1.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.05555556,0.00000000,65.00000000,,-1.69000000,0.00000000,,0.22471910,99.00000000,4.38053097,0.09090909,0.00000000,5.79000000 +1648,chr22,27573668,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,-0.70000000,0.00000000,,0.14062500,72.00000000,3.18584071,0.11111111,0.00000000,4.81000000 +1649,chr22,27660789,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.22222222,0.00000000,39.00000000,,0.23000000,0.00000000,,0.47619048,70.00000000,3.09734513,0.10000000,0.00000000,3.93000000 +1650,chr22,27688775,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,66.00000000,,0.23000000,0.00000000,,0.13924051,84.00000000,3.71681416,0.05952381,0.07692308,4.85000000 +1651,chr22,27688776,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,61.00000000,,-0.28000000,0.00000000,,0.11864407,65.00000000,2.87610619,0.09230769,0.00000000,4.77000000 +1652,chr22,28677203,UNK,C,,T,,-1.00000000,,,,,,,57.89000000,8.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,,1.26000000,0.00000000,,0.21621622,79.00000000,3.49557522,0.06329114,0.00000000,5.49000000 +1653,chr22,28933752,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.53333333,0.00000000,4.00000000,,-2.08000000,0.00000000,,0.53333333,44.00000000,1.94690265,0.65909091,0.00000000,3.97000000 +1654,chr22,29551916,UNK,C,,T,,-1.00000000,,,,,,,58.90000000,3.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,72.00000000,,-0.80000000,0.00000000,,0.20634921,63.00000000,2.78761062,0.00000000,0.00000000,6.51000000 +1655,chr22,29906249,UNK,T,,C,,-1.00000000,,,,,,,58.90000000,0.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.00000000,0.66666667,7.00000000,,-1.60000000,0.00000000,,0.41935484,31.00000000,1.37168142,0.00000000,0.61250000,3.58000000 +1656,chr22,30455105,UNK,T,,A,,-1.00000000,,,,,,,59.33000000,0.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.14285714,0.30000000,3.00000000,,-2.08000000,0.00000000,,0.50000000,18.00000000,0.79646018,0.33333333,0.33333333,3.00000000 +1657,chr22,30623801,UNK,C,,T,,-1.00000000,,,,,,,49.12000000,25.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,56.00000000,,1.20000000,0.00000000,,0.16666667,35.00000000,1.54867257,0.31428571,0.07894737,2.90000000 +1658,chr22,30633199,UNK,A,,T,,-1.00000000,,,,,,,59.51000000,1.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,58.00000000,,0.36000000,0.00000000,,0.18181818,35.00000000,1.54867257,0.02857143,0.00000000,4.82000000 +1659,chr22,30645610,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,68.00000000,,0.32000000,0.00000000,,0.27118644,72.00000000,3.18584071,0.18055556,0.00000000,5.70000000 +1660,chr22,30703183,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,62.00000000,,-1.35000000,0.00000000,,0.15853659,86.00000000,3.80530973,0.03488372,0.01149425,5.15000000 +1661,chr22,30725561,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,68.00000000,,2.11000000,0.00000000,,0.17567568,76.00000000,3.36283186,0.02631579,0.00000000,5.96000000 +1662,chr22,30730808,UNK,A,,T,,-1.00000000,,,,,,,59.25000000,1.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.23529412,0.22727273,21.00000000,,-0.64000000,0.00000000,,0.53333333,22.00000000,0.97345133,0.31818182,0.48837209,3.62000000 +1663,chr22,30784435,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.00000000,0.00000000,59.00000000,,1.16000000,0.00000000,,0.19047619,65.00000000,2.87610619,0.03076923,0.00000000,4.80000000 +1664,chr22,30912122,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,73.00000000,,-0.06000000,0.00000000,,0.17000000,101.00000000,4.46902655,0.00990099,0.00000000,6.51000000 +1665,chr22,30985279,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.29411765,0.00000000,66.00000000,,1.25000000,0.00000000,,0.29166667,60.00000000,2.65486726,0.20000000,0.00000000,5.60000000 +1666,chr22,31020997,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,47.00000000,,1.10000000,0.00000000,,0.31250000,33.00000000,1.46017699,0.03030303,0.34000000,2.86000000 +1667,chr22,31036627,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.52000000,23.00000000,,0.92000000,0.00000000,,0.34000000,51.00000000,2.25663717,0.01960784,0.46875000,3.56000000 +1668,chr22,31051899,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,0.04000000,0.00000000,,0.25862069,61.00000000,2.69911504,0.04918033,0.00000000,2.80000000 +1669,chr22,31068074,UNK,G,,A,,-1.00000000,,,,,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-0.53000000,0.00000000,,0.18032787,61.00000000,2.69911504,0.00000000,0.00000000,2.93000000 +1670,chr22,31069329,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,7.00000000,0.30973451,0.00000000,0.00000000,6.00000000,,-0.47000000,0.00000000,,0.40000000,56.00000000,2.47787611,0.01785714,0.00000000,4.00000000 +1671,chr22,31073013,UNK,T,,C,,-1.00000000,,,,,,,59.27000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,65.00000000,,0.29000000,0.00000000,,0.15384615,57.00000000,2.52212389,0.08771930,0.01724138,4.95000000 +1672,chr22,31159720,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,60.00000000,,0.71000000,0.00000000,,0.21052632,66.00000000,2.92035398,0.13636364,0.00000000,5.59000000 +1673,chr22,31170187,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,71.00000000,,-1.25000000,0.00000000,,0.24444444,93.00000000,4.11504425,0.03225806,0.00000000,6.36000000 +1674,chr22,31305634,UNK,C,,T,,-1.00000000,,,,,,,59.80000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,69.00000000,,0.12000000,0.00000000,,0.20481928,86.00000000,3.80530973,0.03488372,0.00000000,5.68000000 +1675,chr22,31382004,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,19.00000000,,0.19000000,0.00000000,,0.37837838,38.00000000,1.68141593,0.02631579,0.00000000,4.01000000 +1676,chr22,31477390,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.24242424,0.00000000,64.00000000,,0.01000000,0.00000000,,0.15789474,69.00000000,3.05309735,0.15942029,0.00000000,5.16000000 +1677,chr22,31486279,UNK,A,,T,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.14285714,0.00000000,74.00000000,,-0.12000000,0.00000000,,0.40579710,77.00000000,3.40707965,0.10389610,0.00000000,8.26000000 +1678,chr22,31568163,UNK,A,,G,,-1.00000000,,,,,,,59.16000000,3.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,62.00000000,,0.84000000,0.00000000,,0.14285714,76.00000000,3.36283186,0.07894737,0.00000000,4.66000000 +1679,chr22,31582222,UNK,A,,G,,-1.00000000,,,,,,,59.47000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.66666667,0.00000000,3.00000000,,0.30000000,0.00000000,,0.64705882,40.00000000,1.76991150,0.57500000,0.00000000,3.00000000 +1680,chr22,31599884,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.06060606,0.00000000,80.00000000,,0.79000000,0.00000000,,0.23376623,79.00000000,3.49557522,0.02531646,0.00000000,5.80000000 +1681,chr22,31624658,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,65.00000000,,-0.52000000,0.00000000,,0.22033898,61.00000000,2.69911504,0.03278689,0.14084507,6.74000000 +1682,chr22,31640579,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,1.29000000,0.00000000,,0.11320755,61.00000000,2.69911504,0.13114754,0.00000000,4.11000000 +1683,chr22,31655317,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.28000000,0.00000000,,0.25000000,68.00000000,3.00884956,0.08823529,0.00000000,6.20000000 +1684,chr22,31665028,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.00000000,0.00000000,82.00000000,,-1.12000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,6.24000000 +1685,chr22,31666748,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,82.00000000,,-0.15000000,0.00000000,,0.27160494,83.00000000,3.67256637,0.02409639,0.00000000,6.34000000 +1686,chr22,31882810,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,70.00000000,,0.49000000,0.00000000,,0.15294118,87.00000000,3.84955752,0.02298851,0.00000000,4.99000000 +1687,chr22,32213478,UNK,C,,T,,-1.00000000,,,,,,,58.99000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,57.00000000,,-0.03000000,0.00000000,,0.11320755,59.00000000,2.61061947,0.10169492,0.00000000,2.81000000 +1688,chr22,32213480,UNK,C,,T,,-1.00000000,,,,,,,59.00000000,2.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,58.00000000,,-0.03000000,0.00000000,,0.11320755,59.00000000,2.61061947,0.10169492,0.00000000,3.79000000 +1689,chr22,32300307,UNK,G,,C,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,-0.03000000,2.45000000,,0.08771930,57.00000000,2.52212389,0.00000000,0.00000000,4.50000000 +1690,chr22,32300328,UNK,C,,A,,-1.00000000,,,,,,,59.68000000,1.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,66.00000000,,0.08000000,2.68000000,,0.10344828,58.00000000,2.56637168,0.00000000,0.00000000,4.02000000 +1691,chr22,32302261,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,,-0.28000000,0.00000000,,0.19565217,97.00000000,4.29203540,0.05154639,0.00000000,5.89000000 +1692,chr22,32304462,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,71.00000000,,1.15000000,0.00000000,,0.25675676,75.00000000,3.31858407,0.01333333,0.00000000,5.96000000 +1693,chr22,32366561,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.03703704,59.00000000,,-2.00000000,0.00000000,,0.44615385,68.00000000,3.00884956,0.02941176,0.00000000,6.39000000 +1694,chr22,32424753,UNK,C,,T,,-1.00000000,,,,,,,55.84000000,5.00000000,ref,1.00000000,0.05000000,20.00000000,0.88495575,0.00000000,0.00000000,33.00000000,,0.27000000,0.00000000,,0.39024390,52.00000000,2.30088496,0.21153846,0.00000000,3.55000000 +1695,chr22,32428270,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.00000000,0.00000000,37.00000000,,0.43000000,0.00000000,,0.36585366,42.00000000,1.85840708,0.02380952,0.17647059,3.49000000 +1696,chr22,32428291,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.00000000,39.00000000,,-0.71000000,0.00000000,,0.17021277,50.00000000,2.21238938,0.06000000,0.00000000,2.97000000 +1697,chr22,32449740,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.00000000,0.00000000,80.00000000,,-0.26000000,0.00000000,,0.20895522,71.00000000,3.14159292,0.05633803,0.00000000,6.30000000 +1698,chr22,32532118,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,62.00000000,,-0.52000000,0.00000000,,0.11842105,77.00000000,3.40707965,0.01298701,0.00000000,5.13000000 +1699,chr22,32532265,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,59.00000000,,0.37000000,0.00000000,,0.14102564,78.00000000,3.45132743,0.00000000,0.00000000,4.22000000 +1700,chr22,32532427,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,63.00000000,,-1.67000000,3.26000000,,0.08888889,90.00000000,3.98230088,0.00000000,0.00000000,4.61000000 +1701,chr22,32532464,UNK,G,,A,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,-1.21000000,4.90000000,,0.12500000,81.00000000,3.58407080,0.01234568,0.00000000,4.00000000 +1702,chr22,32532534,UNK,G,,A,,-1.00000000,,,,,,,58.54000000,6.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,1.33000000,0.05000000,,0.09756098,83.00000000,3.67256637,0.00000000,0.00000000,4.42000000 +1703,chr22,32569571,UNK,C,,A,,-1.00000000,,,,,,,58.51000000,3.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.00000000,0.43750000,34.00000000,,-0.97000000,0.00000000,,0.48717949,40.00000000,1.76991150,0.02500000,0.31034483,3.65000000 +1704,chr22,32671580,UNK,C,,T,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.11111111,0.00000000,67.00000000,,1.53000000,0.00000000,,0.20253165,84.00000000,3.71681416,0.05952381,0.00000000,5.97000000 +1705,chr22,32671581,UNK,A,,G,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.07407407,0.00000000,69.00000000,,0.79000000,0.00000000,,0.20253165,83.00000000,3.67256637,0.04819277,0.00000000,5.73000000 +1706,chr22,32692177,UNK,C,,"A,G",,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,2.00000000,0.08849558,0.50000000,0.91304348,3.00000000,,0.00000000,0.00000000,,1.00000000,12.00000000,0.53097345,0.25000000,0.76470588,3.00000000 +1707,chr22,32713826,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.18750000,0.00000000,70.00000000,,0.21000000,0.00000000,,0.22388060,77.00000000,3.40707965,0.12987013,0.00000000,5.64000000 +1708,chr22,32739185,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,65.00000000,,0.64000000,0.00000000,,0.24193548,67.00000000,2.96460177,0.05970149,0.00000000,6.15000000 +1709,chr22,32814313,UNK,G,,C,,-1.00000000,,,,,,,56.23000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,31.00000000,,0.81000000,0.00000000,,0.35555556,46.00000000,2.03539823,0.02173913,0.00000000,3.55000000 +1710,chr22,32814317,UNK,C,,A,,-1.00000000,,,,,,,56.43000000,8.00000000,ref,1.00000000,0.00000000,18.00000000,0.79646018,0.16666667,0.00000000,30.00000000,,-0.09000000,0.00000000,,0.38297872,50.00000000,2.21238938,0.00000000,0.00000000,3.47000000 +1711,chr22,32820271,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,,1.83000000,0.00000000,,0.23809524,65.00000000,2.87610619,0.00000000,0.00000000,5.97000000 +1712,chr22,32962131,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,70.00000000,,-0.23000000,0.00000000,,0.16000000,77.00000000,3.40707965,0.01298701,0.00000000,6.23000000 +1713,chr22,32988307,UNK,A,,T,,-1.00000000,,,,,,,59.13000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,74.00000000,,-2.14000000,0.00000000,,0.20547945,84.00000000,3.71681416,0.13095238,0.00000000,5.92000000 +1714,chr22,33008958,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,,-1.03000000,0.00000000,,0.18867925,59.00000000,2.61061947,0.10169492,0.00000000,6.09000000 +1715,chr22,33008974,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.08695652,26.00000000,1.15044248,0.11538462,0.00000000,15.00000000,,-1.28000000,0.00000000,,0.48214286,66.00000000,2.92035398,0.15151515,0.00000000,3.29000000 +1716,chr22,33015845,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.05000000,0.00000000,69.00000000,,-0.40000000,0.00000000,,0.13953488,97.00000000,4.29203540,0.11340206,0.00000000,5.20000000 +1717,chr22,33050500,UNK,C,,A,,-1.00000000,,,,,,,59.70000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.03703704,67.00000000,,-1.78000000,0.00000000,,0.16666667,72.00000000,3.18584071,0.00000000,0.01369863,6.08000000 +1718,chr22,33120411,UNK,C,,T,,-1.00000000,,,,,,,58.36000000,4.00000000,ref,1.00000000,0.03703704,33.00000000,1.46017699,0.18181818,0.00000000,62.00000000,,0.39000000,0.00000000,,0.27777778,62.00000000,2.74336283,0.12903226,0.00000000,5.40000000 +1719,chr22,34137112,UNK,C,,T,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.09677419,0.00000000,68.00000000,,-0.10000000,0.00000000,,0.16666667,83.00000000,3.67256637,0.06024096,0.00000000,5.58000000 +1720,chr22,34209122,UNK,C,,A,,-1.00000000,,,,,,,59.85000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,68.00000000,,-0.45000000,0.00000000,,0.15068493,76.00000000,3.36283186,0.03947368,0.00000000,5.60000000 +1721,chr22,34286668,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.08695652,0.00000000,60.00000000,,-0.60000000,0.00000000,,0.28571429,74.00000000,3.27433628,0.05405405,0.00000000,6.11000000 +1722,chr22,34318171,UNK,C,,T,,-1.00000000,,,,,,,59.65000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,58.00000000,,-0.32000000,0.00000000,,0.46551724,58.00000000,2.56637168,0.00000000,0.00000000,6.12000000 +1723,chr22,34337373,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,60.00000000,,-0.73000000,0.00000000,,0.34375000,74.00000000,3.27433628,0.13513514,0.00000000,7.33000000 +1724,chr22,34511926,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,70.00000000,,-0.19000000,0.00000000,,0.16417910,67.00000000,2.96460177,0.00000000,0.00000000,6.25000000 +1725,chr22,34588739,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02127660,47.00000000,2.07964602,0.00000000,0.00000000,113.00000000,,-1.52000000,0.00000000,,0.39506173,87.00000000,3.84955752,0.06896552,0.00000000,12.32000000 +1726,chr22,34588740,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.00000000,0.00000000,117.00000000,,-1.24000000,0.00000000,,0.39506173,87.00000000,3.84955752,0.06896552,0.00000000,12.35000000 +1727,chr22,34680542,UNK,C,,T,,-1.00000000,,,,,,,29.18000000,71.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,3.00000000,,-0.69000000,0.00000000,,0.56250000,16.00000000,0.70796460,0.00000000,0.00000000,3.00000000 +1728,chr22,34740606,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,17.00000000,0.75221239,0.05882353,0.46875000,30.00000000,,1.67000000,0.00000000,,0.41860465,43.00000000,1.90265487,0.00000000,0.48809524,3.23000000 +1729,chr22,35012134,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,75.00000000,,1.15000000,0.00000000,,0.21818182,63.00000000,2.78761062,0.12698413,0.00000000,6.32000000 +1730,chr22,35453819,UNK,T,,G,,-1.00000000,,,,,,,58.38000000,4.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,-1.23000000,0.00000000,,0.10909091,56.00000000,2.47787611,0.01785714,0.00000000,2.95000000 +1731,chr22,35474671,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.06666667,0.28571429,32.00000000,,0.25000000,0.00000000,,0.31428571,40.00000000,1.76991150,0.12500000,0.24528302,2.96000000 +1732,chr22,35502488,UNK,T,,A,,-1.00000000,,,,,,,58.49000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.21428571,0.06666667,14.00000000,,-0.44000000,0.00000000,,0.45161290,41.00000000,1.81415929,0.24390244,0.02380952,3.55000000 +1733,chr22,36195776,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,14.00000000,0.61946903,0.00000000,0.44000000,28.00000000,,2.34000000,0.00000000,,0.64864865,40.00000000,1.76991150,0.05000000,0.31034483,3.49000000 +1734,chr22,36219664,UNK,A,,G,,-1.00000000,,,,,,,59.46000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.33333333,0.00000000,28.00000000,,1.21000000,0.00000000,,0.35294118,52.00000000,2.30088496,0.34615385,0.00000000,3.72000000 +1735,chr22,36383667,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,77.00000000,,0.30000000,0.00000000,,0.22972973,82.00000000,3.62831858,0.09756098,0.00000000,5.63000000 +1736,chr22,36402078,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.08333333,0.00000000,16.00000000,,1.38000000,0.00000000,,0.40740741,29.00000000,1.28318584,0.06896552,0.00000000,4.11000000 +1737,chr22,36434092,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,59.00000000,,-1.98000000,0.00000000,,0.39622642,62.00000000,2.74336283,0.14516129,0.00000000,6.53000000 +1738,chr22,36454666,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.30303030,0.00000000,61.00000000,,0.30000000,0.00000000,,0.13725490,68.00000000,3.00884956,0.25000000,0.00000000,4.63000000 +1739,chr22,36502192,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.00000000,0.00000000,63.00000000,,-0.11000000,0.00000000,,0.15625000,68.00000000,3.00884956,0.05882353,0.00000000,5.94000000 +1740,chr22,36623012,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,62.00000000,,0.21000000,0.00000000,,0.08064516,63.00000000,2.78761062,0.01587302,0.05970149,4.43000000 +1741,chr22,36632186,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,69.00000000,,-0.19000000,0.00000000,,0.18181818,68.00000000,3.00884956,0.02941176,0.00000000,5.72000000 +1742,chr22,36690363,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,34.00000000,1.50442478,0.00000000,0.00000000,69.00000000,,-0.88000000,0.00000000,,0.18309859,77.00000000,3.40707965,0.06493506,0.00000000,6.56000000 +1743,chr22,36690369,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,74.00000000,,-0.17000000,0.00000000,,0.17105263,80.00000000,3.53982301,0.05000000,0.00000000,6.01000000 +1744,chr22,36690371,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.00000000,0.00000000,72.00000000,,0.21000000,0.00000000,,0.15789474,82.00000000,3.62831858,0.07317073,0.00000000,5.39000000 +1745,chr22,37098005,UNK,A,,G,,-1.00000000,,,,,,,33.17000000,124.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.20689655,0.00000000,61.00000000,,-0.17000000,0.00000000,,0.21276596,59.00000000,2.61061947,0.18644068,0.00000000,5.77000000 +1746,chr22,37223012,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,,-0.65000000,0.00000000,,0.23076923,68.00000000,3.00884956,0.23529412,0.00000000,6.12000000 +1747,chr22,37223017,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.00000000,68.00000000,,-0.23000000,0.00000000,,0.22641509,74.00000000,3.27433628,0.27027027,0.00000000,6.12000000 +1748,chr22,37223022,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.18518519,0.00000000,62.00000000,,0.32000000,0.00000000,,0.19642857,77.00000000,3.40707965,0.27272727,0.00000000,5.52000000 +1749,chr22,37246565,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,67.00000000,,0.21000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.17000000 +1750,chr22,37246566,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,66.00000000,,0.21000000,0.00000000,,0.12195122,82.00000000,3.62831858,0.00000000,0.00000000,5.18000000 +1751,chr22,37590476,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.03225806,0.00000000,64.00000000,,-0.11000000,0.00000000,,0.12857143,73.00000000,3.23008850,0.04109589,0.00000000,5.19000000 +1752,chr22,37700469,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.13793103,0.00000000,69.00000000,,0.08000000,0.00000000,,0.21311475,66.00000000,2.92035398,0.06060606,0.00000000,5.70000000 +1753,chr22,37742277,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,64.00000000,,1.20000000,0.00000000,,0.07142857,84.00000000,3.71681416,0.16666667,0.00000000,4.73000000 +1754,chr22,37791771,UNK,C,,A,,-1.00000000,,,,,,,59.32000000,2.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.03846154,0.00000000,62.00000000,,1.41000000,1.17000000,,0.13793103,60.00000000,2.65486726,0.03333333,0.00000000,3.49000000 +1755,chr22,37897613,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.16666667,0.00000000,64.00000000,,-0.18000000,0.00000000,,0.13698630,79.00000000,3.49557522,0.07594937,0.00000000,5.00000000 +1756,chr22,37897616,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,39.00000000,1.72566372,0.12820513,0.00000000,66.00000000,,0.02000000,0.00000000,,0.11842105,81.00000000,3.58407080,0.06172840,0.00000000,4.70000000 +1757,chr22,38130875,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,1.69000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.48000000 +1758,chr22,38130876,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,1.69000000,0.00000000,,0.14814815,54.00000000,2.38938053,0.00000000,0.00000000,5.48000000 +1759,chr22,38130877,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,65.00000000,,2.23000000,0.00000000,,0.15094340,54.00000000,2.38938053,0.00000000,0.00000000,5.60000000 +1760,chr22,38215944,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,61.00000000,,-0.21000000,0.00000000,,0.11250000,85.00000000,3.76106195,0.03529412,0.00000000,5.21000000 +1761,chr22,38257569,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,60.00000000,,0.04000000,0.00000000,,0.47297297,75.00000000,3.31858407,0.01333333,0.00000000,7.90000000 +1762,chr22,38257683,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,77.00000000,,-0.29000000,0.00000000,,0.40963855,86.00000000,3.80530973,0.03488372,0.00000000,8.29000000 +1763,chr22,38259900,UNK,A,,G,,-1.00000000,,,,,,,59.67000000,1.00000000,ref,1.00000000,0.00000000,19.00000000,0.84070796,0.26315789,0.00000000,23.00000000,,-0.16000000,0.00000000,,0.56140351,69.00000000,3.05309735,0.15942029,0.00000000,3.85000000 +1764,chr22,38260237,UNK,T,,G,,-1.00000000,,,,,,,59.74000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,57.00000000,,-0.12000000,0.00000000,,0.43181818,89.00000000,3.93805310,0.01123596,0.00000000,4.17000000 +1765,chr22,38262049,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,64.00000000,,-0.56000000,0.00000000,,0.41975309,84.00000000,3.71681416,0.03571429,0.00000000,7.75000000 +1766,chr22,38262622,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,42.00000000,1.85840708,0.00000000,0.00000000,105.00000000,,-1.75000000,0.00000000,,0.47777778,93.00000000,4.11504425,0.03225806,0.00000000,13.33000000 +1767,chr22,38266850,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,69.00000000,,0.68000000,0.00000000,,0.42682927,83.00000000,3.67256637,0.01204819,0.00000000,8.41000000 +1768,chr22,38270180,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,106.00000000,,0.21000000,0.00000000,,0.33663366,103.00000000,4.55752212,0.00970874,0.00000000,13.76000000 +1769,chr22,38270367,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,57.00000000,,0.49000000,0.00000000,,0.37974684,85.00000000,3.76106195,0.04705882,0.00000000,4.85000000 +1770,chr22,38277784,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,41.00000000,1.81415929,0.00000000,0.00000000,105.00000000,,-1.59000000,0.00000000,,0.38028169,74.00000000,3.27433628,0.04054054,0.00000000,13.24000000 +1771,chr22,38278994,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,91.00000000,,1.25000000,0.00000000,,0.32673267,103.00000000,4.55752212,0.01941748,0.00000000,7.42000000 +1772,chr22,38279470,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,16.00000000,,0.11000000,0.00000000,,0.37500000,92.00000000,4.07079646,0.04347826,0.00000000,3.24000000 +1773,chr22,38279732,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,38.00000000,1.68141593,0.00000000,0.00000000,4.00000000,,0.54000000,0.00000000,,0.43750000,80.00000000,3.53982301,0.00000000,0.00000000,3.17000000 +1774,chr22,38280010,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,40.00000000,1.76991150,0.05000000,0.00000000,85.00000000,,0.16000000,0.00000000,,0.31578947,80.00000000,3.53982301,0.05000000,0.00000000,6.42000000 +1775,chr22,38280416,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.16666667,0.00000000,56.00000000,,0.25000000,0.00000000,,0.37142857,82.00000000,3.62831858,0.14634146,0.00000000,4.80000000 +1776,chr22,38280417,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.17241379,0.00000000,50.00000000,,-0.17000000,0.00000000,,0.40579710,82.00000000,3.62831858,0.15853659,0.00000000,4.54000000 +1777,chr22,38464619,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,71.00000000,,-0.21000000,0.00000000,,0.22413793,66.00000000,2.92035398,0.12121212,0.00000000,5.85000000 +1778,chr22,38761723,UNK,T,,A,,-1.00000000,,,,,,,59.15000000,3.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.10344828,0.00000000,61.00000000,,2.11000000,0.00000000,,0.08620690,72.00000000,3.18584071,0.19444444,0.00000000,4.01000000 +1779,chr22,39321761,UNK,A,,G,,-1.00000000,,,,,,,59.62000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,,0.21000000,0.00000000,,0.33333333,58.00000000,2.56637168,0.06896552,0.00000000,4.70000000 +1780,chr22,39341878,UNK,T,,C,,-1.00000000,,,,,,,59.71000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.15000000,0.00000000,40.00000000,,-1.79000000,0.00000000,,0.36764706,81.00000000,3.58407080,0.16049383,0.00000000,4.56000000 +1781,chr22,39341939,UNK,T,,A,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.10000000,0.00000000,46.00000000,,1.84000000,0.00000000,,0.30232558,59.00000000,2.61061947,0.25423729,0.00000000,3.43000000 +1782,chr22,39857471,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,61.00000000,,2.87000000,0.00000000,,0.11111111,70.00000000,3.09734513,0.10000000,0.00000000,4.46000000 +1783,chr22,39890143,UNK,T,,A,,-1.00000000,,,,,,,59.48000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,75.00000000,,0.19000000,0.00000000,,0.20000000,82.00000000,3.62831858,0.01219512,0.00000000,6.31000000 +1784,chr22,39977808,UNK,G,,A,,-1.00000000,,,,,,,59.41000000,2.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,65.00000000,,-0.44000000,0.00000000,,0.17333333,75.00000000,3.31858407,0.00000000,0.00000000,6.38000000 +1785,chr22,41006271,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,33.00000000,,-1.90000000,0.00000000,,0.34146341,42.00000000,1.85840708,0.02380952,0.00000000,4.00000000 +1786,chr22,41573369,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.07142857,0.00000000,60.00000000,,1.06000000,0.00000000,,0.30000000,60.00000000,2.65486726,0.00000000,0.00000000,5.48000000 +1787,chr22,41590616,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.37000000,0.00000000,,0.12698413,70.00000000,3.09734513,0.10000000,0.00000000,4.38000000 +1788,chr22,41592221,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.19444444,0.00000000,78.00000000,,-2.30000000,0.00000000,,0.23287671,89.00000000,3.93805310,0.17977528,0.00000000,5.84000000 +1789,chr22,41780580,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.00000000,0.00000000,64.00000000,,-0.33000000,0.00000000,,0.10256410,80.00000000,3.53982301,0.02500000,0.00000000,5.08000000 +1790,chr22,41785934,UNK,G,,A,,-1.00000000,,,,,,,59.44000000,2.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.27586207,0.00000000,57.00000000,,0.03000000,0.00000000,,0.12698413,75.00000000,3.31858407,0.16000000,0.00000000,2.86000000 +1791,chr22,41961684,UNK,T,,G,,-1.00000000,,,,,,,59.08000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,60.00000000,,-0.97000000,0.00000000,,0.15873016,71.00000000,3.14159292,0.11267606,0.00000000,5.66000000 +1792,chr22,42024506,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,47.00000000,2.07964602,0.02127660,0.02083333,97.00000000,,0.15000000,0.00000000,,0.25974026,78.00000000,3.45132743,0.01282051,0.01265823,5.13000000 +1793,chr22,42396955,UNK,A,,G,,-1.00000000,,,,,,,59.58000000,1.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,77.00000000,,-1.98000000,0.00000000,,0.18947368,96.00000000,4.24778761,0.00000000,0.00000000,6.54000000 +1794,chr22,42470017,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.05263158,24.00000000,1.06194690,0.20833333,0.00000000,22.00000000,,0.73000000,0.00000000,,0.33333333,65.00000000,2.87610619,0.21538462,0.00000000,3.47000000 +1795,chr22,42475007,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,73.00000000,,0.11000000,0.00000000,,0.21428571,74.00000000,3.27433628,0.05405405,0.00000000,6.30000000 +1796,chr22,42475009,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.00000000,0.00000000,71.00000000,,0.23000000,0.00000000,,0.21538462,72.00000000,3.18584071,0.08333333,0.00000000,6.21000000 +1797,chr22,42638729,UNK,A,,T,,-1.00000000,,,,,,,58.88000000,1.00000000,ref,1.00000000,0.00000000,8.00000000,0.35398230,0.12500000,0.46666667,6.00000000,,-2.47000000,0.00000000,,0.64285714,18.00000000,0.79646018,0.22222222,0.57142857,3.38000000 +1798,chr22,42971866,UNK,A,,G,,-1.00000000,,,,,,,55.73000000,14.00000000,ref,1.00000000,0.03846154,27.00000000,1.19469027,0.03703704,0.00000000,60.00000000,,2.20000000,0.00000000,,0.16071429,61.00000000,2.69911504,0.06557377,0.00000000,5.28000000 +1799,chr22,43073363,UNK,A,,T,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,75.00000000,,-0.77000000,0.00000000,,0.22388060,68.00000000,3.00884956,0.01470588,0.00000000,6.73000000 +1800,chr22,43073364,UNK,T,,A,,-1.00000000,,,,,,,59.69000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.00000000,0.00000000,72.00000000,,-0.27000000,0.00000000,,0.20588235,69.00000000,3.05309735,0.01449275,0.00000000,6.47000000 +1801,chr22,43092074,UNK,G,,A,,-1.00000000,,,,,,,59.72000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,48.00000000,,-1.79000000,0.00000000,,0.39705882,81.00000000,3.58407080,0.16049383,0.00000000,4.48000000 +1802,chr22,43107330,UNK,A,,C,,-1.00000000,,,,,,,59.63000000,1.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.09523810,0.00000000,53.00000000,,0.23000000,0.00000000,,0.28000000,58.00000000,2.56637168,0.13793103,0.00000000,3.00000000 +1803,chr22,43186196,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.61904762,0.00000000,6.00000000,,-1.69000000,0.00000000,,0.52000000,53.00000000,2.34513274,0.52830189,0.00000000,3.50000000 +1804,chr22,43377288,UNK,T,,G,,-1.00000000,,,,,,,57.10000000,9.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.28571429,0.00000000,57.00000000,,-1.46000000,0.00000000,,0.20833333,67.00000000,2.96460177,0.28358209,0.00000000,2.83000000 +1805,chr22,43413393,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.21875000,0.00000000,71.00000000,,0.43000000,0.00000000,,0.26984127,72.00000000,3.18584071,0.12500000,0.00000000,5.63000000 +1806,chr22,43522702,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,46.00000000,,2.24000000,0.00000000,,0.31506849,75.00000000,3.31858407,0.02666667,0.00000000,3.07000000 +1807,chr22,43836173,UNK,C,,G,,-1.00000000,,,,,,,57.37000000,3.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,11.00000000,,2.85000000,0.00000000,,0.71111111,45.00000000,1.99115044,0.00000000,0.00000000,3.67000000 +1808,chr22,43836178,UNK,T,,C,,-1.00000000,,,,,,,57.37000000,3.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,13.00000000,,2.93000000,0.00000000,,0.75000000,45.00000000,1.99115044,0.02222222,0.00000000,3.57000000 +1809,chr22,43934331,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,68.00000000,,1.51000000,0.00000000,,0.24000000,83.00000000,3.67256637,0.09638554,0.00000000,5.66000000 +1810,chr22,44035374,UNK,T,,C,,-1.00000000,,,,,,,59.60000000,1.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.19230769,0.00000000,43.00000000,,0.31000000,0.00000000,,0.46666667,47.00000000,2.07964602,0.04255319,0.00000000,4.01000000 +1811,chr22,44066804,UNK,C,,T,,-1.00000000,,,,,,,59.02000000,1.00000000,ref,1.00000000,0.11764706,21.00000000,0.92920354,0.19047619,0.00000000,3.00000000,,-1.41000000,0.00000000,,0.37254902,62.00000000,2.74336283,0.16129032,0.00000000,3.00000000 +1812,chr22,44122532,UNK,G,,C,,-1.00000000,,,,,,,59.77000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,,1.20000000,0.00000000,,0.20512821,50.00000000,2.21238938,0.22000000,0.00000000,4.96000000 +1813,chr22,44122554,UNK,C,,G,,-1.00000000,,,,,,,59.91000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,65.00000000,,1.30000000,0.00000000,,0.23684211,51.00000000,2.25663717,0.25490196,0.00000000,5.88000000 +1814,chr22,44122584,UNK,G,,C,,-1.00000000,,,,,,,59.92000000,0.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.09090909,0.00000000,57.00000000,,0.18000000,0.00000000,,0.21428571,63.00000000,2.78761062,0.11111111,0.00000000,3.04000000 +1815,chr22,44126006,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,47.00000000,,0.27000000,0.00000000,,0.43478261,72.00000000,3.18584071,0.04166667,0.00000000,4.57000000 +1816,chr22,44126861,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.00000000,0.00000000,100.00000000,,-0.62000000,0.00000000,,0.33766234,78.00000000,3.45132743,0.01282051,0.00000000,8.39000000 +1817,chr22,44126953,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,45.00000000,1.99115044,0.00000000,0.00000000,101.00000000,,0.81000000,0.00000000,,0.29687500,66.00000000,2.92035398,0.01515152,0.00000000,5.92000000 +1818,chr22,44213767,UNK,A,,G,,-1.00000000,,,,,,,59.76000000,1.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.16129032,0.00000000,73.00000000,,0.33000000,0.00000000,,0.25333333,86.00000000,3.80530973,0.12790698,0.00000000,5.79000000 +1819,chr22,44605021,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03225806,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-0.02000000,0.00000000,,0.20370370,60.00000000,2.65486726,0.05000000,0.00000000,5.64000000 +1820,chr22,44606844,UNK,C,,T,,-1.00000000,,,,,,,58.80000000,2.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.06666667,0.00000000,79.00000000,,-1.31000000,0.00000000,,0.28571429,66.00000000,2.92035398,0.04545455,0.00000000,6.35000000 +1821,chr22,44606867,UNK,A,,G,,-1.00000000,,,,,,,58.92000000,2.00000000,ref,1.00000000,0.03448276,31.00000000,1.37168142,0.06451613,0.00000000,71.00000000,,-1.14000000,0.00000000,,0.25000000,75.00000000,3.31858407,0.05333333,0.00000000,6.26000000 +1822,chr22,44606868,UNK,C,,T,,-1.00000000,,,,,,,58.93000000,2.00000000,ref,1.00000000,0.00000000,31.00000000,1.37168142,0.06451613,0.00000000,66.00000000,,-0.56000000,0.00000000,,0.15277778,76.00000000,3.36283186,0.05263158,0.00000000,5.35000000 +1823,chr22,44606927,UNK,T,,C,,-1.00000000,,,,,,,59.54000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,65.00000000,,3.11000000,0.05000000,,0.09195402,92.00000000,4.07079646,0.05434783,0.00000000,4.12000000 +1824,chr22,44606929,UNK,A,,G,,-1.00000000,,,,,,,59.53000000,2.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.00000000,0.00000000,78.00000000,,1.30000000,0.00000000,,0.21176471,91.00000000,4.02654867,0.05494505,0.00000000,5.95000000 +1825,chr22,44606944,UNK,C,,T,,-1.00000000,,,,,,,59.55000000,2.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.00000000,0.00000000,66.00000000,,1.96000000,2.45000000,,0.05555556,95.00000000,4.20353982,0.05263158,0.00000000,3.56000000 +1826,chr22,44606945,UNK,A,,G,,-1.00000000,,,,,,,59.56000000,2.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.00000000,0.00000000,65.00000000,,2.78000000,0.00000000,,0.07777778,97.00000000,4.29203540,0.05154639,0.00000000,4.75000000 +1827,chr22,44667250,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,69.00000000,,-0.84000000,0.00000000,,0.21428571,76.00000000,3.36283186,0.07894737,0.01298701,5.95000000 +1828,chr22,44667261,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,38.00000000,1.68141593,0.02631579,0.00000000,87.00000000,,-0.17000000,0.00000000,,0.24358974,82.00000000,3.62831858,0.04878049,0.00000000,5.88000000 +1829,chr22,45007236,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.02777778,0.00000000,94.00000000,,-0.67000000,0.00000000,,0.32812500,69.00000000,3.05309735,0.05797101,0.00000000,8.08000000 +1830,chr22,45046716,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.07692308,0.33333333,68.00000000,,0.17000000,0.00000000,,0.25396825,65.00000000,2.87610619,0.03076923,0.19753086,5.35000000 +1831,chr22,45058139,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.13043478,0.00000000,40.00000000,,-1.49000000,0.00000000,,0.48936170,56.00000000,2.47787611,0.16071429,0.00000000,4.62000000 +1832,chr22,45081127,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,67.00000000,,0.44000000,0.00000000,,0.41176471,52.00000000,2.30088496,0.00000000,0.00000000,8.39000000 +1833,chr22,45101306,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.06896552,0.00000000,77.00000000,,0.48000000,0.00000000,,0.28395062,82.00000000,3.62831858,0.01219512,0.00000000,5.89000000 +1834,chr22,45102024,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,56.00000000,,-0.24000000,0.00000000,,0.41666667,62.00000000,2.74336283,0.03225806,0.00000000,4.32000000 +1835,chr22,45186253,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.03030303,33.00000000,1.46017699,0.00000000,0.00000000,61.00000000,,-0.31000000,0.00000000,,0.08235294,87.00000000,3.84955752,0.02298851,0.00000000,4.85000000 +1836,chr22,45247753,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,68.00000000,,-2.16000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.10126582,0.00000000,6.15000000 +1837,chr22,45441631,UNK,T,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.17857143,0.00000000,62.00000000,,-1.32000000,0.00000000,,0.31250000,59.00000000,2.61061947,0.18644068,0.00000000,6.34000000 +1838,chr22,45473210,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,68.00000000,,-1.60000000,0.00000000,,0.16666667,48.00000000,2.12389381,0.12500000,0.23809524,5.50000000 +1839,chr22,45479468,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-4.00000000,0.00000000,,0.27500000,40.00000000,1.76991150,0.00000000,0.00000000,5.41000000 +1840,chr22,45479469,UNK,C,,T,,-1.00000000,,,,,,,59.56000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,63.00000000,,-4.00000000,0.00000000,,0.27500000,40.00000000,1.76991150,0.00000000,0.00000000,5.41000000 +1841,chr22,45649137,UNK,T,,C,,-1.00000000,,,,,,,58.27000000,2.00000000,ref,1.00000000,0.00000000,15.00000000,0.66371681,0.00000000,0.00000000,42.00000000,,1.08000000,0.00000000,,0.18750000,51.00000000,2.25663717,0.05882353,0.00000000,2.89000000 +1842,chr22,45740729,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,63.00000000,,2.41000000,0.00000000,,0.11290323,86.00000000,3.80530973,0.27906977,0.00000000,4.59000000 +1843,chr22,45740738,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,,-1.83000000,0.00000000,,0.31081081,84.00000000,3.71681416,0.11904762,0.00000000,6.43000000 +1844,chr22,45740739,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,79.00000000,,-1.73000000,0.00000000,,0.31506849,83.00000000,3.67256637,0.12048193,0.00000000,6.94000000 +1845,chr22,45740754,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,66.00000000,,-3.40000000,0.00000000,,0.15116279,91.00000000,4.02654867,0.03296703,0.00000000,6.21000000 +1846,chr22,45854097,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.10714286,0.00000000,55.00000000,,-1.43000000,0.00000000,,0.45238095,88.00000000,3.89380531,0.04545455,0.00000000,4.75000000 +1847,chr22,45939649,UNK,T,,A,,-1.00000000,,,,,,,59.59000000,1.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,73.00000000,,0.66000000,0.00000000,,0.26666667,75.00000000,3.31858407,0.00000000,0.00000000,5.80000000 +1848,chr22,46196951,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,74.00000000,,1.48000000,0.00000000,,0.21052632,80.00000000,3.53982301,0.05000000,0.00000000,5.83000000 +1849,chr22,46456595,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,63.00000000,,0.31000000,0.00000000,,0.13846154,74.00000000,3.27433628,0.12162162,0.00000000,4.69000000 +1850,chr22,46456617,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,65.00000000,,1.04000000,0.00000000,,0.13114754,73.00000000,3.23008850,0.16438356,0.00000000,4.95000000 +1851,chr22,46456623,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.08333333,0.00000000,66.00000000,,1.44000000,0.00000000,,0.12903226,74.00000000,3.27433628,0.16216216,0.00000000,4.93000000 +1852,chr22,46456631,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,65.00000000,,0.10000000,0.00000000,,0.12962963,66.00000000,2.92035398,0.18181818,0.00000000,4.69000000 +1853,chr22,46524551,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,62.00000000,,1.27000000,0.00000000,,0.10344828,93.00000000,4.11504425,0.05376344,0.00000000,4.75000000 +1854,chr22,46524563,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.04166667,25.00000000,1.10619469,0.04000000,0.00000000,57.00000000,,2.23000000,0.00000000,,0.14084507,87.00000000,3.84955752,0.18390805,0.00000000,2.86000000 +1855,chr22,46524576,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.00000000,0.50000000,15.00000000,,0.95000000,0.00000000,,0.41379310,40.00000000,1.76991150,0.27500000,0.41176471,3.65000000 +1856,chr22,46525443,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.11428571,0.00000000,70.00000000,,0.59000000,0.00000000,,0.16883117,95.00000000,4.20353982,0.18947368,0.01041667,5.41000000 +1857,chr22,46525445,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,36.00000000,1.59292035,0.11111111,0.00000000,70.00000000,,0.44000000,0.00000000,,0.16250000,97.00000000,4.29203540,0.17525773,0.01020408,5.03000000 +1858,chr22,46525470,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,40.00000000,1.76991150,0.02500000,0.00000000,83.00000000,,1.46000000,0.00000000,,0.19780220,100.00000000,4.42477876,0.09000000,0.00000000,5.79000000 +1859,chr22,46580985,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.09375000,0.00000000,67.00000000,,-1.43000000,0.00000000,,0.15476190,95.00000000,4.20353982,0.11578947,0.00000000,5.40000000 +1860,chr22,46648939,UNK,G,,C,,-1.00000000,,,,,,,56.92000000,3.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,59.00000000,,-0.69000000,0.00000000,,0.11428571,74.00000000,3.27433628,0.05405405,0.00000000,4.28000000 +1861,chr22,46904138,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.22000000,0.00000000,,0.14285714,81.00000000,3.58407080,0.03703704,0.00000000,5.49000000 +1862,chr22,46904142,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.00000000,0.00000000,66.00000000,,1.63000000,0.00000000,,0.14102564,81.00000000,3.58407080,0.03703704,0.00000000,5.39000000 +1863,chr22,47461909,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.07692308,0.50000000,18.00000000,,-1.04000000,0.00000000,,0.41666667,38.00000000,1.68141593,0.05263158,0.50649351,3.96000000 +1864,chr22,47461910,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.08000000,0.00000000,66.00000000,,-1.73000000,0.00000000,,0.29166667,75.00000000,3.31858407,0.04000000,0.01315789,5.85000000 +1865,chr22,47479554,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,78.00000000,,0.18000000,0.00000000,,0.22222222,82.00000000,3.62831858,0.01219512,0.00000000,6.65000000 +1866,chr22,47663235,UNK,G,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,13.00000000,0.57522124,0.15384615,0.51851852,26.00000000,,1.04000000,0.00000000,,0.70454545,51.00000000,2.25663717,0.13725490,0.33766234,3.88000000 +1867,chr22,47723041,UNK,G,,A,,-1.00000000,,,,,,,58.35000000,5.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,67.00000000,,0.78000000,0.00000000,,0.20000000,61.00000000,2.69911504,0.01639344,0.00000000,5.94000000 +1868,chr22,47802927,UNK,C,,T,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,70.00000000,,0.44000000,0.00000000,,0.19178082,81.00000000,3.58407080,0.08641975,0.00000000,5.83000000 +1869,chr22,47802929,UNK,T,,A,,-1.00000000,,,,,,,59.73000000,1.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.00000000,0.00000000,70.00000000,,-0.26000000,0.00000000,,0.18309859,79.00000000,3.49557522,0.08860759,0.00000000,6.26000000 +1870,chr22,47856481,UNK,T,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,67.00000000,,0.38000000,0.00000000,,0.26027397,77.00000000,3.40707965,0.05194805,0.00000000,5.65000000 +1871,chr22,47867272,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,68.00000000,,-2.17000000,0.00000000,,0.19642857,57.00000000,2.52212389,0.00000000,0.01724138,6.83000000 +1872,chr22,47867290,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.00000000,0.00000000,70.00000000,,-0.97000000,0.00000000,,0.17857143,56.00000000,2.47787611,0.00000000,0.00000000,6.43000000 +1873,chr22,47907767,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.02702703,0.00000000,66.00000000,,1.84000000,0.00000000,,0.05617978,89.00000000,3.93805310,0.00000000,0.00000000,4.81000000 +1874,chr22,48293814,UNK,T,,C,,-1.00000000,,,,,,,59.31000000,0.00000000,ref,1.00000000,0.00000000,27.00000000,1.19469027,0.03703704,0.00000000,58.00000000,,0.67000000,0.00000000,,0.61428571,75.00000000,3.31858407,0.04000000,0.00000000,6.40000000 +1875,chr22,48329620,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.02857143,0.00000000,83.00000000,,0.65000000,0.00000000,,0.23287671,74.00000000,3.27433628,0.01351351,0.00000000,5.93000000 +1876,chr22,48344593,UNK,C,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.05405405,0.00000000,71.00000000,,-1.84000000,0.00000000,,0.16666667,76.00000000,3.36283186,0.05263158,0.00000000,5.26000000 +1877,chr22,48344594,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,37.00000000,1.63716814,0.08108108,0.00000000,71.00000000,,-1.79000000,0.00000000,,0.16901408,75.00000000,3.31858407,0.04000000,0.00000000,5.53000000 +1878,chr22,48467074,UNK,A,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.04000000,0.00000000,52.00000000,,1.03000000,0.00000000,,0.45348837,87.00000000,3.84955752,0.01149425,0.00000000,4.34000000 +1879,chr22,48507252,UNK,G,,A,,-1.00000000,,,,,,,57.46000000,1.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.00000000,0.00000000,64.00000000,,-0.46000000,0.00000000,,0.29629630,57.00000000,2.52212389,0.05263158,0.00000000,6.80000000 +1880,chr22,48512943,UNK,A,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.14285714,0.00000000,41.00000000,,-0.13000000,0.00000000,,0.36538462,66.00000000,2.92035398,0.16666667,0.00000000,4.61000000 +1881,chr22,48512945,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,23.00000000,1.01769912,0.04347826,0.00000000,58.00000000,,-1.70000000,0.00000000,,0.08474576,65.00000000,2.87610619,0.07692308,0.05797101,4.38000000 +1882,chr22,48652834,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.03333333,0.00000000,76.00000000,,-0.38000000,0.00000000,,0.22413793,66.00000000,2.92035398,0.09090909,0.00000000,6.26000000 +1883,chr22,48788209,UNK,T,,C,,-1.00000000,,,,,,,58.13000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,43.00000000,,-3.52000000,0.00000000,,0.39393939,70.00000000,3.09734513,0.05714286,0.00000000,4.33000000 +1884,chr22,48788213,UNK,C,,T,,-1.00000000,,,,,,,58.11000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,41.00000000,,-3.55000000,0.00000000,,0.41538462,69.00000000,3.05309735,0.05797101,0.00000000,4.30000000 +1885,chr22,48788217,UNK,T,,C,,-1.00000000,,,,,,,58.09000000,4.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.00000000,40.00000000,,-3.48000000,0.00000000,,0.46031746,68.00000000,3.00884956,0.05882353,0.00000000,4.31000000 +1886,chr22,48797462,UNK,T,,C,,-1.00000000,,,,,,,59.18000000,3.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,72.00000000,,-3.07000000,0.00000000,,0.18571429,74.00000000,3.27433628,0.01351351,0.00000000,6.66000000 +1887,chr22,48802317,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,82.00000000,,1.03000000,0.00000000,,0.28888889,48.00000000,2.12389381,0.06250000,0.23809524,5.71000000 +1888,chr22,48802324,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,77.00000000,,0.25000000,0.00000000,,0.24193548,68.00000000,3.00884956,0.08823529,0.00000000,5.76000000 +1889,chr22,48811525,UNK,C,,G,,-1.00000000,,,,,,,59.19000000,2.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.04545455,0.00000000,59.00000000,,1.81000000,0.00000000,,0.20000000,51.00000000,2.25663717,0.01960784,0.00000000,5.02000000 +1890,chr22,48867320,UNK,G,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,69.00000000,,-1.04000000,0.00000000,,0.49206349,63.00000000,2.78761062,0.00000000,0.00000000,8.75000000 +1891,chr22,48880161,UNK,T,,C,,-1.00000000,,,,,,,58.23000000,4.00000000,ref,1.00000000,0.07692308,13.00000000,0.57522124,0.00000000,0.27777778,3.00000000,,-0.07000000,0.00000000,,0.51162791,52.00000000,2.30088496,0.17307692,0.20000000,3.00000000 +1892,chr22,48931016,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,21.00000000,0.92920354,0.04761905,0.00000000,51.00000000,,1.06000000,0.00000000,,0.32653061,60.00000000,2.65486726,0.18333333,0.00000000,4.42000000 +1893,chr22,48931086,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.06250000,0.00000000,76.00000000,,-0.43000000,0.00000000,,0.21666667,61.00000000,2.69911504,0.01639344,0.00000000,6.23000000 +1894,chr22,49386602,UNK,G,,A,,-1.00000000,,,,,,,35.75000000,106.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,66.00000000,,-2.95000000,0.20000000,,0.16666667,36.00000000,1.59292035,0.00000000,0.00000000,4.73000000 +1895,chr22,49427134,UNK,C,,G,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,34.00000000,1.50442478,0.02941176,0.00000000,80.00000000,,0.62000000,0.00000000,,0.29761905,88.00000000,3.89380531,0.04545455,0.00000000,5.82000000 +1896,chr22,49433531,UNK,G,,A,,-1.00000000,,,,,,,54.44000000,6.00000000,ref,1.00000000,0.00000000,12.00000000,0.53097345,0.00000000,0.00000000,16.00000000,,0.72000000,0.00000000,,0.38461538,30.00000000,1.32743363,0.10000000,0.00000000,3.75000000 +1897,chr22,49433600,UNK,G,,A,,-1.00000000,,,,,,,57.72000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.04166667,0.00000000,64.00000000,,-0.26000000,0.00000000,,0.23684211,40.00000000,1.76991150,0.05000000,0.00000000,6.53000000 +1898,chr22,49494383,UNK,G,,A,,-1.00000000,,,,,,,35.59000000,95.00000000,ref,1.00000000,0.00000000,26.00000000,1.15044248,0.15384615,0.00000000,59.00000000,,3.35000000,5.97000000,,0.13636364,54.00000000,2.38938053,0.18518519,0.00000000,3.04000000 +1899,chr22,49494537,UNK,T,,C,,-1.00000000,,,,,,,44.70000000,59.00000000,ref,1.00000000,0.00000000,11.00000000,0.48672566,0.18181818,0.00000000,21.00000000,,-1.69000000,0.00000000,,0.30000000,59.00000000,2.61061947,0.10169492,0.00000000,3.71000000 +1900,chr22,49860035,UNK,C,,T,,-1.00000000,,,,,,,55.70000000,0.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,64.00000000,,-0.74000000,0.00000000,,0.12676056,71.00000000,3.14159292,0.00000000,0.00000000,5.36000000 +1901,chr22,49987230,UNK,T,,A,,-1.00000000,,,,,,,59.64000000,1.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.48000000,0.00000000,25.00000000,,-1.38000000,0.00000000,,0.36585366,56.00000000,2.47787611,0.26785714,0.00000000,3.19000000 +1902,chr22,50001452,UNK,T,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,20.00000000,0.88495575,0.00000000,0.53488372,39.00000000,,-1.92000000,0.00000000,,0.45283019,57.00000000,2.52212389,0.07017544,0.32142857,4.09000000 +1903,chr22,50170183,UNK,C,,A,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.05714286,0.00000000,81.00000000,,-1.40000000,0.00000000,,0.23188406,73.00000000,3.23008850,0.05479452,0.00000000,5.99000000 +1904,chr22,50171375,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,28.00000000,1.23893805,0.03571429,0.00000000,73.00000000,,-0.08000000,0.00000000,,0.21052632,76.00000000,3.36283186,0.00000000,0.00000000,6.43000000 +1905,chr22,50260258,UNK,G,,C,,-1.00000000,,,,,,,59.14000000,3.00000000,ref,1.00000000,0.00000000,24.00000000,1.06194690,0.08333333,0.00000000,63.00000000,,0.88000000,0.00000000,,0.26470588,73.00000000,3.23008850,0.06849315,0.00000000,5.80000000 +1906,chr22,50405421,UNK,T,,C,,-1.00000000,,,,,,,55.05000000,12.00000000,ref,1.00000000,0.00000000,29.00000000,1.28318584,0.03448276,0.00000000,62.00000000,,2.45000000,1.44000000,,0.13043478,49.00000000,2.16814159,0.06122449,0.00000000,3.42000000 +1907,chr22,50434005,UNK,T,,C,,-1.00000000,,,,,,,26.04000000,49.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.00000000,0.00000000,,0.50000000,10.00000000,0.44247788,0.20000000,0.00000000,3.80000000 +1908,chr22,50444629,UNK,G,,T,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.02631579,44.00000000,1.94690265,0.11363636,0.00000000,76.00000000,,1.50000000,0.00000000,,0.44791667,101.00000000,4.46902655,0.04950495,0.00000000,7.47000000 +1909,chr22,50665012,UNK,A,,C,,-1.00000000,,,,,,,60.00000000,0.00000000,ref,1.00000000,0.00000000,35.00000000,1.54867257,0.08571429,0.00000000,86.00000000,,-0.98000000,0.00000000,,0.27941176,74.00000000,3.27433628,0.08108108,0.00000000,6.02000000 +1910,chr22,50743172,UNK,A,,G,,-1.00000000,,,,,,,53.91000000,21.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,62.00000000,,-0.26000000,0.00000000,,0.24590164,66.00000000,2.92035398,0.06060606,0.00000000,6.62000000 +1911,chr22,50764485,UNK,T,,C,,-1.00000000,,,,,,,58.13000000,6.00000000,ref,1.00000000,0.00000000,32.00000000,1.41592920,0.03125000,0.00000000,63.00000000,,-1.52000000,0.00000000,,0.06315789,96.00000000,4.24778761,0.01041667,0.00000000,5.04000000 +1912,chr22,50764588,UNK,C,,A,,-1.00000000,,,,,,,57.47000000,7.00000000,ref,1.00000000,0.00000000,30.00000000,1.32743363,0.00000000,0.00000000,63.00000000,,1.78000000,0.00000000,,0.06542056,108.00000000,4.77876106,0.00925926,0.00000000,4.92000000 +1913,chr22,50770914,UNK,T,,A,,-1.00000000,,,,,,,54.12000000,13.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,64.00000000,,-0.52000000,0.00000000,,0.08974359,81.00000000,3.58407080,0.03703704,0.00000000,4.83000000 +1914,chr22,50778251,UNK,C,,A,,-1.00000000,,,,,,,50.79000000,26.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,0.80000000,0.00000000,,0.08771930,57.00000000,2.52212389,0.00000000,0.00000000,3.79000000 +1915,chr22,50791067,UNK,C,,T,,-1.00000000,,,,,,,51.42000000,27.00000000,ref,1.00000000,0.00000000,22.00000000,0.97345133,0.00000000,0.00000000,58.00000000,,-1.15000000,3.30000000,,0.11475410,61.00000000,2.69911504,0.00000000,0.00000000,3.43000000 +1916,chr22,50796984,UNK,G,,C,,-1.00000000,,,,,,,50.34000000,29.00000000,ref,1.00000000,0.00000000,33.00000000,1.46017699,0.03030303,0.00000000,62.00000000,,0.75000000,0.00000000,,0.09090909,68.00000000,3.00884956,0.02941176,0.00000000,4.55000000 +1917,chr22,50806144,UNK,C,,G,,-1.00000000,,,,,,,14.84000000,155.00000000,ref,1.00000000,0.00000000,6.00000000,0.26548673,0.00000000,0.00000000,4.00000000,,0.68000000,0.00000000,,0.38888889,18.00000000,0.79646018,0.00000000,0.00000000,3.78000000 +1918,chr22,50807650,UNK,C,,G,,-1.00000000,,,,,,,35.01000000,60.00000000,ref,1.00000000,0.00000000,25.00000000,1.10619469,0.00000000,0.00000000,66.00000000,,-0.28000000,0.00000000,,0.17647059,54.00000000,2.38938053,0.05555556,0.00000000,5.99000000 diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.metrics.json b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.metrics.json new file mode 100644 index 0000000..94e6328 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.metrics.json @@ -0,0 +1 @@ +{"runInfo": [{"value": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF", "key": "commandline"}], "metrics": [{"data": [{"values": [1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "string", "id": "types", "label": "types"}, {"values": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "int64", "id": "ambi", "label": "ambi"}, {"values": [2005, 2005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "int64", "id": "fn", "label": "fn"}, {"values": [66, 66, 40, 12, 5, 3, 5, 0, 0, 40, 12, 5, 3, 5, 0, 0], "type": "int64", "id": "fp", "label": "fp"}, {"values": [15560, 15560, 1072, 4987, 6344, 1290, 1482, 352, 22, 1072, 4987, 6344, 1290, 1482, 352, 22], "type": "int64", "id": "total.query", "label": "total.query"}, {"values": [15580, 15580, 190, 4402, 6120, 1124, 1394, 331, 14, 190, 4402, 6120, 1124, 1394, 331, 14], "type": "int64", "id": "total.truth", "label": "total.truth"}, {"values": [13575, 13575, 190, 4402, 6120, 1124, 1394, 331, 14, 190, 4402, 6120, 1124, 1394, 331, 14], "type": "int64", "id": "tp", "label": "tp"}, {"values": ["SNVs", "records", "records.0.000000-0.100000", "records.0.100000-0.200000", "records.0.200000-0.300000", "records.0.300000-0.400000", "records.0.400000-0.500000", "records.0.500000-0.600000", "records.0.600000-0.700000", "SNVs.0.000000-0.100000", "SNVs.0.100000-0.200000", "SNVs.0.200000-0.300000", "SNVs.0.300000-0.400000", "SNVs.0.400000-0.500000", "SNVs.0.500000-0.600000", "SNVs.0.600000-0.700000"], "type": "string", "id": "type", "label": "type"}, {"values": [1919, 1919, 842, 573, 219, 163, 83, 21, 8, 842, 573, 219, 163, 83, 21, 8], "type": "int64", "id": "unk", "label": "unk"}, {"values": [0.8713093709884467, 0.8713093709884467, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall", "label": "recall"}, {"values": [0.8659824983255057, 0.8659824983255057, 0.9807721052466722, 0.9991623502399285, 0.9993974235414211, 0.9967234583941655, 0.9973572432576975, 0.9889172206443162, 0.7683642383498835, 0.9807721052466722, 0.9991623502399285, 0.9993974235414211, 0.9967234583941655, 0.9973572432576975, 0.9889172206443162, 0.7683642383498835], "type": "double", "id": "recall_lower", "label": "recall_lower"}, {"values": [0.8764983032832563, 0.8764983032832563, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall_upper", "label": "recall_upper"}, {"values": [0.8713093709884467, 0.8713093709884467, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], "type": "double", "id": "recall2", "label": "recall2"}, {"values": [0.9951616450406862, 0.9951616450406862, 0.8260869565217391, 0.9972813774354327, 0.9991836734693877, 0.997338065661047, 0.9964260185847034, 1.0, 1.0, 0.8260869565217391, 0.9972813774354327, 0.9991836734693877, 0.997338065661047, 0.9964260185847034, 1.0, 1.0], "type": "double", "id": "precision", "label": "precision"}, {"values": [0.9938894997878358, 0.9938894997878358, 0.77318417575164, 0.9954003344828055, 0.9982115516811925, 0.9929131807073586, 0.99218388792303, 0.9889172206443162, 0.7683642383498835, 0.77318417575164, 0.9954003344828055, 0.9982115516811925, 0.9929131807073586, 0.99218388792303, 0.9889172206443162, 0.7683642383498835], "type": "double", "id": "precision_lower", "label": "precision_lower"}, {"values": [0.9962238387168659, 0.9962238387168659, 0.8708451597146905, 0.9985130188054391, 0.9996884444103575, 0.9992497286638686, 0.9986349932058294, 1.0, 1.0, 0.8708451597146905, 0.9985130188054391, 0.9996884444103575, 0.9992497286638686, 0.9986349932058294, 1.0, 1.0], "type": "double", "id": "precision_upper", "label": "precision_upper"}, {"values": [0.12332904884318766, 0.12332904884318766, 0.7854477611940298, 0.11489873671546019, 0.03452080706179067, 0.1263565891472868, 0.05600539811066127, 0.05965909090909091, 0.36363636363636365, 0.7854477611940298, 0.11489873671546019, 0.03452080706179067, 0.1263565891472868, 0.05600539811066127, 0.05965909090909091, 0.36363636363636365], "type": "double", "id": "na", "label": "na"}, {"values": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "type": "double", "id": "ambiguous", "label": "ambiguous"}, {"values": [32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860, 32898860], "type": "int64", "id": "fp.region.size", "label": "fp.region.size"}, {"values": [2.0061485413172373, 2.0061485413172373, 1.2158476007983254, 0.3647542802394977, 0.15198095009979068, 0.09118857005987442, 0.15198095009979068, 0.0, 0.0, 1.2158476007983254, 0.3647542802394977, 0.15198095009979068, 0.09118857005987442, 0.15198095009979068, 0.0, 0.0], "type": "double", "id": "fp.rate", "label": "fp.rate"}], "properties": [], "type": "Table", "id": "result", "label": "result"}], "version": "v0.3.10", "sampleInfo": [], "name": "som.py.comparison", "parameters": [], "timestamp": "Mon Dec 18 13:56:26 2017", "metadata": {"required": {"version": "v0.3.10", "id": "haplotypes", "module": "som.py", "description": "/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py generated this JSON file via command line /illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF"}}} \ No newline at end of file diff --git a/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.stats.csv b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.stats.csv new file mode 100644 index 0000000..d11ebd8 --- /dev/null +++ b/example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs_af.stats.csv @@ -0,0 +1,17 @@ +,ambi,fn,fp,total.query,total.truth,tp,type,unk,recall,recall_lower,recall_upper,recall2,precision,precision_lower,precision_upper,na,ambiguous,fp.region.size,fp.rate,sompyversion,sompycmd +1,0,2005,66,15560,15580,13575,SNVs,1919,0.871309370988,0.865982498326,0.876498303283,0.871309370988,0.995161645041,0.993889499788,0.996223838717,0.123329048843,0.0,32898860,2.00614854132,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +5,0,2005,66,15560,15580,13575,records,1919,0.871309370988,0.865982498326,0.876498303283,0.871309370988,0.995161645041,0.993889499788,0.996223838717,0.123329048843,0.0,32898860,2.00614854132,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,40,1072,190,190,records.0.000000-0.100000,842,1.0,0.980772105247,1.0,1.0,0.826086956522,0.773184175752,0.870845159715,0.785447761194,0.0,32898860,1.2158476008,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,12,4987,4402,4402,records.0.100000-0.200000,573,1.0,0.99916235024,1.0,1.0,0.997281377435,0.995400334483,0.998513018805,0.114898736715,0.0,32898860,0.364754280239,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,5,6344,6120,6120,records.0.200000-0.300000,219,1.0,0.999397423541,1.0,1.0,0.999183673469,0.998211551681,0.99968844441,0.0345208070618,0.0,32898860,0.1519809501,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,3,1290,1124,1124,records.0.300000-0.400000,163,1.0,0.996723458394,1.0,1.0,0.997338065661,0.992913180707,0.999249728664,0.126356589147,0.0,32898860,0.0911885700599,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,5,1482,1394,1394,records.0.400000-0.500000,83,1.0,0.997357243258,1.0,1.0,0.996426018585,0.992183887923,0.998634993206,0.0560053981107,0.0,32898860,0.1519809501,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,352,331,331,records.0.500000-0.600000,21,1.0,0.988917220644,1.0,1.0,1.0,0.988917220644,1.0,0.0596590909091,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,22,14,14,records.0.600000-0.700000,8,1.0,0.76836423835,1.0,1.0,1.0,0.76836423835,1.0,0.363636363636,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,40,1072,190,190,SNVs.0.000000-0.100000,842,1.0,0.980772105247,1.0,1.0,0.826086956522,0.773184175752,0.870845159715,0.785447761194,0.0,32898860,1.2158476008,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,12,4987,4402,4402,SNVs.0.100000-0.200000,573,1.0,0.99916235024,1.0,1.0,0.997281377435,0.995400334483,0.998513018805,0.114898736715,0.0,32898860,0.364754280239,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,5,6344,6120,6120,SNVs.0.200000-0.300000,219,1.0,0.999397423541,1.0,1.0,0.999183673469,0.998211551681,0.99968844441,0.0345208070618,0.0,32898860,0.1519809501,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,3,1290,1124,1124,SNVs.0.300000-0.400000,163,1.0,0.996723458394,1.0,1.0,0.997338065661,0.992913180707,0.999249728664,0.126356589147,0.0,32898860,0.0911885700599,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,5,1482,1394,1394,SNVs.0.400000-0.500000,83,1.0,0.997357243258,1.0,1.0,0.996426018585,0.992183887923,0.998634993206,0.0560053981107,0.0,32898860,0.1519809501,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,352,331,331,SNVs.0.500000-0.600000,21,1.0,0.988917220644,1.0,1.0,1.0,0.988917220644,1.0,0.0596590909091,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF +0,0,0,0,22,14,14,SNVs.0.600000-0.700000,8,1.0,0.76836423835,1.0,1.0,1.0,0.76836423835,1.0,0.363636363636,0.0,32898860,0.0,som.py-v0.3.10,/illumina/sync/software/groups/hap.py/latest/hap.py/hap.py-v0.3.10/bin/som.py /home/mgonzalez/workspace/git/hap.py/example/sompy/PG_admix_truth_grch38_snvs.vcf.gz /home/mgonzalez/workspace/git/hap.py/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz -o sompy.strelka_grch38_admix_pass_snvs_af -P -f /home/mgonzalez/workspace/git/hap.py/example/sompy/FP_admix_grch38.bed.gz --feature-table hcc.strelka.snv --count-unk --verbose --bin-afs --af-binsize 0.1 --af-truth T_AF diff --git a/example/sompy/stats.csv b/example/sompy/reference_outputs/stats.csv similarity index 100% rename from example/sompy/stats.csv rename to example/sompy/reference_outputs/stats.csv diff --git a/example/sompy/stats_ci.csv b/example/sompy/reference_outputs/stats_ci.csv similarity index 100% rename from example/sompy/stats_ci.csv rename to example/sompy/reference_outputs/stats_ci.csv diff --git a/example/sompy/stats_fpr.csv b/example/sompy/reference_outputs/stats_fpr.csv similarity index 100% rename from example/sompy/stats_fpr.csv rename to example/sompy/reference_outputs/stats_fpr.csv diff --git a/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz b/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz new file mode 100644 index 0000000..259d980 Binary files /dev/null and b/example/sompy/strelka_grch38_admix_pass_indels.vcf.gz differ diff --git a/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz b/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz new file mode 100644 index 0000000..8eba447 Binary files /dev/null and b/example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz differ diff --git a/src/cmake/GetGitRevisionDescription.cmake b/src/cmake/GetGitRevisionDescription.cmake deleted file mode 100644 index 5ca647e..0000000 --- a/src/cmake/GetGitRevisionDescription.cmake +++ /dev/null @@ -1,140 +0,0 @@ -# From https://github.com/rpavlik/cmake-modules/blob/master/GetGitRevisionDescription.cmake -# -# -# Copyright Iowa State University 2009-2014 -# -# Distributed under the Boost Software License, Version 1.0. -# -# (See http://www.boost.org/LICENSE_1_0.txt) -# -# -# - Returns a version string from Git -# -# These functions force a re-configure on each git commit so that you can -# trust the values of the variables in your build system. -# -# get_git_head_revision( [ ...]) -# -# Returns the refspec and sha hash of the current head revision -# -# git_describe( [ ...]) -# -# Returns the results of git describe on the source tree, and adjusting -# the output so that it tests false if an error occurs. -# -# git_get_exact_tag( [ ...]) -# -# Returns the results of git describe --exact-match on the source tree, -# and adjusting the output so that it tests false if there was no exact -# matching tag. -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -if(__get_git_revision_description) - return() -endif() -set(__get_git_revision_description YES) - -# We must run the following at "include" time, not at function call time, -# to find the path to this module rather than the path to a calling list file -get_filename_component(_gitdescmoddir ${CMAKE_CURRENT_LIST_FILE} PATH) - -function(get_git_head_revision _refspecvar _hashvar) - set(GIT_PARENT_DIR "${CMAKE_CURRENT_SOURCE_DIR}") - set(GIT_DIR "${GIT_PARENT_DIR}/.git") - while(NOT EXISTS "${GIT_DIR}") # .git dir not found, search parent directories - set(GIT_PREVIOUS_PARENT "${GIT_PARENT_DIR}") - get_filename_component(GIT_PARENT_DIR ${GIT_PARENT_DIR} PATH) - if(GIT_PARENT_DIR STREQUAL GIT_PREVIOUS_PARENT) - # We have reached the root directory, we are not in git - set(${_refspecvar} "GITDIR-NOTFOUND" PARENT_SCOPE) - set(${_hashvar} "GITDIR-NOTFOUND" PARENT_SCOPE) - return() - endif() - set(GIT_DIR "${GIT_PARENT_DIR}/.git") - endwhile() - # check if this is a submodule - if(NOT IS_DIRECTORY ${GIT_DIR}) - file(READ ${GIT_DIR} submodule) - string(REGEX REPLACE "gitdir: (.*)\n$" "\\1" GIT_DIR_RELATIVE ${submodule}) - get_filename_component(SUBMODULE_DIR ${GIT_DIR} PATH) - get_filename_component(GIT_DIR ${SUBMODULE_DIR}/${GIT_DIR_RELATIVE} ABSOLUTE) - endif() - set(GIT_DATA "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/git-data") - if(NOT EXISTS "${GIT_DATA}") - file(MAKE_DIRECTORY "${GIT_DATA}") - endif() - - if(NOT EXISTS "${GIT_DIR}/HEAD") - return() - endif() - set(HEAD_FILE "${GIT_DATA}/HEAD") - configure_file("${GIT_DIR}/HEAD" "${HEAD_FILE}" COPYONLY) - - configure_file("${_gitdescmoddir}/GetGitRevisionDescription.cmake.in" - "${GIT_DATA}/grabRef.cmake" - @ONLY) - include("${GIT_DATA}/grabRef.cmake") - - set(${_refspecvar} "${HEAD_REF}" PARENT_SCOPE) - set(${_hashvar} "${HEAD_HASH}" PARENT_SCOPE) -endfunction() - -function(git_describe _var) - if(NOT GIT_FOUND) - find_package(Git QUIET) - endif() - get_git_head_revision(refspec hash) - if(NOT GIT_FOUND) - set(${_var} "GIT-NOTFOUND" PARENT_SCOPE) - return() - endif() - if(NOT hash) - set(${_var} "HEAD-HASH-NOTFOUND" PARENT_SCOPE) - return() - endif() - - # TODO sanitize - #if((${ARGN}" MATCHES "&&") OR - # (ARGN MATCHES "||") OR - # (ARGN MATCHES "\\;")) - # message("Please report the following error to the project!") - # message(FATAL_ERROR "Looks like someone's doing something nefarious with git_describe! Passed arguments ${ARGN}") - #endif() - - #message(STATUS "Arguments to execute_process: ${ARGN}") - - execute_process(COMMAND - "${GIT_EXECUTABLE}" - describe - ${hash} - ${ARGN} - WORKING_DIRECTORY - "${CMAKE_SOURCE_DIR}" - RESULT_VARIABLE - res - OUTPUT_VARIABLE - out - ERROR_QUIET - OUTPUT_STRIP_TRAILING_WHITESPACE) - if(NOT res EQUAL 0) - set(out "${out}-${res}-NOTFOUND") - endif() - - set(${_var} "${out}" PARENT_SCOPE) -endfunction() - -function(git_get_exact_tag _var) - git_describe(out --exact-match ${ARGN}) - set(${_var} "${out}" PARENT_SCOPE) -endfunction() diff --git a/src/cmake/GetGitRevisionDescription.cmake.in b/src/cmake/GetGitRevisionDescription.cmake.in deleted file mode 100644 index 888ce13..0000000 --- a/src/cmake/GetGitRevisionDescription.cmake.in +++ /dev/null @@ -1,38 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -set(HEAD_HASH) - -file(READ "@HEAD_FILE@" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -if(HEAD_CONTENTS MATCHES "ref") - # named branch - string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") - if(EXISTS "@GIT_DIR@/${HEAD_REF}") - configure_file("@GIT_DIR@/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY) - elseif(EXISTS "@GIT_DIR@/logs/${HEAD_REF}") - configure_file("@GIT_DIR@/logs/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("@GIT_DIR@/HEAD" "@GIT_DATA@/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/src/python/Tools/bcftools.py b/src/python/Tools/bcftools.py index a6d7024..1d57f5b 100755 --- a/src/python/Tools/bcftools.py +++ b/src/python/Tools/bcftools.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # coding=utf-8 # # Copyright (c) 2010-2015 Illumina, Inc. @@ -20,35 +21,47 @@ import Tools -def runBcftools(*args): - """ Run bcftools, return output - """ +scriptDir = os.path.abspath(os.path.dirname(__file__)) + +def runShellCommand(*args): + """ Run a shell command (e.g. bcf tools), and return output + """ qargs = [] for a in args: if a.strip() != "|": qargs.append(pipes.quote(a)) else: - qargs.append(" | ") + qargs.append("|") + + cmd_line = " ".join(qargs) + logging.info(cmd_line) - runme = "bcftools %s" % " ".join(qargs) - logging.info(runme) - po = subprocess.Popen(runme, + po = subprocess.Popen(cmd_line, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - o, e = po.communicate() + stdout, stderr = po.communicate() po.wait() - rc = po.returncode + return_code = po.returncode + + if return_code != 0: + raise Exception("Command line {} got return code {}.\nSTDOUT: {}\nSTDERR: {}".format(cmd_line, return_code, stdout, stderr)) - if rc != 0: - raise Exception("Error running BCFTOOLS; please check if your file has issues using vcfcheck" - ". Return code was %i, output: %s / %s \n" % (rc, o, e)) + return stdout - return o + +def runBcftools(*args): + """ + Wraps runShellCommand for compatibility. + + :param args: + :return: + """ + return runShellCommand('bcftools', *args) def parseStats(output, colname="count"): @@ -131,18 +144,21 @@ def concatenateParts(output, *args): # noinspection PyShadowingBuiltins -def preprocessVCF(input, output, location="", +def preprocessVCF(input_filename, output_filename, location="", pass_only=True, chrprefix=True, norm=False, regions=None, targets=None, - reference=Tools.defaultReference(), + reference="fake_reference_path", filters_only=None, somatic_allele_conversion=False, - sample="SAMPLE"): + sample="SAMPLE", + filter_nonref=True, + convert_gvcf=False, + num_threads=4): """ Preprocess a VCF + create index - :param input: the input VCF / BCF / ... - :param output: the output VCF + :param input_filename: the input VCF / BCF / ... + :param output_filename: the output VCF :param location: optional location string -- comma separated :param pass_only: only return passing variants :param chrprefix: fix chromosome prefix @@ -159,8 +175,28 @@ def preprocessVCF(input, output, location="", to assign one of the following genotypes to the resulting sample: 1 | 0/1 | 1/1 | ./1 :param sample: name of the output sample column when using somatic_allele_conversion + :param filter_nonref: remove any variants genotyped as """ - vargs = ["view", input] + #ToDo: refactor for simplicity and performance + + vargs = ["bcftools", "view", "--threads", str(num_threads), "-O", "v", input_filename, "|" ] + + + if convert_gvcf: + # prefilter for variant sites (all genome VCF sites have a NON_REF allele, hence use 2 here) + vargs += ['bcftools', 'view', '-I', '-e', 'N_ALT < 2', '-O', 'u', '|'] + # strip uninteresting details and arrays which prevent allele trimming + vargs += ['bcftools', 'annotate', '-x', 'INFO,^FORMAT/GT,FORMAT/DP,FORMAT/GQ', '-O', 'u', '|'] + # trim missing alleles, don't compute the AD/AF fields + vargs += ['bcftools', 'view', '-a', '-I', '-O', 'u', '|'] + # remove variants with NON_REF alleles, don't compute the AD/AF fields + vargs += ['bcftools', 'view', '-I', '-e', 'ALT[*] = ""', '-O', 'v', '|'] + + vargs += ["bcftools", "view", "-O", "v"] + + if filter_nonref: + vargs += ["|", "python", "{}/remove_nonref_gt_variants.py".format(scriptDir), "|", "bcftools", "view", "-O", "v"] + if type(location) is list: location = ",".join(location) @@ -171,7 +207,8 @@ def preprocessVCF(input, output, location="", vargs += ["-f", filters_only] if chrprefix: - vargs += ["|", "perl", "-pe", "s/^([0-9XYM])/chr$1/", "|", "perl", "-pe", "s/chrMT/chrM/", "|", "bcftools", "view"] + vargs += ["|", "perl", "-pe", "s/^([0-9XYM])/chr$1/", "|", "perl", "-pe", "s/chrMT/chrM/", "|", "bcftools", + "view"] if targets: vargs += ["-T", targets, "|", "bcftools", "view"] @@ -179,23 +216,25 @@ def preprocessVCF(input, output, location="", if location: vargs += ["-t", location, "|", "bcftools", "view"] - if output.endswith(".vcf.gz"): - int_suffix = ".vcf.gz" + if output_filename.endswith("vcf.gz"): + int_suffix = "vcf.gz" else: int_suffix = ".bcf" + tff = tempfile.NamedTemporaryFile(delete=False, suffix=int_suffix) + try: # anything needs tabix? if so do an intermediate stage where we # index first if regions: - if int_suffix == ".vcf.gz": + if int_suffix == "vcf.gz": vargs += ["-o", tff.name, "-O", "z"] - runBcftools(*vargs) - runBcftools("index", "-t", tff.name) + runShellCommand(*vargs) + runShellCommand('bcftools', "index", "-t", tff.name) else: vargs += ["-o", tff.name, "-O", "b"] - runBcftools(*vargs) - runBcftools("index", tff.name) + runShellCommand(*vargs) + runShellCommand('bcftools', "index", tff.name) vargs = ["view", tff.name, "-R", regions] if somatic_allele_conversion: @@ -207,18 +246,25 @@ def preprocessVCF(input, output, location="", if norm: vargs += ["|", "bcftools", "norm", "-f", reference, "-c", "x", "-D"] - vargs += ["-o", output] - if int_suffix == ".vcf.gz": + vargs += ["-o", output_filename] + if int_suffix == "vcf.gz": vargs += ["-O", "z"] istabix = True else: vargs += ["-O", "b"] istabix = False - runBcftools(*vargs) + + runShellCommand(*vargs) + if istabix: - runBcftools("index", "-t", output) + runShellCommand('bcftools', "index", "-t", output_filename) else: - runBcftools("index", output) + runShellCommand('bcftools', "index", output_filename) + + except Exception as ex: + print("Error running BCFTOOLS; please check your file for compatibility issues issues using vcfcheck") + raise ex + finally: try: os.unlink(tff.name) diff --git a/src/python/Tools/remove_nonref_gt_variants.py b/src/python/Tools/remove_nonref_gt_variants.py new file mode 100644 index 0000000..b2d886b --- /dev/null +++ b/src/python/Tools/remove_nonref_gt_variants.py @@ -0,0 +1,34 @@ +#!/illumina/development/haplocompare/hc-virtualenv/bin/python +import sys +import re + +GT_SPLITTER = re.compile(r'[\/\|]') # split a genotype field by '/' or '|' + +def fast_nonref_remover(input_stream, output_stream): + """ + Copies each line of :param:`input_stream` to :param:`output_stream` + unless that line describes a variant where any of the sample genotypes + include a allele. + """ + for line in input_stream: + bad_variant = False + if line[0] != '#': + split_line = line.split('\t') + split_alt = split_line[4].split(',') + if split_alt[-1] == '': + for sample_column in range(9, len(split_line)): # + split_gt = re.split(GT_SPLITTER, split_line[sample_column].split(':')[0]) + n_alt = len(split_alt) + for gt in split_gt: + if gt != '.' and int(gt) == n_alt: + bad_variant = True + break + else: # break out of both loops as soon as we find the first GT + continue + break + if not bad_variant: + output_stream.write(line) + + +if __name__ == '__main__': + fast_nonref_remover(sys.stdin, sys.stdout) \ No newline at end of file diff --git a/src/python/hap.py b/src/python/hap.py index aba014f..70ab6e4 100755 --- a/src/python/hap.py +++ b/src/python/hap.py @@ -126,6 +126,7 @@ def main(): default=Haplo.vcfeval.findVCFEval(), help="This parameter should give the path to the \"rtg\" executable. " "The default is %s" % Haplo.vcfeval.findVCFEval()) + parser.add_argument("--engine-vcfeval-template", dest="engine_vcfeval_template", required=False, help="Vcfeval needs the reference sequence formatted in its own file format " "(SDF -- run rtg format -o ref.SDF ref.fa). You can specify this here " @@ -183,8 +184,8 @@ def main(): parser.print_help() exit(1) + print "Hap.py %s" % Tools.version if args.version: - print "Hap.py %s" % Tools.version exit(0) if args.roc: @@ -277,7 +278,14 @@ def main(): (args.preprocessing_leftshift or args.preprocessing_norm or args.preprocessing_decompose): args.preprocessing_truth = False logging.info("Turning off pre.py preprocessing for somatic comparisons") - + + if args.preprocessing_truth: + if args.filter_nonref: + logging.info("Filtering out any variants genotyped as ") + + if args.convert_gvcf_truth: + logging.info("Converting genome VCF to VCF") + tempfiles.append(ttf.name) tempfiles.append(ttf.name + ".csi") tempfiles.append(ttf.name + ".tbi") @@ -295,8 +303,10 @@ def main(): args.preprocess_window, args.threads, args.gender, - args.somatic_allele_conversion, - "TRUTH") + args.somatic_allele_conversion, + "TRUTH", + filter_nonref=args.filter_nonref if args.preprocessing_truth else False, + convert_gvcf_to_vcf=args.convert_gvcf_truth) args.vcf1 = ttf.name @@ -325,6 +335,11 @@ def main(): args.locations = sorted(args.locations) logging.info("Preprocessing query: %s" % args.vcf2) + if args.filter_nonref: + logging.info("Filtering out any variants genotyped as ") + if args.convert_gvcf_query: + logging.info("Converting genome VCF to VCF") + starttime = time.time() if args.pass_only: @@ -363,7 +378,10 @@ def main(): args.threads, args.gender, # same gender as truth above args.somatic_allele_conversion, - "QUERY") + "QUERY", + filter_nonref=args.filter_nonref, + convert_gvcf_to_vcf=args.convert_gvcf_query) + args.vcf2 = qtf.name h2 = vcfextract.extractHeadersJSON(args.vcf2) diff --git a/src/python/pre.py b/src/python/pre.py index d199485..fe380aa 100755 --- a/src/python/pre.py +++ b/src/python/pre.py @@ -75,7 +75,9 @@ def preprocess(vcf_input, threads=1, gender=None, somatic_allele_conversion=False, - sample="SAMPLE"): + sample="SAMPLE", + filter_nonref=True, + convert_gvcf_to_vcf=False): """ Preprocess a single VCF file :param vcf_input: input file name @@ -91,11 +93,12 @@ def preprocess(vcf_input, :param bcftools_norm: use bcftools_norm :param windowsize: normalisation window size :param threads: number of threads to for preprcessing - :param gender: the gender of the sample ("male" / "female" / "auto" / None) + :param gender: the sex of the sample ("male" / "female" / "auto" / None) :param somatic_allele_conversion: convert somatic alleles -- False / half / het / hemi / hom :param sample: when using somatic_allele_conversion, name of the output sample + :param filter_nonref: remove any variants genotyped as - :return: the gender if auto-determined (otherwise the same value as gender parameter) + :return: the sex if auto-determined (otherwise the same value as sex parameter) """ tempfiles = [] @@ -166,10 +169,7 @@ def preprocess(vcf_input, except: logging.warn("Guessing the chr prefix in %s has failed." % vcf_input) - # all these require preprocessing - vtf = vcf_input - - if leftshift or decompose: + if leftshift or decompose: # all these require preprocessing vtf = tempfile.NamedTemporaryFile(delete=False, suffix=int_suffix) vtf.close() @@ -189,7 +189,10 @@ def preprocess(vcf_input, reference, required_filters, somatic_allele_conversion=somatic_allele_conversion, - sample=sample) + sample=sample, + filter_nonref=filter_nonref, + convert_gvcf=convert_gvcf_to_vcf, + num_threads=threads) if leftshift or decompose or gender == "male": Haplo.partialcredit.partialCredit(vtf, @@ -238,7 +241,8 @@ def preprocessWrapper(args): args.window, args.threads, args.gender, - args.somatic_allele_conversion) + args.somatic_allele_conversion, + convert_gvcf_to_vcf=args.convert_gvcf) elapsed = time.time() - starttime logging.info("preprocess for %s -- time taken %.2f" % (args.input, elapsed)) @@ -309,9 +313,18 @@ def updateArgs(parser): "resulting sample: 1 | 0/1 | 1/1 | ./1. This will replace all sample " "columns and replace them with a single one.") + parser.add_argument('--filter-nonref', dest='filter_nonref', action="store_true", default=False, + help='Remove any variants genotyped as .') + + parser.add_argument('--convert-gvcf-truth', dest='convert_gvcf_truth', action="store_true", default=False, + help='Convert the truth set from genome VCF format to a VCF before processing.') + + parser.add_argument('--convert-gvcf-query', dest='convert_gvcf_query', action="store_true", default=False, + help='Convert the query set from genome VCF format to a VCF before processing.') + # genotype handling on chrX. parser.add_argument("--gender", dest="gender", choices=["male", "female", "auto", "none"], default="auto", - help="Specify gender. This determines how haploid calls on chrX get treated: for male samples," + help="Specify sex. This determines how haploid calls on chrX get treated: for male samples," " all non-ref calls (in the truthset only when running through hap.py) are given a 1/1 genotype.") diff --git a/src/python/som.py b/src/python/som.py index 10864b1..e942351 100755 --- a/src/python/som.py +++ b/src/python/som.py @@ -32,6 +32,7 @@ import shutil import pandas import numpy as np +np.seterr(all='ignore') import gzip import json from collections import Counter @@ -50,8 +51,7 @@ import Somatic -# noinspection PyBroadException -def main(): +def parse_args(): parser = argparse.ArgumentParser("Somatic Comparison") parser.add_argument("truth", help="Truth VCF file") @@ -115,6 +115,9 @@ def main(): parser.add_argument("--feature-table", dest="features", default=False, choices=Somatic.FeatureSet.sets.keys(), help="Select a feature table to output.") + parser.add_argument("--happy-stats", dest="happy_stats", default=False, action="store_true", + help="Generate summary.csv.") + parser.add_argument("--bam", dest="bams", default=[], action="append", help="pass one or more BAM files for feature table extraction") @@ -153,7 +156,7 @@ def main(): " - this will override the --feature-table switch!") parser.add_argument("--bin-afs", dest="af_strat", default=None, action="store_true", - help="Stratify into different AF buckets. This needs to have features available" + help="Stratify into different AF buckets. This needs to have features available " "for getting the AF both in truth and query variants.") parser.add_argument("--af-binsize", dest="af_strat_binsize", default=0.2, help="Bin size for AF binning (should be < 1). Multiple bin sizes can be specified using a comma, " @@ -239,6 +242,188 @@ def main(): "and when using unfiltered variants. Specify -P --feature-table <...> or use " "--roc to select a ROC type.") + if args.happy_stats and (not args.inc_nonpass or not args.features): + raise Exception("Obtaining hap.py stats only works when a feature table is selected, " + "and when using unfiltered variants. Specify -P --feature-table <...> or use " + "--roc to select a ROC type.") + + if args.scratch_prefix: + scratch = os.path.abspath(args.scratch_prefix) + args.delete_scratch = False + Tools.mkdir_p(scratch) + else: + scratch = tempfile.mkdtemp() + + return args + + +def resolve_vtype(args): + fvtype = args.features.split(".")[-1] + if fvtype == "snv": + vtype = "SNP" + elif fvtype == "indel": + vtype = "INDEL" + else: + logging.warning("Could not parse variant type from feature table arg, setting to NA") + vtype = "NA" + return vtype + + +def summary_from_featuretable(f, args): + + # define vtype to match those in hap.py + vtype = resolve_vtype(args) + + # define output data frame and temporary dict + happy_cols = ["Type", "Filter", "TRUTH.TOTAL", "TRUTH.TP", + "TRUTH.FN", "QUERY.TOTAL", "QUERY.FP", "QUERY.UNK", "FP.gt", "METRIC.Recall", + "METRIC.Precision", "METRIC.Frac_NA", "METRIC.F1_Score", + "TRUTH.TOTAL.TiTv_ratio", "QUERY.TOTAL.TiTv_ratio", + "TRUTH.TOTAL.het_hom_ratio", "QUERY.TOTAL.het_hom_ratio"] + happy_summary = pandas.DataFrame(columns = happy_cols) + r = dict() + r["Type"] = vtype + decimals = 4 + + # truth numbers do not depend on filter + truth = f[(f["REF.truth"].notnull()) & (f["REF.truth"] != "") & (f["REF.truth"] != ".")] + r["TRUTH.TOTAL"] = truth.shape[0] + r["TRUTH.TP"] = truth[(truth["tag"] == "TP")].shape[0] + r["TRUTH.FN"] = truth[(truth["tag"] == "FN")].shape[0] + r["TRUTH.TOTAL.het_hom_ratio"] = "NA" + r["TRUTH.TOTAL.TiTv_ratio"] = "NA" + + # query numbers can be from PASS / ALL variants + for vfilter in ["PASS", "ALL"]: + r["Filter"] = vfilter + + query = f[(f["REF"].notnull()) & (f["REF"] != "") & (f["REF"] != ".") & \ + (f["ALT"].notnull()) & (f["ALT"] != "") & (f["ALT"] != ".")] + if vfilter == "PASS": + query = query[(query["FILTER"].isnull()) | (query["FILTER"] == "PASS") | (query["FILTER"] == "") | (query["FILTER"] == ".")] + + # query counts across all AFs + r["QUERY.FP"] = query[(query["tag"] == "FP")].shape[0] + r["QUERY.UNK"] = query[(query["tag"] == "UNK")].shape[0] + query[(query["tag"] == "AMBI")].shape[0] + r["QUERY.TOTAL"] = r["TRUTH.TP"] + r["QUERY.FP"] + r["QUERY.UNK"] + r["FP.gt"] = "NA" + r["QUERY.TOTAL.het_hom_ratio"] = "NA" + r["QUERY.TOTAL.TiTv_ratio"] = "NA" + + # performance metrics across all AFs + r["METRIC.Recall"] = np.round(np.true_divide(r["TRUTH.TP"], r["TRUTH.TOTAL"]), decimals) + r["METRIC.Precision"] = np.round(np.true_divide(r["TRUTH.TP"], (r["TRUTH.TP"] + r["QUERY.FP"])), decimals) + r["METRIC.Frac_NA"] = np.round(np.true_divide(r["QUERY.UNK"], r["QUERY.TOTAL"]), decimals) + r["METRIC.F1_Score"] = np.round(np.true_divide(2 * r["METRIC.Precision"] * r["METRIC.Recall"], (r["METRIC.Precision"] + r["METRIC.Recall"])), decimals) + + happy_summary = happy_summary.append(pandas.DataFrame([r])) + + # reorder columns and return + happy_summary = happy_summary[happy_cols] + + # append breaks col types - fix them + int_cols = ["TRUTH.TOTAL", "TRUTH.TP", "TRUTH.FN", "QUERY.TOTAL", "QUERY.FP", "QUERY.UNK"] + for col in int_cols: + happy_summary[col] = happy_summary[col].astype("int") + + # return + return happy_summary + + +def extended_from_featuretable(f, args): + # define vtype to match those in hap.py + vtype = resolve_vtype(args) + + # define output data frame and temporary dict + happy_cols = ["Type", "Subtype", "Subset", "Filter", + "TRUTH.TOTAL", "TRUTH.TP", "TRUTH.FN", + "QUERY.TOTAL", "QUERY.FP", "QUERY.UNK", "FP.gt", "METRIC.Recall", + "METRIC.Precision", "METRIC.Frac_NA", "METRIC.F1_Score", + "TRUTH.TOTAL.TiTv_ratio", "QUERY.TOTAL.TiTv_ratio", + "TRUTH.TOTAL.het_hom_ratio", "QUERY.TOTAL.het_hom_ratio"] + happy_extended = pandas.DataFrame(columns = happy_cols) + r = dict() + decimals = 4 + + # set up AF iterators + start = 0.0 + end = 1.0 + current_binsize = args.af_strat_binsize[0] + next_binsize = 0 + af_t_feature = args.af_strat_truth + af_q_feature = args.af_strat_query + + # iterate over AF bins + while start < 1.0: + # static columns + r["Subtype"] = "*" + r["Type"] = vtype + + # include 1 in last interval + end = start + current_binsize + r["Subset"] = "[%.2f,%.2f)" % (start, end) + if end >= 1: + end = 1.00000001 + r["Subset"] = "[%.2f,1.00]" % start + + # truth numbers do not depend on filter + truth = f[(f["REF.truth"].notnull()) & (f["REF.truth"] != "") & (f["REF.truth"] != ".") & \ + (f[af_t_feature] >= start) & (f[af_t_feature] < end)] + r["TRUTH.TOTAL"] = truth.shape[0] + r["TRUTH.TP"] = truth[(truth["tag"] == "TP")].shape[0] + r["TRUTH.FN"] = truth[(truth["tag"] == "FN")].shape[0] + r["TRUTH.TOTAL.het_hom_ratio"] = "NA" + r["TRUTH.TOTAL.TiTv_ratio"] = "NA" + + # query numbers can be from PASS / ALL variants + for vfilter in ["PASS", "ALL"]: + r["Filter"] = vfilter + + query = f[(f["REF"].notnull()) & (f["REF"] != "") & (f["REF"] != ".") & \ + (f["ALT"].notnull()) & (f["ALT"] != "") & (f["ALT"] != ".") & \ + (f[af_q_feature] >= start) & (f[af_q_feature] < end)] + if vfilter == "PASS": + query = query[(query["FILTER"].isnull()) | (query["FILTER"] == "PASS") | (query["FILTER"] == "") | (query["FILTER"] == ".")] + + # query counts across all AFs + r["QUERY.FP"] = query[(query["tag"] == "FP")].shape[0] + r["QUERY.UNK"] = query[(query["tag"] == "UNK")].shape[0] + query[(query["tag"] == "AMBI")].shape[0] + r["QUERY.TOTAL"] = r["TRUTH.TP"] + r["QUERY.FP"] + r["QUERY.UNK"] + r["FP.gt"] = "NA" + r["QUERY.TOTAL.het_hom_ratio"] = "NA" + r["QUERY.TOTAL.TiTv_ratio"] = "NA" + + # performance metrics across all AFs + r["METRIC.Recall"] = np.round(np.true_divide(r["TRUTH.TP"], r["TRUTH.TOTAL"]), decimals) + r["METRIC.Precision"] = np.round(np.true_divide(r["TRUTH.TP"], (r["TRUTH.TP"] + r["QUERY.FP"])), decimals) + r["METRIC.Frac_NA"] = np.round(np.true_divide(r["QUERY.UNK"], r["QUERY.TOTAL"]), decimals) + r["METRIC.F1_Score"] = np.round(np.true_divide(2 * r["METRIC.Precision"] * r["METRIC.Recall"], (r["METRIC.Precision"] + r["METRIC.Recall"])), decimals) + happy_extended = happy_extended.append(pandas.DataFrame([r])) + + # re-configure counters + start = end + next_binsize += 1 + if next_binsize >= len(args.af_strat_binsize): + next_binsize = 0 + current_binsize = args.af_strat_binsize[next_binsize] + + # reorder columns and return + happy_extended = happy_extended[happy_cols] + + # append breaks col types - fix them + int_cols = ["TRUTH.TOTAL", "TRUTH.TP", "TRUTH.FN", "QUERY.TOTAL", "QUERY.FP", "QUERY.UNK"] + for col in int_cols: + happy_extended[col] = happy_extended[col].astype("int") + + # return + return happy_extended + + +# noinspection PyBroadException +def main(): + + args = parse_args() + if args.scratch_prefix: scratch = os.path.abspath(args.scratch_prefix) args.delete_scratch = False @@ -603,15 +788,8 @@ def main(): af_t_feature = args.af_strat_truth af_q_feature = args.af_strat_query for vtype in ["records", "SNVs", "indels"]: - if vtype == "SNVs": - featuretable_this_type = featuretable[(featuretable["REF"].str.len() > 0) & - (featuretable["ALT"].str.len() == - featuretable["REF"].str.len())] - elif vtype == "indels": - featuretable_this_type = featuretable[(featuretable["REF"].str.len() != 1) | - (featuretable["ALT"].str.len() != 1)] - else: - featuretable_this_type = featuretable + featuretable["vtype"] = resolve_vtype(args) + featuretable_this_type = featuretable if args.count_filtered_fn: res.ix[res["type"] == vtype, "fp.filtered"] = featuretable_this_type[ @@ -658,7 +836,7 @@ def main(): "fp": n_fp.shape[0], "fn": n_fn.shape[0], "unk": n_unk.shape[0], - "ambi": n_ambi.shape[0], } + "ambi": n_ambi.shape[0]} if args.count_filtered_fn: r["fp.filtered"] = n_fp[n_fp["FILTER"] != ""].shape[0] @@ -678,7 +856,9 @@ def main(): next_binsize = 0 current_binsize = args.af_strat_binsize[next_binsize] - # remove things where we haven't seen any variants in truth and query + if not args.af_strat: + res = res[(res["total.truth"] > 0)] + # summary metrics with confidence intervals ci_alpha = 1.0 - args.ci_level @@ -690,8 +870,6 @@ def main(): res["na"] = res["unk"] / (res["total.query"]) res["ambiguous"] = res["ambi"] / res["total.query"] - res = res[(res["total.truth"] > 0)] - any_fp = fpclasses.countbases(label="FP") fp_region_count = 0 @@ -751,6 +929,7 @@ def main(): # HAP-162 remove inf values res.replace([np.inf, -np.inf], 0) + metrics_output["metrics"].append(dataframeToMetricsTable("result", res)) vstring = "som.py-%s" % Tools.version @@ -763,10 +942,26 @@ def main(): vstring = " ".join(sys.argv) res["sompycmd"] = vstring + + # save results res.to_csv(args.output + ".stats.csv") + with open(args.output + ".metrics.json", "w") as fp: json.dump(metrics_output, fp) + if args.happy_stats: + # parse saved feature table as the one in memory has been updated + featuretable = pandas.read_csv(args.output + ".features.csv", low_memory = False, dtype = {"FILTER": str}) + + # hap.py summary.csv + summary = summary_from_featuretable(featuretable, args) + summary.to_csv(args.output + ".summary.csv") + + # hap.py extended.csv + if args.af_strat: + extended = extended_from_featuretable(featuretable, args) + extended.to_csv(args.output + ".extended.csv", index=False, na_rep="NA") + finally: if args.delete_scratch: shutil.rmtree(scratch) diff --git a/src/sh/illumina-setup.sh b/src/sh/illumina-setup.sh index 11b91ef..ec33f55 100755 --- a/src/sh/illumina-setup.sh +++ b/src/sh/illumina-setup.sh @@ -28,4 +28,3 @@ fi export ANT_HOME=/illumina/thirdparty/ant/apache-ant-1.9.2 export EXTRA_CMAKE_OPTS="-DUSE_SGE=ON -DBUILD_VCFEVAL=ON -DVCFEVAL_WRAPPER=${DIR}/rtg-wrapper.sh" export HAPPY_PATCH_SAMTOOLS="yes" - diff --git a/src/sh/run_sompy_test.sh b/src/sh/run_sompy_test.sh index ee03824..4f12d1e 100755 --- a/src/sh/run_sompy_test.sh +++ b/src/sh/run_sompy_test.sh @@ -9,246 +9,349 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" ##### -echo "Somatic comparison test for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P - + -o ${TMP_OUT} -P" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions + fixchr_truth for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + fixchr_truth for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs_nochr.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ --fix-chr-truth \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -# run som.py -echo "${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ -o ${TMP_OUT} -P --feature-table hcc.strelka.indel" - -${PYTHON} ${HCDIR}/som.py \ - ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ - ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P --feature-table hcc.strelka.indel - +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats.csv!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy_features.py ${TMP_OUT}.features.csv ${DIR}/../../example/sompy/features.csv +CMD="${PYTHON} ${DIR}/compare_sompy_features.py ${TMP_OUT}.features.csv ${DIR}/../../example/sompy/reference_outputs/features.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output features differ: diff ${TMP_OUT}.features.csv ${DIR}/../../example/sompy/features.csv" + echo "Output features differ: diff ${TMP_OUT}.features.csv ${DIR}/../../example/sompy/reference_outputs/features.csv" exit 1 fi ##### -echo "Somatic comparison test with FP regions + fixchr_truth + fixchr_query for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + fixchr_truth + fixchr_query for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs_nochr.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs_nochr.vcf.gz \ --fixchr-truth \ --fixchr-query \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions + automatic fixchr_query (no chr prefix in query nor truthset) for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + automatic fixchr_query (no chr prefix in query nor truthset) for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs_nochr.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs_nochr.vcf.gz \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in query and truthset) for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in query and truthset) for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in query only) for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in query only) for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs_nochr.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in truthset only) for ${HCVERSION} from ${HCDIR}" +echo "# Somatic comparison test with FP regions + automatic fixchr_query (chr prefix in truthset only) for ${HCVERSION} from ${HCDIR}" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs_nochr.vcf.gz \ - -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk - + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_nochr.bed.gz --count-unk" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_fpr.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_fpr.csv!" exit 1 fi ##### -echo "Somatic comparison test with custom confidence interval leve for ${HCVERSION} from ${HCDIR}l" +echo "# Somatic comparison test with custom confidence interval leve for ${HCVERSION} from ${HCDIR}l" TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` -# run som.py -${PYTHON} ${HCDIR}/som.py \ +CMD="${PYTHON} ${HCDIR}/som.py \ ${DIR}/../../example/sompy/PG_admix_truth_snvs.vcf.gz \ ${DIR}/../../example/sompy/strelka_admix_snvs.vcf.gz \ - -o ${TMP_OUT} -P --ci-level 0.99 - + -o ${TMP_OUT} -P --ci-level 0.99" +echo $CMD; $CMD if [[ $? != 0 ]]; then echo "som.py failed!" exit 1 fi -${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_ci.csv +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_ci.csv" +echo $CMD; $CMD if [[ $? != 0 ]]; then - echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/stats_ci.csv !" + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/stats_ci.csv!" exit 1 fi ##### -rm -f ${TMP_OUT}* +echo "# Somatic comparison test with FP regions + feature table + happy-stats for ${HCVERSION} from ${HCDIR} - snvs" + +TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` + +CMD="${PYTHON} ${HCDIR}/som.py \ + ${DIR}/../../example/sompy/PG_admix_truth_grch38_snvs.vcf.gz \ + ${DIR}/../../example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz \ + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_grch38.bed.gz \ + --feature-table hcc.strelka.snv --count-unk --happy-stats --quiet" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "som.py failed!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.stats.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_snvs.stats.csv!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/validate_happy_summary.py --sompy_stats ${TMP_OUT}.stats.csv --happy_summary ${TMP_OUT}.summary.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ between ${TMP_OUT}.stats.csv and ${TMP_OUT}.summary.csv!" + exit 1 +fi + +##### + +echo "# Somatic comparison test with FP regions + feature table + happy-stats for ${HCVERSION} from ${HCDIR} - indels" + +TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` + +CMD="${PYTHON} ${HCDIR}/som.py \ + ${DIR}/../../example/sompy/PG_admix_truth_grch38_indels.vcf.gz \ + ${DIR}/../../example/sompy/strelka_grch38_admix_pass_indels.vcf.gz \ + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_grch38.bed.gz \ + --feature-table hcc.strelka.indel --count-unk --happy-stats --quiet" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "som.py failed!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/compare_sompy.py ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.stats.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ diff ${TMP_OUT}.stats.csv ${DIR}/../../example/sompy/reference_outputs/sompy.strelka_grch38_admix_pass_indels.stats.csv!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/validate_happy_summary.py --sompy_stats ${TMP_OUT}.stats.csv --happy_summary ${TMP_OUT}.summary.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ between ${TMP_OUT}.stats.csv and ${TMP_OUT}.summary.csv!" + exit 1 +fi + +##### + +echo "# Somatic comparison test with FP regions + feature table + AF stratification for ${HCVERSION} from ${HCDIR} - snvs" + +TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` + +CMD="${PYTHON} ${HCDIR}/som.py \ + ${DIR}/../../example/sompy/PG_admix_truth_grch38_snvs.vcf.gz \ + ${DIR}/../../example/sompy/strelka_grch38_admix_pass_snvs.vcf.gz \ + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_grch38.bed.gz \ + --feature-table hcc.strelka.snv --count-unk --happy-stats --bin-afs --af-binsize 0.1 --af-truth T_AF --quiet" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "som.py failed!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/validate_happy_extended.py --sompy_stats ${TMP_OUT}.stats.csv --happy_extended ${TMP_OUT}.extended.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ between ${TMP_OUT}.stats.csv and ${TMP_OUT}.extended.csv!" + exit 1 +fi + +##### + +echo "# Somatic comparison test with FP regions + feature table + AF stratification for ${HCVERSION} from ${HCDIR} - indels" + +TMP_OUT=`mktemp -t sompy.XXXXXXXXXX` + +CMD="${PYTHON} ${HCDIR}/som.py \ + ${DIR}/../../example/sompy/PG_admix_truth_grch38_indels.vcf.gz \ + ${DIR}/../../example/sompy/strelka_grch38_admix_pass_indels.vcf.gz \ + -o ${TMP_OUT} -P -f ${DIR}/../../example/sompy/FP_admix_grch38.bed.gz \ + --feature-table hcc.strelka.indel --count-unk --happy-stats --bin-afs --af-binsize 0.1 --af-truth T_AF --quiet" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "som.py failed!" + exit 1 +fi + +CMD="${PYTHON} ${DIR}/validate_happy_extended.py --sompy_stats ${TMP_OUT}.stats.csv --happy_extended ${TMP_OUT}.extended.csv" +echo $CMD; $CMD +if [[ $? != 0 ]]; then + echo "Output counts differ between ${TMP_OUT}.stats.csv and ${TMP_OUT}.extended.csv!" + exit 1 +fi + +##### echo "Som.py test done" diff --git a/src/sh/validate_happy_extended.py b/src/sh/validate_happy_extended.py new file mode 100755 index 0000000..8c5a771 --- /dev/null +++ b/src/sh/validate_happy_extended.py @@ -0,0 +1,77 @@ +#!/usr/bin/env python + +# Compare som.py stats.csv and hap.py extended.csv files + +import sys +import argparse +import csv +import pprint as pp +import re +import logging +logging.basicConfig(format='%(asctime)s %(levelname)-8s %(message)s', + level=logging.INFO) + +def parse_args(): + parser = argparse.ArgumentParser("Validate hap.py stats") + parser.add_argument("--sompy_stats", required=True, help="Path to som.py stats.csv") + parser.add_argument("--happy_extended", required=True, help="Path to hap.py extended.csv") + args = parser.parse_args() + return args + +def eval_equal(metric_name, count_a, count_b): + a = int(count_a) + b = int(count_b) + e = "PASS" if a == b else "FAIL" + logging.info("%s: %d vs %d - %s" % (metric_name, a, b, e)) + return e + +def parse_sompy_stats(path): + sompy_stats = csv.DictReader(open(path)) + result = dict() + for s in sompy_stats: + subset = s["type"] + if re.match("indels.", subset): + # store results per af_bin + m = re.findall("indels.(\d+\.\d+)-(\d+\.\d+)", subset)[0] + af_low = m[0][:4] + af_high = m[1][:4] + af_bin = "[%s,%s]" % (af_low, af_high) if af_low == "1.00" else "[%s,%s)" % (af_low, af_high) + result["INDEL." + af_bin] = s + + if re.match("SNVs.", subset): + # store results per af_bin + m = re.findall("SNVs.(\d+\.\d+)-(\d+\.\d+)", subset)[0] + af_low = m[0][:4] + af_high = m[1][:4] + af_bin = "[%s,%s]" % (af_low, af_high) if af_low == "1.00" else "[%s,%s)" % (af_low, af_high) + result["SNP." + af_bin] = s + + return result + +if __name__ == '__main__': + args = parse_args() + + sompy_stats = parse_sompy_stats(path=args.sompy_stats) + happy_extended = csv.DictReader(open(args.happy_extended)) + + outcomes = dict(ALL=set(), PASS=set()) + for h in happy_extended: + k = h["Type"] + "." + h["Subset"] + try: + s = sompy_stats[k] + except KeyError: + s = {"total.truth": 0, "tp": 0, "fn": 0, "total.query": 0, "fp": 0, "unk": 0} + + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s TRUTH.TOTAL" % (k, h["Filter"]), count_a=s["total.truth"], count_b=h["TRUTH.TOTAL"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s TRUTH.TP" % (k, h["Filter"]), count_a=s["tp"], count_b=h["TRUTH.TP"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s TRUTH.FN" % (k, h["Filter"]), count_a=s["fn"], count_b=h["TRUTH.FN"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s QUERY.TOTAL" % (k, h["Filter"]), count_a=s["total.query"], count_b=h["QUERY.TOTAL"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s QUERY.FP" % (k, h["Filter"]), count_a=s["fp"], count_b=h["QUERY.FP"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="%s %s QUERY.UNK" % (k, h["Filter"]), count_a=int(s["unk"])+int(s["ambi"]), count_b=h["QUERY.UNK"])) + + failed_vfilters = [x for x in outcomes if "FAIL" in outcomes[x]] + if len(failed_vfilters) == 2: + logging.info("Failed filters: %s" % failed_vfilters) + sys.exit(1) + else: + logging.info("DONE") diff --git a/src/sh/validate_happy_summary.py b/src/sh/validate_happy_summary.py new file mode 100755 index 0000000..e1a42b2 --- /dev/null +++ b/src/sh/validate_happy_summary.py @@ -0,0 +1,59 @@ +#!/usr/bin/env python + +# Compare som.py stats.csv and hap.py summary.csv files + +import sys +import argparse +import csv +import pprint as pp +import logging +logging.basicConfig(format='%(asctime)s %(levelname)-8s %(message)s', + level=logging.INFO) + +def parse_args(): + parser = argparse.ArgumentParser("Validate hap.py stats") + parser.add_argument("--sompy_stats", required=True, help="Path to som.py stats.csv") + parser.add_argument("--happy_summary", required=True, help="Path to hap.py summary.csv") + args = parser.parse_args() + return args + +def eval_equal(metric_name, count_a, count_b): + a = int(count_a) + b = int(count_b) + e = "PASS" if a == b else "FAIL" + logging.info("%s: %d vs %d - %s" % (metric_name, a, b, e)) + return e + +if __name__ == '__main__': + args = parse_args() + sompy_stats = csv.DictReader(open(args.sompy_stats)) + happy_summary = csv.DictReader(open(args.happy_summary)) + + # compare first row of som.py stats to PASS/ALL rows in hap.py summary + s = sompy_stats.next() + + if s["type"] == "SNVs": + vtype = "SNP" + elif s["type"] == "indels": + vtype = "INDEL" + else: + logging.error("Unrecognised variant type in som.py stats: %s" % s["type"]) + sys.exit(1) + + logging.info("Comparing %s counts..." % vtype) + outcomes = dict(ALL=set(), PASS=set()) + for h in happy_summary: + if h["Type"] == vtype: + outcomes[h["Filter"]].add(eval_equal(metric_name="TRUTH.TOTAL", count_a=s["total.truth"], count_b=h["TRUTH.TOTAL"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="TRUTH.TP", count_a=s["tp"], count_b=h["TRUTH.TP"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="TRUTH.FN", count_a=s["fn"], count_b=h["TRUTH.FN"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="QUERY.TOTAL", count_a=s["total.query"], count_b=h["QUERY.TOTAL"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="QUERY.FP", count_a=s["fp"], count_b=h["QUERY.FP"])) + outcomes[h["Filter"]].add(eval_equal(metric_name="QUERY.UNK", count_a=int(s["unk"])+int(s["ambi"]), count_b=h["QUERY.UNK"])) + + failed_vfilters = [x for x in outcomes if "FAIL" in outcomes[x]] + if len(failed_vfilters) == 2: + logging.info("Failed filters: %s" % failed_vfilters) + sys.exit(1) + else: + logging.info("DONE")